Searched refs:TYPE (Results 51 - 75 of 570) sorted by relevance

1234567891011>>

/external/elfutils/0.153/libdw/
H A Ddwarf_abbrev_hash.h55 #define TYPE Dwarf_Abbrev * macro
H A Ddwarf_sig8_hash.h54 #define TYPE struct Dwarf_CU * macro
/external/proguard/examples/annotations/src/proguard/annotation/
H A DKeepApplication.java15 @Target({ ElementType.TYPE })
H A DKeepClassMemberNames.java15 @Target({ ElementType.TYPE })
H A DKeepClassMembers.java15 @Target({ ElementType.TYPE })
H A DKeepGettersSetters.java15 @Target({ ElementType.TYPE })
H A DKeepImplementations.java15 @Target({ ElementType.TYPE })
H A DKeepPublicClassMemberNames.java15 @Target({ ElementType.TYPE })
H A DKeepPublicClassMembers.java15 @Target({ ElementType.TYPE })
H A DKeepPublicGettersSetters.java15 @Target({ ElementType.TYPE })
H A DKeepPublicImplementations.java15 @Target({ ElementType.TYPE })
H A DKeepPublicProtectedClassMemberNames.java15 @Target({ ElementType.TYPE })
H A DKeepPublicProtectedClassMembers.java16 @Target({ ElementType.TYPE })
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DDataEntryUrlBox.java29 public static final String TYPE = "url "; field in class:DataEntryUrlBox
32 super(TYPE);
H A DSubtitleMediaHeaderBox.java7 public static final String TYPE = "sthd"; field in class:SubtitleMediaHeaderBox
10 super(TYPE);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAppleTempBox.java7 public static final String TYPE = "tmpo"; field in class:AppleTempBox
11 super(TYPE);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
H A DTrackFragmentBox.java27 public static final String TYPE = "traf"; field in class:TrackFragmentBox
30 super(TYPE);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/
H A DESDescriptorBox.java25 public static final String TYPE = "esds"; field in class:ESDescriptorBox
28 super(TYPE);
/external/replicaisland/src/com/replica/replicaisland/
H A DUIConstants.java34 "overridePendingTransition", new Class[] { Integer.TYPE, Integer.TYPE } );
/external/eigen/Eigen/src/Core/util/
H A DStaticAssert.h125 // static assertion failing if the type \a TYPE is not a vector type
126 #define EIGEN_STATIC_ASSERT_VECTOR_ONLY(TYPE) \
127 EIGEN_STATIC_ASSERT(TYPE::IsVectorAtCompileTime, \
130 // static assertion failing if the type \a TYPE is not fixed-size
131 #define EIGEN_STATIC_ASSERT_FIXED_SIZE(TYPE) \
132 EIGEN_STATIC_ASSERT(TYPE::SizeAtCompileTime!=Eigen::Dynamic, \
135 // static assertion failing if the type \a TYPE is not dynamic-size
136 #define EIGEN_STATIC_ASSERT_DYNAMIC_SIZE(TYPE) \
137 EIGEN_STATIC_ASSERT(TYPE::SizeAtCompileTime==Eigen::Dynamic, \
140 // static assertion failing if the type \a TYPE i
[all...]
/external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.h33 template <class TYPE>
34 TYPE* alloc(int size) {
36 mBuffer = (void*)new TYPE[size];
37 mCleanupMethod = &(cleanup<TYPE>);
39 return (TYPE*)mBuffer;
46 template <class TYPE>
48 delete[] (TYPE*)buffer;
/external/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.h33 template <class TYPE>
34 TYPE* alloc(int size) {
36 mBuffer = (void*)new TYPE[size];
37 mCleanupMethod = &(cleanup<TYPE>);
39 return (TYPE*)mBuffer;
46 template <class TYPE>
48 delete[] (TYPE*)buffer;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DType.java6 VOID(null, null, "", "", Void.TYPE),
7 BOOLEAN(false, "false", ".booleanValue()", "java.lang.Boolean", Boolean.TYPE),
8 BYTE(0, "0", ".byteValue()", "java.lang.Byte", Byte.TYPE),
9 CHAR(0, "0", ".charValue()", "java.lang.Character", Character.TYPE),
10 SHORT(0, "0", ".shortValue()", "java.lang.Short", Short.TYPE),
11 INT(0, "0", ".intValue()", "java.lang.Integer", Integer.TYPE),
12 LONG(0, "0l", ".longValue()", "java.lang.Long", Long.TYPE),
13 FLOAT(0, "0f", ".floatValue()", "java.lang.Float", Float.TYPE),
14 DOUBLE(0, "0d", ".doubleValue()", "java.lang.Double", Double.TYPE),
/external/qemu/audio/
H A Daudio_template.h28 #define TYPE out macro
33 #define TYPE in macro
39 static void glue (audio_init_nb_voices_, TYPE) (struct audio_driver *drv)
42 int max_voices = glue (drv->max_voices_, TYPE);
43 int voice_size = glue (drv->voice_size_, TYPE);
45 if (glue (s->nb_hw_voices_, TYPE) > max_voices) {
54 glue (s->nb_hw_voices_, TYPE),
57 glue (s->nb_hw_voices_, TYPE) = max_voices;
63 glue (s->nb_hw_voices_, TYPE) = 0;
72 static void glue (audio_pcm_hw_free_resources_, TYPE) (H
570 #undef TYPE macro
[all...]
/external/deqp/framework/delibs/debase/
H A DdeMemory.h32 #define DE_NEW(TYPE) ((TYPE*)deMalloc(sizeof(TYPE)))
33 #define DE_DELETE(TYPE, PTR) deFree(PTR)

Completed in 1875 milliseconds

1234567891011>>