/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
ResetInputType.cpp | 44 PassRefPtrWillBeRawPtr<InputType> ResetInputType::create(HTMLInputElement& element) 46 return adoptRefWillBeNoop(new ResetInputType(element)); 61 if (element().isDisabledFormControl() || !element().form()) 63 element().form()->reset();
|
ImageInputType.cpp | 43 inline ImageInputType::ImageInputType(HTMLInputElement& element) 44 : BaseButtonInputType(element) 48 PassRefPtrWillBeRawPtr<InputType> ImageInputType::create(HTMLInputElement& element) 50 return adoptRefWillBeNoop(new ImageInputType(element)); 65 if (!element().isActivatedSubmit()) 67 const AtomicString& name = element().name(); 79 if (!element().value().isEmpty()) 80 encoding.appendData(name, element().value()); 110 RefPtrWillBeRawPtr<HTMLInputElement> element(this->element()); [all...] |
ButtonInputType.cpp | 39 PassRefPtrWillBeRawPtr<InputType> ButtonInputType::create(HTMLInputElement& element) 41 return adoptRefWillBeNoop(new ButtonInputType(element));
|
HiddenInputType.cpp | 46 PassRefPtrWillBeRawPtr<InputType> HiddenInputType::create(HTMLInputElement& element) 48 return adoptRefWillBeNoop(new HiddenInputType(element)); 62 return element().valueAttributeWasUpdatedAfterParsing() ? FormControlState(element().value()) : FormControlState(); 67 element().setAttribute(valueAttr, AtomicString(state[0])); 97 element().setAttribute(valueAttr, AtomicString(sanitizedValue)); 102 if (equalIgnoringCase(element().name(), "_charset_")) { 103 encoding.appendData(element().name(), String(encoding.encoding().name()));
|
/frameworks/rs/driver/runtime/ |
rs_element.c | 5 * Element 9 Element_t *element = (Element_t *)e.p; local 10 if (element == NULL) { 13 return element->mHal.state.fieldsCount; 18 Element_t *element = (Element_t *)e.p; local 19 if (element == NULL || index >= element->mHal.state.fieldsCount) { 23 rs_element returnElem = {element->mHal.state.fields[index]}; 29 Element_t *element = (Element_t *)e.p; local 30 if (element == NULL || index >= element->mHal.state.fieldsCount) 38 Element_t *element = (Element_t *)e.p; local 60 Element_t *element = (Element_t *)e.p; local 69 Element_t *element = (Element_t *)e.p; local 78 Element_t *element = (Element_t *)e.p; local 87 Element_t *element = (Element_t *)e.p; local 96 Element_t *element = (Element_t *)e.p; local 105 Element_t *element = (Element_t *)e.p; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
SharedStyleFinder.cpp | 58 bool SharedStyleFinder::canShareStyleWithControl(Element& candidate) const 60 if (!isHTMLInputElement(candidate) || !isHTMLInputElement(element())) 64 HTMLInputElement& thisInput = toHTMLInputElement(element()); 75 if (candidate.isDisabledFormControl() != element().isDisabledFormControl()) 78 if (candidate.isDefaultButtonForForm() != element().isDefaultButtonForForm()) 84 if (willValidate != element().willValidate()) 87 if (willValidate && (candidate.isValidFormControlElement() != element().isValidFormControlElement())) 90 if (candidate.isInRange() != element().isInRange()) 93 if (candidate.isOutOfRange() != element().isOutOfRange()) 110 static inline const AtomicString& typeAttributeValue(const Element& element [all...] |
/external/chromium_org/third_party/WebKit/public/web/ |
WebLabelElement.h | 44 // Provides readonly access to some properties of a DOM label element node. 48 WebLabelElement(const WebLabelElement& element) : WebElement(element) { } 50 WebLabelElement& operator=(const WebLabelElement& element) 52 WebElement::assign(element); 56 void assign(const WebLabelElement& element) { WebElement::assign(element); }
|
WebOptionElement.h | 41 // Provides readonly access to some properties of a DOM option element node. 45 WebOptionElement(const WebOptionElement& element) : WebElement(element) { } 47 WebOptionElement& operator=(const WebOptionElement& element) 49 WebElement::assign(element); 52 void assign(const WebOptionElement& element) { WebElement::assign(element); }
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
VisitedLinkState.cpp | 40 static inline const AtomicString& linkAttribute(const Element& element) 42 ASSERT(element.isLink()); 43 if (element.isHTMLElement()) 44 return element.fastGetAttribute(HTMLNames::hrefAttr); 45 ASSERT(element.isSVGElement()); 46 return element.getAttribute(XLinkNames::hrefAttr); 49 static inline LinkHash linkHashForElement(const Element& element, const AtomicString& attribute = AtomicString()) 51 ASSERT(attribute.isNull() || linkAttribute(element) == attribute) [all...] |
StyleElement.cpp | 29 #include "core/dom/Element.h" 40 static bool isCSS(Element* element, const AtomicString& type) 42 return type.isEmpty() || (element->isHTMLElement() ? equalIgnoringCase(type, "text/css") : (type == "text/css")); 63 void StyleElement::processStyleSheet(Document& document, Element* element) 66 ASSERT(element); 67 ASSERT(element->inDocument()); 70 document.styleEngine()->addStyleSheetCandidateNode(element, m_createdByParser); 74 process(element); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
AndroidJUnitPropertyTester.java | 54 String.format("Element must be of type IAdaptable, is %s", //$NON-NLS-1$ 58 IJavaElement element; local 60 element = (IJavaElement) receiver; 62 element = JavaCore.create((IResource) receiver); 63 if (element == null) { 67 element= (IJavaElement) ((IAdaptable) receiver).getAdapter(IJavaElement.class); 68 if (element == null) { 71 element = JavaCore.create(resource); 72 if (element == null) { 78 return isJUnitTest(element); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/ |
CustomElementRegistrationContext.cpp | 38 #include "core/dom/Element.h" 71 PassRefPtrWillBeRawPtr<Element> CustomElementRegistrationContext::createCustomTagElement(Document& document, const QualifiedName& tagName) 75 RefPtrWillBeRawPtr<Element> element; local 78 element = HTMLElement::create(tagName, document); 80 element = SVGUnknownElement::create(tagName, document); 83 return Element::create(tagName, &document); 86 element->setCustomElementState(Element::WaitingForUpgrade); 87 resolveOrScheduleResolution(element.get(), nullAtom) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGFontFaceSrcElement.cpp | 47 for (SVGElement* element = Traversal<SVGElement>::firstChild(*this); element; element = Traversal<SVGElement>::nextSibling(*element)) { 49 if (isSVGFontFaceUriElement(*element)) 50 srcValue = toSVGFontFaceUriElement(*element).srcValue(); 51 else if (isSVGFontFaceNameElement(*element)) 52 srcValue = toSVGFontFaceNameElement(*element).srcValue();
|
SVGPathSegCurvetoQuadraticSmoothAbs.h | 32 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, float x, float y) 34 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, x, y)); 38 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, float x, float y) 39 : SVGPathSegSingleCoordinate(element, x, y) { }
|
SVGPathSegCurvetoQuadraticSmoothRel.h | 32 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, float x, float y) 34 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, x, y)); 38 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, float x, float y) 39 : SVGPathSegSingleCoordinate(element, x, y) { }
|
SVGPathSegLinetoAbs.h | 32 static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, float x, float y) 34 return adoptRef(new SVGPathSegLinetoAbs(element, x, y)); 38 SVGPathSegLinetoAbs(SVGPathElement* element, float x, float y) 39 : SVGPathSegSingleCoordinate(element, x, y) { }
|
SVGPathSegLinetoRel.h | 32 static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, float x, float y) 34 return adoptRef(new SVGPathSegLinetoRel(element, x, y)); 38 SVGPathSegLinetoRel(SVGPathElement* element, float x, float y) 39 : SVGPathSegSingleCoordinate(element, x, y) { }
|
SVGPathSegMovetoAbs.h | 32 static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, float x, float y) 34 return adoptRef(new SVGPathSegMovetoAbs(element, x, y)); 38 SVGPathSegMovetoAbs(SVGPathElement* element, float x, float y) 39 : SVGPathSegSingleCoordinate(element, x, y) { }
|
SVGPathSegMovetoRel.h | 32 static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, float x, float y) 34 return adoptRef(new SVGPathSegMovetoRel(element, x, y)); 38 SVGPathSegMovetoRel(SVGPathElement* element, float x, float y) 39 : SVGPathSegSingleCoordinate(element, x, y) { }
|
/external/droiddriver/src/com/google/android/droiddriver/actions/ |
KeyAction.java | 33 protected void maybeCheckFocused(UiElement element) { 34 if (checkFocused && element != null && !element.isFocused()) { 35 throw new ActionException(element + " is not focused");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/ |
ResourceLabelProvider.java | 65 public Image getImage(Object element) { 74 public String getText(Object element) { 75 return getColumnText(element, 0); 89 public boolean isLabelProperty(Object element, String property) { 99 public Image getColumnImage(Object element, int columnIndex) { 101 if (element instanceof ResourceItem) { 102 ResourceItem item = (ResourceItem)element; 112 public String getColumnText(Object element, int columnIndex) { 115 if (element instanceof ResourceType) { 116 return ((ResourceType)element).getDisplayName() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
LabelsNodeList.cpp | 28 #include "core/dom/Element.h" 48 bool LabelsNodeList::elementMatches(const Element& element) const 50 return isHTMLLabelElement(element) && toHTMLLabelElement(element).control() == ownerNode();
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderFrame.cpp | 40 HTMLFrameElement* element = toHTMLFrameElement(node()); local 41 return FrameEdgeInfo(element->noResize(), element->hasFrameBorder());
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementHasAttribute.java | 3 import org.w3c.dom.Element; 11 * specified on this element or has a default value, false otherwise Invoke the 50 Element element; local 53 element = doc.getDocumentElement(); 54 state = element.hasAttribute(""); 61 // Element element; 66 // element = (Element) elementList.item(0) 73 Element element; local 88 Element element; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
ElementAnimation.h | 40 #include "core/dom/Element.h" 50 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, const Dictionary& timingInputDictionary) 52 return animateInternal(element, effect, TimingInput::convert(timingInputDictionary)); 55 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect, double duration) 57 return animateInternal(element, effect, TimingInput::convert(duration)); 60 static AnimationPlayer* animate(Element& element, PassRefPtrWillBeRawPtr<AnimationEffect> effect) 62 return animateInternal(element, effect, Timing()) [all...] |