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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
vla-4.c 7 _Atomic(typeof((int (*)[f()]) h())) v;
14 typeof(typeof((int (*)[f()]) h())) v;
20 void t3(typeof((int (*)[f()]) h()) v) {
cxx-value-init.cpp 9 _Complex int v4 = typeof(_Complex int)();
10 _Complex float v5 = typeof(_Complex float)();
  /external/clang/test/Preprocessor/
extension-warning.c 5 #define TY typeof
6 #define TY1 typeof(1)
16 // inline, restrict, asm, typeof, _asm
  /external/clang/test/PCH/
objc_exprs.h 6 typedef typeof(@"foo" "bar") objc_string;
7 typedef typeof(@encode(int)) objc_encode;
8 typedef typeof(@protocol(foo)) objc_protocol;
9 typedef typeof(@selector(noArgs)) objc_selector_noArgs;
10 typedef typeof(@selector(oneArg:)) objc_selector_oneArg;
11 typedef typeof(@selector(foo:bar:)) objc_selector_twoArg;
15 typedef typeof(id<foo>) objc_id_protocol_ty;
17 typedef typeof(itf*) objc_interface_ty;
18 typedef typeof(itf<foo>*) objc_qual_interface_ty;
exprs.h 6 typedef typeof(i) int_decl_ref;
7 typedef typeof(Enumerator) enum_decl_ref;
10 typedef typeof(17) integer_literal;
11 typedef typeof(17l) long_literal;
14 typedef typeof((42.5)) floating_literal;
17 typedef typeof(17.0i) imaginary_literal;
23 typedef typeof('a') char_literal;
26 typedef typeof(-Enumerator) negate_enum;
38 typedef typeof(__builtin_offsetof(struct Z, y.array[1 + 2].member))
42 typedef typeof(sizeof(int)) typeof_sizeof
    [all...]
types.h 42 typedef typeof(17) typeof_17;
45 typedef typeof(int_ptr *) int_ptr_ptr2;
  /external/clang/test/Parser/
typeof.c 8 int typeof (int) aIntInt; // expected-error{{cannot combine with previous 'int' declaration specifier}}
9 short typeof (int) aShortInt; // expected-error{{'short typeof' is invalid}}
11 typeof(TInt) anInt;
14 typeof(void ary[7]) anIntError; // expected-error{{expected ')'}} expected-note {{to match this '('}} expected-error {{variable has incomplete type 'typeof(void)' (aka 'void')}}
15 typeof(const int) aci;
16 const typeof (*pi) aConstInt;
cxx-typeof.cpp 6 typeof pi[x] y;
builtin_types_compatible.c 11 typeof(expr) tmp; \
12 if (__builtin_types_compatible_p(typeof(expr), int)) funcInt(tmp); \
13 else if (__builtin_types_compatible_p(typeof(expr), float)) funcFloat(tmp); \
14 else if (__builtin_types_compatible_p(typeof(expr), double)) funcDouble(tmp); \
17 __builtin_choose_expr(__builtin_types_compatible_p(typeof(expr), int), funcInt(expr), \
18 __builtin_choose_expr(__builtin_types_compatible_p(typeof(expr), float), funcFloat(expr), \
19 __builtin_choose_expr(__builtin_types_compatible_p(typeof(expr), double), funcDouble(expr), (void)0)))
  /external/compiler-rt/lib/asan/
asan_android_stub.cc 4 typeof(__asan_init) *__asan_preinit =__asan_init;
  /external/clang/test/Driver/
std.cpp 14 typeof(n)();
18 // CXX98: undeclared identifier 'typeof'
21 // GNUXX98-NOT: undeclared identifier 'typeof'
24 // CXX11: undeclared identifier 'typeof'
27 // GNUXX11-NOT: undeclared identifier 'typeof'
30 // CXX1Y: undeclared identifier 'typeof'
33 // GNUXX1Y-NOT: undeclared identifier 'typeof'
36 // CXX1Z: undeclared identifier 'typeof'
39 // GNUXX1Z-NOT: undeclared identifier 'typeof'
  /external/clang/test/Sema/
PR2923.c 13 extern typeof(foo) bar;
typeof-use-deprecated.c 5 typeof(x) y; // expected-warning {{'s' is deprecated}}
9 typeof( u) z; // expected-warning {{'un' is deprecated}}
13 typeof( e) w; // expected-warning {{'E' is deprecated}}
19 int main() { typeof(x1) y; } // expected-warning {{'foo' is deprecated}}
24 void wee() { typeof(t) y; }
  /external/fio/
minmax.h 6 typeof(x) _x = (x); \
7 typeof(y) _y = (y); \
14 typeof(x) _x = (x); \
15 typeof(y) _y = (y); \
  /external/v8/test/mjsunit/regress/
regress-406.js 32 assertFalse(typeof(0) == "zero");
33 assertTrue(typeof(0) != "zero");
36 assertFalse(typeof(0) == "zero" && typeof(0) == "zero");
37 assertFalse(typeof(0) == "zero" && typeof(0) != "zero");
38 assertFalse(typeof(0) != "zero" && typeof(0) == "zero");
39 assertTrue(typeof(0) != "zero" && typeof(0) != "zero")
    [all...]
  /external/v8/test/mjsunit/
constant-fold-control-instructions.js 8 assertEquals("string", typeof "");
9 assertEquals("number", typeof 1.1);
10 assertEquals("number", typeof 1);
11 assertEquals("boolean", typeof true);
12 assertEquals("function", typeof function() {});
13 assertEquals("object", typeof null);
14 assertEquals("object", typeof {});
  /external/v8/test/webkit/
typeof-constant-string.js 25 "This test checks that using the typeof operator on a JavaScript value and comparing it to a constant string works as expected."
30 return typeof a == "undefined";
38 return typeof a === "undefined";
46 return typeof a == "boolean";
55 return typeof a === "boolean";
64 return typeof a == "number";
72 return typeof a === "number";
80 return typeof a == "string";
88 return typeof a === "string";
96 return typeof a == "object"
    [all...]
  /bionic/libc/kernel/uapi/linux/
kernel.h 22 #define __ALIGN_KERNEL(x,a) __ALIGN_KERNEL_MASK(x, (typeof(x)) (a) - 1)
  /development/ndk/platforms/android-21/include/linux/
kernel.h 22 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
  /external/clang/test/SemaCXX/
__null.cpp 10 int a[sizeof(typeof(__null)) == sizeof(void*)? 1 : -1];
type-convert-construct.cpp 5 int v2 = typeof(int)(1,2); // expected-error {{excess elements in scalar initializer}}
  /external/kernel-headers/original/uapi/linux/
kernel.h 9 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
kernel.h 22 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
kernel.h 22 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
kernel.h 22 #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)

Completed in 1423 milliseconds

1 2 3 4 5 6 7 8 91011>>