HomeSort by relevance Sort by last modified time
    Searched refs:element (Results 1 - 25 of 3120) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
DocumentNameCollection.cpp 19 bool DocumentNameCollection::elementMatches(const HTMLElement& element) const
24 if (isHTMLFormElement(element) || isHTMLIFrameElement(element) || (isHTMLEmbedElement(element) && toHTMLEmbedElement(element).isExposed()))
25 return element.getNameAttribute() == m_name;
26 if (isHTMLAppletElement(element) || (isHTMLObjectElement(element) && toHTMLObjectElement(element).isExposed()))
27 return element.getNameAttribute() == m_name || element.getIdAttribute() == m_name
    [all...]
WindowNameCollection.cpp 17 bool WindowNameCollection::elementMatches(const Element& element) const
21 if (isHTMLImageElement(element)
22 || isHTMLFormElement(element)
23 || isHTMLAppletElement(element)
24 || isHTMLEmbedElement(element)
25 || isHTMLObjectElement(element)) {
26 if (element.getNameAttribute() == m_name)
29 return element.getIdAttribute() == m_name;
  /libcore/luni/src/main/java/java/lang/annotation/
AnnotationTypeMismatchException.java 32 private Method element; field in class:AnnotationTypeMismatchException
37 * Constructs an instance for the given type element and the type found.
39 * @param element
40 * the annotation type element.
46 public AnnotationTypeMismatchException(Method element, String foundType) {
47 super("The annotation element " + element + " doesn't match the type " + foundType);
48 this.element = element;
57 public Method element() { method in class:AnnotationTypeMismatchException
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/validators/
DefaultAccessibilityValidator.java 31 public boolean isApplicable(UiElement element, Action action) {
36 public String validate(UiElement element, Action action) {
37 return isSpeakingNode(element) ? null : "TalkBack cannot speak about it";
41 private static boolean isAccessibilityFocusable(UiElement element) {
42 if (isActionableForAccessibility(element)) {
46 if (isTopLevelScrollItem(element) && (isSpeakingNode(element))) {
52 private static boolean isTopLevelScrollItem(UiElement element) {
53 UiElement parent = element.getParent();
57 private static boolean isActionableForAccessibility(UiElement element) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementFullscreen.cpp 12 void ElementFullscreen::requestFullscreen(Element& element)
14 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen::UnprefixedRequest);
17 void ElementFullscreen::webkitRequestFullscreen(Element& element)
19 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen::PrefixedRequest);
22 void ElementFullscreen::webkitRequestFullScreen(Element& element, unsigned short flags
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SingletonImmutableList.java 33 E element; field in class:SingletonImmutableList
35 SingletonImmutableList(E element) {
36 super(Collections.singletonList(checkNotNull(element)));
37 this.element = element;
SingletonImmutableSet.java 35 E element; field in class:SingletonImmutableSet
37 SingletonImmutableSet(E element) {
38 super(Collections.singleton(checkNotNull(element)));
39 this.element = element;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
SubmitInputType.cpp 45 PassRefPtrWillBeRawPtr<InputType> SubmitInputType::create(HTMLInputElement& element)
47 return adoptRefWillBeNoop(new SubmitInputType(element));
57 if (!element().isActivatedSubmit())
59 encoding.appendData(element().name(), element().valueWithDefault());
70 RefPtrWillBeRawPtr<HTMLInputElement> element(this->element());
71 if (element->isDisabledFormControl() || !element->form())
73 element->setActivatedSubmit(true)
    [all...]
BaseButtonInputType.cpp 47 ASSERT(element().userAgentShadowRoot());
48 element().userAgentShadowRoot()->appendChild(Text::create(element().document(), element().valueWithDefault()));
53 toText(element().userAgentShadowRoot()->firstChild())->setData(element().valueWithDefault());
69 return new RenderButton(&element());
79 element().setAttribute(valueAttr, AtomicString(sanitizedValue));
  /external/chromium_org/third_party/WebKit/public/web/
WebSelectElement.h 42 // Provides readonly access to some properties of a DOM select element node.
46 WebSelectElement(const WebSelectElement& element) : WebFormControlElement(element) { }
48 WebSelectElement& operator=(const WebSelectElement& element)
50 WebFormControlElement::assign(element);
53 void assign(const WebSelectElement& element) { WebFormControlElement::assign(element); }
WebTextAreaElement.h 40 // Provides access to some properties of a DOM textarea element node.
44 WebTextAreaElement(const WebTextAreaElement& element) : WebFormControlElement(element) { }
46 WebTextAreaElement& operator=(const WebTextAreaElement& element)
48 WebFormControlElement::assign(element);
51 void assign(const WebTextAreaElement& element) { WebFormControlElement::assign(element); }
  /external/chromium_org/tools/grit/grit/node/
empty.py 31 '''The <includes> element.'''
37 '''The <messages> element.'''
43 '''The <structures> element.'''
50 '''The <translations> element.'''
56 '''The <outputs> element.'''
62 '''The <identifiers> element.'''
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderWordBreak.cpp 34 RenderWordBreak::RenderWordBreak(HTMLElement* element)
35 : RenderText(element, StringImpl::empty())
  /external/chromium_org/third_party/skia/gm/rebaseline_server/static/
utils.js 2 element = $(".results-header-actions");
3 var pos = element.position();
7 element.addClass("sticky");
9 element.removeClass("sticky");
  /external/chromium_org/chrome/browser/metrics/variations/
generated_resources_map_lookup.cc 13 const uint32_t* element = std::lower_bound(kResourceHashes, kEnd, hash); local
15 if (element == kEnd || *element != hash)
17 return kResourceIndices[element - kResourceHashes];
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegClosePath.h 31 static PassRefPtr<SVGPathSegClosePath> create(SVGPathElement* element)
33 return adoptRef(new SVGPathSegClosePath(element));
37 SVGPathSegClosePath(SVGPathElement* element)
38 : SVGPathSegWithContext(element) { }
SVGPathSegLinetoHorizontalAbs.h 32 static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, float x)
34 return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, x));
38 SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, float x)
39 : SVGPathSegLinetoHorizontal(element, x) { }
SVGPathSegLinetoHorizontalRel.h 32 static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, float x)
34 return adoptRef(new SVGPathSegLinetoHorizontalRel(element, x));
38 SVGPathSegLinetoHorizontalRel(SVGPathElement* element, float x)
39 : SVGPathSegLinetoHorizontal(element, x) { }
SVGPathSegLinetoVerticalAbs.h 32 static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, float y)
34 return adoptRef(new SVGPathSegLinetoVerticalAbs(element, y));
38 SVGPathSegLinetoVerticalAbs(SVGPathElement* element, float y)
39 : SVGPathSegLinetoVertical(element, y) { }
SVGPathSegLinetoVerticalRel.h 32 static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, float y)
34 return adoptRef(new SVGPathSegLinetoVerticalRel(element, y));
38 SVGPathSegLinetoVerticalRel(SVGPathElement* element, float y)
39 : SVGPathSegLinetoVertical(element, y) { }
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextAreaElement.cpp 41 WebTextAreaElement::WebTextAreaElement(const PassRefPtrWillBeRawPtr<HTMLTextAreaElement>& element)
42 : WebFormControlElement(element)
46 WebTextAreaElement& WebTextAreaElement::operator=(const PassRefPtrWillBeRawPtr<HTMLTextAreaElement>& element)
48 m_private = element;
  /external/droiddriver/src/com/google/android/droiddriver/actions/
EventAction.java 32 public boolean perform(UiElement element) {
33 return perform(element.getInjector(), element);
40 * @param element the UiElement to perform the action on
45 protected abstract boolean perform(InputInjector injector, UiElement element);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
ToolTip.js 4 element = document.getElementById(elementId);
5 if(element != null) {
6 currentClass = element.className;
8 element.className = 'hidden_tooltip';
14 element = document.getElementById(elementId);
15 if(element != null) {
16 currentClass = element.className;
18 element.className = 'visible_tooltip';
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetSetCountUnconditionallyTester.java 31 @Override void setCountCheckReturnValue(E element, int count) {
33 getMultiset().count(element), setCount(element, count));
36 @Override void setCountNoCheckReturnValue(E element, int count) {
37 setCount(element, count);
40 private int setCount(E element, int count) {
41 return getMultiset().setCount(element, count);
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementObserver.cpp 34 #include "core/dom/Element.h"
39 // element at a time.
40 typedef WillBeHeapHashMap<RawPtrWillBeWeakMember<Element>, RawPtrWillBeMember<CustomElementObserver> > ElementObserverMap;
48 void CustomElementObserver::notifyElementDidFinishParsingChildren(Element* element)
50 ElementObserverMap::iterator it = elementObservers().find(element);
53 it->value->elementDidFinishParsingChildren(element);
56 void CustomElementObserver::notifyElementWasDestroyed(Element* element)
58 ElementObserverMap::iterator it = elementObservers().find(element);
    [all...]

Completed in 3701 milliseconds

1 2 3 4 5 6 7 8 91011>>