Searched defs:s1 (Results 1 - 25 of 749) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/
H A Dshifts.js33 var s1 = 0x3fffffff; variable
34 assertEquals(0x7fffffff, (s1 << 1) + 1);
H A Dsubstr.js39 var s1 = s.substring(1); variable
40 assertEquals(s1, s.substr(1));
41 assertEquals(s1, s.substr('1'));
42 assertEquals(s1, s.substr(true));
43 assertEquals(s1, s.substr(1.1));
44 assertEquals(s1, s.substr({ valueOf: function() { return 1; } }));
45 assertEquals(s1, s.substr({ toString: function() { return '1'; } }));
56 assertEquals(s1, s.substr(-s.length + 1));
/external/chromium_org/v8/test/webkit/
H A Dregexp-alternatives.js28 var s1 = "<p>content</p>"; variable
29 shouldBe('s1.match(/<((\\/([^>]+)>)|(([^>]+)>))/)', '["<p>","p>",undefined,undefined,"p>","p"]');
30 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|(([^>]+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p"]');
31 shouldBe('s1.match(/<(a|\\/p|.+?)>/)', '["<p>","p"]');
34 shouldBe('s1.match(/<((\\/([^>]+)>)|((([^>])+)>))/)', '["<p>","p>",undefined,undefined,"p>","p","p"]');
35 shouldBe('s1.match(/<((ABC>)|(\\/([^>]+)>)|((([^>])+)>))/)', '["<p>","p>",undefined,undefined,undefined,"p>","p","p"]');
36 shouldBe('s1.match(/<(a|\\/p|(.)+?)>/)', '["<p>","p","p"]');
/external/clang/test/Misc/
H A Derror-limit-multiple-notes.cpp14 struct s1{}; struct
15 struct s1{}; struct
22 // CHECK-NOT: 15:8: error: redefinition of 's1'
H A Derror-limit.c4 struct s1{}; struct
5 struct s1{}; struct
11 // CHECK: 5:8: error: redefinition of 's1'
H A Dverify.c6 struct s s1; // expected-error {{tentative definition has type 'struct s' that is never completed}} variable in typeref:struct:s
/external/v8/test/mjsunit/
H A Dshifts.js33 var s1 = 0x3fffffff; variable
34 assertEquals(0x7fffffff, (s1 << 1) + 1);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-298269.js38 var s1 = "long string to make cons string 1"; variable
40 Cb(s1 + s2);
41 Cb(s1);
45 Cb(s1 + s2);
/external/clang/test/CodeGen/
H A Dlong-double-x86-nacl.c6 // CHECK: define void @s1(double %a)
7 void s1(long double a) {} function
H A D2002-04-09-StructRetVal.c5 short s1, s2; member in struct:S
H A D2007-05-07-PaddingElements.c6 int s1; member in struct:s
H A Dmms-bitfields.c3 struct s1 { struct
6 } s1; variable in typeref:struct:s1
8 // CHECK: %struct.s1 = type { i32, [4 x i8], i64 }
19 struct s1 s;
22 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
H A Dms_struct.c4 struct s1 { struct
7 } ATTR s1; variable in typeref:struct:s1
9 // CHECK: %struct.s1 = type { i32, [4 x i8], i64 }
20 struct s1 s;
23 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
H A Dpragma-pack-2.c3 // CHECK-X32: %struct.s1 = type { [15 x i32], %struct.s0 }
7 // CHECK-X64: %struct.s1 = type <{ [15 x i32], %struct.s0 }>
19 struct s1 { struct
/external/clang/test/PCH/
H A Dchanged-files.c2 int s1 = m1; variable
/external/clang/test/SemaCXX/
H A Dstatic-cast-complete-type.cpp10 S<void*> s1 = static_cast<S<void*> >(00); local
/external/valgrind/main/memcheck/tests/
H A Dmemcmptest.c8 char *s1, *s2; variable
11 s1 = malloc(10); strcpy(s1,"fooble");
13 if (memcmp(s1, s2, 8) != 0)
/external/valgrind/main/none/tests/
H A Dfdleak_fcntl.c8 int s1; local
12 s1 = DO( open("/dev/null", O_RDONLY) );
13 DO( fcntl(s1, F_DUPFD, s1) );
H A Dfdleak_dup2.c7 int s1; local
12 s1 = DO( open("/dev/null", O_RDONLY) );
15 DO( dup2(s1, 20) ); // dup s1 as fd 20
16 DO( dup2(s1, s2) ); // dup s1 as fd s2, which closes existing s2 fd
/external/chromium_org/third_party/cld/base/
H A Dstring_util.h15 // Compare the two strings s1 and s2 without regard to case using
16 // the current locale; returns 0 if they are equal, 1 if s1 > s2, and -1 if
17 // s2 > s1 according to a lexicographic comparison.
18 inline int strcasecmp(const char* s1, const char* s2) { argument
19 return _stricmp(s1, s2);
22 inline int strcasecmp(const char* s1, const char* s2) {
23 return ::strcasecmp(s1, s2);
/external/bison/lib/
H A Dc-strcasecmp.c27 c_strcasecmp (const char *s1, const char *s2) argument
29 register const unsigned char *p1 = (const unsigned char *) s1;
/external/chromium/chrome/common/extensions/
H A Dextension_error_utils.cc11 const std::string& s1) {
13 ReplaceFirstSubstringAfterOffset(&ret_val, 0, "*", s1);
19 const std::string& s1,
22 ReplaceFirstSubstringAfterOffset(&ret_val, 0, "*", s1);
29 const std::string& s1,
33 ReplaceFirstSubstringAfterOffset(&ret_val, 0, "*", s1);
9 FormatErrorMessage( const std::string& format, const std::string& s1) argument
17 FormatErrorMessage( const std::string& format, const std::string& s1, const std::string& s2) argument
27 FormatErrorMessage( const std::string& format, const std::string& s1, const std::string& s2, const std::string& s3) argument
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dstrcasecmp.c46 yasm__strcasecmp(const char *s1, const char *s2) argument
49 return strcasecmp(s1, s2);
51 return stricmp(s1, s2);
53 return _stricmp(s1, s2);
55 return strcmpi(s1, s2);
58 *us1 = (const unsigned char *)s1,
69 yasm__strncasecmp(const char *s1, const char *s2, size_t n) argument
72 return strncasecmp(s1, s2, n);
74 return strnicmp(s1, s2, n);
76 return _strnicmp(s1, s
[all...]
/external/clang/test/FixIt/
H A Dfixit-errors.c13 union s *s1; // expected-error{{use of 's' with tag type that does not match previous declaration}} variable in typeref:union:s
/external/clang/test/Parser/
H A Dstruct-recursion.c6 struct s1 { struct s2 *A; }; struct
7 struct s2 { struct s1 *B; };
10 struct s1 a;

Completed in 510 milliseconds

1234567891011>>