HomeSort by relevance Sort by last modified time
    Searched defs:element (Results 376 - 400 of 1193) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/test/chromedriver/
element_util.cc 24 const char kElementKey[] = "ELEMENT";
113 message = "element is not clickable";
197 return Status(kUnknownError, "failed to get border width of element");
206 base::DictionaryValue* element = new base::DictionaryValue(); local
207 element->SetString(kElementKey, element_id);
208 return element;
356 "function (element) {"
357 " var map = element.parentElement;"
381 return Status(kUnknownError, "no element reference returned by script");
460 return Status(kUnknownError, "failed to get element tag name")
    [all...]
  /external/chromium_org/content/browser/android/java/
gin_java_script_to_java_types_coercion.cc 326 // Sets the specified element of the supplied array to the value of the
463 jvalue element = CoerceJavaScriptValueToJavaValue( local
465 SetArrayElement(env, result, target_inner_type, i, element);
472 ReleaseJavaValueIfRequired(env, &element, target_inner_type);
536 jvalue element = CoerceJavaScriptValueToJavaValue( local
538 SetArrayElement(env, result, target_inner_type, i, element);
545 ReleaseJavaValueIfRequired(env, &element, target_inner_type);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
JellyBeanAccessibilityInjector.java 136 final String element = arguments.getString( local
138 mAccessibilityJSONObject.accumulate("element", element);
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_complete.cc 115 // the root document element by posting a generic notification that
357 blink::WebElement element = node.to<blink::WebElement>(); local
359 blink::toWebInputElement(&element);
  /external/chromium_org/gpu/command_buffer/service/
buffer_manager.cc 161 const T* element = reinterpret_cast<const T*>( local
163 const T* end = element + count;
164 for (; element < end; ++element) {
165 if (*element > max_value) {
166 max_value = *element;
  /external/chromium_org/sandbox/linux/services/
android_x86_64_ucontext.h 23 uint32_t element[4]; member in struct:_libc_xmmreg
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WindowShell.cpp 434 Element* element = items->item(0); local
435 ASSERT(element);
437 if (isHTMLIFrameElement(*element) && (frame = toHTMLIFrameElement(*element).contentFrame()))
439 return toV8(element, creationContext, isolate);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.cpp 444 bool element = false; // pseudo-element local
468 element = true;
543 else if (m_match == PseudoClass && element) {
548 } else if (m_match == PseudoElement && !element)
ElementRuleCollector.cpp 121 static bool rulesApplicableInCurrentTreeScope(const Element* element, const ContainerNode* scopingNode, SelectorChecker::BehaviorAtBoundary behaviorAtBoundary, bool elementApplyAuthorStyles)
123 TreeScope& treeScope = element->treeScope();
126 // b) element is allowed to apply author rules
132 // d) the rules comes from a scoped style sheet within an active shadow root whose host is the given element
133 if (SelectorChecker::isHostInItsShadowTree(*element, behaviorAtBoundary, scopingNode))
141 ASSERT(m_context.element());
143 Element& element = *m_context.element(); local
    [all...]
SelectorChecker.h 32 #include "core/dom/Element.h"
39 class Element;
64 SelectorCheckingContext(const CSSSelector& selector, Element* element, VisitedMatchType visitedMatchType)
66 , element(element)
81 Element* element; member in struct:WebCore::SelectorChecker::SelectorCheckingContext
82 Element* previousElement;
114 static bool tagMatches(const Element&, const QualifiedName&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolverState.h 33 #include "core/dom/Element.h"
48 StyleResolverState(Document&, Element*, RenderStyle* parentStyle = 0);
51 // In FontFaceSet and CanvasRenderingContext2D, we don't have an element to grab the document from.
55 Element* element() const { return m_elementContext.element(); } function in class:WebCore::StyleResolverState
140 // m_style is the primary output for each element's style resolve.
145 // m_parentStyle is not always just element->parentNode()->style()
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.cpp 44 typedef Element* OutputType;
46 ALWAYS_INLINE static void appendElement(OutputType& output, Element& element)
49 output = &element;
56 ALWAYS_INLINE static void appendElement(OutputType& output, Node& element)
58 output.append(&element);
75 Element* next()
77 Element* current = m_currentElement;
87 Element* nextInternal(Element* element
215 Element* element = rootNode.treeScope().getElementById(selector->value()); local
293 Element& element = *traverseRoots.next(); local
392 Element* element = toElement(node); local
434 Element& element = *elements[i]; local
445 Element* element = rootNode.treeScope().getElementById(idToMatch); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyBlockElementCommand.cpp 114 RefPtrWillBeRawPtr<Element> blockquote = createBlockElement();
116 RefPtrWillBeRawPtr<Element> placeholder = createBreakElement(document());
122 RefPtrWillBeRawPtr<Element> blockquoteForNextIndent = nullptr;
283 PassRefPtrWillBeRawPtr<Element> ApplyBlockElementCommand::createBlockElement() const
285 RefPtrWillBeRawPtr<Element> element = createHTMLElement(document(), m_tagName); local
287 element->setAttribute(styleAttr, m_inlineStyle);
288 return element.release();
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormAssociatedElement.cpp 79 HTMLElement* element = toHTMLElement(this); local
80 if (element->fastHasAttribute(formAttr))
92 HTMLElement* element = toHTMLElement(this);
93 if (element->fastHasAttribute(formAttr))
99 HTMLElement* element = toHTMLElement(this); local
100 if (insertionPoint->inDocument() && element->fastHasAttribute(formAttr))
102 // If the form and element are both in the same tree, preserve the connection to the form.
104 if (m_form && element->highestAncestorOrSelf() != m_form->highestAncestorOrSelf())
108 HTMLFormElement* FormAssociatedElement::findAssociatedForm(const HTMLElement* element)
110 const AtomicString& formId(element->fastGetAttribute(formAttr))
180 HTMLElement* element = toHTMLElement(this); local
206 const HTMLElement* element = toHTMLElement(this); local
281 HTMLElement* element = toHTMLElement(this); local
    [all...]
HTMLCollection.cpp 194 inline bool isMatchingElement(const NodeListType&, const Element&);
196 template <> inline bool isMatchingElement(const HTMLCollection& htmlCollection, const Element& element)
206 return toClassCollection(htmlCollection).elementMatches(element);
208 return toTagCollection(htmlCollection).elementMatches(element);
210 return toHTMLTagCollection(htmlCollection).elementMatches(element);
212 return toDocumentNameCollection(htmlCollection).elementMatches(element);
214 return toWindowNameCollection(htmlCollection).elementMatches(element);
220 if (!element.isHTMLElement())
225 return element.hasLocalName(imgTag)
312 Element* element = ElementTraversal::firstChild(nodeList.rootNode()); local
320 Element* element = ElementTraversal::lastChild(nodeList.rootNode()); local
451 Element* element = item(i); local
482 Element* element = item(i); local
    [all...]
HTMLObjectElement.cpp 68 RefPtrWillBeRawPtr<HTMLObjectElement> element = adoptRefWillBeNoop(new HTMLObjectElement(document, form, createdByParser)); local
69 element->ensureUserAgentShadowRoot();
70 return element.release();
189 // Turn the attributes of the <object> element into arrays, but don't override <param> values.
205 // attribute, not by a param element. However, for compatibility, allow the
273 // http://www.whatwg.org/specs/web-apps/current-work/#the-object-element
277 // of what the element contains.
436 for (HTMLElement* element = Traversal<HTMLElement>::firstWithin(*this); element; element = Traversal<HTMLElement>::next(*element, this))
    [all...]
HTMLOptionElement.cpp 65 RefPtrWillBeRawPtr<HTMLOptionElement> element = adoptRefWillBeNoop(new HTMLOptionElement(document)); local
66 element->appendChild(Text::create(document, data.isNull() ? "" : data), exceptionState);
71 element->setValue(value);
73 element->setAttribute(selectedAttr, emptyAtom);
74 element->setSelected(selected);
76 return element.release();
113 // FIXME: The following treats an element with the label attribute set to
114 // the empty string the same as an element with no label attribute at all.
325 if (Element* parent = parentElement())
HTMLTableElement.cpp 80 for (Element* child = ElementTraversal::firstWithin(*this); child; child = ElementTraversal::nextSibling(*child)) {
91 Element* child;
102 for (Element* child = ElementTraversal::firstWithin(*this); child; child = ElementTraversal::nextSibling(*child)) {
113 Element* child;
261 Element* element = ElementTraversal::next(*this, this); local
262 while (element) {
263 element->setNeedsStyleRecalc(LocalStyleChange);
264 if (isHTMLTableCellElement(*element))
265 element = ElementTraversal::nextSkippingChildren(*element, this)
    [all...]
MediaController.cpp 72 void MediaController::addMediaElement(HTMLMediaElement* element)
74 ASSERT(element);
75 ASSERT(!m_mediaElements.contains(element));
77 m_mediaElements.add(element);
78 bringElementUpToSpeed(element);
81 void MediaController::removeMediaElement(HTMLMediaElement* element)
83 ASSERT(element);
84 ASSERT(m_mediaElements.contains(element));
85 m_mediaElements.remove(m_mediaElements.find(element));
176 // Seek each slaved media element to the new playback position relative to the media element timeline
502 HTMLMediaElement* element = *it; local
532 HTMLMediaElement* element = *it; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControlElements.cpp 109 // Suppress the media element activation behavior (toggle play/pause) when
179 // Mapping onto same MediaControlElementType as panel element, since it has similar properties.
198 // Mapping onto same MediaControlElementType as panel element, since it has similar properties.
611 RefPtrWillBeRawPtr<MediaControlTextTrackContainerElement> element = adoptRefWillBeNoop(new MediaControlTextTrackContainerElement(mediaControls)); local
612 element->hide();
613 return element.release();
639 // 1. If the media element is an audio element, or is another playback
645 // 2. Let video be the media element or other playback mechanism.
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 46 #include "core/dom/Element.h"
77 const HTMLMetaElement& element = toHTMLMetaElement(node); local
79 if (element.hasAttributes()) {
80 AttributeCollection attributes = element.attributes();
91 static bool shouldIgnoreElement(const Element& element)
93 return isHTMLScriptElement(element) || isHTMLNoScriptElement(element) || isCharsetSpecifyingNode(element);
109 virtual void appendElement(StringBuilder& out, Element&, Namespaces*) OVERRIDE
224 Element& element = toElement(node); local
    [all...]
PrintContext.cpp 209 int PrintContext::pageNumberForElement(Element* element, const FloatSize& pageSizeInPixels)
211 // Make sure the element is not freed during the layout.
212 RefPtrWillBeRawPtr<Element> protect(element);
213 element->document().updateLayout();
215 RenderBoxModelObject* box = enclosingBoxModelObject(element->renderer());
219 LocalFrame* frame = element->document().frame();
253 Element* element = node->document().findAnchor(name) local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGResources.cpp 76 // Not listed in the definitions is the clipPath element, the SVG spec says though:
77 // The "clipPath" element or any of its children can specify property "clip-path".
90 // Not listed in the definitions is the foreignObject element, but clip-path
96 // symbol (is converted to a svg element, when referenced by use, we can safely ignore it.)
102 bool SVGResources::supportsMarkers(const SVGElement& element)
112 return s_tagList.contains(element.localName());
150 static inline AtomicString targetReferenceFromResource(SVGElement& element)
153 if (isSVGPatternElement(element))
154 target = toSVGPatternElement(element).href()->currentValue()->value();
155 else if (isSVGGradientElement(element))
230 SVGElement* element = toSVGElement(node); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGDocumentExtensions.cpp 52 void SVGDocumentExtensions::addTimeContainer(SVGSVGElement* element)
54 m_timeContainers.add(element);
57 void SVGDocumentExtensions::removeTimeContainer(SVGSVGElement* element)
59 m_timeContainers.remove(element);
110 // In the future we should refactor the use-element to avoid this. See https://webkit.org/b/53704
161 void SVGDocumentExtensions::addPendingResource(const AtomicString& id, Element* element)
163 ASSERT(element);
164 ASSERT(element->inDocument());
172 result.storedValue->value->add(element);
300 Element* element = *firstElement; local
    [all...]
SVGUseElement.cpp 172 // If attributes width and/or height are provided on the 'use' element, then these attributes
174 // the generated 'svg' element will use values of 100% for these attributes.
178 // Spec (<use> on <svg>): If attributes width and/or height are provided on the 'use' element, then these
240 // Spec: "Any 'svg', 'symbol', 'g', graphics element or other 'use' is potentially a template object that can be re-used
241 // (i.e., "instanced") in the SVG document via a 'use' element."
242 // "Graphics Element" is defined as 'circle', 'ellipse', 'image', 'line', 'path', 'polygon', 'polyline', 'rect', 'text'
251 Element* element = toElement(node);
276 return !allowedElementTags.contains<SVGAttributeHashTranslator>(element->tagQName());
324 Element* target = SVGURIReference::targetElementFromIRIString(hrefString(), treeScope(), &id, externalDocu (…)
525 SVGElement* element = toSVGElement(instance); local
537 Element* element = ElementTraversal::firstWithin(subtree); local
    [all...]

Completed in 1310 milliseconds

<<11121314151617181920>>