HomeSort by relevance Sort by last modified time
    Searched refs:typeof (Results 1 - 25 of 3251) 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/PCH/
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...]
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;
types.h 42 typedef typeof(17) typeof_17;
45 typedef typeof(int_ptr *) int_ptr_ptr2;
  /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/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 10 typeof(n)();
14 // CXX98: undeclared identifier 'typeof'
17 // GNUXX98-NOT: undeclared identifier 'typeof'
20 // CXX11: undeclared identifier 'typeof'
23 // GNUXX11-NOT: undeclared identifier 'typeof'
  /external/clang/test/Sema/
PR2923.c 12 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/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.4.3.js 24 ECMA Section: 11.4.3 typeof operator
25 Description: typeof evaluates unary expressions:
44 var TITLE = " The typeof operator";
49 testcases[testcases.length] = new TestCase( SECTION, "typeof(void(0))", "undefined", typeof(void(0)) );
50 testcases[testcases.length] = new TestCase( SECTION, "typeof(null)", "object", typeof(null) );
51 testcases[testcases.length] = new TestCase( SECTION, "typeof(true)", "boolean", typeof(true) );
52 testcases[testcases.length] = new TestCase( SECTION, "typeof(false)", "boolean", typeof(false) )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/LexicalConventions/
regexp-literals-001.js 29 "// typeof object should be type of object declared on following line",
31 (typeof s) == "string" ? "passed" : "failed" );
36 (typeof s == "object") ? "failed" : "passed" );
  /external/webkit/LayoutTests/fast/dom/DeviceMotion/script-tests/
create-event.js 5 shouldBeTrue("typeof event == 'object'");
15 shouldBeTrue("typeof event.type == 'string'");
16 shouldBeTrue("typeof event.bubbles == 'boolean'");
17 shouldBeTrue("typeof event.cancelable == 'boolean'");
18 shouldBeTrue("typeof event.acceleration == 'object'");
19 shouldBeTrue("typeof event.accelerationIncludingGravity == 'object'");
20 shouldBeTrue("typeof event.rotationRate == 'object'");
21 shouldBeTrue("typeof event.interval == 'object'");
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
create-event.js 5 shouldBeTrue("typeof event == 'object'");
14 shouldBeTrue("typeof event.type == 'string'");
15 shouldBeTrue("typeof event.bubbles == 'boolean'");
16 shouldBeTrue("typeof event.cancelable == 'boolean'");
17 shouldBeTrue("typeof event.alpha == 'object'");
18 shouldBeTrue("typeof event.beta == 'object'");
19 shouldBeTrue("typeof event.gamma == 'object'");
  /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/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-001.js 52 "function f2( a ) { var a, b; }; typeof f1",
54 typeof f1 );
60 "typeof f1.toString()",
62 typeof f1.toString() );
66 "typeof f2",
68 typeof f2 );
74 "typeof f2.toString()",
76 typeof f2.toString() );
  /external/clang/test/SemaTemplate/
instantiate-type.cpp 8 typedef typeof(T*) typeof_type;
9 typedef typeof(f(T())) typeof_expr;
  /external/chromium/base/
eintr_wrapper.h 21 typeof(x) __eintr_result__; \
  /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/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/ExecutionContexts/
10.1.3.js 37 return typeof x;
10.1.4-1.js 49 if (typeof x == "undefined")

Completed in 756 milliseconds

1 2 3 4 5 6 7 8 91011>>