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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicConvolve3x3.java 32 * Supported elements types are {@link Element#U8}, {@link
33 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
34 * {@link Element#F32}, {@link Element#F32_2}, {@link
35 * Element#F32_3}, and {@link Element#F32_4}.
45 * @param e Element type for intputs and outputs
49 public static ScriptIntrinsicConvolve3x3 create(RenderScript rs, Element e)
    [all...]
Element.java 20 * <p>An Element represents one item within an {@link
21 * android.renderscript.Allocation}. An Element is roughly equivalent to a C
24 * kernel)</li> <li>A four-element float vector (equivalent to a float4 in a
27 * kernel)</li> </ul> <p>A complex element is roughly equivalent to a C struct
29 * element contains a list of sub-elements and names that represents a
35 * android.renderscript.Element.DataType} and a {@link
36 * android.renderscript.Element.DataKind}. The DataType encodes C type
37 * information of an Element, while the DataKind encodes how that Element should
40 * android.renderscript.Element.DataKind#USER} cannot be used as input for
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptIntrinsicConvolve3x3.java 36 * Supported elements types are {@link Element#U8}, {@link
37 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
38 * {@link Element#F32}, {@link Element#F32_2}, {@link
39 * Element#F32_3}, and {@link Element#F32_4}.
49 * @param e Element type for intputs and outputs
53 public static ScriptIntrinsicConvolve3x3 create(RenderScript rs, Element e)
    [all...]
ScriptIntrinsicConvolve5x5.java 36 * Supported elements types are {@link Element#U8}, {@link
37 * Element#U8_2}, {@link Element#U8_3}, {@link Element#U8_4},
38 * {@link Element#F32}, {@link Element#F32_2}, {@link
39 * Element#F32_3}, and {@link Element#F32_4}.
51 * @param e Element type for intputs and outputs
55 public static ScriptIntrinsicConvolve5x5 create(RenderScript rs, Element e)
    [all...]
ScriptIntrinsicResize.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}, {@link Element#F32_4}
58 * Must match the element type supplied during create.
63 Element e = ain.getElement()
    [all...]
  /external/autotest/frontend/client/src/autotest/common/ui/
ElementWidget.java 4 import com.google.gwt.user.client.Element;
8 * A simple widget that wraps an HTML element. This allows the element to be
12 protected Element element; field in class:ElementWidget
15 * @param element the HTML element to wrap
17 public ElementWidget(Element element) {
18 this.element = element
20 DOM.removeChild(DOM.getParent(element), element); local
    [all...]
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Usage.cpp 26 status_t Element<audio_usage_t>::setIdentifier(audio_usage_t identifier)
37 status_t Element<audio_usage_t>::set<routing_strategy>(routing_strategy strategy)
48 routing_strategy Element<audio_usage_t>::get<routing_strategy>() const
  /external/guava/guava-tests/test/com/google/common/reflect/
ElementTest.java 29 * Unit tests of {@link Element}.
36 Element element = A.field("privateField"); local
37 assertTrue(element.isPrivate());
38 assertFalse(element.isAbstract());
39 assertFalse(element.isPackagePrivate());
40 assertFalse(element.isProtected());
41 assertFalse(element.isPublic());
42 assertFalse(element.isFinal());
43 assertFalse(element.isStatic())
48 Element element = A.field("packagePrivateField"); local
59 Element element = A.field("protectedField"); local
70 Element element = A.field("publicField"); local
81 Element element = A.field("finalField"); local
88 Element element = A.field("staticField"); local
94 Element element = A.field("volatileField"); local
99 Element element = A.field("transientField"); local
104 Element element = A.constructor(); local
113 Element element = A.method("abstractMethod"); local
121 Element element = A.method("overridableMethod"); local
129 Element element = A.method("privateMethod"); local
139 Element element = A.method("protectedMethod"); local
150 Element element = A.method("publicFinalMethod"); local
159 Element element = A.method("nativeMethod"); local
165 Element element = A.method("synchronizedMethod"); local
170 Element element = A.method("notAnnotatedMethod"); local
219 Element element = new Element(A.class.getDeclaredField(name)); local
227 Element element = new Element(constructor); local
234 Element element = new Element(A.class.getDeclaredMethod(name, parameterTypes)); local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSBaseCompute.java 21 import android.renderscript.Element;
76 protected Element getElement(RenderScript rs, Element.DataType dataType, int size) {
77 Element element = null; local
79 if (dataType == Element.DataType.FLOAT_64) {
80 element = Element.F64(rs);
81 } else if (dataType == Element.DataType.FLOAT_32) {
82 element = Element.F32(rs)
113 Element element = getElement(rs, dataType, size); local
177 Element element = getElement(rs, dataType, size); local
202 Element element = getElement(rs, dataType, size); local
235 Element element = minAlloc.getElement(); local
    [all...]
IntrinsicBlur.java 48 private void initTest(int w, int h, Element e, Script.LaunchOptions lo) {
51 Type.Builder tb = new Type.Builder(mRS, Element.F32_4(mRS));
77 if (mAllocSrc.getType().getElement().isCompatible(Element.U8(mRS))) {
81 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) {
89 if (mAllocSrc.getType().getElement().isCompatible(Element.U8(mRS))) {
93 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) {
103 Element e = Element.U8(mRS);
117 Element e = Element.U8_4(mRS)
    [all...]
  /libcore/ojluni/src/main/java/java/util/prefs/
XmlSupport.java 57 "<!ELEMENT preferences (root) >" +
61 "<!ELEMENT root (map, node*) >" +
65 "<!ELEMENT node (map, node*) >" +
69 "<!ELEMENT map (entry*) >" +
72 "<!ELEMENT entry EMPTY >" +
103 Element preferences = doc.getDocumentElement() ;
105 Element xmlRoot = (Element)
116 Element e = xmlRoot;
119 e = (Element) e.appendChild(doc.createElement("node"))
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ComponentProcessingStep.java 31 import javax.lang.model.element.Element;
32 import javax.lang.model.element.TypeElement;
81 SetMultimap<Class<? extends Annotation>, Element> elementsByAnnotation) {
82 final Map<Element, ValidationReport<TypeElement>> builderReportsByComponent =
84 final Set<Element> subcomponentBuilderElements =
86 final Map<Element, ValidationReport<TypeElement>> builderReportsBySubcomponent =
88 final Set<Element> subcomponentElements = elementsByAnnotation.get(Subcomponent.class);
89 final Map<Element, ValidationReport<TypeElement>> reportsBySubcomponent =
107 private Map<Element, ValidationReport<TypeElement>> processComponentBuilders
    [all...]
  /external/guice/core/src/com/google/inject/spi/
Element.java 36 public interface Element {
39 * Returns an arbitrary object containing information about the "place" where this element was
49 * Accepts an element visitor. Invokes the visitor method specific to this element's type.
56 * Writes this module element to the given binder (optional operation).
58 * @param binder to apply configuration element to
60 * element.
  /external/guice/core/test/com/google/inject/spi/
FailingElementVisitor.java 22 @Override protected Void visitOther(Element element) {
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
RealElementTest.java 19 import com.google.inject.multibindings.Element.Type;
28 private Element systemElement;
32 this.systemElement = Holder.class.getAnnotation(Element.class);
53 @Element(keyType = "a", setName = "b", type = Type.MULTIBINDER, uniqueId = 1)
  /frameworks/rs/
rsElement.h 38 // An element is a group of Components that occupies one cell in a structure.
39 class Element : public ObjectBase {
51 const Element **fields;
89 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();}
103 static Element *createFromStream(Context *rsc, IStream *stream);
105 static ObjectBaseRef<const Element> createRef(Context *rsc,
110 static ObjectBaseRef<const Element> createRef(Context *rsc, size_t count,
111 const Element **,
116 static const Element* create(Context *rsc,
121 ObjectBaseRef<const Element> elem = createRef(rsc, dt, dk, isNorm, vecSize)
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
Attr.java 17 * <code>Element</code> object. Typically the allowable values for the
20 * since they are not actually child nodes of the element they describe, the
31 * <code>Element</code> nodes contained within a
41 * attribute does not exist on this element in the structure model until it
180 * <code>Element</code> interface.
184 * also the method <code>Element.setAttribute()</code>.
195 * <code>Element</code> interface.
199 * also the method <code>Element.setAttribute()</code>.
211 * The <code>Element</code> node this attribute is attached to or
215 public Element getOwnerElement()
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlWhitelist.java 27 * Looks up the HTML.Element object associated with the given element tag
30 * @param name The tag name of the element to lookup
31 * @return The HTML.Element object associated with the given element tag name,
34 HTML.Element lookupElement(String name);
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 24 import org.w3c.dom.Element;
61 Element root = document.getDocumentElement();
71 Element one = (Element) list.item(0);
72 Element two = (Element) list.item(1);
73 Element three = (Element) list.item(2);
74 Element four = (Element) list.item(3)
    [all...]
  /external/guice/core/src/com/google/inject/
Binding.java 21 import com.google.inject.spi.Element;
60 public interface Binding<T> extends Element {
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
OptionalBinderBinding.java 21 import com.google.inject.spi.Element;
47 * called on an element retrieved from {@link Elements#getElements}.
57 * This will throw {@link UnsupportedOperationException} if it is called on an element retrieved
67 * Returns true if this OptionalBinder contains the given Element in order to build the optional
68 * binding or uses the given Element in order to support building and injecting its data. This
74 boolean containsElement(Element element);
  /development/vndk/tools/header-checker/header-abi-diff/src/
abi_diff_wrappers.h 28 static bool IgnoreSymbol(const T *element,
30 return ignored_symbols.find(element->basic_abi().linker_set_key()) !=
40 template <typename Element, typename ElementDiff>
43 const google::protobuf::RepeatedPtrField<Element> &old_elements,
44 const google::protobuf::RepeatedPtrField<Element> &new_elements);
47 template <typename Element, typename ElementDiff>
50 const google::protobuf::RepeatedPtrField<Element> &old_elements,
51 const google::protobuf::RepeatedPtrField<Element> &new_elements);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueue.java 27 public interface Element {
37 private final ArrayList<Element> mExpandableArrayOfActivePointers =
47 public void add(final Element pointer) {
52 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
63 public void remove(final Element pointer) {
68 final ArrayList<Element> expandableArray = mExpandableArrayOfActivePointers;
72 final Element element = expandableArray.get(index); local
73 if (element == pointer) {
75 Log.w(TAG, "Found duplicated element in remove: " + pointer)
104 final Element element = expandableArray.get(index); local
121 final Element element = expandableArray.get(index); local
156 final Element element = expandableArray.get(index); local
182 final Element element = expandableArray.get(index); local
199 final Element element = expandableArray.get(index); local
216 final Element element = expandableArray.get(index); local
229 final Element element = expandableArray.get(index); local
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
GetAttributeNS.java 24 import org.w3c.dom.Element;
35 * Retrieve the first "emp:address" element. The value returned by the
82 // Element testAddr;
86 // testAddr = (Element) elementList.item(0);
97 Element testAddr;
103 testAddr = (Element) elementList.item(0);
107 testAddr = (Element) elementList.item(0);
116 Element testAddr;
120 testAddr = (Element) elementList.item(0);
133 Element testAddr
    [all...]
NodeHasAttributes.java 26 import org.w3c.dom.Element;
35 * The method hasAttributes returns whether this node (if it is an element) has
36 * any attributes. Retreive an element node without attributes. Verify if
37 * hasAttributes returns false. Retreive another element node with attributes.
76 Element element; local
81 element = (Element) elementList.item(0);
82 hasAttributes = element.hasAttributes();
85 element = (Element) elementList.item(0)
100 Element element; local
116 Element element; local
    [all...]

Completed in 714 milliseconds

1 23 4 5 6 7 8 91011>>