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

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/xml/
XPathNamespace.h 41 XPathNamespace(PassRefPtr<Element> ownerElement, const AtomicString& prefix, const AtomicString& uri);
44 virtual Element* ownerElement() const;
53 RefPtr<Element> m_ownerElement;
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/applicationdata/
FolderElement.java 23 public class FolderElement extends Element
29 * @param parent Parent Element.
32 public FolderElement(File folder, Element parent, Type type)
44 for (Element element : this.getChildren())
46 if (element.getName().equals(filename))
ElementUtils.java 22 * Utility class to search for {@link Element} inside an Android project.
30 * @param type used to filter the Elements that will be returned. (e.g.: {@link Element.Type#FILE_JAVA}, {@link Element.Type#FILE_LAYOUT} or {@link Element.Type#FILE_DRAWABLE}
31 * @return the list of {@link Element} inside Android project that have the type specified.
33 public static List<Element> getElementByType(Element rootElement, Element.Type type)
35 List<Element> resultList = new ArrayList<Element>();
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_pasteboard_helper_mac.h 19 void WriteToClipboard(const std::vector<BookmarkNodeData::Element>& elements,
25 const std::vector<BookmarkNodeData::Element>& elements,
29 bool ReadFromClipboard(std::vector<BookmarkNodeData::Element>& elements,
33 bool ReadFromDragClipboard(std::vector<BookmarkNodeData::Element>& elements,
  /external/clang/test/SemaCXX/
attr-visibility.cpp 3 template <class Element>
  /external/webkit/Source/WebCore/html/
HTMLImageLoader.h 32 HTMLImageLoader(Element*);
HTMLNameCollection.h 43 virtual Element* itemAfter(Element*) const;
HTMLTableRowsCollection.h 49 virtual Element* itemAfter(Element*) const;
CollectionCache.h 30 class Element;
50 typedef HashMap<AtomicStringImpl*, Vector<Element*>*> NodeCacheMap;
53 Element* current;
HTMLFormCollection.h 56 Element* getNamedItem(const QualifiedName& attrName, const AtomicString& name) const;
57 Element* nextNamedItemInternal(const String& name) const;
59 Element* getNamedFormItem(const QualifiedName& attrName, const String& name, int duplicateNumber) const;
  /external/webkit/Source/WebCore/rendering/
RenderFrameBase.h 36 explicit RenderFrameBase(Element*);
RenderInputSpeech.h 42 static void adjustInputFieldSpeechButtonStyle(CSSStyleSelector*, RenderStyle*, Element*);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueueTests.java 22 public static class Element implements PointerTrackerQueue.Element {
31 public Element(int id) {
57 private final Element mElement1 = new Element(1);
58 private final Element mElement2 = new Element(2);
59 private final Element mElement3 = new Element(3);
60 private final Element mElement4 = new Element(4)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueue.java 29 public interface Element {
36 private final ArrayList<Element> mExpandableArrayOfActivePointers =
44 public synchronized void add(final Element pointer) {
45 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
55 public synchronized void remove(final Element pointer) {
56 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
60 final Element element = expandableArray.get(index); local
61 if (element == pointer) {
63 Log.w(TAG, "Found duplicated element in remove: " + pointer)
89 final Element element = expandableArray.get(index); local
106 final Element element = expandableArray.get(index); local
139 final Element element = expandableArray.get(index); local
162 final Element element = expandableArray.get(index); local
177 final Element element = expandableArray.get(index); local
191 final Element element = expandableArray.get(index); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TypeTest.java 19 import android.renderscript.Element;
33 void testTypeBuilderHelper(Element e) {
49 testTypeBuilderHelper(Element.A_8(mRS));
50 testTypeBuilderHelper(Element.RGB_565(mRS));
51 testTypeBuilderHelper(Element.RGB_888(mRS));
52 testTypeBuilderHelper(Element.RGBA_8888(mRS));
53 testTypeBuilderHelper(Element.F32(mRS));
54 testTypeBuilderHelper(Element.F32_2(mRS));
55 testTypeBuilderHelper(Element.F32_3(mRS));
56 testTypeBuilderHelper(Element.F32_4(mRS))
    [all...]
  /external/webkit/Source/WebCore/bindings/gobject/
WebKitDOMBinding.h 32 class Element;
39 WebKitDOMElement* kit(WebCore::Element* element);
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSParserFilter.java 15 import org.w3c.dom.Element;
25 * The document element is never passed to the <code>LSParserFilter</code>
26 * methods, i.e. it is not possible to filter out the document element.
69 * The parser will call this method after each <code>Element</code> start
71 * <code>Element</code> is processed. The intent is to allow the
72 * element, including any children, to be efficiently skipped. Note that
73 * only element nodes are passed to the <code>startElement</code>
75 * <br>The element node passed to <code>startElement</code> for filtering
76 * will include all of the Element's attributes, but none of the
77 * children nodes. The Element may not yet be in place in the documen
    [all...]
  /frameworks/base/sax/java/android/sax/
Element.java 27 * An XML element. Provides access to child elements and hooks to listen
28 * for events related to this element.
32 public class Element {
37 final Element parent;
40 ArrayList<Element> requiredChilden;
48 Element(Element parent, String uri, String localName, int depth) {
56 * Gets the child element with the given name. Uses an empty string as the
59 public Element getChild(String localName) {
64 * Gets the child element with the given name
    [all...]
  /frameworks/rs/
rsElement.h 36 // An element is a group of Components that occupies one cell in a structure.
37 class Element : public ObjectBase {
49 const Element **fields;
63 void add(const Element *e, const char *nameStr, uint32_t arraySize);
64 ObjectBaseRef<const Element> create(Context *rsc);
66 Vector<ObjectBaseRef<const Element> > mBuilderElementRefs;
67 Vector<const Element *> mBuilderElements;
97 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
110 static Element *createFromStream(Context *rsc, IStream *stream);
112 static ObjectBaseRef<const Element> createRef(Context *rsc
    [all...]
  /frameworks/support/renderscript/v8/rs_support/
rsElement.h 36 // An element is a group of Components that occupies one cell in a structure.
37 class Element : public ObjectBase {
49 const Element **fields;
63 void add(const Element *e, const char *nameStr, uint32_t arraySize);
64 ObjectBaseRef<const Element> create(Context *rsc);
66 Vector<ObjectBaseRef<const Element> > mBuilderElementRefs;
67 Vector<const Element *> mBuilderElements;
97 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
110 static Element *createFromStream(Context *rsc, IStream *stream);
112 static ObjectBaseRef<const Element> createRef(Context *rsc
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.h 42 class Element;
71 PassRefPtr<Element> createHTMLElement(AtomicHTMLToken&);
72 PassRefPtr<Element> createHTMLElementFromElementRecord(HTMLElementStack::ElementRecord*);
83 Element* currentElement() const { return m_openElements.top(); }
85 Element* oneBelowTop() const { return m_openElements.oneBelowTop(); }
90 Element* head() const { return m_head.get(); }
124 PassRefPtr<Element> attachToCurrent(PassRefPtr<Element>);
129 PassRefPtr<Element> createHTMLElementFromSavedElement(Element*);
    [all...]
  /external/webkit/Source/WebCore/dom/
TreeScope.h 34 class Element;
43 Element* getElementById(const AtomicString&) const;
46 void addElementById(const AtomicString& elementId, Element*);
47 void removeElementById(const AtomicString& elementId, Element*);
53 Element* getElementByAccessKey(const String& key) const;
61 // First searches for an element with the given ID, but if that fails, then looks
65 Element* findAnchor(const String& name);
82 mutable HashMap<StringImpl*, Element*, CaseFoldingHash> m_elementsByAccessKey;
DocumentOrderedMap.cpp 34 #include "Element.h"
43 inline bool keyMatchesId(AtomicStringImpl* key, Element* element)
45 return element->hasID() && element->getIdAttribute().impl() == key;
48 inline bool keyMatchesMapName(AtomicStringImpl* key, Element* element)
50 return element->hasTagName(mapTag) && static_cast<HTMLMapElement*>(element)->getName().impl() == key;
53 inline bool keyMatchesLowercasedMapName(AtomicStringImpl* key, Element* element
114 Element* element = m_map.get(key); local
    [all...]
OptionElement.cpp 25 #include "Element.h"
40 void OptionElement::setSelectedState(OptionElementData& data, Element* element, bool selected)
46 element->setNeedsStyleRecalc();
49 int OptionElement::optionIndex(SelectElement* selectElement, const Element* element)
56 const Vector<Element*>& items = selectElement->listItems();
62 if (items[i] == element)
70 String OptionElement::collectOptionLabelOrText(const OptionElementData& data, const Element* element)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttribute.java 3 import org.w3c.dom.Element;
10 * The "hasAttribute()" method for an Element should return true if the element
11 * has an attribute with the given name. Retrieve the first "address" element
12 * and the "hasAttribute()" method should return false since the element does
52 Element testNode;
56 testNode = (Element) elementList.item(4);
65 // Element testNode;
69 // testNode = (Element) elementList.item(0);
76 Element testNode
    [all...]

Completed in 548 milliseconds

12 3 4 5 6 7 8 91011>>