/external/guice/core/src/com/google/inject/spi/ |
RequireExactBindingAnnotationsOption.java | 29 public final class RequireExactBindingAnnotationsOption implements Element {
|
RequireExplicitBindingsOption.java | 29 public final class RequireExplicitBindingsOption implements Element {
|
/frameworks/base/rs/java/android/renderscript/ |
ScriptIntrinsicYuvToRGB.java | 24 * as a YUV element Allocation. The output is RGBA; the alpha channel 37 * Supported elements types are {@link Element#U8_4} 40 * @param e Element type for output 44 public static ScriptIntrinsicYuvToRGB create(RenderScript rs, Element e) { 53 * Set the input yuv allocation, must be {@link Element#U8}. 65 * @param aout Output allocation. Must match creation element
|
/frameworks/rs/driver/ |
rsdShader.h | 27 class Element; 94 void initAddUserElement(const android::renderscript::Element *e, 126 void logUniform(const android::renderscript::Element *field, 129 const android::renderscript::Element *field,
|
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/ |
Copy.java | 22 import android.renderscript.Element;
|
Greyscale.java | 22 import android.renderscript.Element;
|
GroupTest.java | 22 import android.renderscript.Element; 51 mConvolve = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); 52 mMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); 66 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS));
|
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/ |
Artistic1.java | 30 ScriptIntrinsicBlur blur = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS));
|
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/ |
Blur25.java | 22 import android.renderscript.Element; 76 mIntrinsic = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS)); 83 tb = new Type.Builder(mRS, Element.F16_4(mRS)); 85 tb = new Type.Builder(mRS, Element.F32_4(mRS));
|
Copy.java | 22 import android.renderscript.Element;
|
Greyscale.java | 22 import android.renderscript.Element;
|
GroupTest.java | 22 import android.renderscript.Element; 51 mConvolve = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); 52 mMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); 66 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS));
|
/frameworks/rs/tests/java_api/RSTest_CompatLib/src/com/android/rs/test/ |
UT_blur_validation.java | 20 import android.support.v8.renderscript.Element; 57 Element.U8(RS), 63 Type.Builder typeBuilder = new Type.Builder(RS, Element.U8(RS)); 71 scriptBlur = ScriptIntrinsicBlur.create(RS, Element.U8(RS));
|
UT_script_group2_nochain.java | 51 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE); 60 Type.createX(pRS, Element.I32_4(pRS), ARRAY_SIZE), 66 Type.createX(pRS, Element.I32_4(pRS), ARRAY_SIZE), 74 Type.createX(pRS, Element.I32_4(pRS), ARRAY_SIZE),
|
/frameworks/rs/tests/lldb/java/KernelVariables/src/com/android/rs/kernelvariables/ |
MainActivity.java | 67 Allocation int_allocation = Allocation.createSized(mRS, Element.I32(mRS), 4); 73 Type.Builder typeI32Builder2D = new Type.Builder(mRS, Element.I32(mRS)); 89 Type.Builder typeI32Builder3D = new Type.Builder(mRS, Element.I32(mRS)); 98 Type.Builder yuvTypeBuilder = new Type.Builder(mRS, Element.YUV(mRS));
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
getElementById02.java | 68 Element element; local 70 element = doc.getElementById("Cancun"); 71 assertNull("throw_Null", element);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementGetAttributeNS.java | 28 import org.w3c.dom.Element; 72 // Element element; 80 // element = (Element) childList.item(1); 81 // attrValue = element.getAttributeNS(nullNS, "defaultAttr");
|
HCEntitiesSetNamedItemNS.java | 8 import org.w3c.dom.Element; 12 * An attempt to add an element to the named node map returned by entities 56 // Element elem;
|
NodeNormalize.java | 26 import org.w3c.dom.Element; 91 Element documentElement; 92 Element element1; 93 Element element2; 94 Element element3; 95 Element element4; 96 Element element5; 97 Element element6; 98 Element element7;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
TypographyFix.java | 29 import org.w3c.dom.Element; 59 if (node instanceof Element) { 60 Element element = (Element) node; local 62 NodeList childNodes = element.getChildNodes();
|
/cts/tests/tests/rscpp/librscpptest/ |
rs_jni_object.cpp | 49 sp<const Element> element = Element::BOOLEAN(mRS); local 50 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); 51 ms_clear->set_element(element); 77 sp<const Type> type= Type::create(mRS, Element::I8(mRS), 1, 0, 0); 78 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); 105 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); 106 sp<Allocation> mIn = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); 136 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum) [all...] |
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
RSYuvTest.java | 66 ay = Allocation.createTyped(mRS, Type.createXY(mRS, Element.U8(mRS), w, h)); 67 final Type tuv = Type.createXY(mRS, Element.U8(mRS), w >> 1, h >> 1); 77 return Allocation.createTyped(mRS, Type.createXY(mRS, Element.RGBA_8888(mRS), width, height)); 98 Allocation ta = Allocation.createSized(mRS, Element.U8(mRS), tmp.length); 101 ScriptIntrinsicYuvToRGB syuv = ScriptIntrinsicYuvToRGB.create(mRS, Element.U8(mRS)); 115 ScriptIntrinsicYuvToRGB syuv = ScriptIntrinsicYuvToRGB.create(mRS, Element.YUV(mRS)); 121 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS)); 154 ScriptIntrinsicYuvToRGB syuv = ScriptIntrinsicYuvToRGB.create(mRS, Element.YUV(mRS)); 160 Type.Builder tb = new Type.Builder(mRS, Element.YUV(mRS));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
GridLayoutConverter.java | 77 import org.w3c.dom.Element; 113 private final Element mLayout; 123 Element layout, boolean flatten, MultiTextEdit rootEdit, CanvasViewInfo rootView) { 282 Element child = view.mElement; 309 private void deleteRemovedElements(List<Element> delete) { 311 for (Element element : delete) { 312 mRefactoring.removeElementTags(mRootEdit, element, delete, 338 Element element = view.getElement() local 402 Element element = view.getElement(); local 833 Element element = getElement(info); local 965 Element element = getElement(child); local [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
TestMax.java | 23 import android.renderscript.Element; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2952d868c2162460l, false); 55 Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2952d868c2162461l, false); 57 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 66 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 137 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xc6031e7536addadal, false); 138 Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xc6031e7536addadbl, false); 140 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); 149 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); 220 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x1a67fc95388bdc7bl, false) [all...] |
TestMin.java | 23 import android.renderscript.Element; 54 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xbdad0b097121573el, false); 55 Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xbdad0b097121573fl, false); 57 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 66 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); 137 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x2f1cc4b149b4e454l, false); 138 Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x2f1cc4b149b4e455l, false); 140 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); 149 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); 220 Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x8381a2d14b92e5f5l, false) [all...] |