HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 151 - 175 of 1623) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/uimodel/
UiItemElementNode.java 24 import org.w3c.dom.Element;
29 * customizes the element display to include the item type attribute if present.
45 if (xmlNode != null && xmlNode instanceof Element && xmlNode.hasAttributes()) {
47 Element elem = (Element) xmlNode;
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/applicationdata/
ApplicationData.java 29 import com.motorolamobility.preflighting.core.applicationdata.Element.Type;
40 * It has a root node attribute that points to the root Element of the
47 private Element rootElement;
92 // Manifest Element
93 List<Element> manifestList =
94 ElementUtils.getElementByType(rootElement, Element.Type.FILE_MANIFEST);
124 List<Element> layoutsList =
125 ElementUtils.getElementByType(rootElement, Element.Type.FILE_LAYOUT);
129 for (Element element : layoutsList)
    [all...]
  /external/webkit/Source/WebCore/page/
EditorClient.h 63 class Element;
122 virtual void textFieldDidBeginEditing(Element*) = 0;
123 virtual void textFieldDidEndEditing(Element*) = 0;
124 virtual void textDidChangeInTextField(Element*) = 0;
125 virtual bool doTextFieldCommandFromEvent(Element*, KeyboardEvent*) = 0;
126 virtual void textWillBeDeletedInTextField(Element*) = 0;
127 virtual void textDidChangeInTextArea(Element*) = 0;
  /frameworks/base/sax/java/android/sax/
RootElement.java 26 * The root XML element. The entry point for this API. Not safe for concurrent
47 * Element entry = root.getChild(ATOM_NAMESPACE, "entry");
66 public class RootElement extends Element {
71 * Constructs a new root element with the given name.
81 * Constructs a new root element with the given name. Uses an empty string
101 Element current = null;
115 // This is the root element.
123 + " within text element named " + current + ".",
127 // If we're one level below the current element.
132 Element child = children.get(uri, localName)
    [all...]
Children.java 20 * Contains element children. Using this class instead of HashMap results in
30 Element getOrCreate(Element parent, String uri, String localName) {
65 Element get(String uri, String localName) {
86 static class Child extends Element {
91 Child(Element parent, String uri, String localName, int depth,
  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 8 // JSCompiler doesn't know about this new Element property
9 Element.prototype.classList = {};
11 Element.prototype.classList.remove = function(c) {};
13 Element.prototype.classList.add = function(c) {};
15 Element.prototype.classList.contains = function(c) {};
  /external/webkit/Source/WebCore/editing/
BreakBlockquoteCommand.cpp 73 RefPtr<Element> breakNode = createBreakElement(document());
129 Vector<Element*> ancestors;
130 for (Element* node = startNode->parentElement(); node && node != topBlockquote; node = node->parentElement())
134 RefPtr<Element> clonedBlockquote = static_cast<Element*>(topBlockquote)->cloneElementWithoutChildren();
141 RefPtr<Element> clonedAncestor = clonedBlockquote;
143 RefPtr<Element> clonedChild = ancestors[i - 1]->cloneElementWithoutChildren();
147 // The first child of the cloned list might not be a list item element,
152 setNodeAttribute(static_cast<Element*>(clonedChild.get()), startAttr, String::number(toRenderListItem(listChildNode->renderer())->value()));
173 Element* ancestor
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderThemeWinCE.h 84 virtual void adjustMenuListStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const;
86 virtual void adjustMenuListButtonStyle(CSSStyleSelector* selector, RenderStyle* style, Element* e) const;
96 virtual void adjustSearchFieldStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
99 virtual void adjustSearchFieldCancelButtonStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
102 virtual void adjustSearchFieldDecorationStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
105 virtual void adjustSearchFieldResultsDecorationStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
108 virtual void adjustSearchFieldResultsButtonStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
113 virtual void adjustButtonStyle(CSSStyleSelector*, RenderStyle* style, Element*) const {}
114 virtual void adjustTextFieldStyle(CSSStyleSelector*, RenderStyle* style, Element*) const {}
115 virtual void adjustTextAreaStyle(CSSStyleSelector*, RenderStyle* style, Element*) const {
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ElementHasAttributeNS.java 24 import org.w3c.dom.Element;
33 * name and namespace URI is specified on this element or has a default value,
36 * Retreive the first employee element node. Invoke the hasAttributeNS method to
76 Element element; local
81 element = (Element) elementList.item(0);
82 state = element
88 Element element; local
101 Element element; local
    [all...]
ElementSetAttributeNodeNS.java 24 import org.w3c.dom.Element;
35 * Testing Element.setAttributeNodeNS: If an attribute with that local name and
36 * that namespace URI is already present in the element, it is replaced by the
37 * new one. Create a new element and two new attribute nodes (in the same
39 * element node using the setAttributeNodeNS method. Check that only one
78 Element element; local
89 element = doc.createElementNS("http://www.w3.org/DOM/Test/Level2",
90 "new:element");
96 element.setAttributeNodeNS(attribute1)
111 Element element; local
185 Element element; local
206 Element element; local
    [all...]
SetAttributeNS.java 24 import org.w3c.dom.Element;
92 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI,
114 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI,
133 // Element genElement;
147 // genElement = (Element) gList.item(0);
174 ((Element) /* Node */testAddr).setAttributeNS("http://www.nist.gov",
176 addrAttr = ((Element) /* Node */testAddr).getAttributeNodeNS(
178 resultAttr = ((Element) /* Node */testAddr).getAttributeNS(
202 ((Element) /* Node */testAddr).setAttributeNS(namespaceURI,
204 resultAttr = ((Element) /* Node */testAddr).getAttributeNS
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestElementNode.java 27 import org.w3c.dom.Element;
38 * Element nodes don't contain data per se. Their data is contained in their attributes
57 * Uses the element's attribute "android:name" if present, or the "android:label" one
58 * followed by the element's name if not repeated.
74 getXmlNode() instanceof Element &&
83 Element elem = (Element) getXmlNode();
114 * Note: This is a wrapper around {@link Element#getAttributeNS(String, String)}.
118 * @see Element#getAttributeNS(String, String)
120 * @return The result from {@link Element#getAttributeNS(String, String)} or or an empty string
    [all...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
LayoutDetector.java 34 import org.w3c.dom.Element;
50 private static boolean isFillParent(@NonNull Element element, @NonNull String dimension) {
51 String width = element.getAttributeNS(ANDROID_URI, dimension);
55 protected static boolean isWidthFillParent(@NonNull Element element) {
56 return isFillParent(element, ATTR_LAYOUT_WIDTH);
59 protected static boolean isHeightFillParent(@NonNull Element element) {
60 return isFillParent(element, ATTR_LAYOUT_HEIGHT)
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLCollection.cpp 90 Element* HTMLCollection::itemAfter(Element* previous) const
128 Element* e = static_cast<Element*>(current);
208 for (Element* current = itemAfter(0); current; current = itemAfter(current))
238 Element* e = m_info->current;
256 Element* retval = itemAfter(m_info->current);
262 bool HTMLCollection::checkForNameMatch(Element* element, bool checkName, const AtomicString& name) const
264 if (!element->isHTMLElement()
    [all...]
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
NestedScrollingWidgetDetector.java 35 import org.w3c.dom.Element;
88 private Element findOuterScrollingWidget(Node node, boolean vertical) {
91 if (node instanceof Element) {
92 Element element = (Element) node; local
93 String tagName = element.getTagName();
95 && vertical == isVerticalScroll(element)) {
96 return element;
107 public void visitElement(@NonNull XmlContext context, @NonNull Element element)
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
RenderThemeEfl.h 119 virtual void adjustCheckboxStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
122 virtual void adjustRadioStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
125 virtual void adjustButtonStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
128 virtual void adjustTextFieldStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
131 virtual void adjustTextAreaStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
134 virtual void adjustMenuListStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
137 virtual void adjustSearchFieldResultsDecorationStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
140 virtual void adjustSearchFieldDecorationStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
143 virtual void adjustSearchFieldStyle(CSSStyleSelector*, RenderStyle*, Element*) const;
146 virtual void adjustSearchFieldResultsButtonStyle(CSSStyleSelector*, RenderStyle*, Element*) const
    [all...]
  /frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
RenderScript.java 479 Element mElement_U8;
480 Element mElement_I8;
481 Element mElement_U16;
482 Element mElement_I16;
483 Element mElement_U32;
484 Element mElement_I32;
485 Element mElement_U64;
486 Element mElement_I64;
487 Element mElement_F32;
488 Element mElement_F64
    [all...]
  /external/webkit/Source/WebCore/dom/
SelectElement.cpp 27 #include "Element.h"
81 // Valid means that it is enabled and an option element.
82 static int nextValidIndex(const Vector<Element*>& listItems, int listIndex, SkipDirection direction, int skip)
98 static int nextSelectableListIndex(SelectElementData& data, Element* element, int startIndex)
100 return nextValidIndex(data.listItems(element), startIndex, SkipForwards, 1);
103 static int previousSelectableListIndex(SelectElementData& data, Element* element, int startIndex)
106 startIndex = data.listItems(element).size();
107 return nextValidIndex(data.listItems(element), startIndex, SkipBackwards, 1)
1062 SelectElement::recalcListItems(*const_cast<SelectElementData*>(this), element, false); local
1082 SelectElement::recalcListItems(*const_cast<SelectElementData*>(this), element); local
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.h 45 class Element;
83 static Element* inlineStyleElement(CSSStyleDeclaration*);
85 InspectorStyleSheetForInlineStyle* asInspectorStyleSheet(Element* element);
86 Element* elementForId(ErrorString*, int nodeId);
94 PassRefPtr<InspectorArray> buildArrayForAttributeStyles(Element*);
99 virtual void didModifyDOMAttr(Element*);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 123 virtual void textFieldDidBeginEditing(WebCore::Element*);
124 virtual void textFieldDidEndEditing(WebCore::Element*);
125 virtual void textDidChangeInTextField(WebCore::Element*);
126 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
127 virtual void textWillBeDeletedInTextField(WebCore::Element*);
128 virtual void textDidChangeInTextArea(WebCore::Element*);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebEditorClient.h 90 virtual void textFieldDidBeginEditing(WebCore::Element*);
91 virtual void textFieldDidEndEditing(WebCore::Element*);
92 virtual void textDidChangeInTextField(WebCore::Element*);
93 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
94 virtual void textWillBeDeletedInTextField(WebCore::Element* input);
95 virtual void textDidChangeInTextArea(WebCore::Element*);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.h 85 virtual void textFieldDidBeginEditing(WebCore::Element*);
86 virtual void textFieldDidEndEditing(WebCore::Element*);
87 virtual void textDidChangeInTextField(WebCore::Element*);
88 virtual bool doTextFieldCommandFromEvent(WebCore::Element*, WebCore::KeyboardEvent*);
89 virtual void textWillBeDeletedInTextField(WebCore::Element*);
90 virtual void textDidChangeInTextArea(WebCore::Element*);
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
UT_element.java 22 import android.renderscript.Element.*;
23 import android.renderscript.Element.DataKind.*;
24 import android.renderscript.Element.DataType.*;
29 Element simpleElem;
30 Element complexElem;
72 super(rstc, "Element", ctx);
77 simpleElem = Element.F32_3(RS);
  /sdk/common/tests/src/com/android/utils/
XmlUtilsTest.java 22 import org.w3c.dom.Element;
38 Element rootElement = document.createElement("root");
44 Element root = document.getDocumentElement();
46 Element foo = document.createElement("foo");
49 Element bar = document.createElement("bar");
51 Element baz = document.createElement("baz");

Completed in 700 milliseconds

1 2 3 4 5 67 8 91011>>