/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...] |
/dalvik/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/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/libcore-disabled/sound/src/main/java/javax/sound/sampled/ |
FloatControl.java | 24 public static class Type extends Control.Type { 25 public static final Type MASTER_GAIN = new Type("Master Gain"); //$NON-NLS-1$ 27 public static final Type AUX_SEND = new Type("AUX Send"); //$NON-NLS-1$ 29 public static final Type AUX_RETURN = new Type("AUX Return"); //$NON-NLS-1$ 31 public static final Type REVERB_SEND = new Type("Reverb Send"); //$NON-NLS-1 [all...] |
CompoundControl.java | 21 public static class Type extends Control.Type { 22 protected Type(String name) { 29 protected CompoundControl(CompoundControl.Type type, 31 super(type);
|
LineEvent.java | 29 private LineEvent.Type type; field in class:LineEvent 32 public static class Type { 34 public static final Type CLOSE = new Type("Close"); //$NON-NLS-1$ 36 public static final Type OPEN = new Type("Open"); //$NON-NLS-1$ 38 public static final Type START = new Type("Start"); //$NON-NLS-1$ 40 public static final Type STOP = new Type("Stop"); //$NON-NLS-1 [all...] |
BooleanControl.java | 22 public static class Type extends Control.Type { 23 public static final Type APPLY_REVERB = new Type("Apply Reverb"); //$NON-NLS-1$ 25 public static final Type MUTE = new Type("Mute"); //$NON-NLS-1$ 27 protected Type(String name) { 38 protected BooleanControl(BooleanControl.Type type, boolean initialValue, 40 super(type); [all...] |
Control.java | 22 public static class Type { 26 public Type(String name) { 36 if (another == null || !(another instanceof Type)) { 40 Type obj = (Type) another; 55 private Type type; field in class:Control 57 protected Control(Type type) { 58 this.type = type [all...] |
/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);
|
/dalvik/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;
|
ImplForArray.java | 20 import java.lang.reflect.Type; 23 private final Type componentType; 25 public ImplForArray(Type componentType) { 29 public Type getGenericComponentType() {
|
/dalvik/libcore/luni/src/test/java/tests/api/java/net/ |
ProxyTypeTest.java | 28 @TestTargetClass(Proxy.Type.class) 38 Proxy.Type [] types = {Proxy.Type.DIRECT, Proxy.Type.HTTP, 39 Proxy.Type.SOCKS}; 44 assertEquals(types[i], Proxy.Type.valueOf(strTypes[i])); 51 Proxy.Type.valueOf(str); 59 Proxy.Type.valueOf(null); 73 Proxy.Type [] types = { Proxy.Type.DIRECT, Proxy.Type.HTTP, [all...] |
/dalvik/libcore/security/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,
|