Searched refs:test5 (Results 1 - 25 of 223) sorted by relevance

123456789

/external/v8/test/mjsunit/
H A Dobject-literal-conversions.js41 var test5 = { 13: function() {}, "13": 7 };
44 assertEquals(7, test5[13]);
/external/clang/test/CodeGen/
H A Dattr-minsize.cpp59 void test5(T arg) { function
64 void test5<int>(int arg);
65 // Oz: define{{.*}}void @{{.*}}test5
67 // OTHER: define{{.*}}void @{{.*}}test5
68 // OTHER-NOT: define{{.*}}void @{{.*}}test5{{.*}}[[MS]]
71 void test5<float>(float arg);
72 // Oz: define{{.*}}void @{{.*}}test5
74 // OTHER: define{{.*}}void @{{.*}}test5
75 // OTHER-NOT: define{{.*}}void @{{.*}}test5{{.*}}[[MS]]
H A Dasm_arm.c37 // CHECK: @test5
39 void test5() { function
H A Dbool-convert.c20 _Bool test5; local
H A Dasm-inout.c42 // CHECK: @test5
44 __m64 test5(__m64 __A, __m64 __B) { function
H A Dstatements.c28 int test5(long long b) { function
H A Dblocks-1.c52 void test5() { function
76 test5();
H A D2003-09-18-BitfieldTests.c27 void test5(BF *b, int i) { // array ref function
H A Dbuiltin-assume-aligned.c47 // CHECK-LABEL: @test5
48 int test5() { function
H A Dvisibility.c72 // CHECK-DEFAULT-LABEL: define hidden void @test5()
73 // CHECK-PROTECTED-LABEL: define hidden void @test5()
74 // CHECK-HIDDEN-LABEL: define hidden void @test5()
76 __private_extern__ void test5(void) {} function
/external/clang/test/CodeGenCXX/
H A Denable_if.cpp4 int test5(int);
6 T test5(T) __attribute__((enable_if(1, "better than non-template")));
9 int (*Ptr)(int) = &test5;
/external/clang/test/Sema/
H A Dattr-visibility.c14 struct test5;
15 struct __attribute__((visibility("hidden"))) test5; // expected-note {{previous attribute is here}}
16 struct __attribute__((visibility("default"))) test5; // expected-error {{visibility does not match previous declaration}}
H A Dreturn-noreturn.c40 _Noreturn void test5() { function
H A Dwarn-shadow.c48 void test5(int i);
/external/libcxxabi/test/
H A Dcatch_const_pointer_nullptr.pass.cpp81 void test5() function
120 void test5() {} function
131 test5();
H A Dcatch_member_data_pointer_01.pass.cpp127 void test5() function
170 test5();
/external/clang/test/Parser/
H A Dstatements.c42 void test5() { function
H A Dexpressions.c48 int test5(int);
50 return test5( // expected-note {{to match}}
51 test5(1)
H A Dimplicit-casts.c21 int y; void test5(char c) { y += c; } function
H A Dpointer-arithmetic.c8 int test5(int *a, int *b) { return a + b; } /* expected-error {{invalid operands}} */ function
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.udir/
H A Dp1.cpp27 namespace test5 = ns3;
/external/clang/test/SemaCXX/
H A Dstatements.cpp33 void test5() { function
H A Dcondition.cpp61 void test5() { function
66 test5<int>();
H A Dwarn-vla.cpp18 void test5(int n, int v[n]) { // expected-warning {{variable length array used}} function
/external/v8/test/webkit/
H A Ddictionary-no-cache.js90 var test5 = {__proto__:{__proto__:{prop:"on prototype's prototype"}}};
92 test5[i]=[i];
108 getTestProperty(test5);
109 getTestProperty(test5);
110 shouldBe("getTestProperty(test5)", '"on prototype\'s prototype"');
111 test5.prop = "on self";
112 shouldBe("getTestProperty(test5)", '"on self"');

Completed in 359 milliseconds

123456789