Searched refs:TYPE (Results 226 - 250 of 798) sorted by relevance

1234567891011>>

/external/junit/src/main/java/org/junit/
H A DFixMethodOrder.java35 @Target({ElementType.TYPE})
/external/junit/src/main/java/org/junit/runner/
H A DRunWith.java29 @Target(ElementType.TYPE)
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/annotations/
H A DDoNotParseDetail.java30 @Target({ElementType.METHOD, ElementType.TYPE})
H A DParseDetail.java26 @Target({ElementType.METHOD, ElementType.TYPE})
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DDescriptor.java33 @Target(ElementType.TYPE)
/external/objenesis/main/src/main/java/org/objenesis/instantiator/annotations/
H A DInstantiator.java31 @Target(ElementType.TYPE)
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A DListTypesCommand.java48 super(commandAncestors, ReferenceType.TYPE);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DValueType.java43 public static final int TYPE = 0x18; field in class:ValueType
/external/deqp/framework/delibs/depool/
H A DdeMemPool.h51 #define DE_POOL_NEW(POOL, TYPE) ((TYPE*)deMemPool_alloc(POOL, sizeof(TYPE)))
/external/pdfium/core/fxcrt/
H A Dfx_basic.h200 template <class TYPE>
203 CFX_ArrayTemplate() : CFX_BasicArray(sizeof(TYPE)) {}
213 const TYPE GetAt(int nIndex) const {
217 return ((const TYPE*)m_pData)[nIndex];
220 bool SetAt(int nIndex, TYPE newElement) {
224 ((TYPE*)m_pData)[nIndex] = newElement;
228 TYPE& ElementAt(int nIndex) {
232 return ((TYPE*)m_pData)[nIndex];
235 const TYPE* GetData() const { return (const TYPE*)m_pDat
[all...]
/external/valgrind/coregrind/m_demangle/
H A Dansidecl.h309 #define ENUM_BITFIELD(TYPE) enum TYPE
311 #define ENUM_BITFIELD(TYPE) __extension__ enum TYPE
313 #define ENUM_BITFIELD(TYPE) unsigned int
/external/mesa3d/src/mesa/vbo/
H A Dvbo_rebase.c57 #define REBASE(TYPE) \
58 static void *rebase_##TYPE( const void *ptr, \
60 TYPE min_index ) \
63 const TYPE *in = (TYPE *)ptr; \
64 TYPE *tmp_indices = malloc(count * sizeof(TYPE)); \
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DSampleGroupDescriptionBox.java43 public static final String TYPE = "sgpd"; field in class:SampleGroupDescriptionBox
51 super(TYPE);
118 if (RollRecoveryEntry.TYPE.equals(groupingType)) {
120 } else if (RateShareEntry.TYPE.equals(groupingType)) {
122 } else if (CencSampleEncryptionInformationGroupEntry.TYPE.equals(groupingType)) {
124 } else if (VisualRandomAccessEntry.TYPE.equals(groupingType)) {
126 } else if (TemporalLevelEntry.TYPE.equals(groupingType)) {
/external/mesa3d/src/util/
H A Dtexcompress_rgtc_tmp.h32 void TAG(fetch_texel_rgtc)(unsigned srcRowStride, const TYPE *pixdata,
33 unsigned i, unsigned j, TYPE *value, unsigned comps)
35 TYPE decode;
36 const TYPE *blksrc = (pixdata + ((srcRowStride + 3) / 4 * (j / 4) + (i / 4)) * 8 * comps);
37 const TYPE alpha0 = blksrc[0];
38 const TYPE alpha1 = blksrc[1];
61 static void TAG(write_rgtc_encoded_channel)(TYPE *blkaddr,
62 TYPE alphabase1,
63 TYPE alphabase2,
64 TYPE alphaen
[all...]
/external/v8/src/wasm/
H A Dwasm-objects.h206 #define WCM_OBJECT_OR_WEAK(TYPE, NAME, ID, TYPE_CHECK) \
207 Handle<TYPE> NAME() const { return handle(ptr_to_##NAME()); } \
209 MaybeHandle<TYPE> maybe_##NAME() const { \
211 return MaybeHandle<TYPE>(); \
214 TYPE* maybe_ptr_to_##NAME() const { \
217 return TYPE::cast(obj); \
220 TYPE* ptr_to_##NAME() const { \
223 return TYPE::cast(obj); \
226 void set_##NAME(Handle<TYPE> value) { set_ptr_to_##NAME(*value); } \
228 void set_ptr_to_##NAME(TYPE* valu
[all...]
/external/clang/lib/Basic/
H A DBuiltins.cpp23 #define BUILTIN(ID, TYPE, ATTRS) \
24 { #ID, TYPE, ATTRS, nullptr, ALL_LANGUAGES, nullptr },
25 #define LANGBUILTIN(ID, TYPE, ATTRS, LANGS) \
26 { #ID, TYPE, ATTRS, nullptr, LANGS, nullptr },
27 #define LIBBUILTIN(ID, TYPE, ATTRS, HEADER, LANGS) \
28 { #ID, TYPE, ATTRS, HEADER, LANGS, nullptr },
/external/elfutils/libasm/
H A Dasm_addint8.c47 #define TYPE(size) _TYPE(size) macro
54 FCT(SIZE) (AsmScn_t *asmscn, TYPE(SIZE) num)
96 TYPE(SIZE) var = num;
/external/emma/ant/ant14/com/vladium/emma/report/
H A DReportCfg.java164 return TYPE;
173 static final String TYPE = "html"; field in class:ReportCfg.Element_HTML
183 return TYPE;
192 static final String TYPE = "txt"; field in class:ReportCfg.Element_TXT
202 return TYPE;
210 static final String TYPE = "lcov"; field in class:ReportCfg.Element_LCOV
220 return TYPE;
229 static final String TYPE = "xml"; field in class:ReportCfg.Element_XML
325 return (Element_TXT) addCfgElement (Element_TXT.TYPE,
331 return (Element_LCOV) addCfgElement (Element_LCOV.TYPE,
[all...]
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DExperimentalApi.java44 ElementType.TYPE})
/external/desugar/java/com/google/devtools/common/options/
H A DUsesOnlyCoreTypes.java36 @Target({ElementType.TYPE})
/external/e2fsprogs/lib/ext2fs/
H A Drbtree.h102 #define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
104 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
/external/elfutils/lib/
H A Dfixedsizehash.h42 TYPE data type of the hash table entries
45 COMPARE comparison function taking two pointers to TYPE objects
49 of type TYPE
83 TYPE *entry;
86 TYPE entry;
134 HASHTYPE hval, TYPE *data)
172 size_t len __attribute__ ((unused)), TYPE *data)
197 HASHTYPE hval, TYPE *data)
223 TYPE *data)
240 CLASS const TYPE *
259 #undef TYPE macro
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DRuntimeSupport.java167 if (type == Void.TYPE)
169 else if (type == Integer.TYPE)
171 else if (type == Byte.TYPE)
173 else if (type == Long.TYPE)
175 else if (type == Double.TYPE)
177 else if (type == Float.TYPE)
179 else if (type == Character.TYPE)
181 else if (type == Short.TYPE)
183 else if (type == Boolean.TYPE)
/external/jsr305/ri/src/main/java/javax/annotation/
H A DCheckReturnValue.java12 @Target( { ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.TYPE,
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DExperimentalApi.java58 ElementType.TYPE})

Completed in 4046 milliseconds

1234567891011>>