Searched refs:type (Results 1 - 25 of 7439) sorted by relevance

1234567891011>>

/external/llvm/test/MC/ELF/
H A Dgnu-type-diagnostics.s3 .type TYPE FUNC
4 // CHECK: error: unsupported attribute in '.type' directive
5 // CHECK: .type TYPE FUNC
8 .type type stt_func
9 // CHECK: error: unsupported attribute in '.type' directive
10 // CHECK: .type type stt_func
13 .type symbol 32
14 // CHECK: error: expected STT_<TYPE_IN_UPPER_CASE>, '#<type>', '
[all...]
H A Dgnu-type.s3 .type TYPE STT_FUNC
4 // CHECK: .type TYPE,@function
6 .type comma_TYPE, STT_FUNC
7 // CHECK: .type comma_TYPE,@function
9 .type at_TYPE, @STT_FUNC
10 // CHECK: .type at_TYPE,@function
12 .type percent_TYPE, %STT_FUNC
13 // CHECK: .type percent_TYPE,@function
15 .type string_TYPE, "STT_FUNC"
16 // CHECK: .type string_TYP
[all...]
/external/clang/test/Modules/
H A Dmerge-anon-in-template.cpp6 is_floating<int>::type t;
/external/cblas/testing/
H A Dauxiliary.c8 void get_transpose_type(char *type, enum CBLAS_TRANSPOSE *trans) { argument
9 if( (strncmp( type,"n",1 )==0)||(strncmp( type,"N",1 )==0) )
11 else if( (strncmp( type,"t",1 )==0)||(strncmp( type,"T",1 )==0) )
13 else if( (strncmp( type,"c",1 )==0)||(strncmp( type,"C",1 )==0) )
18 void get_uplo_type(char *type, enum CBLAS_UPLO *uplo) { argument
19 if( (strncmp( type,"u",1 )==0)||(strncmp( type,"
25 get_diag_type(char *type, enum CBLAS_DIAG *diag) argument
32 get_side_type(char *type, enum CBLAS_SIDE *side) argument
[all...]
/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/CodeGen/
H A DPR4611-bitfield-layout.c3 // CHECK: struct.object_entry = type { i32 }
6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
H A D2002-07-31-BadAssert.c5 unsigned char type; /* Indicates, NORMAL, SUBNORMAL, etc. */ member in struct:__anon1679
10 dest->type=0;
/external/clang/test/SemaTemplate/
H A Dinstantiate-typedef.cpp5 typedef T* type; // expected-error{{'type' declared as a pointer to a reference}} typedef in struct:add_pointer
8 add_pointer<int>::type test1(int * ptr) { return ptr; }
10 add_pointer<float>::type test2(int * ptr) {
11 return ptr; // expected-error{{cannot initialize return object of type 'add_pointer<float>::type' (aka 'float *') with an lvalue of type 'int *'}}
14 add_pointer<int&>::type // expected-note{{in instantiation of template class 'add_pointer<int &>' requested here}}
H A Dtypename-specifier-2.cpp5 typedef typename MetaFun::template apply<T> type; typedef in struct:bind_metafun
11 typedef T* type; typedef in struct:add_pointer::apply
20 bind_metafun<add_pointer, int>::type::type ip = &i;
21 bind_metafun<add_pointer, float>::type::type fp = &i; // expected-error{{cannot initialize a variable of type 'bind_metafun<add_pointer, float>::type::type' (aka 'float *') with an rvalue of type 'in
[all...]
H A Dmetafun-apply.cpp6 typedef T* type; typedef in struct:add_pointer::apply
13 typedef T& type; // expected-error{{cannot form a reference to 'void'}} typedef in struct:add_reference::apply
19 typedef int type; typedef in struct:bogus::apply
25 typedef typename MetaFun::template apply<T>::type type; // expected-note{{in instantiation of template class 'add_reference::apply<void>' requested here}} \ typedef in struct:apply1
30 apply1<add_pointer, int>::type ip = &i;
31 apply1<add_reference, int>::type ir = i;
32 apply1<add_reference, float>::type fr = i; // expected-error{{non-const lvalue reference to type 'float' cannot bind to a value of unrelated type 'in
[all...]
/external/fio/crc/
H A Dtest.h4 int fio_crctest(const char *type);
/external/clang/test/Analysis/
H A Delementtype.c4 int type; member in struct:added_obj_st
7 // Test if we are using the canonical type for ElementRegion.
11 ao[0]->type=0;
/external/v8/test/mjsunit/regress/
H A Dregress-2263.js28 var obj = { length: { valueOf: function(){ throw { type: "length" }}}};
29 var sep = { toString: function(){ throw { type: "toString" }}};
/external/llvm/test/MC/ELF/ARM/
H A Dgnu-type-hash.s5 .type TYPE #STT_FUNC
6 // CHECK: .type TYPE,%function
8 .type type #function
9 // CHECK: .type type,%function
11 .type comma_TYPE, #STT_FUNC
12 // CHECK: .type comma_TYPE,%function
14 .type comma_type, #function
15 // CHECK: .type comma_typ
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DIdItem.java26 * {@code non-null;} the type constant for the defining class of
29 private final CstType type; field in class:IdItem
34 * @param type {@code non-null;} the type constant for the defining
37 public IdItem(CstType type) { argument
38 if (type == null) {
39 throw new NullPointerException("type == null");
42 this.type = type;
49 typeIds.intern(type);
[all...]
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_matrixCompMultGLSL.py6 type = "mat" + str(x)
8 type = type + "x" + str(y)
9 print type + " matrixCompMult(" + type + " x, " + type + " y)\n{"
10 print " " + type + " z;"
/external/ceres-solver/internal/ceres/
H A Dintegral_types.h43 typedef kTrueType type; typedef in struct:ceres::internal::Ternary
47 typedef kFalseType type; typedef in struct:ceres::internal::Ternary
61 void>::type >::type >::type >::type >::type
62 type; typedef in struct:ceres::internal::Integer
73 void>::type >::type >
74 type; typedef in struct:ceres::internal::UnsignedInteger
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocal.java22 private Type type; field in class:Local
25 public Local(int index, Type type) { argument
26 this.type = type;
35 return type;
/external/objenesis/main/src/org/objenesis/instantiator/basic/
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/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_const.c48 lp_mantissa(struct lp_type type) argument
50 assert(type.floating);
52 if(type.floating) {
53 switch(type.width) {
66 if(type.sign)
67 return type.width - 1;
69 return type.width;
80 lp_const_shift(struct lp_type type) argument
82 if(type.floating)
84 else if(type
94 lp_const_offset(struct lp_type type) argument
112 lp_const_scale(struct lp_type type) argument
130 lp_const_min(struct lp_type type) argument
168 lp_const_max(struct lp_type type) argument
202 lp_const_eps(struct lp_type type) argument
225 lp_build_undef(struct gallivm_state *gallivm, struct lp_type type) argument
233 lp_build_zero(struct gallivm_state *gallivm, struct lp_type type) argument
249 lp_build_one(struct gallivm_state *gallivm, struct lp_type type) argument
299 lp_build_const_elem(struct gallivm_state *gallivm, struct lp_type type, double val) argument
325 lp_build_const_vec(struct gallivm_state *gallivm, struct lp_type type, double val) argument
342 lp_build_const_int_vec(struct gallivm_state *gallivm, struct lp_type type, long long val) argument
362 lp_build_const_aos(struct gallivm_state *gallivm, struct lp_type type, double r, double g, double b, double a, const unsigned char *swizzle) argument
396 lp_build_const_mask_aos(struct gallivm_state *gallivm, struct lp_type type, unsigned mask) argument
422 lp_build_const_mask_aos_swizzled(struct gallivm_state *gallivm, struct lp_type type, unsigned mask, const unsigned char *swizzle) argument
[all...]
/external/valgrind/coregrind/m_debuginfo/
H A Dpriv_misc.h57 #define DEF_READ(type) \
58 static inline type VGAPPEND(vgModuleLocal_read_,type) ( const UChar* data ) \
60 return (*(const type*)(data)); \
62 type VGAPPEND(vgModuleLocal_readUAS_,type) ( const UChar* data )
64 #define DEF_WRITE(type) \
65 static inline UChar* VGAPPEND(vgModuleLocal_write_,type) ( UChar* ptr, type val ) \
67 (*(type*)(pt
[all...]
/external/android-clat/
H A Dicmp.h27 // Determines whether an ICMP type is an error message.
28 int is_icmp_error(uint8_t type);
30 // Determines whether an ICMPv6 type is an error message.
31 int is_icmp6_error(uint8_t type);
34 uint8_t icmp_to_icmp6_type(uint8_t type, uint8_t code);
37 uint8_t icmp_to_icmp6_code(uint8_t type, uint8_t code);
40 uint8_t icmp6_to_icmp_type(uint8_t type, uint8_t code);
43 uint8_t icmp6_to_icmp_code(uint8_t type, uint8_t code);
/external/iptables/libiptc/
H A Dlinux_stddef.h19 * @type: the type of the container struct this is embedded in.
23 #define container_of(ptr, type, member) ({ \
24 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
25 (type *)( (char *)__mptr - offsetof(type,member) );})
28 * Check at compile time that something is of a particular type.
31 #define typecheck(type,x) \
32 ({ type __dummy; \
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DTypeUtils.java39 public static boolean isWideType(@Nonnull String type) { argument
40 char c = type.charAt(0);
44 public static boolean isWideType(@Nonnull TypeReference type) { argument
45 return isWideType(type.getType());
48 public static boolean isPrimitiveType(String type) { argument
49 return type.length() == 1;
/external/clang/test/CXX/over/over.match/over.match.best/over.best.ics/over.ics.user/
H A Dp3-0x.cpp5 { typedef T type; }; typedef in struct:PR6285::identity
9 operator typename identity<T>::type(); // expected-note{{candidate}}

Completed in 868 milliseconds

1234567891011>>