Searched defs:s5 (Results 1 - 25 of 90) sorted by relevance

1234

/external/chromium_org/v8/test/webkit/
H A Dregexp-zero-length-alternatives.js33 var s5 = "ab"; variable
260 shouldBe('s5.match(re32)', '["ab"]');
/external/clang/test/Sema/
H A Dno-documentation-warn-tagdecl-specifier.c27 /** @return s5 Test 5 - expected warning here */
28 struct s5 { int is; }; struct
29 struct s5* f5(void);
H A Dpragma-align-mac68k.c50 struct s5 { struct
54 extern int a5_0[sizeof(struct s5) == 4 ? 1 : -1];
55 extern int a5_1[__alignof(struct s5) == 2 ? 1 : -1];
H A Dwarn-strlcpycat-size.c15 } s4, **s5; variable in typeref:struct:__anon19192
26 strlcpy((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
H A Dwarn-strncat-size.c21 } s4, **s5; variable in typeref:struct:__anon19193
41 strncat((*s5)->f2[x], s2, sizeof(s2)); // expected-warning {{size argument in 'strncat' call appears to be size of the source}} expected-note {{change the argument to be the free space in the destination buffer minus the terminating null byte}}
/external/clang/test/SemaCXX/
H A Dwarn-dangling-field.cpp42 S5 s5 = { 0 }; // ok, lifetime-extended variable
45 S5 s5; // expected-note {{here}} member in struct:S6
46 S6() : s5 { 0 } {} // expected-warning {{binding reference subobject of member 's5' to a temporary}}
H A Delaborated-type-specifier.cpp41 int test_funcparam_scope(struct S5 * s5) { argument
43 if (s5 == s5_2) return 1; // expected-error {{comparison of distinct pointer types ('struct S5 *' and 'struct S5 *')}}
/external/clang/test/CodeGen/
H A Dx86_32-arguments-win32.c34 // CHECK-LABEL: define void @f5_2(%struct.s5* byval align 4)
35 struct s5 { struct
38 struct s5 f5_1(void) { while (1) {} }
39 void f5_2(struct s5 a0) {}
H A Dppc64-struct-onefloat.c7 typedef struct s5 { Sd ds; } SSd; struct
15 // CHECK: %e = alloca %struct.s5, align 8
23 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s5* %e, i32 0, i32 0
45 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s5* %p5, i32 0, i32 0
H A Dregparm-struct.c73 struct s5 { struct
76 __attribute__((regparm(3))) void f9(struct s5 a, int b);
79 struct s5 x = {41};
/external/clang/test/OpenMP/
H A Dparallel_copyin_messages.cpp33 S5 &operator =(const S5 &s5) { return *this; } argument
H A Dparallel_for_copyin_messages.cpp36 S5 &operator=(const S5 &s5) { return *this; } argument
H A Dparallel_sections_copyin_messages.cpp36 S5 &operator=(const S5 &s5) { return *this; } argument
H A Dsingle_copyprivate_messages.cpp32 S5 &operator=(const S5 &s5) { return *this; } argument
H A Dparallel_firstprivate_messages.cpp42 S5(const S5 &s5):a(s5.a) { } argument
H A Dparallel_sections_shared_messages.cpp42 S5(const S5 &s5) : a(s5.a) {} argument
H A Dparallel_shared_messages.cpp39 S5(const S5 &s5):a(s5.a) { } argument
H A Dsimd_lastprivate_messages.cpp48 S5(const S5 &s5) : a(s5.a) {} argument
H A Dfor_firstprivate_messages.cpp45 S5(const S5 &s5) : a(s5.a) {} argument
H A Dfor_lastprivate_messages.cpp48 S5(const S5 &s5) : a(s5.a) {} argument
H A Dparallel_for_firstprivate_messages.cpp45 S5(const S5 &s5) : a(s5.a) {} argument
/external/chromium_org/courgette/
H A Dadjustment_method_unittest.cc97 std::string s5 = Serialize(prog5); local
100 EXPECT_TRUE(s1 == s5); // Adjustment did not change A (prog5)
101 EXPECT_TRUE(s5 == s6); // Adjustment did change B into A
/external/chromium_org/third_party/skia/src/opts/
H A DSkBitmapProcState_opts_mips_dsp.cpp164 int s0, s1, s2, s3, s4, s5, s6, s7; local
190 "lhu %[s5], 26(%[xx]) \n\t"
206 "lbux %[s5], %[s5](%[srcAddr]) \n\t"
222 "sll %[s5], %[s5], 2 \n\t"
239 "lwx %[s5], %[s5](%[table]) \n\t"
256 "sw %[s5], 52(%[colors]) \n\t"
276 "lhu %[s5], 2
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Duri.js42 var s5 = String.fromCharCode(cc5); variable
60 assertEquals('%DF%BF', encodeURI(s5));
71 assertEquals(cc5, decodeURI(encodeURI(s5)).charCodeAt(0));
/external/clang/test/Headers/
H A Dstddefneeds.cpp49 size_t s5; variable

Completed in 260 milliseconds

1234