HomeSort by relevance Sort by last modified time
    Searched full:primitive (Results 76 - 100 of 704) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/samples/ApiDemos/res/xml/
preference_headers.xml 17 <!-- This is a primitive example showing the different types of preferences available. -->
  /development/samples/GlobalTime/src/com/android/globaltime/
Shape.java 60 * @param primitive a GL primitive type understood by glDrawElements,
69 protected Shape(int primitive,
74 mPrimitive = primitive;
  /development/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/
FountainRS.java 46 smb.addIndexSetType(Mesh.Primitive.POINT);
  /external/chromium/base/
spin_wait.h 10 // those primitive multi-threaded constructs.
  /external/guava/src/com/google/common/base/
Defaults.java 51 * char}. For non-primitive types and {@code void}, null is returned.
  /external/javassist/src/main/javassist/util/proxy/
MethodHandler.java 40 * a primitive type, the type of the array element
  /external/proguard/src/proguard/classfile/
LibraryField.java 36 * References to primitive types are ignored.
LibraryMethod.java 36 * References to primitive types are ignored.
ProgramField.java 38 * References to primitive types are ignored.
  /external/proguard/src/proguard/classfile/attribute/
LocalVariableTypeInfo.java 44 * References to primitive types are ignored.
  /external/webkit/Source/JavaScriptCore/runtime/
DateConstructor.cpp 85 JSValue primitive = args.at(0).toPrimitive(exec); local
86 if (primitive.isString())
87 value = parseDate(exec, primitive.getString(exec));
89 value = primitive.toNumber(exec);
JSWrapperObject.h 30 // Number, Boolean and Date which are wrappers for primitive types.
  /external/webkit/Tools/DumpRenderTree/android/
view_source.php 37 # Very primitive check if path tries to go above DOCUMENT_ROOT or is absolute
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 33 import android.renderscript.Mesh.Primitive;
166 innerPointBuilder.addIndexSetType(Primitive.POINT);
176 outerPointBuilder.addIndexSetType(Primitive.POINT);
211 backgroundBuilder.addIndexSetType(Primitive.TRIANGLE_STRIP);
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 21 import android.renderscript.Mesh.Primitive;
70 smb2.addIndexSetType(Mesh.Primitive.POINT);
76 smb3.addIndexSetType(Mesh.Primitive.POINT);
172 backgroundBuilder.addIndexSetType(Primitive.TRIANGLE);
  /dalvik/libdex/
DexUtf.h 110 * can't name a primitive type (including void). In terms of syntax,
118 * is for a class or array and not a primitive type. */
123 * is for a class and not an array or primitive type. */
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1StreamParser.java 58 throw new IOException("indefinite length primitive encoding encountered");
146 throw new IOException("indefinite length primitive encoding encountered");
200 // Some primitive encodings can be handled by parsers too...
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 505 else // primitive type
507 return primitive (first);
523 else // primitive type
525 component = primitive (first);
533 Class primitive (char c) throws ClassNotFoundException method in class:Types.typeDescriptorCompiler
563 else // primitive type
564 return primitive (first);
581 else // primitive type
582 component = primitive (first);
589 String primitive (char c method in class:Types.typeDescriptorCompiler2
    [all...]
  /external/iptables/libiptc/
linux_list.h 134 * with another list-mutation primitive, such as list_add_rcu()
155 * with another list-mutation primitive, such as list_add_tail_rcu()
206 * with another list-mutation primitive, such as list_del_rcu()
442 * This list-traversal primitive may safely run concurrently with
461 * This list-traversal primitive may safely run concurrently with
475 * This list-traversal primitive may safely run concurrently with
494 * This list-traversal primitive may safely run concurrently with
561 * with another list-mutation primitive, such as hlist_add_head_rcu()
602 * with another list-mutation primitive, such as hlist_add_head_rcu()
608 * Regardless of the type of CPU, the list-traversal primitive
    [all...]
  /libcore/luni/src/main/java/java/lang/
Double.java 21 * The wrapper for the primitive type {@code double}.
96 * The {@link Class} object that represents the primitive type {@code
116 * Constructs a new {@code Double} with the specified primitive double
120 * the primitive double value to store in the new instance.
185 * Gets the primitive value of this double.
187 * @return this object's primitive value.
290 * @return the primitive double value represented by {@code string}.
  /dalvik/vm/reflect/
Reflect.cpp 839 * Given a boxed primitive type, such as java/lang/Integer, return the
840 * primitive type index.
876 * Convert primitive, boxed data from "srcPtr" to "dstPtr".
891 * Returns the width in 32-bit words of the destination primitive, or
987 LOGV("illegal primitive conversion: '%s' to '%s'",
1015 if (srcType == PRIM_NOT) { // didn't pass a boxed primitive in
1016 LOGVV("conv arg: type '%s' not boxed primitive",
1042 * Create a wrapper object for a primitive data type. If "returnType" is
1043 * not primitive, this just casts "value" to an object and returns it.
1094 * Unwrap a primitive data type, if necessary
    [all...]
  /dalvik/vm/native/
java_lang_reflect_Field.cpp 452 * Primitive types need to be boxed.
476 /* if it's primitive, box it up */
486 * When assigning into a primitive field we will automatically extract
502 /* unbox primitive, or verify object type */
518 * Primitive field getters, e.g.:
537 dvmThrowIllegalArgumentException("not a primitive field");
552 dvmThrowIllegalArgumentException("invalid primitive conversion");
558 * Primitive field setters, e.g.:
578 dvmThrowIllegalArgumentException("not a primitive field");
586 dvmThrowIllegalArgumentException("invalid primitive conversion")
    [all...]
  /external/guava/javadoc/com/google/common/primitives/
Primitives.html 104 Contains static utility methods pertaining to primitive types and their
132 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A map from primitive types to their corresponding wrapper types.</TD>
140 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;All nine primitive types (including void).</TD>
148 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A map from wrapper types to their corresponding primitive types.</TD>
175 primitive-wrapper types, such as <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Integer.html?is-external=true" title="class or interface in java.lang"><CODE>Integer</CODE></A>.</TD>
190 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the corresponding primitive type of <code>type</code> if it is a
206 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the corresponding wrapper type of <code>type</code> if it is a primitive
237 <DD>A map from primitive types to their corresponding wrapper types.
249 <DD>A map from wrapper types to their corresponding primitive types.
261 <DD>All nine primitive types (including void)
    [all...]
  /external/kernel-headers/original/linux/
list.h 104 * with another list-mutation primitive, such as list_add_rcu()
125 * with another list-mutation primitive, such as list_add_tail_rcu()
176 * with another list-mutation primitive, such as list_del_rcu()
521 * This list-traversal primitive may safely run concurrently with
543 * This list-traversal primitive may safely run concurrently with
558 * This list-traversal primitive may safely run concurrently with
576 * This list-traversal primitive may safely run concurrently with
648 * with another list-mutation primitive, such as hlist_add_head_rcu()
711 * with another list-mutation primitive, such as hlist_add_head_rcu()
717 * list-traversal primitive must be guarded by rcu_read_lock()
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.1.js 53 array[item++] = new TestCase( SECTION, "String('string primitive')", "string primitive", String('string primitive') );

Completed in 768 milliseconds

1 2 34 5 6 7 8 91011>>