/external/v8/src/compiler/ |
type-cache.h | 26 Type* const kInt8 = CreateRange<int8_t>(); 27 Type* const kUint8 = CreateRange<uint8_t>(); 28 Type* const kUint8Clamped = kUint8; 29 Type* const kUint8OrMinusZeroOrNaN = 30 Type::Union(kUint8, Type::MinusZeroOrNaN(), zone()); 31 Type* const kInt16 = CreateRange<int16_t>(); 32 Type* const kUint16 = CreateRange<uint16_t>(); 33 Type* const kInt32 = Type::Signed32() [all...] |
operation-typer.h | 23 class Type; 31 Type* Merge(Type* left, Type* right); 33 Type* ToPrimitive(Type* type); 36 Type* ToNumber(Type* type); [all...] |
/frameworks/av/media/libmedia/include/media/ |
Metadata.h | 49 typedef int32_t Type; 50 typedef SortedVector<Type> Filter; 52 static const Type kAny = 0; 55 static const Type kPauseAvailable = 1; // Boolean 56 static const Type kSeekBackwardAvailable = 2; // Boolean 57 static const Type kSeekForwardAvailable = 3; // Boolean 58 static const Type kSeekAvailable = 4; // Boolean 61 static const Type kTitle = 5; // String 62 static const Type kComment = 6; // String 63 static const Type kCopyright = 7; // Strin [all...] |
/libcore/ojluni/src/main/java/java/lang/reflect/ |
WildcardType.java | 29 * WildcardType represents a wildcard type expression, such as 34 public interface WildcardType extends Type { 36 * Returns an array of {@code Type} objects representing the upper 37 * bound(s) of this type variable. Note that if no upper bound is 42 * <li>if B is a parameterized type or a type variable, it is created, 49 * type variable 51 * bounds refers to a non-existent type declaration 53 * bounds refer to a parameterized type that cannot be instantiated 56 Type[] getUpperBounds() [all...] |
ParameterizedType.java | 30 * ParameterizedType represents a parameterized type such as 33 * <p>A parameterized type is created the first time it is needed by a 35 * parameterized type p is created, the generic type declaration that 36 * p instantiates is resolved, and all type arguments of p are created 38 * TypeVariable} for details on the creation process for type 39 * variables. Repeated creation of a parameterized type has no effect. 43 * same generic type declaration and have equal type parameters. 47 public interface ParameterizedType extends Type { [all...] |
GenericArrayType.java | 29 * {@code GenericArrayType} represents an array type whose component 30 * type is either a parameterized type or a type variable. 33 public interface GenericArrayType extends Type { 35 * Returns a {@code Type} object representing the component type 36 * of this array. This method creates the component type of the 41 * creation process for type variables. 43 * @return a {@code Type} object representing the component typ [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
mathlimits.h | 35 // Useful integer and floating point limits and type traits. 60 // Useful integer and floating point limits and type traits. 66 // Type name. 67 typedef T Type; 68 // Unsigned version of the Type with the same byte size. 69 // Same as Type for floating point and unsigned types. 71 // If the type supports negative values. 73 // If the type supports only integer values. 76 static const Type kPosMin; 78 static const Type kPosMax [all...] |
mathlimits.cc | 47 #define DEF_COMMON_LIMITS(Type) 48 #define DEF_UNSIGNED_INT_LIMITS(Type) 49 #define DEF_SIGNED_INT_LIMITS(Type) 50 #define DEF_PRECISION_LIMITS(Type) 54 #define DEF_COMMON_LIMITS(Type) \ 55 const bool MathLimits<Type>::kIsSigned; \ 56 const bool MathLimits<Type>::kIsInteger; \ 57 const int MathLimits<Type>::kMin10Exp; \ 58 const int MathLimits<Type>::kMax10Exp; 60 #define DEF_UNSIGNED_INT_LIMITS(Type) \ [all...] |
/frameworks/base/libs/hwui/utils/ |
Macros.h | 21 #define PREVENT_COPY_AND_ASSIGN(Type) \ 23 Type(const Type&) = delete; \ 24 void operator=(const Type&) = delete 26 #define HASHABLE_TYPE(Type) \ 27 bool operator==(const Type& other) const; \ 29 bool operator!=(const Type& other) const { return !(*this == other); } \ 30 friend inline hash_t hash_type(const Type& entry) { return entry.hash(); } 32 #define REQUIRE_COMPATIBLE_LAYOUT(Type) \ 33 static_assert(std::is_standard_layout<Type>::value, [all...] |
/prebuilts/misc/common/swig/include/2.0.11/r/ |
std_list.i | 1 #define %swig_list_methods(Type...) %swig_sequence_methods(Type) 2 #define %swig_list_methods_val(Type...) %swig_sequence_methods_val(Type);
|
/frameworks/base/services/core/java/com/android/server/lights/ |
LightsManager.java | 19 import android.hardware.light.V2_0.Type; 22 public static final int LIGHT_ID_BACKLIGHT = Type.BACKLIGHT; 23 public static final int LIGHT_ID_KEYBOARD = Type.KEYBOARD; 24 public static final int LIGHT_ID_BUTTONS = Type.BUTTONS; 25 public static final int LIGHT_ID_BATTERY = Type.BATTERY; 26 public static final int LIGHT_ID_NOTIFICATIONS = Type.NOTIFICATIONS; 27 public static final int LIGHT_ID_ATTENTION = Type.ATTENTION; 28 public static final int LIGHT_ID_BLUETOOTH = Type.BLUETOOTH; 29 public static final int LIGHT_ID_WIFI = Type.WIFI; 30 public static final int LIGHT_ID_COUNT = Type.COUNT [all...] |
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pybackward.swg | 8 #define SWIG_As_frag(Type...) %fragment_name(As, Type) 9 #define SWIG_As_name(Type...) %symbol_name(As, Type) 10 #define SWIG_As(Type...) SWIG_As_name(Type) SWIG_AS_CALL_ARGS 12 #define SWIG_Check_frag(Type...) %fragment_name(Check, Type) 13 #define SWIG_Check_name(Type...) %symbol_name(Check, Type) [all...] |
/external/libchrome/base/memory/ |
singleton_objc.h | 7 // appropriate for Objective-C objects. A typical Objective-C object of type 40 template<typename Type> 41 struct DefaultSingletonObjCTraits : public DefaultSingletonTraits<Type> { 42 static Type* New() { 43 return [[Type alloc] init]; 46 static void Delete(Type* object) { 54 template<typename Type, 55 typename Traits = DefaultSingletonObjCTraits<Type>, 56 typename DifferentiatingType = Type> 57 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType> [all...] |
manual_constructor.h | 26 template <typename Type> 37 return AlignedAlloc(size, ALIGNOF(Type)); 43 inline Type* get() { 44 return space_.template data_as<Type>(); 46 inline const Type* get() const { 47 return space_.template data_as<Type>(); 50 inline Type* operator->() { return get(); } 51 inline const Type* operator->() const { return get(); } 53 inline Type& operator*() { return *get(); } 54 inline const Type& operator*() const { return *get(); [all...] |
/packages/apps/Dialer/java/com/android/voicemail/impl/ |
OmtpEvents.java | 31 CONFIG_REQUEST_STATUS_SUCCESS(Type.CONFIGURATION, true), 33 CONFIG_PIN_SET(Type.CONFIGURATION, true), 35 CONFIG_DEFAULT_PIN_REPLACED(Type.CONFIGURATION, true), 36 CONFIG_ACTIVATING(Type.CONFIGURATION, true), 38 CONFIG_ACTIVATING_SUBSEQUENT(Type.CONFIGURATION, true), 39 CONFIG_STATUS_SMS_TIME_OUT(Type.CONFIGURATION), 40 CONFIG_SERVICE_NOT_AVAILABLE(Type.CONFIGURATION), 45 DATA_IMAP_OPERATION_STARTED(Type.DATA_CHANNEL, true), 47 DATA_IMAP_OPERATION_COMPLETED(Type.DATA_CHANNEL, true), 49 DATA_INVALID_PORT(Type.DATA_CHANNEL) [all...] |
/external/skia/src/sksl/ |
SkSLContext.h | 22 : fInvalid_Type(new Type(SkString("<INVALID>"))) 23 , fVoid_Type(new Type(SkString("void"))) 24 , fDouble_Type(new Type(SkString("double"), true)) 25 , fDVec2_Type(new Type(SkString("dvec2"), *fDouble_Type, 2)) 26 , fDVec3_Type(new Type(SkString("dvec3"), *fDouble_Type, 3)) 27 , fDVec4_Type(new Type(SkString("dvec4"), *fDouble_Type, 4)) 28 , fFloat_Type(new Type(SkString("float"), true, { fDouble_Type.get() })) 29 , fVec2_Type(new Type(SkString("vec2"), *fFloat_Type, 2)) 30 , fVec3_Type(new Type(SkString("vec3"), *fFloat_Type, 3)) 31 , fVec4_Type(new Type(SkString("vec4"), *fFloat_Type, 4) [all...] |
/external/libcxx/test/std/experimental/any/any.class/any.cons/ |
copy.pass.cpp | 26 template <class Type> 29 assert(Type::count == 0); 31 any const a((Type(42))); 32 assert(Type::count == 1); 41 assert(Type::count == 1); 42 assertContains<Type>(a, 42); 44 assert(Type::count == 0); 57 template <class Type> 61 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); 62 assert(Type::count == 0) [all...] |
value.pass.cpp | 33 template <class Type> 37 assert(Type::count == 0); 39 Type const t(42); 40 assert(Type::count == 1); 49 assert(Type::count == 1); 52 assert(Type::count == 0); 77 template <class Type> 79 // constructing from a small type should perform no allocations. 80 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); 81 assert(Type::count == 0) [all...] |
/external/libcxx/test/std/utilities/any/any.class/any.cons/ |
copy.pass.cpp | 26 template <class Type> 29 assert(Type::count == 0); 31 any const a((Type(42))); 32 assert(Type::count == 1); 41 assert(Type::count == 1); 42 assertContains<Type>(a, 42); 44 assert(Type::count == 0); 57 template <class Type> 61 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); 62 assert(Type::count == 0) [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.cons/ |
copy.pass.cpp | 26 template <class Type> 29 assert(Type::count == 0); 31 any const a((Type(42))); 32 assert(Type::count == 1); 41 assert(Type::count == 1); 42 assertContains<Type>(a, 42); 44 assert(Type::count == 0); 57 template <class Type> 61 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); 62 assert(Type::count == 0) [all...] |
value.pass.cpp | 33 template <class Type> 37 assert(Type::count == 0); 39 Type const t(42); 40 assert(Type::count == 1); 49 assert(Type::count == 1); 52 assert(Type::count == 0); 77 template <class Type> 79 // constructing from a small type should perform no allocations. 80 DisableAllocationGuard g(isSmallType<Type>()); ((void)g); 81 assert(Type::count == 0) [all...] |
/external/clang/test/CodeGenCXX/ |
delayed-template-parsing.cpp | 5 struct Type { 13 Type T; 14 // CHECK: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QAEXXZ" 15 // X64: call {{.*}} @"\01??$Foo@$0A@@Type@ClassScopeSpecialization@@QEAAXXZ"
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
DisplayContext.java | 26 STANDARD_NAMES(Type.DIALECT_HANDLING, 0), 32 DIALECT_NAMES(Type.DIALECT_HANDLING, 1), 41 CAPITALIZATION_NONE(Type.CAPITALIZATION, 0), 47 CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE(Type.CAPITALIZATION, 1), 53 CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE(Type.CAPITALIZATION, 2), 59 CAPITALIZATION_FOR_UI_LIST_OR_MENU(Type.CAPITALIZATION, 3), 66 CAPITALIZATION_FOR_STANDALONE(Type.CAPITALIZATION, 4), 76 LENGTH_FULL(Type.DISPLAY_LENGTH, 0), 82 LENGTH_SHORT(Type.DISPLAY_LENGTH, 1), 93 SUBSTITUTE(Type.SUBSTITUTE_HANDLING, 0) 125 private final Type type; field in class:DisplayContext 135 public Type type() { method in class:DisplayContext [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
DisplayContext.java | 27 STANDARD_NAMES(Type.DIALECT_HANDLING, 0), 34 DIALECT_NAMES(Type.DIALECT_HANDLING, 1), 44 CAPITALIZATION_NONE(Type.CAPITALIZATION, 0), 51 CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE(Type.CAPITALIZATION, 1), 58 CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE(Type.CAPITALIZATION, 2), 65 CAPITALIZATION_FOR_UI_LIST_OR_MENU(Type.CAPITALIZATION, 3), 73 CAPITALIZATION_FOR_STANDALONE(Type.CAPITALIZATION, 4), 84 LENGTH_FULL(Type.DISPLAY_LENGTH, 0), 91 LENGTH_SHORT(Type.DISPLAY_LENGTH, 1), 103 SUBSTITUTE(Type.SUBSTITUTE_HANDLING, 0) 141 private final Type type; field in class:DisplayContext 152 public Type type() { method in class:DisplayContext [all...] |
/dalvik/dx/junit-tests/com/android/dx/rop/type/ |
TypeTest.java | 17 package com.android.dx.rop.type; 29 Type boolArray = Type.BOOLEAN.getArrayType(); 30 assertTrue(boolArray == Type.BOOLEAN_ARRAY); 31 assertTrue(boolArray == Type.intern("[Z")); 32 Type myClass = Type.intern("Lcom/example/Foo;"); 34 Type.clearInternTable(); 36 assertTrue(boolArray == Type.intern("[Z")); 37 Type myClass2 = Type.intern("Lcom/example/Foo;") [all...] |