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

1 2 3 4 5 6 7 8 91011>>

  /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/luni/src/main/java/java/lang/reflect/
WildcardType.java 21 * A pattern type, such as the upper bounded wildcard {@code
37 public interface WildcardType extends Type {
39 * Returns the array of types that represent the upper bounds of this type.
45 * if any of the bounds points to a missing type
47 * if any bound points to a type that cannot be instantiated for
50 Type[] getUpperBounds();
53 * Returns the array of types that represent the lower bounds of this type.
61 * if any of the bounds points to a missing type
63 * if any of the bounds points to a type that cannot be
66 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/compiler-rt/lib/sanitizer_common/
sanitizer_atomic.h 31 typedef u8 Type;
32 volatile Type val_dont_use;
36 typedef u16 Type;
37 volatile Type val_dont_use;
41 typedef u32 Type;
42 volatile Type val_dont_use;
46 typedef u64 Type;
47 volatile Type val_dont_use;
51 typedef uptr Type;
52 volatile Type val_dont_use
    [all...]
  /external/chromium/base/memory/
singleton_objc.h 7 // appropriate for Objective-C objects. A typical Objective-C object of type
41 template<typename Type>
42 struct DefaultSingletonObjCTraits : public DefaultSingletonTraits<Type> {
43 static Type* New() {
44 return [[Type alloc] init];
47 static void Delete(Type* object) {
55 template<typename Type,
56 typename Traits = DefaultSingletonObjCTraits<Type>,
57 typename DifferentiatingType = Type>
58 class SingletonObjC : public Singleton<Type, Traits, DifferentiatingType>
    [all...]
singleton.h 15 // Default traits for Singleton<Type>. Calls operator new and operator delete on
18 template<typename Type>
21 static Type* New() {
22 // The parenthesis is very important here; it forces POD type
24 return new Type();
28 static void Delete(Type* x) {
43 // Alternate traits for use with the Singleton<Type>. Identical to
46 template<typename Type>
47 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
53 // Alternate traits for use with the Singleton<Type>. Allocates memor
    [all...]
  /external/chromium_org/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...]
singleton.h 45 // Default traits for Singleton<Type>. Calls operator new and operator delete on
48 template<typename Type>
51 static Type* New() {
52 // The parenthesis is very important here; it forces POD type
54 return new Type();
58 static void Delete(Type* x) {
73 // Alternate traits for use with the Singleton<Type>. Identical to
76 template<typename Type>
77 struct LeakySingletonTraits : public DefaultSingletonTraits<Type> {
83 // Alternate traits for use with the Singleton<Type>. Allocates memor
    [all...]
  /external/chromium_org/ui/gfx/
insets_base.h 14 template<typename Class, typename Type>
17 Type top() const { return top_; }
18 Type left() const { return left_; }
19 Type bottom() const { return bottom_; }
20 Type right() const { return right_; }
24 Type width() const { return left_ + right_; }
28 Type height() const { return top_ + bottom_; }
33 void Set(Type top, Type left, Type bottom, Type right)
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Sorter.java 21 public abstract class Sorter<Type> {
22 public abstract void sort(Type[] array, int count, Comparator<Type> comparator);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
SessionDescription.java 37 /** Java-land enum version of SessionDescriptionInterface's type() string. */
38 public static enum Type {
45 public static Type fromCanonicalForm(String canonical) {
46 return Type.valueOf(Type.class, canonical.toUpperCase());
50 public final Type type; field in class:SessionDescription
53 public SessionDescription(Type type, String description) {
54 this.type = type
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFObjectWriter.cpp 51 unsigned Type;
63 Type = ELF::R_AARCH64_LD_PREL_LO19;
66 Type = ELF::R_AARCH64_ADR_PREL_LO21;
69 Type = ELF::R_AARCH64_ADR_PREL_PG_HI21;
72 Type = ELF::R_AARCH64_ADR_GOT_PAGE;
75 Type = ELF::R_AARCH64_TSTBR14;
78 Type = ELF::R_AARCH64_CONDBR19;
81 Type = ELF::R_AARCH64_JUMP26;
84 Type = ELF::R_AARCH64_CALL26;
87 Type = ELF::R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
Zeroes.java 19 import com.android.dexgen.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...]
  /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...]
  /external/dexmaker/src/dx/java/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...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Exceptions.java 19 import com.android.dexgen.rop.type.StdTypeList;
20 import com.android.dexgen.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...]
  /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...]
  /external/dexmaker/src/dx/java/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...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTypeTest.java 35 * java.security.KeyRep.Type#valueOf(String)
39 KeyRep.Type.valueOf("type");
45 KeyRep.Type.valueOf(null);
50 assertEquals(KeyRep.Type.PRIVATE, KeyRep.Type
51 .valueOf(KeyRep.Type.PRIVATE.toString()));
52 assertEquals(KeyRep.Type.PUBLIC, KeyRep.Type.valueOf(KeyRep.Type.PUBLI
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 17 package com.android.dexgen.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...]
  /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...]
  /external/dexmaker/src/dx/java/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...]

Completed in 828 milliseconds

1 2 3 4 5 6 7 8 91011>>