/frameworks/av/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...] |
Type.java | 29 * Type is the common superinterface for all types in the Java 31 * array types, type variables and primitive types. 36 public interface Type {
|
/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);
|
std_common.i | 5 Generate the traits for a 'primitive' type, such as 'double', 9 %define %traits_ptypen(Type...) 10 %fragment(SWIG_Traits_frag(Type),"header", 11 fragment=SWIG_AsVal_frag(Type), 12 fragment=SWIG_From_frag(Type), 15 template <> struct traits<Type > { 17 static const char* type_name() { return #Type; } 19 template <> struct traits_asval<Type > { 20 typedef Type value_type; 22 return SWIG_AsVal(Type)(obj, val) [all...] |
/external/libchrome/base/memory/ |
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...] |
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...] |
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
DisplayContext.java | 24 STANDARD_NAMES(Type.DIALECT_HANDLING, 0), 30 DIALECT_NAMES(Type.DIALECT_HANDLING, 1), 39 CAPITALIZATION_NONE(Type.CAPITALIZATION, 0), 45 CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE(Type.CAPITALIZATION, 1), 51 CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE(Type.CAPITALIZATION, 2), 57 CAPITALIZATION_FOR_UI_LIST_OR_MENU(Type.CAPITALIZATION, 3), 64 CAPITALIZATION_FOR_STANDALONE(Type.CAPITALIZATION, 4), 74 LENGTH_FULL(Type.DISPLAY_LENGTH, 0), 80 LENGTH_SHORT(Type.DISPLAY_LENGTH, 1); 83 * Type values for DisplayContex 101 private final Type type; field in class:DisplayContext 111 public Type type() { method in class:DisplayContext [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
DisplayContext.java | 25 STANDARD_NAMES(Type.DIALECT_HANDLING, 0), 32 DIALECT_NAMES(Type.DIALECT_HANDLING, 1), 42 CAPITALIZATION_NONE(Type.CAPITALIZATION, 0), 49 CAPITALIZATION_FOR_MIDDLE_OF_SENTENCE(Type.CAPITALIZATION, 1), 56 CAPITALIZATION_FOR_BEGINNING_OF_SENTENCE(Type.CAPITALIZATION, 2), 63 CAPITALIZATION_FOR_UI_LIST_OR_MENU(Type.CAPITALIZATION, 3), 71 CAPITALIZATION_FOR_STANDALONE(Type.CAPITALIZATION, 4), 82 LENGTH_FULL(Type.DISPLAY_LENGTH, 0), 89 LENGTH_SHORT(Type.DISPLAY_LENGTH, 1); 92 * Type values for DisplayContex 114 private final Type type; field in class:DisplayContext 125 public Type type() { method in class:DisplayContext [all...] |
/external/v8/src/ |
type-cache.h | 23 Type* const kInt8 = 24 CreateNative(CreateRange<int8_t>(), Type::UntaggedIntegral8()); 25 Type* const kUint8 = 26 CreateNative(CreateRange<uint8_t>(), Type::UntaggedIntegral8()); 27 Type* const kUint8Clamped = kUint8; 28 Type* const kInt16 = 29 CreateNative(CreateRange<int16_t>(), Type::UntaggedIntegral16()); 30 Type* const kUint16 = 31 CreateNative(CreateRange<uint16_t>(), Type::UntaggedIntegral16()); 32 Type* const kInt32 [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...] |
std_common.i | 6 Generate the traits for a 'primitive' type, such as 'double', 10 %define %traits_ptypen(Type...) 11 %fragment(SWIG_Traits_frag(Type),"header", 12 fragment=SWIG_AsVal_frag(Type), 13 fragment=SWIG_From_frag(Type), 16 template <> struct traits<Type > { 18 static const char* type_name() { return #Type; } 20 template <> struct traits_asval<Type > { 21 typedef Type value_type; 23 return SWIG_AsVal(Type)(obj, val) [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/llvm/lib/Object/ |
ELF.cpp | 19 StringRef getELFRelocationTypeName(uint32_t Machine, uint32_t Type) { 22 switch (Type) { 30 switch (Type) { 37 switch (Type) { 44 switch (Type) { 51 switch (Type) { 58 switch (Type) { 65 switch (Type) { 72 switch (Type) { 79 switch (Type) { [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/jetty/src/java/org/eclipse/jetty/server/nio/ |
AbstractNIOConnector.java | 24 import org.eclipse.jetty.io.Buffers.Type; 31 _buffers.setRequestBufferType(Type.DIRECT); 32 _buffers.setRequestHeaderType(Type.INDIRECT); 33 _buffers.setResponseBufferType(Type.DIRECT); 34 _buffers.setResponseHeaderType(Type.INDIRECT); 40 return getRequestBufferType()==Type.DIRECT; 50 _buffers.setRequestBufferType(direct?Type.DIRECT:Type.INDIRECT); 51 _buffers.setResponseBufferType(direct?Type.DIRECT:Type.INDIRECT) [all...] |
/external/v8/src/base/ |
flags.h | 15 // The Flags class provides a type-safe way of storing OR-combinations of enum 16 // values. The Flags<T, S> class is a template class, where T is an enum type, 17 // and S is the underlying storage type (usually int). 21 // that there's no type checking at all; any enum value can be OR'd with any 79 #define DEFINE_OPERATORS_FOR_FLAGS(Type) \ 80 inline Type operator&( \ 81 Type::flag_type lhs, \ 82 Type::flag_type rhs)ALLOW_UNUSED_TYPE WARN_UNUSED_RESULT; \ 83 inline Type operator&(Type::flag_type lhs, Type::flag_type rhs) { [all...] |
/prebuilts/misc/common/swig/include/2.0.11/std/ |
std_common.i | 78 template <class Type> 80 typedef Type noconst_type; 83 template <class Type> 84 struct noconst_traits<const Type> { 85 typedef Type noconst_type; 89 type categories 97 template <class Type> struct traits { }; 99 template <class Type> 101 return traits<typename noconst_traits<Type >::noconst_type >::type_name(); 104 template <class Type> [all...] |
/prebuilts/misc/common/swig/include/2.0.11/octave/ |
std_common.i | 5 // Generate the traits for a 'primitive' type, such as 'double', 8 %define %traits_ptypen(Type...) 9 %fragment(SWIG_Traits_frag(Type),"header", 10 fragment=SWIG_AsVal_frag(Type), 11 fragment=SWIG_From_frag(Type), 14 template <> struct traits<Type > { 16 static const char* type_name() { return #Type; } 18 template <> struct traits_asval<Type > { 19 typedef Type value_type; 21 return SWIG_AsVal(Type)(obj, val) [all...] |
/prebuilts/misc/common/swig/include/2.0.11/ruby/ |
std_common.i | 7 Generate the traits for a 'primitive' type, such as 'double', 11 %define %traits_ptypen(Type...) 12 %fragment(SWIG_Traits_frag(Type),"header", 13 fragment=SWIG_AsVal_frag(Type), 14 fragment=SWIG_From_frag(Type), 17 template <> struct traits<Type > { 19 static const char* type_name() { return #Type; } 21 template <> struct traits_asval<Type > { 22 typedef Type value_type; 24 return SWIG_AsVal(Type)(obj, val) [all...] |
/external/libcxx/test/std/utilities/function.objects/func.require/ |
invoke.pass.cpp | 22 typedef T type[N]; typedef in struct:Array 25 struct Type 27 Array<char, 1>::type& f1(); 28 Array<char, 2>::type& f2() const; 30 Array<char, 1>::type& g1() &; 31 Array<char, 2>::type& g2() const &; 33 Array<char, 3>::type& g3() &&; 34 Array<char, 4>::type& g4() const &&; 40 static_assert(sizeof(std::__invoke(&Type::f1, std::declval<Type >())) == 1, "") [all...] |