inputElement 830 Source/core/css/SelectorChecker.cpp HTMLInputElement& inputElement = toHTMLInputElement(element); inputElement 836 Source/core/css/SelectorChecker.cpp if (inputElement.shouldAppearChecked() && !inputElement.shouldAppearIndeterminate()) inputElement 691 Source/core/html/HTMLElement.cpp HTMLInputElement* inputElement = toHTMLInputElement(const_cast<HTMLElement*>(this)); inputElement 693 Source/core/html/HTMLElement.cpp TextDirection textDirection = determineDirectionality(inputElement->value(), hasStrongDirectionality); inputElement 695 Source/core/html/HTMLElement.cpp *strongDirectionalityTextNode = hasStrongDirectionality ? inputElement : 0; inputElement 134 Source/core/html/HTMLInputElement.cpp RefPtr<HTMLInputElement> inputElement = adoptRef(new HTMLInputElement(document, form, createdByParser)); inputElement 135 Source/core/html/HTMLInputElement.cpp inputElement->ensureUserAgentShadowRoot(); inputElement 136 Source/core/html/HTMLInputElement.cpp return inputElement.release(); inputElement 58 Source/core/html/RadioNodeList.cpp HTMLInputElement& inputElement = toHTMLInputElement(node); inputElement 59 Source/core/html/RadioNodeList.cpp if (!inputElement.isRadioButton() || inputElement.value().isEmpty()) inputElement 61 Source/core/html/RadioNodeList.cpp return &inputElement; inputElement 70 Source/core/html/RadioNodeList.cpp const HTMLInputElement* inputElement = toRadioButtonInputElement(*node); inputElement 71 Source/core/html/RadioNodeList.cpp if (!inputElement || !inputElement->checked()) inputElement 73 Source/core/html/RadioNodeList.cpp return inputElement->value(); inputElement 84 Source/core/html/RadioNodeList.cpp HTMLInputElement* inputElement = toRadioButtonInputElement(*node); inputElement 85 Source/core/html/RadioNodeList.cpp if (!inputElement || inputElement->value() != value) inputElement 87 Source/core/html/RadioNodeList.cpp inputElement->setChecked(true); inputElement 94 Source/core/html/forms/RadioInputType.cpp HTMLInputElement* inputElement = toHTMLInputElement(htmlElement); inputElement 95 Source/core/html/forms/RadioInputType.cpp if (inputElement->form() != element().form()) inputElement 97 Source/core/html/forms/RadioInputType.cpp if (inputElement->isRadioButton() && inputElement->name() == element().name() && inputElement->isFocusable()) { inputElement 98 Source/core/html/forms/RadioInputType.cpp RefPtr<HTMLInputElement> protector(inputElement); inputElement 99 Source/core/html/forms/RadioInputType.cpp document.setFocusedElement(inputElement); inputElement 100 Source/core/html/forms/RadioInputType.cpp inputElement->dispatchSimulatedClick(event, SendNoEvents); inputElement 234 Source/core/page/PageSerializer.cpp HTMLInputElement& inputElement = toHTMLInputElement(element); inputElement 235 Source/core/page/PageSerializer.cpp if (inputElement.isImageButton() && inputElement.hasImageLoader()) { inputElement 236 Source/core/page/PageSerializer.cpp KURL url = inputElement.src(); inputElement 237 Source/core/page/PageSerializer.cpp ImageResource* cachedImage = inputElement.imageLoader()->image(); inputElement 238 Source/core/page/PageSerializer.cpp addImageToResources(cachedImage, inputElement.renderer(), url); inputElement 51 Source/core/rendering/RenderSearchField.cpp return inputElement()->userAgentShadowRoot()->getElementById(ShadowElementNames::searchDecoration()); inputElement 56 Source/core/rendering/RenderSearchField.cpp return inputElement()->userAgentShadowRoot()->getElementById(ShadowElementNames::clearButton()); inputElement 58 Source/core/rendering/RenderTextControlSingleLine.cpp return inputElement()->userAgentShadowRoot()->getElementById(ShadowElementNames::textFieldContainer()); inputElement 63 Source/core/rendering/RenderTextControlSingleLine.cpp return inputElement()->userAgentShadowRoot()->getElementById(ShadowElementNames::editingViewPort()); inputElement 68 Source/core/rendering/RenderTextControlSingleLine.cpp return toHTMLElement(inputElement()->userAgentShadowRoot()->getElementById(ShadowElementNames::spinButton())); inputElement 180 Source/core/rendering/RenderTextControlSingleLine.cpp HTMLElement* placeholderElement = inputElement()->placeholderElement(); inputElement 256 Source/core/rendering/RenderTextControlSingleLine.cpp if (HTMLElement* placeholder = inputElement()->placeholderElement()) inputElement 274 Source/core/rendering/RenderTextControlSingleLine.cpp shouldDrawCapsLockIndicator = inputElement()->isPasswordField() && frame->selection().isFocusedAndActive() && document().focusedElement() == node() && PlatformKeyboardEvent::currentCapsLockState(); inputElement 313 Source/core/rendering/RenderTextControlSingleLine.cpp bool includesDecoration = inputElement()->sizeShouldIncludeDecoration(factor); inputElement 378 Source/core/rendering/RenderTextControlSingleLine.cpp if (inputElement()->shouldRevealPassword()) inputElement 47 Source/core/rendering/RenderTextControlSingleLine.h HTMLInputElement* inputElement() const; inputElement 954 Source/core/rendering/RenderTheme.cpp bool RenderTheme::shouldHaveSpinButton(HTMLInputElement* inputElement) const inputElement 956 Source/core/rendering/RenderTheme.cpp return inputElement->isSteppable() && !inputElement->isRangeControl(); inputElement 162 Source/core/testing/Internals.h bool elementShouldAutoComplete(Element* inputElement, ExceptionState&); inputElement 165 Source/core/testing/Internals.h void setEditingValue(Element* inputElement, const String&, ExceptionState&); inputElement 893 Source/web/ChromeClientImpl.cpp void ChromeClientImpl::handleKeyboardEventOnTextField(HTMLInputElement& inputElement, KeyboardEvent& event) inputElement 897 Source/web/ChromeClientImpl.cpp m_webView->autofillClient()->textFieldDidReceiveKeyDown(WebInputElement(&inputElement), WebKeyboardEventBuilder(event)); inputElement 935 Source/web/ChromeClientImpl.cpp void ChromeClientImpl::didEndEditingOnTextField(HTMLInputElement& inputElement) inputElement 938 Source/web/ChromeClientImpl.cpp m_webView->autofillClient()->textFieldDidEndEditing(WebInputElement(&inputElement)); inputElement 75 Source/web/WebPasswordFormUtils.cpp HTMLInputElement& inputElement = toHTMLInputElement(*control); inputElement 76 Source/web/WebPasswordFormUtils.cpp if (inputElement.isDisabledFormControl()) inputElement 80 Source/web/WebPasswordFormUtils.cpp && inputElement.isPasswordField()) { inputElement 89 Source/web/WebPasswordFormUtils.cpp fields->passwords.append(&inputElement); inputElement 93 Source/web/WebPasswordFormUtils.cpp if (inputElement.isTextField() && !inputElement.isPasswordField()) { inputElement 94 Source/web/WebPasswordFormUtils.cpp latestInputElement = &inputElement; inputElement 98 Source/web/WebPasswordFormUtils.cpp if (!inputElement.value().isEmpty()) inputElement 99 Source/web/WebPasswordFormUtils.cpp fields->alternateUserNames.append(inputElement.value()); inputElement 140 Source/web/WebSearchableFormData.cpp const HTMLInputElement& inputElement = toHTMLInputElement(*formElement); inputElement 141 Source/web/WebSearchableFormData.cpp if (inputElement.isCheckbox() || inputElement.isRadioButton()) inputElement 142 Source/web/WebSearchableFormData.cpp return inputElement.checked() == inputElement.hasAttribute(checkedAttr); inputElement 239 Source/web/WebSearchableFormData.cpp HTMLInputElement* inputElement = selectedInputElement.operator PassRefPtr<HTMLInputElement>().get(); inputElement 244 Source/web/WebSearchableFormData.cpp || (!IsHTTPFormSubmit(formElement.get()) && !inputElement)) inputElement 260 Source/web/WebSearchableFormData.cpp if (!inputElement) { inputElement 261 Source/web/WebSearchableFormData.cpp inputElement = findSuitableSearchInputElement(formElement.get()); inputElement 264 Source/web/WebSearchableFormData.cpp if (!inputElement) inputElement 276 Source/web/WebSearchableFormData.cpp bool isValidSearchString = buildSearchString(formElement.get(), &encodedString, &encoding, inputElement); inputElement 1349 Source/web/tests/WebViewTest.cpp static void openDateTimeChooser(WebView* webView, WebCore::HTMLInputElement* inputElement) inputElement 1351 Source/web/tests/WebViewTest.cpp inputElement->focus(); inputElement 1372 Source/web/tests/WebViewTest.cpp WebCore::HTMLInputElement* inputElement; inputElement 1374 Source/web/tests/WebViewTest.cpp inputElement = toHTMLInputElement(document->getElementById("date")); inputElement 1375 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1378 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("1970-01-01", inputElement->value().utf8().data()); inputElement 1380 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1383 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("", inputElement->value().utf8().data()); inputElement 1385 Source/web/tests/WebViewTest.cpp inputElement = toHTMLInputElement(document->getElementById("datetimelocal")); inputElement 1386 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1389 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("1970-01-01T00:00", inputElement->value().utf8().data()); inputElement 1391 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1394 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("", inputElement->value().utf8().data()); inputElement 1396 Source/web/tests/WebViewTest.cpp inputElement = toHTMLInputElement(document->getElementById("month")); inputElement 1397 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1400 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("1970-01", inputElement->value().utf8().data()); inputElement 1402 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1405 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("", inputElement->value().utf8().data()); inputElement 1407 Source/web/tests/WebViewTest.cpp inputElement = toHTMLInputElement(document->getElementById("time")); inputElement 1408 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1411 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("00:00", inputElement->value().utf8().data()); inputElement 1413 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1416 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("", inputElement->value().utf8().data()); inputElement 1418 Source/web/tests/WebViewTest.cpp inputElement = toHTMLInputElement(document->getElementById("week")); inputElement 1419 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1422 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("1970-W01", inputElement->value().utf8().data()); inputElement 1424 Source/web/tests/WebViewTest.cpp openDateTimeChooser(webViewImpl, inputElement); inputElement 1427 Source/web/tests/WebViewTest.cpp EXPECT_STREQ("", inputElement->value().utf8().data());