HomeSort by relevance Sort by last modified time
    Searched refs:element (Results 26 - 50 of 2645) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/public/web/
WebLabelElement.h 43 // Provides readonly access to some properties of a DOM label element node.
47 WebLabelElement(const WebLabelElement& element) : WebElement(element) { }
49 WebLabelElement& operator=(const WebLabelElement& element)
51 WebElement::assign(element);
55 void assign(const WebLabelElement& element) { WebElement::assign(element); }
WebSelectElement.h 44 // Provides readonly access to some properties of a DOM select element node.
48 WebSelectElement(const WebSelectElement& element) : WebFormControlElement(element) { }
50 WebSelectElement& operator=(const WebSelectElement& element)
52 WebFormControlElement::assign(element);
55 void assign(const WebSelectElement& element) { WebFormControlElement::assign(element); }
WebTextAreaElement.h 42 // Provides access to some properties of a DOM textarea element node.
46 WebTextAreaElement(const WebTextAreaElement& element) : WebFormControlElement(element) { }
48 WebTextAreaElement& operator=(const WebTextAreaElement& element)
50 WebFormControlElement::assign(element);
53 void assign(const WebTextAreaElement& element) { WebFormControlElement::assign(element); }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitPropertyTester.java 54 String.format("Element must be of type IAdaptable, is %s", //$NON-NLS-1$
58 IJavaElement element; local
60 element = (IJavaElement) receiver;
62 element = JavaCore.create((IResource) receiver);
63 if (element == null) {
67 element= (IJavaElement) ((IAdaptable) receiver).getAdapter(IJavaElement.class);
68 if (element == null) {
71 element = JavaCore.create(resource);
72 if (element == null) {
78 return isJUnitTest(element);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseCheckableInputType.cpp 47 return FormControlState(element().checked() ? "on" : "off");
52 element().setChecked(state[0] == "on");
57 if (!element().checked())
59 encoding.appendData(element().name(), element().value());
67 element().setActive(true);
91 element().dispatchSimulatedClick(0, sendMouseEvents ? SendMouseUpDownEvents : SendNoEvents);
106 element().setAttribute(valueAttr, AtomicString(sanitizedValue));
BaseTextInputType.h 42 BaseTextInputType(HTMLInputElement& element) : TextFieldInputType(element) { }
ButtonInputType.cpp 39 PassRefPtr<InputType> ButtonInputType::create(HTMLInputElement& element)
41 return adoptRef(new ButtonInputType(element));
HiddenInputType.cpp 46 PassRefPtr<InputType> HiddenInputType::create(HTMLInputElement& element)
48 return adoptRef(new HiddenInputType(element));
62 return element().valueAttributeWasUpdatedAfterParsing() ? FormControlState(element().value()) : FormControlState();
67 element().setAttribute(valueAttr, AtomicString(state[0]));
97 element().setAttribute(valueAttr, AtomicString(sanitizedValue));
107 if (equalIgnoringCase(element().name(), "_charset_")) {
108 encoding.appendData(element().name(), String(encoding.encoding().name()));
RadioInputType.cpp 39 PassRefPtr<InputType> RadioInputType::create(HTMLInputElement& element)
41 return adoptRef(new RadioInputType(element));
51 return element().isInRequiredRadioButtonGroup() && !element().checkedRadioButtonForGroup();
79 Document& document = element().document();
86 Node* node = &element();
88 // Once we encounter a form element, we know we're through.
95 if (inputElement->form() != element().form())
97 if (inputElement->isRadioButton() && inputElement->name() == element().name() && inputElement->isFocusable()) {
114 if (element().checked()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTransformableContainer.cpp 42 SVGGraphicsElement* element = toSVGGraphicsElement(this->element()); local
44 // If we're either the renderer for a <use> element, or for any <g> element inside the shadow
48 if (element->hasTagName(SVGNames::useTag))
49 useElement = toSVGUseElement(element);
50 else if (element->isInShadowTree() && element->hasTagName(SVGNames::gTag)) {
51 SVGElement* correspondingElement = element->correspondingElement();
68 m_localTransform = element->animatedLocalTransform()
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/exceptions/
ElementNotVisibleException.java 22 * Thrown when an element is not visible on screen, therefore cannot be
27 public ElementNotVisibleException(UiElement element) {
28 super("Invisible on screen: " + element);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegCurvetoQuadraticSmoothAbs.h 31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothAbs(element, role, x, y));
37 SVGPathSegCurvetoQuadraticSmoothAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegCurvetoQuadraticSmoothRel.h 31 static PassRefPtr<SVGPathSegCurvetoQuadraticSmoothRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegCurvetoQuadraticSmoothRel(element, role, x, y));
37 SVGPathSegCurvetoQuadraticSmoothRel(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegLinetoAbs.h 31 static PassRefPtr<SVGPathSegLinetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegLinetoAbs(element, role, x, y));
37 SVGPathSegLinetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegLinetoHorizontalAbs.h 31 static PassRefPtr<SVGPathSegLinetoHorizontalAbs> create(SVGPathElement* element, SVGPathSegRole role, float x)
33 return adoptRef(new SVGPathSegLinetoHorizontalAbs(element, role, x));
37 SVGPathSegLinetoHorizontalAbs(SVGPathElement* element, SVGPathSegRole role, float x)
38 : SVGPathSegLinetoHorizontal(element, role, x)
SVGPathSegLinetoHorizontalRel.h 31 static PassRefPtr<SVGPathSegLinetoHorizontalRel> create(SVGPathElement* element, SVGPathSegRole role, float x)
33 return adoptRef(new SVGPathSegLinetoHorizontalRel(element, role, x));
37 SVGPathSegLinetoHorizontalRel(SVGPathElement* element, SVGPathSegRole role, float x)
38 : SVGPathSegLinetoHorizontal(element, role, x)
SVGPathSegLinetoRel.h 31 static PassRefPtr<SVGPathSegLinetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegLinetoRel(element, role, x, y));
37 SVGPathSegLinetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegLinetoVerticalAbs.h 31 static PassRefPtr<SVGPathSegLinetoVerticalAbs> create(SVGPathElement* element, SVGPathSegRole role, float y)
33 return adoptRef(new SVGPathSegLinetoVerticalAbs(element, role, y));
37 SVGPathSegLinetoVerticalAbs(SVGPathElement* element, SVGPathSegRole role, float y)
38 : SVGPathSegLinetoVertical(element, role, y)
SVGPathSegLinetoVerticalRel.h 31 static PassRefPtr<SVGPathSegLinetoVerticalRel> create(SVGPathElement* element, SVGPathSegRole role, float y)
33 return adoptRef(new SVGPathSegLinetoVerticalRel(element, role, y));
37 SVGPathSegLinetoVerticalRel(SVGPathElement* element, SVGPathSegRole role, float y)
38 : SVGPathSegLinetoVertical(element, role, y)
SVGPathSegMovetoAbs.h 31 static PassRefPtr<SVGPathSegMovetoAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegMovetoAbs(element, role, x, y));
37 SVGPathSegMovetoAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
SVGPathSegMovetoRel.h 31 static PassRefPtr<SVGPathSegMovetoRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y)
33 return adoptRef(new SVGPathSegMovetoRel(element, role, x, y));
37 SVGPathSegMovetoRel(SVGPathElement* element, SVGPathSegRole role, float x, float y)
38 : SVGPathSegSingleCoordinate(element, role, x, y)
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextAreaElement.cpp 53 WebTextAreaElement::WebTextAreaElement(const PassRefPtr<HTMLTextAreaElement>& element)
54 : WebFormControlElement(element)
58 WebTextAreaElement& WebTextAreaElement::operator=(const PassRefPtr<HTMLTextAreaElement>& element)
60 m_private = element;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceLabelProvider.java 65 public Image getImage(Object element) {
74 public String getText(Object element) {
75 return getColumnText(element, 0);
89 public boolean isLabelProperty(Object element, String property) {
99 public Image getColumnImage(Object element, int columnIndex) {
101 if (element instanceof ResourceItem) {
102 ResourceItem item = (ResourceItem)element;
112 public String getColumnText(Object element, int columnIndex) {
115 if (element instanceof ResourceType) {
116 return ((ResourceType)element).getDisplayName()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
EmptyView.js 44 this.element.className = "empty-view";
45 this.element.textContent = this._text;
52 this.element.textContent = this._text;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementHasAttribute.java 3 import org.w3c.dom.Element;
11 * specified on this element or has a default value, false otherwise Invoke the
50 Element element; local
53 element = doc.getDocumentElement();
54 state = element.hasAttribute("");
61 // Element element;
66 // element = (Element) elementList.item(0)
73 Element element; local
88 Element element; local
    [all...]

Completed in 1037 milliseconds

12 3 4 5 6 7 8 91011>>