Searched refs:element (Results 101 - 125 of 1916) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTableSectionElement.h53 inline bool isHTMLTableSectionElement(const HTMLElement& element) argument
55 return element.hasTagName(HTMLNames::tbodyTag) || element.hasTagName(HTMLNames::tfootTag) || element.hasTagName(HTMLNames::theadTag);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DTextInputType.cpp42 PassRefPtrWillBeRawPtr<InputType> TextInputType::create(HTMLInputElement& element) argument
44 return adoptRefWillBeNoop(new TextInputType(element));
50 if (element().fastHasAttribute(maxlengthAttr))
52 const AtomicString& type = element().fastGetAttribute(typeAttr);
H A DBaseClickableWithKeyInputType.cpp42 void BaseClickableWithKeyInputType::handleKeydownEvent(HTMLInputElement& element, KeyboardEvent* event) argument
46 element.setActive(true);
52 void BaseClickableWithKeyInputType::handleKeypressEvent(HTMLInputElement& element, KeyboardEvent* event) argument
56 element.dispatchSimulatedClick(event);
76 void BaseClickableWithKeyInputType::accessKeyAction(HTMLInputElement& element, bool sendMouseEvents) argument
78 element.dispatchSimulatedClick(0, sendMouseEvents ? SendMouseUpDownEvents : SendNoEvents);
83 handleKeydownEvent(element(), event);
88 handleKeypressEvent(element(), event);
99 accessKeyAction(element(), sendMouseEvents);
H A DTextFieldInputType.cpp103 RefPtrWillBeRawPtr<DataListIndicatorElement> element = adoptRefWillBeNoop(new DataListIndicatorElement(document)); local
104 element->setShadowPseudoId(AtomicString("-webkit-calendar-picker-indicator", AtomicString::ConstructFromLiteral));
105 element->setAttribute(idAttr, ShadowElementNames::pickerIndicator());
106 return element.release();
111 TextFieldInputType::TextFieldInputType(HTMLInputElement& element) argument
112 : InputType(element)
126 return toSpinButtonElement(element().userAgentShadowRoot()->getElementById(ShadowElementNames::spinButton()));
141 return element().isRequired() && value.isEmpty();
151 // Grab this input element to keep reference even if JS event handler
153 RefPtrWillBeRawPtr<HTMLInputElement> input(element());
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegCurvetoCubicSmoothAbs.h32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, float x, float y, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, float x, float y, float x2, float y2) argument
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
H A DSVGPathSegCurvetoCubicSmoothRel.h32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, float x, float y, float x2, float y2) argument
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, float x, float y, float x2, float y2) argument
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
H A DSVGPathSegCurvetoQuadraticAbs.h32 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, float x, float y, float x1, float y1) argument
34 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, x, y, x1, y1));
38 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, float x, float y, float x1, float y1) argument
39 : SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { }
H A DSVGPathSegCurvetoQuadraticRel.h32 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, float x, float y, float x1, float y1) argument
34 return adoptRef(new SVGPathSegCurvetoQuadraticRel(element, x, y, x1, y1));
38 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, float x, float y, float x1, float y1) argument
39 : SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { }
H A DSVGPathSegCurvetoQuadraticSmoothAbs.h32 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, float x, float y) argument
34 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, x, y));
38 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, float x, float y) argument
39 : SVGPathSegSingleCoordinate(element, x, y) { }
H A DSVGPathSegCurvetoQuadraticSmoothRel.h32 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, float x, float y) argument
34 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, x, y));
38 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, float x, float y) argument
39 : SVGPathSegSingleCoordinate(element, x, y) { }
H A DSVGPathSegLinetoAbs.h32 static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, float x, float y) argument
34 return adoptRef(new SVGPathSegLinetoAbs(element, x, y));
38 SVGPathSegLinetoAbs(SVGPathElement* element, float x, float y) argument
39 : SVGPathSegSingleCoordinate(element, x, y) { }
H A DSVGPathSegLinetoRel.h32 static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, float x, float y) argument
34 return adoptRef(new SVGPathSegLinetoRel(element, x, y));
38 SVGPathSegLinetoRel(SVGPathElement* element, float x, float y) argument
39 : SVGPathSegSingleCoordinate(element, x, y) { }
H A DSVGPathSegMovetoAbs.h32 static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, float x, float y) argument
34 return adoptRef(new SVGPathSegMovetoAbs(element, x, y));
38 SVGPathSegMovetoAbs(SVGPathElement* element, float x, float y) argument
39 : SVGPathSegSingleCoordinate(element, x, y) { }
H A DSVGPathSegMovetoRel.h32 static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, float x, float y) argument
34 return adoptRef(new SVGPathSegMovetoRel(element, x, y));
38 SVGPathSegMovetoRel(SVGPathElement* element, float x, float y) argument
39 : SVGPathSegSingleCoordinate(element, x, y) { }
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSelectElement.cpp52 WebSelectElement::WebSelectElement(const PassRefPtrWillBeRawPtr<HTMLSelectElement>& element) argument
53 : WebFormControlElement(element)
57 WebSelectElement& WebSelectElement::operator=(const PassRefPtrWillBeRawPtr<HTMLSelectElement>& element) argument
59 m_private = element;
/external/chromium_org/third_party/skia/tools/lua/
H A Ddump_clipstack_at_restore.lua17 local element = clipstack[i];
18 io.write("\t", element["op"], ", ", element["type"], ", aa:", tostring(element["aa"]))
19 if (element["type"] == "path") then
20 io.write(", fill: ", element["path"]:getFillType())
21 io.write(", segments: \"", element["path"]:getSegmentTypes(), "\"")
22 io.write(", convex:", tostring(element["path"]:isConvex()))
/external/droiddriver/src/com/google/android/droiddriver/actions/accessibility/
H A DAccessibilityAction.java35 public boolean perform(UiElement element) { argument
36 return perform(((UiAutomationElement) element).getRawElement(), element);
43 * @param element the UiElement to perform the action on
47 protected abstract boolean perform(AccessibilityNodeInfo node, UiElement element); argument
H A DAccessibilityClickAction.java43 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { argument
44 return SINGLE.perform(element) && SINGLE.perform(element);
54 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { argument
55 if (!element.isLongClickable()) {
56 throw new ActionException(element
57 + " is not long-clickable; maybe there is a clickable element in the same location?");
69 protected boolean perform(AccessibilityNodeInfo node, UiElement element) { argument
70 if (!element.isClickable()) {
71 throw new ActionException(element
[all...]
/external/droiddriver/src/com/google/android/droiddriver/validators/
H A DFirstApplicableValidator.java34 public boolean isApplicable(UiElement element, Action action) { argument
39 public String validate(UiElement element, Action action) { argument
41 if (validator.isApplicable(element, action)) {
42 return validator.validate(element, action);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingListIterator.java42 public void add(E element) { argument
43 delegate().add(element);
67 public void set(E element) { argument
68 delegate().set(element);
H A DSingletonImmutableList.java30 * Implementation of {@link ImmutableList} with exactly one element.
38 final transient E element; field in class:SingletonImmutableList
40 SingletonImmutableList(E element) { argument
41 this.element = checkNotNull(element);
47 return element;
51 return element.equals(object) ? 0 : -1;
55 return Iterators.singletonIterator(element);
59 return element.equals(object) ? 0 : -1;
81 return element;
[all...]
/external/skia/tools/lua/
H A Ddump_clipstack_at_restore.lua17 local element = clipstack[i];
18 io.write("\t", element["op"], ", ", element["type"], ", aa:", tostring(element["aa"]))
19 if (element["type"] == "path") then
20 io.write(", fill: ", element["path"]:getFillType())
21 io.write(", segments: \"", element["path"]:getSegmentTypes(), "\"")
22 io.write(", convex:", tostring(element["path"]:isConvex()))
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DNodeExtension.java19 * A class which represents a common element within the pubsub defined
28 private PubSubElementType element; field in class:NodeExtension
32 * Constructs a <tt>NodeExtension</tt> with an element name specified
35 * @param elem Defines the element name and namespace
40 element = elem;
45 * Constructs a <tt>NodeExtension</tt> with an element name specified
48 * @param elem Defines the element name and namespace
67 return element.getElementName();
72 return element.getNamespace().getXmlns();
/external/chromium_org/chrome/renderer/pepper/
H A Dchrome_pdf_print_client.cc22 return instance->GetContainer()->element();
26 const blink::WebElement& element) {
27 if (element.isNull())
29 blink::WebView* view = element.document().frame()->view();
42 blink::WebElement element = GetWebElement(instance_id); local
43 printing::PrintWebViewHelper* helper = GetPrintWebViewHelper(element);
48 blink::WebElement element = GetWebElement(instance_id); local
49 printing::PrintWebViewHelper* helper = GetPrintWebViewHelper(element);
51 helper->PrintNode(element);
25 GetPrintWebViewHelper( const blink::WebElement& element) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dprototype-1.6.0.3.js1513 function $(element) {
1519 if (Object.isString(element))
1520 element = document.getElementById(element);
1521 return Element.extend(element);
1558 var element = this.Element;
1571 Object.extend(this.Element, element || { });
1572 if (element) this.Element.prototype = element.prototype;
1578 visible: function(element) {
[all...]

Completed in 471 milliseconds

1234567891011>>