HomeSort by relevance Sort by last modified time
    Searched refs:Element (Results 351 - 375 of 1760) sorted by null

<<11121314151617181920>>

  /external/guice/core/src/com/google/inject/internal/
PrivateElementsImpl.java 32 import com.google.inject.spi.Element;
53 private List<Element> elementsMutable = Lists.newArrayList();
57 private ImmutableList<Element> elements;
71 public List<Element> getElements() {
106 public List<Element> getElementsMutable() {
117 for (Element element : getElements()) {
118 element.applyTo(privateBinder);
  /frameworks/compile/slang/tests/P_reduce_general_struct/
ScriptC_reduce_general_struct.java.expect 42 __I32 = Element.I32(rs);
46 private Element __I32;
47 private Element __ScriptField_MyStruct;
  /frameworks/rs/tests/cpp_api/cppbasic/
compute.cpp 18 sp<const Element> e = Element::RGBA_8888(rs);
19 printf("Element %p\n", e.get());
47 sp<const Element> failed_e = Element::BOOLEAN(rs);
77 sp<const Element> e = Element::I32(rs);
  /frameworks/rs/tests/cpp_api/cppbasic-shared/
compute.cpp 18 sp<const Element> e = Element::RGBA_8888(rs);
19 printf("Element %p\n", e.get());
47 sp<const Element> failed_e = Element::BOOLEAN(rs);
77 sp<const Element> e = Element::I32(rs);
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_copy_test.java 34 Allocation a1 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
35 Allocation a2 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
58 Allocation a1 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
59 Allocation a2 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
82 Allocation a1 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
83 Allocation a2 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
UT_element.java 26 Element simpleElem;
27 Element complexElem;
69 super(rstc, "Element", ctx);
74 simpleElem = Element.F32_3(RS);
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/processor/cache/
Cache.kt 27 import javax.lang.model.element.Element
54 data class EntityKey(val element: Element)
59 data class PojoKey(val element: Element, val scope : FieldProcessor.BindingScope,
  /libcore/luni/src/test/java/tests/org/w3c/dom/
SetAttributeNodeNS.java 24 import org.w3c.dom.Element;
35 * DOMException if the "newAttr" is already an attribute of another element.
37 * Retrieve the first emp:address and append a newly created element. The
40 * attribute to the newly created Element. The "setAttributeNodeNS(newAttr)"
42 * be raised since the attribute is already an attribute of another element.
86 Element newElement;
103 ((Element) /* Node */testAddr).setAttributeNodeNS(newAttr);
119 // Element genElement;
134 // genElement = (Element) gList.item(0);
161 newAddrAttr = ((Element) /* Node */testAddr
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 75 import org.w3c.dom.Element;
107 private final Element mLayout;
110 private List<Element> mDeletedElements;
113 Element layout, boolean flatten, MultiTextEdit rootEdit, CanvasViewInfo rootView) {
142 List<Element> getDeletedElements() {
148 * contain placement information for each element
218 private void deleteRemovedElements(List<Element> delete) {
220 for (Element element : delete) {
221 mRefactoring.removeElementTags(mRootEdit, element, delete
312 Element element = view.getElement(); local
1594 Element element = getElement(info); local
1611 Element element = getElement(child); local
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 21 import android.renderscript.Element;
47 ScriptIntrinsicHistogram hist = ScriptIntrinsicHistogram.create(rs, Element.U8_4(rs));
48 Allocation sums = Allocation.createSized(rs, Element.I32_4(rs), COLOR_BIT_DEPTH);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RsUnpackColor8888Test.java 20 import android.renderscript.Element;
43 Allocation mAllocationIn = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE);
44 Allocation mAllocationOut = Allocation.createSized(mRS, Element.F32_4(mRS), INPUTSIZE);
  /external/guice/core/src/com/google/inject/util/
Modules.java 36 import com.google.inject.spi.Element;
177 List<Element> baseElements = Elements.getElements(currentStage(), baseModules);
179 // If the sole element was a PrivateElements, we want to override
183 Element element = Iterables.getOnlyElement(baseElements); local
184 if(element instanceof PrivateElements) {
185 PrivateElements privateElements = (PrivateElements)element;
196 final LinkedHashSet<Element> elements = new LinkedHashSet<Element>(baseElements);
198 final List<Element> overrideElements = Elements.getElements(currentStage()
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Collection.h 19 #include "Element.h"
37 * Collection of policy element as a map indexed with a their UID type.
39 * @tparam Key type of the policy element indexing the collection.
40 * Policy Element supported are:
47 class Collection : public std::map<Key, Element<Key> *>
50 typedef std::map<Key, Element<Key> *> Base;
51 typedef Element<Key> T;
62 * Add a policy element to the collection. Policy elements are streams, strategies, input
64 * It also set the key as the unique identifier of the policy element.
66 * @tparam Key indexing the collection of policy element
114 T *element = it->second; local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic.h 71 size_t dataLength, const Element * e,
79 const Element * e, RsScriptIntrinsicID iid);
84 ObjectBaseRef<const Element> mElement;
rsCpuIntrinsicLUT.cpp 33 RsdCpuScriptIntrinsicLUT(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
77 const Script *s, const Element *e)
95 const Script *s, const Element *e) {
  /frameworks/rs/script_api/
rs_object_info.spec 20 The functions below can be used to query the characteristics of an Allocation, Element,
38 The term "element" is used a bit ambiguously in RenderScript, as both type information
41 <li>In functions like @rsGetElementAt(), "element" means the instantiation of the type,
46 An Element can specify a simple data types as found in C, e.g. an integer, float, or
58 Elements like <a href='http://developer.android.com/reference/android/renderscript/Element.html#F32_2(android.renderscript.RenderScript)'>F32_2</a>.
60 To create complex Elements, use the <a href='http://developer.android.com/reference/android/renderscript/Element.Builder.html'>Element.Builder</a> Java class.
128 ret: rs_element, "Element describing Allocation layout."
132 Get the Element object describing the type, kind, and other characteristics of a cell
161 This function can be used to check the Element returned by @rsElementGetSubElement(
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
ColorCube.java 22 import android.renderscript.Element;
47 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS));
72 mIntrinsic = ScriptIntrinsic3DLUT.create(mRS, Element.U8_4(mRS));
Histogram.java 32 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS));
44 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS));
48 mSum = Allocation.createSized(mRS, Element.I32(mRS), 256);
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Blur25G.java 23 import android.renderscript.Element;
67 Type.Builder tb = new Type.Builder(mRS, Element.U8(mRS));
76 mIntrinsic = ScriptIntrinsicBlur.create(mRS, Element.U8(mRS));
ColorCube.java 22 import android.renderscript.Element;
47 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS));
72 mIntrinsic = ScriptIntrinsic3DLUT.create(mRS, Element.U8_4(mRS));
Histogram.java 38 mHist = ScriptIntrinsicHistogram.create(mRS, Element.U8_4(mRS));
50 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS));
54 mSum = Allocation.createSized(mRS, Element.I32(mRS), 256);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_script_group2_pointwise.java 19 import android.renderscript.Element;
45 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
52 Type T = Type.createX(pRS, Element.I32_4(pRS), ARRAY_SIZE);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_check_dims.java 23 import android.support.v8.renderscript.Element;
39 Type.Builder typeBuilder = new Type.Builder(RS, Element.U8(RS));
48 typeBuilder = new Type.Builder(RS, Element.I32(RS));
UT_script_group2_pointwise.java 21 import android.support.v8.renderscript.Element;
47 Allocation input = Allocation.createSized(pRS, Element.I32_4(pRS), ARRAY_SIZE);
54 Type T = Type.createX(pRS, Element.I32_4(pRS), ARRAY_SIZE);
  /libcore/luni/src/test/java/libcore/xml/
DomSerializationTest.java 29 import org.w3c.dom.Element;
43 Element foo = document.createElement("foo");
55 Element foo = document.createElement("foo");

Completed in 939 milliseconds

<<11121314151617181920>>