Searched defs:type (Results 26 - 50 of 3757) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2002-07-31-BadAssert.c5 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */ member in struct:__anon1679
10 dest->type=0;
H A D2007-02-04-AddrLValue.c12 long type; member in struct:__anon1697
/external/clang/test/CodeGenCXX/
H A D2005-02-19-BitfieldStructCrash.cpp7 unsigned int type : 4; member in struct:Command
/external/clang/test/Modules/
H A Dmerge-using-decls.cpp15 typedef int type; // expected-note 0-1{{target of using}} typedef in struct:Y
20 typedef typename T::type I;
41 // expected-error@b.h:* {{'F::type' from module 'B' is not present in definition of 'F<T>' in module 'A'}}
51 // expected-error@a.h:* {{'D::type' from module 'A' is not present in definition of 'D<T>' in module 'B'}}
53 // expected-error@b.h:* 2{{'typename' keyword used on a non-type}}
54 // expected-error@b.h:* 2{{dependent using declaration resolved to type without 'typename'}}
56 // expected-error@a.h:* {{'E::type' from module 'A' is not present in definition of 'E<T>' in module 'B'}}
62 // expected-error@a.h:* {{'F::type' from module 'A' is not present in definition of 'F<T>' in module 'B'}}
/external/clang/test/Sema/
H A Dc11-typedef-redef.c3 typedef int type; typedef
4 typedef type type; typedef
5 typedef int type; typedef
9 typedef type type2;
13 typedef int vla[N]; // expected-error{{redefinition of typedef for variably-modified type 'int [N]'}}
17 typedef vla2 vla3; // expected-error{{redefinition of typedef for variably-modified type 'vla2' (aka 'int [N]')}}
/external/clang/test/SemaCXX/
H A DPR9902.cpp13 typedef _Alloc<_Up, _Args...> type; typedef in struct:__allocator_traits_rebind
19 template <class T> using rebind_alloc = typename __allocator_traits_rebind<Alloc, T>::type;
/external/deqp/modules/gles31/functional/
H A Des31fProgramInterfaceDefinitionUtil.cpp54 VariableSearchFilter VariableSearchFilter::createShaderTypeFilter (glu::ShaderType type) argument
56 DE_ASSERT(type < glu::SHADERTYPE_LAST);
59 filter.m_shaderTypeBits = (1u << type);
72 VariableSearchFilter VariableSearchFilter::createShaderTypeStorageFilter (glu::ShaderType type, glu::Storage storage)
74 return logicalAnd(createShaderTypeFilter(type), createStorageFilter(storage));
170 void generateVariableTypeResourceNames (std::vector<std::string>& resources, const std::string& name, const glu::VarType& type, deUint32 resourceNameGenerationFlags)
177 if (type.isBasicType())
179 else if (type.isStructType())
181 const glu::StructType* structType = type.getStructPtr();
185 else if (type
[all...]
/external/eigen/Eigen/src/Eigen2Support/
H A DBlock.h18 * \param type the type of corner. Can be \a Eigen::TopLeft, \a Eigen::TopRight,
34 ::corner(CornerType type, Index cRows, Index cCols) argument
36 switch(type)
39 eigen_assert(false && "Bad corner type.");
54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const argument
56 switch(type)
59 eigen_assert(false && "Bad corner type.");
73 * \param type the type o
86 corner(CornerType type) argument
[all...]
/external/elfutils/src/backends/
H A Dsh_symbol.c41 /* Return true if the symbol type is that referencing the GOT. */
43 sh_gotpc_reloc_check (Elf *elf __attribute__ ((unused)), int type) argument
45 return type == R_SH_GOTPC;
50 sh_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) argument
52 switch (type)
/external/fio/t/
H A Ddebug.c7 void __dprint(int type, const char *str, ...) argument
/external/libcxx/test/std/utilities/function.objects/unord.hash/
H A Dpointer.pass.cpp35 typedef typename std::remove_pointer<T>::type type; typedef
36 type i;
37 type j;
/external/libnl/lib/route/cls/
H A Dpolice.c37 * Transform a policer type number into a character string (Reentrant).
38 * @arg type policer type
42 * Transforms a policer type number into a character string and stores
45 * @return The destination buffer or the type encoded in hex if no match was found.
47 char * nl_police2str(int type, char *buf, size_t len) argument
49 return __type2str(type, buf, len, police_types,
54 * Transform a character string into a policer type number
55 * @arg name policer type name
58 * type int
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_blend_logicop.c49 LLVMTypeRef type; local
52 type = LLVMTypeOf(src);
56 res = LLVMConstNull(type);
101 res = LLVMConstAllOnes(type);
/external/mesa3d/src/mesa/main/
H A Dtexformat.c49 * Choose an appropriate texture format given the format, type and
55 * \param type incoming image data type.
65 GLint internalFormat, GLenum format, GLenum type)
68 (void) type;
74 if (type == GL_UNSIGNED_SHORT_4_4_4_4_REV) {
76 } else if (type == GL_UNSIGNED_SHORT_1_5_5_5_REV) {
285 if (type == GL_UNSIGNED_SHORT_8_8_MESA)
64 _mesa_choose_tex_format(struct gl_context *ctx, GLenum target, GLint internalFormat, GLenum format, GLenum type) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DProcessArrayCallback.java21 void processElement(Type type); argument
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DAbstractMediaHeaderBox.java26 protected AbstractMediaHeaderBox(String type) { argument
27 super(type);
/external/objenesis/main/src/org/objenesis/instantiator/
H A DSerializationInstantiatorHelper.java33 * @param type Serializable class for which the first non-serializable superclass is to be found
34 * @return The first non-serializable superclass of 'type'.
37 public static Class getNonSerializableSuperClass(Class type) { argument
38 Class result = type;
/external/objenesis/main/src/org/objenesis/instantiator/basic/
H A DAccessibleInstantiator.java28 public AccessibleInstantiator(Class type) { argument
29 super(type);
H A DNewInstanceInstantiator.java30 private final Class type; field in class:NewInstanceInstantiator
32 public NewInstanceInstantiator(Class type) { argument
33 this.type = type;
38 return type.newInstance();
/external/objenesis/main/src/org/objenesis/instantiator/gcj/
H A DGCJInstantiator.java30 public GCJInstantiator(Class type) { argument
31 super(type);
36 return newObjectMethod.invoke(dummyStream, new Object[] {type, Object.class});
/external/objenesis/main/src/org/objenesis/instantiator/sun/
H A DSun13Instantiator.java30 public Sun13Instantiator(Class type) { argument
31 super(type);
36 return allocateNewObjectMethod.invoke(null, new Object[] {type, Object.class});
/external/objenesis/main/src/org/objenesis/strategy/
H A DInstantiatorStrategy.java30 * @param type Class that will be instantiate
33 ObjectInstantiator newInstantiatorOf(Class type); argument
H A DSerializingInstantiatorStrategy.java50 * @param type Class to instantiate
53 public ObjectInstantiator newInstantiatorOf(Class type) { argument
54 if(!Serializable.class.isAssignableFrom(type)) {
55 throw new ObjenesisException(new NotSerializableException(type+" not serializable"));
59 return new Sun13SerializationInstantiator(type);
63 return new AndroidSerializationInstantiator(type);
66 return new GCJSerializationInstantiator(type);
69 return new PercSerializationInstantiator(type);
72 return new ObjectStreamClassInstantiator(type);
H A DStdInstantiatorStrategy.java47 * @param type Class to instantiate
50 public ObjectInstantiator newInstantiatorOf(Class type) { argument
54 return new Sun13Instantiator(type);
59 return new JRockit131Instantiator(type);
69 return new JRockitLegacyInstantiator(type);
75 return new AndroidInstantiator(type);
78 return new GCJInstantiator(type);
81 return new PercInstantiator(type);
89 return new SunReflectionFactoryInstantiator(type);
/external/proguard/src/proguard/evaluation/value/
H A DInitialValueFactory.java49 * Creates an initial value (0, 0L, 0.0f, 0.0, null) of the given type.
51 public Value createValue(String type) argument
53 switch (type.charAt(0))
76 throw new IllegalArgumentException("Invalid type ["+type+"]");

Completed in 667 milliseconds

1234567891011>>