HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 1 - 25 of 12422) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/minikin/include/minikin/
Macros.h 19 #define MINIKIN_PREVENT_COPY_AND_ASSIGN(Type) \
20 Type(const Type&) = delete; \
21 Type& operator=(const Type&) = delete
23 #define MINIKIN_PREVENT_COPY_ASSIGN_AND_MOVE(Type) \
24 Type(const Type&) = delete; \
25 Type& operator=(const Type&) = delete;
    [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...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
builder.h 50 Type* mVoidTy;
51 Type* mInt1Ty;
52 Type* mInt8Ty;
53 Type* mInt16Ty;
54 Type* mInt32Ty;
55 Type* mInt64Ty;
56 Type* mIntPtrTy;
57 Type* mFP16Ty;
58 Type* mFP32Ty;
59 Type* mDoubleTy
    [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, #Type " must have standard layout"
    [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...]
  /external/v8/src/compiler/
operation-typer.h 23 class Type;
31 Type* Merge(Type* left, Type* right);
33 Type* ToPrimitive(Type* type);
36 Type* ToNumber(Type* type);
    [all...]
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...]
  /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...]
  /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)
126 private final int type; field in class:OmtpEvents
    [all...]
  /art/compiler/optimizing/
data_type-inl.h 26 constexpr DataType::Type DataTypeFromPrimitive(Primitive::Type type) {
27 switch (type) {
28 case Primitive::kPrimNot: return DataType::Type::kReference;
29 case Primitive::kPrimBoolean: return DataType::Type::kBool;
30 case Primitive::kPrimByte: return DataType::Type::kInt8;
31 case Primitive::kPrimChar: return DataType::Type::kUint16;
32 case Primitive::kPrimShort: return DataType::Type::kInt16;
33 case Primitive::kPrimInt: return DataType::Type::kInt32
    [all...]
data_type.h 30 enum class Type : uint8_t {
47 static constexpr Type FromShorty(char type);
48 static constexpr char TypeId(DataType::Type type);
50 static constexpr size_t SizeShift(Type type) {
51 switch (type) {
52 case Type::kVoid:
53 case Type::kBool
    [all...]
  /external/libcxx/test/std/utilities/any/any.class/any.cons/
copy.pass.cpp 33 template <class Type>
36 assert(Type::count == 0);
38 any const a((Type(42)));
39 assert(Type::count == 1);
48 assert(Type::count == 1);
49 assertContains<Type>(a, 42);
51 assert(Type::count == 0);
64 template <class Type>
68 DisableAllocationGuard g(isSmallType<Type>()); ((void)g);
69 assert(Type::count == 0)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.class/any.cons/
copy.pass.cpp 28 template <class Type>
31 assert(Type::count == 0);
33 any const a((Type(42)));
34 assert(Type::count == 1);
43 assert(Type::count == 1);
44 assertContains<Type>(a, 42);
46 assert(Type::count == 0);
59 template <class Type>
63 DisableAllocationGuard g(isSmallType<Type>()); ((void)g);
64 assert(Type::count == 0)
    [all...]
value.pass.cpp 35 template <class Type>
39 assert(Type::count == 0);
41 Type const t(42);
42 assert(Type::count == 1);
51 assert(Type::count == 1);
54 assert(Type::count == 0);
79 template <class Type>
81 // constructing from a small type should perform no allocations.
82 DisableAllocationGuard g(isSmallType<Type>()); ((void)g);
83 assert(Type::count == 0)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/any/any.class/any.cons/
copy.pass.cpp 33 template <class Type>
36 assert(Type::count == 0);
38 any const a((Type(42)));
39 assert(Type::count == 1);
48 assert(Type::count == 1);
49 assertContains<Type>(a, 42);
51 assert(Type::count == 0);
64 template <class Type>
68 DisableAllocationGuard g(isSmallType<Type>()); ((void)g);
69 assert(Type::count == 0)
    [all...]
  /external/annotation-tools/scene-lib/src/type/
ArrayType.java 1 package type; package
4 * A representation of an array type.
6 public class ArrayType extends Type {
9 * The type of elements this array holds.
11 private Type componentType;
14 * Constructs a new array type.
15 * @param componentType the type of elements this array holds
17 public ArrayType(Type componentType) {
23 * Gets the component type.
24 * @return the component type
    [all...]
  /external/skia/src/sksl/
SkSLContext.h 22 : fInvalid_Type(new Type("<INVALID>"))
23 , fVoid_Type(new Type("void"))
24 , fDouble_Type(new Type("double", Type::kFloat_NumberKind, 4))
25 , fDouble2_Type(new Type("double2", *fDouble_Type, 2))
26 , fDouble3_Type(new Type("double3", *fDouble_Type, 3))
27 , fDouble4_Type(new Type("double4", *fDouble_Type, 4))
28 , fFloat_Type(new Type("float", Type::kFloat_NumberKind, 3))
29 , fFloat2_Type(new Type("float2", *fFloat_Type, 2)
    [all...]
  /external/skqp/src/sksl/
SkSLContext.h 22 : fInvalid_Type(new Type("<INVALID>"))
23 , fVoid_Type(new Type("void"))
24 , fDouble_Type(new Type("double", Type::kFloat_NumberKind, 4))
25 , fDouble2_Type(new Type("double2", *fDouble_Type, 2))
26 , fDouble3_Type(new Type("double3", *fDouble_Type, 3))
27 , fDouble4_Type(new Type("double4", *fDouble_Type, 4))
28 , fFloat_Type(new Type("float", Type::kFloat_NumberKind, 3))
29 , fFloat2_Type(new Type("float2", *fFloat_Type, 2)
    [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"

Completed in 2297 milliseconds

1 2 3 4 5 6 7 8 91011>>