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

1 2 3 45 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiModelTreeLabelProvider.java 41 * Returns the element's logo with a fallback on the android logo.
44 public Image getImage(Object element) {
48 if (element instanceof ElementDescriptor) {
49 desc = (ElementDescriptor) element;
50 } else if (element instanceof UiElementNode) {
51 node = (UiElementNode) element;
73 public String getText(Object element) {
74 if (element instanceof ElementDescriptor) {
75 ElementDescriptor desc = (ElementDescriptor) element;
77 } else if (element instanceof UiElementNode)
    [all...]
  /external/chromium_org/chrome/renderer/pepper/
chrome_pdf_print_client.cc 22 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);
  /external/chromium_org/components/autofill/content/renderer/
page_click_listener.h 19 // 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/html/
HTMLTableSectionElement.h 53 inline bool isHTMLTableSectionElement(const HTMLElement& element)
55 return element.hasTagName(HTMLNames::tbodyTag) || element.hasTagName(HTMLNames::tfootTag) || element.hasTagName(HTMLNames::theadTag);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseClickableWithKeyInputType.cpp 42 void BaseClickableWithKeyInputType::handleKeydownEvent(HTMLInputElement& element, KeyboardEvent* event)
46 element.setActive(true);
52 void BaseClickableWithKeyInputType::handleKeypressEvent(HTMLInputElement& element, KeyboardEvent* event)
56 element.dispatchSimulatedClick(event);
76 void BaseClickableWithKeyInputType::accessKeyAction(HTMLInputElement& element, bool sendMouseEvents)
78 element.dispatchSimulatedClick(0, sendMouseEvents ? SendMouseUpDownEvents : SendNoEvents);
83 handleKeydownEvent(element(), event);
88 handleKeypressEvent(element(), event);
99 accessKeyAction(element(), sendMouseEvents);
TextInputType.cpp 42 PassRefPtrWillBeRawPtr<InputType> TextInputType::create(HTMLInputElement& element)
44 return adoptRefWillBeNoop(new TextInputType(element));
50 if (element().fastHasAttribute(maxlengthAttr))
52 const AtomicString& type = element().fastGetAttribute(typeAttr);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegArcAbs.h 32 static PassRefPtr<SVGPathSegArcAbs> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
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)
39 : SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag) { }
SVGPathSegArcRel.h 32 static PassRefPtr<SVGPathSegArcRel> create(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag)
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)
39 : SVGPathSegArc(element, x, y, r1, r2, angle, largeArcFlag, sweepFlag) { }
SVGPathSegCurvetoCubicAbs.h 32 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
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)
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
SVGPathSegCurvetoCubicRel.h 32 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, float x, float y, float x1, float y1, float x2, float y2)
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)
39 : SVGPathSegCurvetoCubic(element, x, y, x1, y1, x2, y2) { }
SVGPathSegCurvetoCubicSmoothAbs.h 32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothAbs> create(SVGPathElement* element, float x, float y, float x2, float y2)
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothAbs(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothAbs(SVGPathElement* element, float x, float y, float x2, float y2)
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
SVGPathSegCurvetoCubicSmoothRel.h 32 static PassRefPtr<SVGPathSegCurvetoCubicSmoothRel> create(SVGPathElement* element, float x, float y, float x2, float y2)
34 return adoptRef(new SVGPathSegCurvetoCubicSmoothRel(element, x, y, x2, y2));
38 SVGPathSegCurvetoCubicSmoothRel(SVGPathElement* element, float x, float y, float x2, float y2)
39 : SVGPathSegCurvetoCubicSmooth(element, x, y, x2, y2) { }
SVGPathSegCurvetoQuadraticAbs.h 32 static PassRefPtr<SVGPathSegCurvetoQuadraticAbs> create(SVGPathElement* element, float x, float y, float x1, float y1)
34 return adoptRef(new SVGPathSegCurvetoQuadraticAbs(element, x, y, x1, y1));
38 SVGPathSegCurvetoQuadraticAbs(SVGPathElement* element, float x, float y, float x1, float y1)
39 : SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { }
SVGPathSegCurvetoQuadraticRel.h 32 static PassRefPtr<SVGPathSegCurvetoQuadraticRel> create(SVGPathElement* element, float x, float y, float x1, float y1)
34 return adoptRef(new SVGPathSegCurvetoQuadraticRel(element, x, y, x1, y1));
38 SVGPathSegCurvetoQuadraticRel(SVGPathElement* element, float x, float y, float x1, float y1)
39 : SVGPathSegCurvetoQuadratic(element, x, y, x1, y1) { }
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
RequestHTMLView.js 41 this.element.classList.add("html");
60 this.element.removeChildren();
67 this.element.removeChildren();
71 this.element.appendChild(iframe);
  /external/chromium_org/third_party/WebKit/Source/web/
WebSelectElement.cpp 52 WebSelectElement::WebSelectElement(const PassRefPtrWillBeRawPtr<HTMLSelectElement>& element)
53 : WebFormControlElement(element)
57 WebSelectElement& WebSelectElement::operator=(const PassRefPtrWillBeRawPtr<HTMLSelectElement>& element)
59 m_private = element;
  /external/chromium_org/third_party/skia/tools/lua/
dump_clipstack_at_restore.lua 17 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/
AccessibilityAction.java 35 public boolean perform(UiElement element) {
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);
AccessibilityClickAction.java 43 protected boolean perform(AccessibilityNodeInfo node, UiElement element) {
44 return SINGLE.perform(element) && SINGLE.perform(element);
54 protected boolean perform(AccessibilityNodeInfo node, UiElement element) {
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) {
70 if (!element.isClickable()) {
71 throw new ActionException(element
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/validators/
FirstApplicableValidator.java 34 public boolean isApplicable(UiElement element, Action action) {
39 public String validate(UiElement element, Action action) {
41 if (validator.isApplicable(element, action)) {
42 return validator.validate(element, action);
  /external/guava/guava/src/com/google/common/collect/
ForwardingListIterator.java 42 public void add(E element) {
43 delegate().add(element);
67 public void set(E element) {
68 delegate().set(element);
SingletonImmutableList.java 30 * Implementation of {@link ImmutableList} with exactly one element.
38 final transient E element; field in class:SingletonImmutableList
40 SingletonImmutableList(E element) {
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/
dump_clipstack_at_restore.lua 17 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/
NodeExtension.java 19 * 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();
  /ndk/tests/device/issue62910-gcc4.8.2-libstdc++-nth-element-segfault/jni/
Android.mk 4 LOCAL_MODULE := issue62910-gcc4.8.2-libstdc++-nth-element-segfault
5 LOCAL_SRC_FILES := issue62910-gcc4.8.2-libstdc++-nth-element-segfault.cpp

Completed in 230 milliseconds

1 2 3 45 6 7 8 91011>>