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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/include/media/
Metadata.h 49 typedef int32_t Type;
50 typedef SortedVector<Type> Filter;
52 static const Type kAny = 0;
55 static const Type kTitle = 1; // String
56 static const Type kComment = 2; // String
57 static const Type kCopyright = 3; // String
58 static const Type kAlbum = 4; // String
59 static const Type kArtist = 5; // String
60 static const Type kAuthor = 6; // String
61 static const Type kComposer = 7; // Strin
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
WildcardType.java 21 * This interface represents a wildcard type, such as the simple wildcard
28 public interface WildcardType extends Type {
30 * Returns the array of types that represent the upper bounds of this type.
36 * if any of the bounds points to a missing type
38 * if any bound points to a type that cannot be instantiated for
41 Type[] getUpperBounds();
44 * Returns the array of types that represent the lower bounds of this type.
52 * if any of the bounds points to a missing type
54 * if any of the bounds points to a type that cannot be
57 Type[] getLowerBounds()
    [all...]
ParameterizedType.java 21 * This interface represents a parameterized type such as {@code
26 public interface ParameterizedType extends Type {
29 * Returns an array of the actual type arguments for this type.
31 * If this type models a non parameterized type nested within a
32 * parameterized type, this method returns a zero length array. The generic
33 * type of the following {@code field} declaration is an example for a
34 * parameterized type without type arguments
    [all...]
GenericArrayType.java 21 * This interface represents an array type with a component type that is either
22 * a parameterized type or a type variable.
26 public interface GenericArrayType extends Type {
28 * Returns the component type of this array.
30 * @return the component type of this array
33 * if the component type points to a missing type
35 * if the component type points to a type that cannot b
    [all...]
Type.java 24 public interface Type {
TypeVariable.java 20 * This interface represents a type variables such as {@code 'T'} in {@code
26 * the generic declaration that declares this type variable
29 public interface TypeVariable<D extends GenericDeclaration> extends Type {
32 * Returns the upper bounds of this type variable. {@code Object} is the
35 * @return the upper bounds of this type variable
38 * if any of the bounds points to a missing type
40 * if any of the bounds points to a type that cannot be
43 Type[] getBounds();
46 * Returns the language construct that declares this type variable.
53 * Returns the name of this type variable as it is specified in sourc
    [all...]
  /external/chromium/base/
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...]
singleton.h 13 // Default traits for Singleton<Type>. Calls operator new and operator delete on
16 template<typename Type>
19 static Type* New() {
20 // The parenthesis is very important here; it forces POD type
22 return new Type();
26 static void Delete(Type* x) {
36 // Alternate traits for use with the Singleton<Type>. Identical to
39 template<typename Type>
40 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
45 // The Singleton<Type, Traits, DifferentiatingType> class manages a singl
    [all...]
lazy_instance.h 5 // The LazyInstance<Type, Traits> class manages a single instance of Type,
8 // need to have guaranteed thread-safety. The Type constructor will only ever
20 // property. You can have multiple LazyInstance's of the same type, and each
21 // will manage a unique instance. It also preallocates the space for Type, as
22 // to avoid allocating the Type instance on the heap. This may help with the
24 // requires that Type be a complete type so we can determine the size.
44 template <typename Type>
48 // The parenthesis is very important here to force POD type initialization
    [all...]
  /external/v8/src/
number-info.h 36 enum Type {
44 // Return the weakest (least precise) common type.
45 static Type Combine(Type a, Type b) {
47 return static_cast<Type>(a & b);
50 static bool IsNumber(Type a) {
55 static const char* ToString(Type a) {
  /dalvik/dx/src/com/android/dx/rop/cst/
Zeroes.java 19 import com.android.dx.rop.type.Type;
33 * Gets the "zero" (or {@code null}) value for the given type.
35 * @param type {@code non-null;} the type in question
38 public static Constant zeroFor(Type type) {
39 switch (type.getBasicType()) {
40 case Type.BT_BOOLEAN: return CstBoolean.VALUE_FALSE;
41 case Type.BT_BYTE: return CstByte.VALUE_0
    [all...]
CstType.java 19 import com.android.dx.rop.type.Type;
24 * Constants that represent an arbitrary type (reference or primitive).
28 private static final HashMap<Type, CstType> interns =
29 new HashMap<Type, CstType>(100);
32 public static final CstType OBJECT = intern(Type.OBJECT);
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS);
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS)
86 private final Type type; field in class:CstType
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Exceptions.java 19 import com.android.dx.rop.type.StdTypeList;
20 import com.android.dx.rop.type.Type;
26 /** {@code non-null;} the type {@code java.lang.ArithmeticException} */
27 public static final Type TYPE_ArithmeticException =
28 Type.intern("Ljava/lang/ArithmeticException;");
31 * {@code non-null;} the type
34 public static final Type TYPE_ArrayIndexOutOfBoundsException =
35 Type.intern("Ljava/lang/ArrayIndexOutOfBoundsException;");
37 /** {@code non-null;} the type {@code java.lang.ArrayStoreException} *
    [all...]
Rops.java 23 import com.android.dx.rop.type.Prototype;
24 import com.android.dx.rop.type.StdTypeList;
25 import com.android.dx.rop.type.Type;
26 import com.android.dx.rop.type.TypeBearer;
27 import com.android.dx.rop.type.TypeList;
35 new Rop(RegOps.NOP, Type.VOID, StdTypeList.EMPTY, "nop");
39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int");
43 new Rop(RegOps.MOVE, Type.LONG, StdTypeList.LONG, "move-long");
47 new Rop(RegOps.MOVE, Type.FLOAT, StdTypeList.FLOAT, "move-float")
1826 Type type = arrayType.getType(); local
1857 Type type = arrayType.getType(); local
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 17 package com.android.dx.rop.type;
30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
46 = StdTypeList.make(Type.RETURN_ADDRESS);
50 StdTypeList.make(Type.THROWABLE);
54 StdTypeList.make(Type.INT, Type.INT)
    [all...]
Type.java 17 package com.android.dx.rop.type;
24 * Representation of a value type, such as may appear in a field, in a
29 public final class Type implements TypeBearer, Comparable<Type> {
31 private static final HashMap<String, Type> internTable =
32 new HashMap<String, Type>(500);
34 /** basic type constant for {@code void} */
37 /** basic type constant for {@code boolean} */
40 /** basic type constant for {@code byte} */
43 /** basic type constant for {@code char} *
    [all...]
TypeList.java 17 package com.android.dx.rop.type;
20 * List of {@link Type} instances (or of things that contain types).
49 public Type getType(int n);
65 * @param type {@code non-null;} item to append
68 public TypeList withAddedType(Type type);
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
Types.java 19 import java.lang.reflect.Type;
23 public static Type[] getClonedTypeArray(ListOfTypes types) {
27 public static Type getType(Type type) {
28 if (type instanceof ImplForType) {
29 return ((ImplForType)type).getResolvedType();
31 return type;
ListOfTypes.java 19 import java.lang.reflect.Type;
26 private final ArrayList<Type> types;
27 private Type[] resolvedTypes;
30 types = new ArrayList<Type>(capacity);
33 ListOfTypes(Type[] types) {
34 this.types = new ArrayList<Type>(types.length);
35 for (Type type : types) {
36 this.types.add(type);
40 void add(Type type)
59 Type type = unresolved.get(i); local
    [all...]
ImplForArray.java 20 import java.lang.reflect.Type;
23 private final Type componentType;
25 public ImplForArray(Type componentType) {
29 public Type getGenericComponentType() {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTypeTest.java 28 @TestTargetClass(KeyRep.Type.class)
40 * @tests java.security.KeyRep.Type#valueOf(String)
50 KeyRep.Type.valueOf("type");
56 KeyRep.Type.valueOf(null);
61 assertEquals(KeyRep.Type.PRIVATE, KeyRep.Type
62 .valueOf(KeyRep.Type.PRIVATE.toString()));
63 assertEquals(KeyRep.Type.PUBLIC, KeyRep.Type.valueOf(KeyRep.Type.PUBLI
    [all...]
  /external/webkit/WebKit/chromium/public/
WebMenuItemInfo.h 41 enum Type {
48 Type type; member in struct:WebKit::WebMenuItemInfo
  /external/skia/include/images/
SkImageEncoder.h 11 enum Type {
15 static SkImageEncoder* Create(Type);
27 static bool EncodeFile(const char file[], const SkBitmap&, Type,
29 static bool EncodeStream(SkWStream*, const SkBitmap&, Type,
  /external/protobuf/java/src/main/java/com/google/protobuf/
RpcUtil.java 43 * {@code RpcCallback} accepting a specific message type. This is always
44 * type-safe (parameter type contravariance).
47 public static <Type extends Message> RpcCallback<Type>
49 return (RpcCallback<Type>)originalCallback;
53 // return new RpcCallback<Type>() {
54 // public void run(Type parameter) {
61 * Take an {@code RpcCallback} accepting a specific message type and convert
68 public static <Type extends Message
    [all...]
  /external/skia/include/core/
SkDrawFilter.h 36 enum Type {
49 virtual bool filter(SkCanvas*, SkPaint*, Type) = 0;
53 virtual void restore(SkCanvas*, SkPaint*, Type) = 0;

Completed in 799 milliseconds

1 2 3 4 5 6 7 8 91011>>