HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 126 - 150 of 1630) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
ImageBuffersForRenderScriptd1new.java 5 import android.support.v8.renderscript.Element;
52 renderScript, Element.F32_4(renderScript),
55 renderScript, Element.U8(renderScript),
58 renderScript, Element.U8(renderScript),
61 renderScript, Element.U8(renderScript),
64 renderScript, Element.U8(renderScript),
67 renderScript, Element.F32_4(renderScript),
70 renderScript, Element.F32_4(renderScript),
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 41 assertTrue(Element.values().length > 64);
51 EnumSet<Element> set = EnumSet.of(Element.H, Element.TB, Element.DY, Element.UUO);
52 new SerializationTester<EnumSet<Element>>(set, s).test();
101 enum Element {
  /libcore/luni/src/test/java/tests/org/w3c/dom/
AttrGetOwnerElement.java 5 import org.w3c.dom.Element;
39 // Element element;
40 // Element ownerElement;
50 // element = (Element) elementList.item(1);
51 // attributes = element.getAttributes();
60 Element element; local
61 Element ownerElement
86 Element element; local
105 Node element; local
    [all...]
NamedNodeMapSetNamedItemNS.java 29 import org.w3c.dom.Element;
41 * Retreive the first element whose localName is address and namespaceURI
86 Node element; local
95 element = elementList.item(0);
96 attributes = element.getAttributes();
98 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
107 Element element; local
113 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root")
131 Element element; local
166 Element element; local
232 Element element; local
258 Element element; local
284 Element element; local
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug054.go 9 type Element interface {
13 elem []Element;
16 func (v *Vector) At(i int) Element {
31 v.elem = make([]Element, 10);
  /prebuilts/go/linux-x86/test/fixedbugs/
bug054.go 9 type Element interface {
13 elem []Element;
16 func (v *Vector) At(i int) Element {
31 v.elem = make([]Element, 10);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
OutlineLabelProvider.java 33 import org.w3c.dom.Element;
44 public Image getImage(Object element) {
45 if (element instanceof Element) {
46 Element e = (Element) element;
59 return super.getImage(element);
63 public String getText(Object element) {
64 String text = super.getText(element);
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/lib/
array_serialization.h 109 typename std::enable_if<BelongsTo<typename MojomType::Element,
113 using DataElement = typename Data::Element;
114 using Element = typename MojomType::Element;
117 static_assert(std::is_same<Element, DataElement>::value,
119 static_assert(std::is_same<Element, typename Traits::Element>::value,
177 typename std::enable_if<BelongsTo<typename MojomType::Element,
181 using DataElement = typename Data::Element;
182 using Element = typename MojomType::Element
    [all...]
  /frameworks/rs/
rsElement.cpp 23 Element::Element(Context *rsc) : ObjectBase(rsc) {
32 Element::~Element() {
36 void Element::operator delete(void* ptr) {
38 Element *e = (Element*) ptr;
43 void Element::preDestroy() const {
53 void Element::clear() {
71 size_t Element::getSizeBits() const
    [all...]
rsApiElement.cpp 26 Element *e = static_cast<Element *>(elem);
37 Element *e = static_cast<Element *>(elem);
  /frameworks/rs/tests/lldb/cpp/Allocations/
Allocations.cpp 83 Type::Builder typeI8Builder(mRS, Element::I8(mRS));
84 typeI8Builder.setX(1); // One element here to test 16 byte memory alignment
89 mChar2Allocation = Allocation::createSized(mRS, Element::I8_2(mRS), mAllocSize / 2);
90 mChar3Allocation = Allocation::createSized(mRS, Element::I8_3(mRS), mAllocSize / 4);
91 mChar4Allocation = Allocation::createSized(mRS, Element::I8_4(mRS), mAllocSize / 4);
93 Type::Builder typeI16_2Builder(mRS, Element::I16_2(mRS));
98 mShortAllocation = Allocation::createSized(mRS, Element::I16(mRS), mAllocSize);
100 mShort3Allocation = Allocation::createSized(mRS, Element::I16_3(mRS), mAllocSize / 4);
101 mShort4Allocation = Allocation::createSized(mRS, Element::I16_4(mRS), mAllocSize / 4);
103 Type::Builder typeI32_3Builder(mRS, Element::I32_3(mRS))
    [all...]
  /frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
jniallocations.cpp 87 Type::Builder typeI8Builder(mRS, Element::I8(mRS));
88 typeI8Builder.setX(1); // One element here to test 16 byte memory alignment
93 mChar2Allocation = Allocation::createSized(mRS, Element::I8_2(mRS), mAllocSize / 2);
94 mChar3Allocation = Allocation::createSized(mRS, Element::I8_3(mRS), mAllocSize / 4);
95 mChar4Allocation = Allocation::createSized(mRS, Element::I8_4(mRS), mAllocSize / 4);
97 Type::Builder typeI16_2Builder(mRS, Element::I16_2(mRS));
102 mShortAllocation = Allocation::createSized(mRS, Element::I16(mRS), mAllocSize);
104 mShort3Allocation = Allocation::createSized(mRS, Element::I16_3(mRS), mAllocSize / 4);
105 mShort4Allocation = Allocation::createSized(mRS, Element::I16_4(mRS), mAllocSize / 4);
107 Type::Builder typeI32_3Builder(mRS, Element::I32_3(mRS))
    [all...]
  /frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/
MainActivity.java 120 Type.Builder typeI8Builder = new Type.Builder(mRS, Element.I8(mRS));
121 typeI8Builder.setX(1); // One element here to test 16 byte memory alignment
127 mChar2Allocation = Allocation.createSized(mRS, Element.I8_2(mRS), mAllocSize / 2);
129 mChar3Allocation = Allocation.createSized(mRS, Element.I8_3(mRS), mAllocSize / 4);
131 mChar4Allocation = Allocation.createSized(mRS, Element.I8_4(mRS), mAllocSize / 4);
134 Type.Builder typeI16_2Builder = new Type.Builder(mRS, Element.I16_2(mRS));
139 mShortAllocation = Allocation.createSized(mRS, Element.I16(mRS), mAllocSize);
143 mShort3Allocation = Allocation.createSized(mRS, Element.I16_3(mRS), mAllocSize / 4);
145 mShort4Allocation = Allocation.createSized(mRS, Element.I16_4(mRS), mAllocSize / 4);
148 Type.Builder typeI32_3Builder = new Type.Builder(mRS, Element.I32_3(mRS))
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
Serializer.h 50 typedef AudioGain Element;
51 typedef sp<Element> PtrElement;
55 static status_t deserialize(_xmlDoc *doc, const _xmlNode *root, PtrElement &element,
76 typedef AudioProfile Element;
81 static status_t deserialize(_xmlDoc *doc, const _xmlNode *root, PtrElement &element,
97 typedef IOProfile Element;
98 typedef sp<Element> PtrElement;
102 static status_t deserialize(_xmlDoc *doc, const _xmlNode *root, PtrElement &element,
121 typedef DeviceDescriptor Element;
126 static status_t deserialize(_xmlDoc *doc, const _xmlNode *root, PtrElement &element,
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicColorMatrix.java 22 * If the element type is {@link Element.DataType#UNSIGNED_8},
23 * it is converted to {@link Element.DataType#FLOAT_32} and
25 * is less than four, a {@link Element#F32_4} is created by
28 * rsMatrixMultiply(), adding a {@link Element#F32_4}, and then
35 * Supported elements types are {@link Element#U8}, {@link
36 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
37 * {@link Element#F32}, {@link Element#F32_2}, {@lin
    [all...]
ScriptIntrinsic3DLUT.java 29 private Element mElement;
31 private ScriptIntrinsic3DLUT(long id, RenderScript rs, Element e) {
37 * Supported elements types are {@link Element#U8_4}
42 * @param e Element type for intputs and outputs
46 public static ScriptIntrinsic3DLUT create(RenderScript rs, Element e) {
49 if (!e.isCompatible(Element.U8_4(rs))) {
50 throw new RSIllegalArgumentException("Element must be compatible with uchar4.");
59 * The lookup table must use the same {@link android.renderscript.Element} as the intrinsic.
71 throw new RSIllegalArgumentException("LUT element type must match.");
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 23 import org.w3c.dom.Element;
85 Element tests = DocumentBuilderFactory.newInstance()
89 for (Element document : elementsOf(tests.getElementsByTagName("document"))) {
92 for (final Element context : elementsOf(document.getElementsByTagName("context"))) {
101 * Populates the test suite with tests from the given XML context element.
104 InputSource inputSource, Element element) {
107 * Each context element has this structure:
119 String select = element.getAttribute("select");
123 xpath.setXPathVariableResolver(new ElementVariableResolver(element));
    [all...]
  /frameworks/rs/cpp/
rsCppStructs.h 45 class Element;
62 RS_ERROR_INVALID_ELEMENT = 3, ///< An invalid Element was passed to a function
449 sp<const Element> U8;
450 sp<const Element> U8_2;
451 sp<const Element> U8_3;
452 sp<const Element> U8_4;
453 sp<const Element> I8;
454 sp<const Element> I8_2;
455 sp<const Element> I8_3;
456 sp<const Element> I8_4
    [all...]
  /cts/tests/tests/rscpp/librscpptest/
rs_jni_allocation.cpp 34 static void createTypedHelper (const sp<RS> &rs, sp<const Element> e) {
65 createTypedHelper(rs, Element::A_8(rs));
66 createTypedHelper(rs, Element::RGBA_4444(rs));
67 createTypedHelper(rs, Element::RGBA_5551(rs));
68 createTypedHelper(rs, Element::RGB_565(rs));
69 createTypedHelper(rs, Element::RGB_888(rs));
70 createTypedHelper(rs, Element::RGBA_8888(rs));
71 createTypedHelper(rs, Element::F32(rs));
72 createTypedHelper(rs, Element::F32_2(rs));
73 createTypedHelper(rs, Element::F32_3(rs))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilitiesTest.java 22 import org.w3c.dom.Element;
45 Element root1 = document1.getDocumentElement();
47 Element root2 = document2.getDocumentElement();
57 Element foo1 = document1.createElement("foo");
58 Element foo2 = document2.createElement("foo");
94 Element root = document.getDocumentElement();
96 Element foo = document.createElement("foo");
99 Element bar = document.createElement("bar");
101 Element baz = document.createElement("baz");
130 Element a = document.getDocumentElement()
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MapKeyValidator.java 20 import javax.lang.model.element.Element;
21 import javax.lang.model.element.ExecutableElement;
22 import javax.lang.model.element.TypeElement;
38 ValidationReport<Element> validate(Element element) {
39 ValidationReport.Builder<Element> builder = ValidationReport.about(element);
40 List<ExecutableElement> members = methodsIn(((TypeElement) element).getEnclosedElements())
    [all...]
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
Element.java 27 * An internal binding annotation applied to each element in a multibinding.
34 @interface Element {
  /external/skia/src/core/
SkColorSpace_A2B.cpp 10 SkColorSpace_A2B::SkColorSpace_A2B(ICCTypeFlag iccType, std::vector<Element> elements,
  /frameworks/base/tools/aapt2/xml/
XmlActionExecutor_test.cpp 29 Element* manifest_el = nullptr;
30 manifest_action.Action([&](Element* manifest) -> bool {
35 Element* application_el = nullptr;
36 application_action.Action([&](Element* application) -> bool {
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptIntrinsic3DLUT.java 31 private Element mElement;
35 protected ScriptIntrinsic3DLUT(long id, RenderScript rs, Element e) {
41 * Supported elements types are {@link Element#U8_4}
46 * @param e Element type for intputs and outputs
50 public static ScriptIntrinsic3DLUT create(RenderScript rs, Element e) {
51 if (!e.isCompatible(Element.U8_4(rs))) {
52 throw new RSIllegalArgumentException("Element must be compatible with uchar4.");
70 * {@link android.support.v8.renderscript.Element} as the intrinsic.
82 throw new RSIllegalArgumentException("LUT element type must match.");

Completed in 1726 milliseconds

1 2 3 4 56 7 8 91011>>