Searched refs:element (Results 201 - 225 of 1916) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/static/js/
H A Dsearch.js21 var element = google.search.cse.element.getElement('results');
23 element.clearAllResults();
25 element.execute(searchInput.value);
/external/chromium_org/components/autofill/content/renderer/
H A Dpage_click_listener.h19 // Notification that |element| was clicked.
20 // |was_focused| is true if |element| had focus BEFORE the click.
22 const blink::WebFormControlElement& element,
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXMenuListOption.cpp39 void AXMenuListOption::setElement(HTMLElement* element) argument
41 ASSERT_ARG(element, isHTMLOptionElement(element));
42 m_element = element;
52 // isDisabledFormControl() returns true if the parent <select> element is disabled,
H A DAXProgressIndicator.cpp52 if (element()->position() >= 0)
53 return narrowPrecisionToFloat(element()->value());
63 return narrowPrecisionToFloat(element()->max());
74 HTMLProgressElement* AXProgressIndicator::element() const function in class:blink::AXProgressIndicator
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementCallbackQueue.cpp36 PassOwnPtrWillBeRawPtr<CustomElementCallbackQueue> CustomElementCallbackQueue::create(PassRefPtrWillBeRawPtr<Element> element) argument
38 return adoptPtrWillBeNoop(new CustomElementCallbackQueue(element));
41 CustomElementCallbackQueue::CustomElementCallbackQueue(PassRefPtrWillBeRawPtr<Element> element) argument
42 : m_element(element)
H A DCustomElementMicrotaskResolutionStep.cpp39 PassOwnPtrWillBeRawPtr<CustomElementMicrotaskResolutionStep> CustomElementMicrotaskResolutionStep::create(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> context, PassRefPtrWillBeRawPtr<Element> element, const CustomElementDescriptor& descriptor) argument
41 return adoptPtrWillBeNoop(new CustomElementMicrotaskResolutionStep(context, element, descriptor));
44 CustomElementMicrotaskResolutionStep::CustomElementMicrotaskResolutionStep(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext> context, PassRefPtrWillBeRawPtr<Element> element, const CustomElementDescriptor& descriptor) argument
46 , m_element(element)
H A DCustomElementObserver.h59 virtual void elementWasDestroyed(Element* element) { unobserve(element); } argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceFilterPrimitive.cpp47 ASSERT(element());
48 if (isSVGFEFloodElement(*element())) {
53 } else if (isSVGFEDiffuseLightingElement(*element()) || isSVGFESpecularLightingElement(*element())) {
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegArcAbs.h32 static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
34 return adoptRef(new SVGPathSegArcAbs(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
38 SVGPathSegArcAbs(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
39 : SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag) { }
H A DSVGPathSegArcRel.h32 static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
34 return adoptRef(new SVGPathSegArcRel(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag));
38 SVGPathSegArcRel(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
39 : SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag) { }
H A DSVGPathSegCurvetoCubicAbs.h32 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, x, y, x1, y1, x2, y2));
38 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
H A DSVGPathSegCurvetoCubicRel.h32 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicRel(element, x, y, x1, y1, x2, y2));
38 SVGPathSegCurvetoCubicRel(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2) argument
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DRootView.js13 this.element.classList.add("root-view");
14 this.element.setAttribute("spellcheck", false);
30 this.element.style.marginRight = right + "px";
32 this.element.style.marginBottom = bottom + "px";
/external/droiddriver/src/com/google/android/droiddriver/actions/
H A DAction.java30 * @param element the Ui element to perform the action on
35 boolean perform(UiElement element); argument
/external/lldb/test/example/
H A DTestSequenceFunctions.py24 element = random.choice(self.seq)
25 self.assertTrue(element in self.seq)
29 for element in random.sample(self.seq, 5):
30 self.assertTrue(element in self.seq)
/external/svox/pico/tts/
H A Dsvox_ssml_parser.h83 static void starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes);
89 static void endtagHandler(void* data, const XML_Char* element);
97 private: /* element handlers */
101 Handles start of element, called by starttagHandler.
103 void startElement(const XML_Char* element, const XML_Char** attributes);
107 Handles end of element, called by endtagHandler.
109 void endElement(const XML_Char* element);
113 Handles text element, called by textHandler.
/external/chromium_org/third_party/WebKit/Source/web/
H A DFullscreenController.cpp64 RefPtrWillBeRawPtr<Element> element = m_provisionalFullScreenElement.release();
65 Document& document = element->document();
80 Fullscreen::from(document).didEnterFullScreenForElement(element.get());
81 ASSERT(Fullscreen::currentFullScreenElementFrom(document) == element);
84 if (isHTMLMediaElement(element)) {
85 HTMLMediaElement* mediaElement = toHTMLMediaElement(element);
130 void FullscreenController::enterFullScreenForElement(Element* element) argument
132 // We are already transitioning to fullscreen for a different element.
134 m_provisionalFullScreenElement = element;
140 m_provisionalFullScreenElement = element;
152 exitFullScreenForElement(Element* element) argument
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRewriteRuleTokenStream.h37 /** Create a stream with one element */
40 element:(id) oneElement;
51 element:(id)element;
64 - (id<ANTLRTree>) toTree:(id<ANTLRToken>)element;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRewriteRuleTokenStream.h37 /** Create a stream with one element */
40 element:(id) oneElement;
51 element:(id)element;
64 - (id<ANTLRTree>) toTree:(id<ANTLRToken>)element;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRewriteRuleTokenStream.h37 /** Create a stream with one element */
40 element:(id) oneElement;
51 element:(id)element;
64 - (id<ANTLRTree>) toTree:(id<ANTLRToken>)element;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRRewriteRuleNodeStream.h37 + (ANTLRRewriteRuleNodeStream *) newANTLRRewriteRuleNodeStream:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
41 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription element:(id)anElement;
45 - (id) toTree:(id<ANTLRBaseTree>)element;
46 - (id) dup:(id)element;
H A DANTLRRewriteRuleTokenStream.h37 /** Create a stream with one element */
40 element:(id) oneElement;
51 element:(id)element;
64 - (id<ANTLRBaseTree>) toTree:(id<ANTLRToken>)element;
/external/chromium_org/remoting/webapp/unittests/
H A Dmenu_button_unittest.js64 var element = document.getElementById('menu-option-1');
65 element.click();
79 var element = document.getElementById('menu-option-1');
80 var style = window.getComputedStyle(element);
82 remoting.MenuButton.select(element, true);
83 style = window.getComputedStyle(element);
85 remoting.MenuButton.select(element, false);
86 style = window.getComputedStyle(element);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImageLoader.h32 static PassOwnPtrWillBeRawPtr<HTMLImageLoader> create(Element* element) argument
34 return adoptPtrWillBeNoop(new HTMLImageLoader(element));
H A DLabelableElement.h40 // LabelableElement represents "labelable element" defined in the HTML
57 inline bool isLabelableElement(const HTMLElement& element) argument
59 return element.isLabelable();

Completed in 7994 milliseconds

1234567891011>>