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

1 2 3 4 5 6 78 91011>>

  /sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
ConfigGenerator.java 37 import org.w3c.dom.Element;
69 * The "devices" element is the root element of this schema.
77 * A "device" element contains a "hardware" element, a "software" element
78 * for each API version it supports, and a "state" element for each possible
84 * The "hardware" element contains all of the hardware information for a
90 * The "software" element contains all of the software information for an
96 * The "state" element contains all of the parameters for a given state o
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data.cc 28 BookmarkNodeData::Element::Element() : is_url(false), id_(0) {
31 BookmarkNodeData::Element::Element(const BookmarkNode* node)
37 children.push_back(Element(node->GetChild(i)));
40 BookmarkNodeData::Element::~Element() {
43 void BookmarkNodeData::Element::WriteToPickle(Pickle* pickle) const {
50 for (std::vector<Element>::const_iterator i = children.begin();
57 bool BookmarkNodeData::Element::ReadFromPickle(Pickle* pickle
182 Element element; local
252 Element element; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLFormCollection.cpp 86 HTMLElement* element = toHTMLElement(elementsArray[i]); local
89 info()->current = element;
91 return element;
101 Element* HTMLFormCollection::getNamedItem(const QualifiedName& attrName, const AtomicString& name) const
107 Element* HTMLFormCollection::getNamedFormItem(const QualifiedName& attrName, const String& name, int duplicateNumber) const
114 HTMLElement* element = toHTMLElement(associatedElement); local
115 if (associatedElement->isEnumeratable() && element->getAttribute(attrName) == name) {
118 return element;
125 HTMLImageElement* element = form->m_imageElements[i]; local
126 if (element->getAttribute(attrName) == name)
197 HTMLElement* element = toHTMLElement(associatedElement); local
224 HTMLImageElement* element = f->m_imageElements[i]; local
    [all...]
HTMLTableRowsCollection.cpp 40 static bool isInHead(Element* row)
42 return row->parentNode() && static_cast<Element*>(row->parentNode())->hasLocalName(theadTag);
45 static bool isInBody(Element* row)
47 return row->parentNode() && static_cast<Element*>(row->parentNode())->hasLocalName(tbodyTag);
50 static bool isInFoot(Element* row)
52 return row->parentNode() && static_cast<Element*>(row->parentNode())->hasLocalName(tfootTag);
161 Element* HTMLTableRowsCollection::itemAfter(Element* previous) const
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertexFixedFunction.java 60 public InternalBuilder addInput(Element e) throws IllegalStateException {
139 Element.Builder b = new Element.Builder(rs);
140 b.add(Element.MATRIX4X4(rs), "MV");
141 b.add(Element.MATRIX4X4(rs), "P");
142 b.add(Element.MATRIX4X4(rs), "TexMatrix");
143 b.add(Element.MATRIX4X4(rs), "MVP");
183 Element.Builder b = new Element.Builder(mRS);
184 b.add(Element.F32_4(mRS), "position")
    [all...]
ScriptIntrinsicBlur.java 41 * Supported elements types are {@link Element#U8_4}
44 * @param e Element type for inputs and outputs
48 public static ScriptIntrinsicBlur create(RenderScript rs, Element e) {
49 if (e != Element.U8_4(rs)) {
50 throw new RSIllegalArgumentException("Unsuported element type.");
60 * Must match the element type supplied during create.
87 * @param aout Output allocation. Must match creation element
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ForEachTest.java 29 import android.renderscript.Element;
61 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create();
68 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create();
80 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create();
82 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create();
94 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create();
96 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create();
108 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create();
110 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create();
122 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create()
    [all...]
KernelTest.java 29 import android.renderscript.Element;
61 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create();
68 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create();
80 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create();
82 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create();
94 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create();
96 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create();
108 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create();
110 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create();
122 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create()
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityImageMapLink.h 46 void setHTMLAreaElement(HTMLAreaElement* element) { m_areaElement = element; }
49 void setHTMLMapElement(HTMLMapElement* element) { m_mapElement = element; }
60 virtual Element* anchorElement() const;
61 virtual Element* actionElement() const;
  /external/webkit/Source/WebCore/dom/
Attr.idl 39 readonly attribute Element ownerElement;
DocumentFragment.cpp 78 void DocumentFragment::parseHTML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission)
83 bool DocumentFragment::parseXML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission)
DynamicNodeList.h 34 class Element;
69 virtual bool nodeMatches(Element*) const = 0;
ScriptedAnimationController.h 39 class Element;
52 CallbackId registerCallback(PassRefPtr<RequestAnimationFrameCallback>, Element*);
  /external/webkit/Source/WebCore/editing/
IndentOutdentCommand.h 53 void indentIntoBlockquote(const Position&, const Position&, RefPtr<Element>&);
56 void formatRange(const Position& start, const Position& end, const Position& endOfSelection, RefPtr<Element>& blockquoteForNextIndent);
SplitTextNodeContainingElementCommand.cpp 29 #include "Element.h"
50 Element* parent = m_text->parentElement();
60 parent = static_cast<Element*>(firstChild);
  /external/webkit/Source/WebCore/html/parser/
HTMLTreeBuilder.h 30 #include "Element.h"
62 static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, FragmentScriptingPermission scriptingPermission, bool usePreHTML5ParserQuirks)
80 PassRefPtr<Element> takeScriptToProcess(TextPosition1& scriptStartPosition);
120 HTMLTreeBuilder(HTMLDocumentParser* parser, DocumentFragment*, Element* contextElement, FragmentScriptingPermission, bool usePreHTML5ParserQuirks);
177 HTMLElementStack::ElementRecord* furthestBlockForFormattingElement(Element*);
212 FragmentParsingContext(DocumentFragment*, Element* contextElement, FragmentScriptingPermission);
216 Element* contextElement() const { ASSERT(m_fragment); return m_contextElement; }
221 Element* m_contextElement;
250 RefPtr<Element> m_scriptToProcess; // <script> tag which needs processing before resuming the parser.
  /external/webkit/Source/WebCore/svg/
SVGElement.idl 25 interface [GenerateNativeConverter, Conditional=SVG] SVGElement : Element {
  /frameworks/rs/
rsScriptIntrinsic.h 31 ObjectBaseRef<const Element> mElement;
36 bool init(Context *rsc, RsScriptIntrinsicID iid, Element *e);
  /frameworks/support/renderscript/v8/rs_support/
rsScriptIntrinsic.h 31 ObjectBaseRef<const Element> mElement;
36 bool init(Context *rsc, RsScriptIntrinsicID iid, Element *e);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentcreateelementcasesensitive.java 36 * Each call should create a distinct Element node. The
66 Element newElement1;
67 Element newElement2;
elementaddnewattribute.java 32 * to the Element
67 Element testEmployee;
71 testEmployee = (Element) elementList.item(4);
elementchangeattributevalue.java 32 * to the Element. If the "name" is already present, then
40 * element, then its value should be changed to the new one
70 Element testEmployee;
74 testEmployee = (Element) elementList.item(3);
elementgetattributenode.java 66 Element testEmployee;
71 testEmployee = (Element) elementList.item(0);
elementgetattributenodenull.java 67 Element testEmployee;
71 testEmployee = (Element) elementList.item(0);
elementgetelementempty.java 71 Element testEmployee;
77 testEmployee = (Element) elementList.item(3);

Completed in 405 milliseconds

1 2 3 4 5 6 78 91011>>