Searched
full:primitive (Results
276 -
300 of
1879) sorted by null
<<11121314151617181920>>
/art/compiler/optimizing/ |
instruction_simplifier_shared.cc | 26 DCHECK(Primitive::IsIntOrLongType(mul->GetType())); 89 Primitive::Type type = mul->GetType(); 93 if (type != Primitive::kPrimInt) { 98 if (!Primitive::IsIntOrLongType(type)) {
|
nodes_arm.h | 25 : HExpression(Primitive::kPrimInt, SideEffects::None(), kNoDexPc),
|
pc_relative_fixups_x86.cc | 66 if ((value != nullptr && Primitive::IsFloatingPointType(value->GetType()))) { 94 if (rhs != nullptr && Primitive::IsFloatingPointType(rhs->GetType())) { 124 if (Primitive::IsFloatingPointType(neg->GetType())) { 207 if (input != nullptr && Primitive::IsFloatingPointType(input->GetType())) {
|
/art/runtime/mirror/ |
class-inl.h | 349 // Don't forget about primitive types. 647 inline Primitive::Type Class::GetPrimitiveType() { 648 static_assert(sizeof(Primitive::Type) == sizeof(int32_t), 649 "art::Primitive::Type and int32_t have different sizes."); 651 Primitive::Type type = static_cast<Primitive::Type>(v32 & 0xFFFF); 652 DCHECK_EQ(static_cast<size_t>(v32 >> 16), Primitive::ComponentSizeShift(type)); 658 static_assert(sizeof(Primitive::Type) == sizeof(int32_t), 659 "art::Primitive::Type and int32_t have different sizes."); 661 size_t size_shift = static_cast<Primitive::Type>(v32 >> 16) [all...] |
class_flags.h | 28 // Only normal objects which have no reference fields, e.g. string or primitive array or normal
|
/art/test/044-proxy/src/ |
Clash.java | 24 * duplicate methods (primitive vs. object).
|
/cts/tests/openglperf2/ |
AndroidManifest.xml | 22 android:name=".primitive.GLPrimitiveActivity"
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstType.java | 24 * Constants that represent an arbitrary type (reference or primitive). 96 * class corresponding to a given primitive type. For example, if 100 * @param primitiveType {@code non-null;} the primitive type 116 throw new IllegalArgumentException("not primitive: " + primitiveType);
|
/dalvik/libdex/ |
DexUtf.cpp | 178 * single-character primitive type, or continue on to check the 190 // These are all single-character descriptors for primitive types. 274 * is for a class or array and not a primitive type. */ 285 * is for a class and not an array or primitive type. */
|
/development/samples/ApiDemos/res/xml/ |
default_values.xml | 17 <!-- This is a primitive example showing how to set default values for preferences.
|
preference_headers.xml | 17 <!-- This is a primitive example showing the different types of preferences available. -->
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
AllClassesTest.java | 52 * 'PRIMITIVE' bits in the status flag; 94 if ( (status & JDWPConstants.ClassStatus.PRIMITIVE) != 0 ){ 101 + Integer.toHexString(JDWPConstants.ClassStatus.PRIMITIVE) 103 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.PRIMITIVE)
|
AllClassesWithGenericTest.java | 53 * 'PRIMITIVE' bits in the status flag; 97 if ( (status & JDWPConstants.ClassStatus.PRIMITIVE) != 0 ){ 105 + Integer.toHexString(JDWPConstants.ClassStatus.PRIMITIVE) 107 + JDWPConstants.ClassStatus.getName(JDWPConstants.ClassStatus.PRIMITIVE)
|
/external/bison/etc/ |
README | 2 A primitive Perl script to run benches. Currently its only bench is
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1Sequence.java | 48 * If the encoding is primitive, it shall include the fewest length octets necessary. 94 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive(); local 96 if (primitive instanceof ASN1Sequence) 98 return (ASN1Sequence)primitive;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/ |
DHPublicKey.java | 90 * Return an ASN.1 primitive representation of this object.
|
/external/caliper/caliper/src/main/java/com/google/caliper/memory/ |
ObjectVisitor.java | 34 * <p>In case the explored value is either primitive or {@code null}
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstType.java | 24 * Constants that represent an arbitrary type (reference or primitive). 96 * class corresponding to a given primitive type. For example, if 100 * @param primitiveType {@code non-null;} the primitive type 116 throw new IllegalArgumentException("not primitive: " + primitiveType);
|
/external/guava/guava/src/com/google/common/primitives/ |
UnsignedInteger.java | 35 * treat primitive {@code int} values as unsigned, using the methods from {@link UnsignedInts}. 39 * unsigned primitive utilities</a>. 197 * primitive conversion from {@code int} to {@code float}, and correctly rounded. 206 * primitive conversion from {@code int} to {@code double}, and correctly rounded.
|
UnsignedLong.java | 32 * treat primitive {@code long} values as unsigned, using the methods from {@link UnsignedLongs}. 36 * unsigned primitive utilities</a>. 196 * primitive conversion from {@code long} to {@code float}, and correctly rounded. 210 * primitive conversion from {@code long} to {@code double}, and correctly rounded.
|
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
UnsignedInteger.java | 34 * treat primitive {@code int} values as unsigned, using the methods from {@link UnsignedInts}. 38 * unsigned primitive utilities</a>. 183 * primitive conversion from {@code int} to {@code float}, and correctly rounded. 192 * primitive conversion from {@code int} to {@code double}, and correctly rounded.
|
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/ |
AtomicInteger.java | 21 * around the primitive {@code int}.
|
AtomicLong.java | 21 * around the primitive {@code long}.
|
/external/javassist/src/main/javassist/util/proxy/ |
MethodHandler.java | 40 * a primitive type, the type of the array element
|
/external/jsmn/ |
jsmn.c | 35 * Fills next available token with JSON primitive. 47 /* In strict mode primitive must be followed by "," or "}" or "]" */ 60 /* In strict mode primitive must be followed by a comma/object/array */ 245 /* In non-strict mode every unquoted value is a primitive */
|
Completed in 542 milliseconds
<<11121314151617181920>>