HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 51 - 75 of 1680) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicConvolve5x5.java 34 * Supported elements types are {@link Element#U8}, {@link
35 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
36 * {@link Element#F32}, {@link Element#F32_2}, {@link
37 * Element#F32_3}, and {@link Element#F32_4}
49 * @param e Element type for intputs and outputs
53 public static ScriptIntrinsicConvolve5x5 create(RenderScript rs, Element e)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicColorMatrix.java 27 Element.DataType dtIn, int vsIn,
28 Element.DataType dtOut, int vsOut) {
36 mSi = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS));
40 Element ein = makeElement(dtIn, vsIn);
41 Element eout = makeElement(dtOut, vsOut);
59 private void test(Element.DataType dtin, Element.DataType dtout, int subtest) {
119 test(Element.DataType.UNSIGNED_8, Element.DataType.UNSIGNED_8, 0);
123 test(Element.DataType.FLOAT_32, Element.DataType.FLOAT_32, 0)
    [all...]
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...]
IntrinsicConvolve3x3.java 23 private void testConvolve3(int w, int h, Element.DataType dt, int vecSize) {
28 Element e = makeElement(dt, vecSize);
44 if (dt == Element.DataType.UNSIGNED_8) {
82 if (dt == Element.DataType.UNSIGNED_8) {
120 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 4);
124 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 3);
128 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 2);
132 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 1);
137 testConvolve3(100, 100, Element.DataType.FLOAT_32, 4);
142 testConvolve3(100, 100, Element.DataType.FLOAT_32, 3)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HTML4.java 37 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
47 public HTML.Element lookupElement(String name) {
64 /** Looks for a HTML4 element */
65 public static HTML.Element lookupElement(String name) {
76 * element name.
78 public static Map<String, HTML.Element> getAllElements() {
90 /** Creates and adds a element to the map */
91 private static HTML.Element addElement(String tag, String flags) {
92 return addElement(tag, flags, HTML.Element.Flow.NONE);
95 /** Creates and adds a element to the map *
121 HTML.Element element = new HTML.Element(tag, type, empty, optionalEndTag, breaksFlow, flow); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML4.java 38 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
48 public HTML.Element lookupElement(String name) {
65 /** Looks for a HTML4 element */
66 public static HTML.Element lookupElement(String name) {
77 * element name.
79 public static Map<String, HTML.Element> getAllElements() {
91 /** Creates and adds a element to the map */
92 private static HTML.Element addElement(String tag, String flags) {
93 return addElement(tag, flags, HTML.Element.Flow.NONE);
96 /** Creates and adds a element to the map *
122 HTML.Element element = new HTML.Element(tag, type, empty, optionalEndTag, breaksFlow, flow); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleAdjuster.h 28 class Element;
33 // for those property/element pairs.
41 void adjustRenderStyle(RenderStyle* styleToAdjust, RenderStyle* parentStyle, Element*);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTableRowsCollection.h 49 virtual Element* virtualItemAfter(unsigned& offsetInArray, Element*) const OVERRIDE;
ClassList.h 29 #include "core/dom/Element.h"
37 class Element;
43 static PassOwnPtr<ClassList> create(Element* element)
45 return adoptPtr(new ClassList(element));
54 virtual Element* element() OVERRIDE { return m_element; }
59 ClassList(Element*);
68 Element* m_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...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.h 32 #include "core/dom/Element.h"
42 void pushParentStackFrame(Element* parent);
45 void setupParentStack(Element* parent);
46 void pushParent(Element* parent);
49 bool parentStackIsConsistent(const ContainerNode* parentNode) const { return !m_parentStack.isEmpty() && m_parentStack.last().element == parentNode; }
57 ParentStackFrame() : element(0) { }
58 ParentStackFrame(Element* element) : element(element) { }
59 Element* element; member in struct:WebCore::SelectorFilter::ParentStackFrame
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueueTests.java 24 public static class Element implements PointerTrackerQueue.Element {
33 public Element(int id) {
62 private final Element mElement1 = new Element(1);
63 private final Element mElement2 = new Element(2);
64 private final Element mElement3 = new Element(3);
65 private final Element mElement4 = new Element(4)
    [all...]
  /frameworks/rs/cpp/
rsCppStructs.h 41 class Element;
58 RS_ERROR_INVALID_ELEMENT = 3, ///< An invalid Element was passed to a function
169 sp<const Element> U8;
170 sp<const Element> U8_2;
171 sp<const Element> U8_3;
172 sp<const Element> U8_4;
173 sp<const Element> I8;
174 sp<const Element> I8_2;
175 sp<const Element> I8_3;
176 sp<const Element> I8_4
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.h 38 class Element;
48 bool matches(Element*) const;
50 PassRefPtr<Element> queryFirst(Node* rootNode) const;
60 bool selectorMatches(const SelectorData&, Element*, const Node*) const;
62 Element* findElementByClassName(Node* rootNode, const AtomicString& className) const;
64 Element* findElementByTagName(Node* rootNode, const QualifiedName& tagName) const;
69 Element* executeSlowQueryFirst(Node* rootNode) const;
70 Element* executeQueryFirst(Node* rootNode) const;
80 bool matches(Element*) const;
82 PassRefPtr<Element> queryFirst(Node* rootNode) const
    [all...]
ScriptLoader.h 33 class Element;
40 static PassOwnPtr<ScriptLoader> create(Element*, bool createdByParser, bool isEvaluated);
43 Element* element() const { return m_element; } function in class:WebCore::ScriptLoader
76 ScriptLoader(Element*, bool createdByParser, bool isEvaluated);
90 Element* m_element;
106 ScriptLoader* toScriptLoaderIfPossible(Element*);
108 inline PassOwnPtr<ScriptLoader> ScriptLoader::create(Element* element, bool createdByParser, bool isEvaluated)
110 return adoptPtr(new ScriptLoader(element, createdByParser, isEvaluated))
    [all...]
ClassNodeList.h 33 #include "core/dom/Element.h"
49 bool nodeMatchesInlined(Element*) const;
54 virtual bool nodeMatches(Element*) const;
60 inline bool ClassNodeList::nodeMatchesInlined(Element* testNode) const
CustomElementCallbackQueue.h 45 static PassOwnPtr<CustomElementCallbackQueue> create(PassRefPtr<Element>);
61 CustomElementCallbackQueue(PassRefPtr<Element>);
63 RefPtr<Element> m_element;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLFormattingElementList.h 36 class Element;
65 Element* element() const function in class:WebCore::HTMLFormattingElementList::Entry
68 // callers should check isMarker() before calling element().
70 return m_item->element();
75 bool operator==(Element* element) const { return !m_item ? !element : m_item->element() == element; }
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkClipStack.cpp 19 void SkClipStack::Element::invertShapeFillType() {
34 void SkClipStack::Element::checkEmpty() const {
42 bool SkClipStack::Element::canBeIntersectedInPlace(int saveCount, SkRegion::Op op) const {
54 bool SkClipStack::Element::rectRectIntersectAllowed(const SkRect& newR, bool newAA) const {
82 void SkClipStack::Element::combineBoundsDiff(FillCombo combination, const SkRect& prevFinite) {
119 SkDEBUGFAIL("SkClipStack::Element::combineBoundsDiff Invalid fill combination");
124 void SkClipStack::Element::combineBoundsXOR(int combination, const SkRect& prevFinite) {
151 SkDEBUGFAIL("SkClipStack::Element::combineBoundsXOR Invalid fill combination");
157 void SkClipStack::Element::combineBoundsUnion(int combination, const SkRect& prevFinite) {
181 SkDEBUGFAIL("SkClipStack::Element::combineBoundsUnion Invalid fill combination")
432 Element* element = (Element*)fDeque.back(); local
451 Element* element = (Element*)fDeque.back(); local
466 Element* element = (Element*)fDeque.back(); local
507 const Element* element = iter.prev(); local
533 Element* element = (Element*) iter.prev(); local
582 Element* element = (Element*)fDeque.back(); local
620 Element* element = (Element*) fDeque.back(); local
678 const SkClipStack::Element* element = NULL; local
782 Element* element = (Element*)fDeque.back(); local
    [all...]
  /external/skia/src/core/
SkClipStack.cpp 19 void SkClipStack::Element::invertShapeFillType() {
34 void SkClipStack::Element::checkEmpty() const {
42 bool SkClipStack::Element::canBeIntersectedInPlace(int saveCount, SkRegion::Op op) const {
54 bool SkClipStack::Element::rectRectIntersectAllowed(const SkRect& newR, bool newAA) const {
82 void SkClipStack::Element::combineBoundsDiff(FillCombo combination, const SkRect& prevFinite) {
119 SkDEBUGFAIL("SkClipStack::Element::combineBoundsDiff Invalid fill combination");
124 void SkClipStack::Element::combineBoundsXOR(int combination, const SkRect& prevFinite) {
151 SkDEBUGFAIL("SkClipStack::Element::combineBoundsXOR Invalid fill combination");
157 void SkClipStack::Element::combineBoundsUnion(int combination, const SkRect& prevFinite) {
181 SkDEBUGFAIL("SkClipStack::Element::combineBoundsUnion Invalid fill combination")
432 Element* element = (Element*)fDeque.back(); local
451 Element* element = (Element*)fDeque.back(); local
466 Element* element = (Element*)fDeque.back(); local
507 const Element* element = iter.prev(); local
533 Element* element = (Element*) iter.prev(); local
582 Element* element = (Element*)fDeque.back(); local
620 Element* element = (Element*) fDeque.back(); local
678 const SkClipStack::Element* element = NULL; local
782 Element* element = (Element*)fDeque.back(); local
    [all...]
  /external/chromium_org/courgette/
ensemble.cc 16 Element::Element(ExecutableType kind,
22 Element::~Element() {}
24 std::string Element::Name() const {
50 Element* element = new Element(type, this, region); local
51 owned_elements_.push_back(element);
52 elements_.push_back(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...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FormatBlockCommand.h 36 class Element;
50 static Element* elementForFormatBlockCommand(Range*);
57 void formatRange(const Position& start, const Position& end, const Position& endOfSelection, RefPtr<Element>&);
SetNodeAttributeCommand.h 36 static PassRefPtr<SetNodeAttributeCommand> create(PassRefPtr<Element> element, const QualifiedName& attribute, const AtomicString& value)
38 return adoptRef(new SetNodeAttributeCommand(element, attribute, value));
42 SetNodeAttributeCommand(PassRefPtr<Element>, const QualifiedName& attribute, const AtomicString& value);
51 RefPtr<Element> m_element;

Completed in 526 milliseconds

1 23 4 5 6 7 8 91011>>