Searched defs:s2 (Results 1 - 25 of 689) sorted by relevance

1234567891011>>

/external/chromium_org/v8/test/mjsunit/
H A Dshifts.js37 var s2 = -1; variable
38 assertEquals(0xffffffff, (s2 >>> 0));
H A Dstring-compare-alignment.js36 var s2 = base.substring(66, 130); variable
40 o[s2] = 2;
/external/chromium_org/v8/test/webkit/
H A Dregexp-alternatives.js39 var s2 = "<p>p</p>"; variable
40 shouldBe('s2.match(/<((\\/([^>]+)>)|(([^>]+)>))\\5/)', '["<p>p","p>",undefined,undefined,"p>","p"]');
41 shouldBe('s2.match(/<((ABC>)|(\\/([^>]+)>)|(([^>]+)>))\\6/)', '["<p>p","p>",undefined,undefined,undefined,"p>","p"]');
42 shouldBe('s2.match(/<(a|\\/p|.+?)>\\1/)', '["<p>p","p"]');
/external/clang/test/Misc/
H A Derror-limit.c8 struct s2{}; struct
9 struct s2{}; struct
14 // CHECK-NOT: 9:8: error: redefinition of 's2'
/external/v8/test/mjsunit/
H A Dshifts.js37 var s2 = -1; variable
38 assertEquals(0xffffffff, (s2 >>> 0));
H A Dstring-compare-alignment.js36 var s2 = base.substring(66, 130); variable
40 o[s2] = 2;
/external/chromium/testing/gtest/samples/
H A Dsample2_unittest.cc90 const MyString s2 = s1; local
91 EXPECT_TRUE(strcmp(s2.c_string(), kHelloString) == 0);
/external/chromium_org/testing/gtest/samples/
H A Dsample2_unittest.cc90 const MyString s2 = s1; local
91 EXPECT_EQ(0, strcmp(s2.c_string(), kHelloString));
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglstring.c45 char *s2 = malloc(l + 1); local
46 if (s2)
47 strcpy(s2, s);
48 return s2;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-298269.js39 var s2 = "long string to make cons string 2"; variable
40 Cb(s1 + s2);
45 Cb(s1 + s2);
/external/clang/test/PCH/
H A Dchanged-files.c3 const char *s2 = m0; variable
/external/gtest/samples/
H A Dsample2_unittest.cc90 const MyString s2 = s1; local
91 EXPECT_TRUE(strcmp(s2.c_string(), kHelloString) == 0);
/external/mesa3d/src/egl/main/
H A Deglstring.c45 char *s2 = malloc(l + 1); local
46 if (s2)
47 strcpy(s2, s);
48 return s2;
/external/protobuf/gtest/samples/
H A Dsample2_unittest.cc90 const MyString s2 = s1; local
91 EXPECT_TRUE(strcmp(s2.c_string(), kHelloString) == 0);
/external/valgrind/main/memcheck/tests/
H A Dmemcmptest.c8 char *s1, *s2; variable
12 s2 = malloc(10); strcpy(s2,"fooble");
13 if (memcmp(s1, s2, 8) != 0)
/external/valgrind/main/none/tests/s390x/
H A Dadd.c18 static void do_regmem_insns(unsigned long s2) argument
20 memsweep(a, s2, 0);
21 memsweep(ah, s2, 0);
22 memsweep(ag, s2, 0);
23 memsweep(agf, s2, 0);
24 memsweep(al, s2, 0);
25 memsweep(alg, s2, 0);
26 memsweep(agf, s2, 0);
27 memsweep(algf, s2, 0);
28 regsweep(ar, s2,
[all...]
H A Dsub.c5 static void do_regmem_insns(unsigned long s2) argument
7 memsweep(s, s2, 0);
8 memsweep(sh, s2, 0);
9 memsweep(sg, s2, 0);
10 memsweep(sgf, s2, 0);
11 memsweep(sl, s2, 0);
12 memsweep(slg, s2, 0);
13 memsweep(sgf, s2, 0);
14 memsweep(slgf, s2, 0);
15 regsweep(sr, s2,
[all...]
H A Dxor.c20 static void do_regmem_insns(unsigned long s2) argument
22 memsweep(x, s2);
23 memsweep(xg, s2);
24 regsweep(xr, s2);
25 regsweep(xgr, s2);
26 xysweep(s2);
/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/chromium_org/third_party/openssl/openssl/crypto/conf/
H A Dtest.c68 char *s,*s2; local
/external/clang/test/CodeGen/
H A D2002-04-09-StructRetVal.c5 short s1, s2; member in struct:S
/external/clang/test/SemaCXX/
H A Dattr-sentinel.cpp20 S* s2 = new (1,2,3) S(1, __null); // expected-warning {{missing sentinel in function call}} local
21 s2->a(1,2,3); // expected-warning {{missing sentinel in function call}}
/external/openssl/crypto/conf/
H A Dtest.c68 char *s,*s2; local
/external/valgrind/main/none/tests/
H A Dfdleak_dup2.c8 int s2; local
13 s2 = DO( open("/dev/null", O_RDONLY) );
16 DO( dup2(s1, s2) ); // dup s1 as fd s2, which closes existing s2 fd
/external/bison/lib/
H A Dc-strcasecmp.c27 c_strcasecmp (const char *s1, const char *s2) argument
30 register const unsigned char *p2 = (const unsigned char *) s2;

Completed in 826 milliseconds

1234567891011>>