HomeSort by relevance Sort by last modified time
    Searched defs:s2 (Results 1 - 25 of 1003) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/
shifts.js 37 var s2 = -1; variable
38 assertEquals(0xffffffff, (s2 >>> 0));
string-compare-alignment.js 36 var s2 = base.substring(66, 130); variable
40 o[s2] = 2;
  /external/chromium_org/v8/test/webkit/
regexp-alternatives.js 39 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/
error-limit.c 8 struct s2{}; struct
9 struct s2{}; struct
14 // CHECK-NOT: 9:8: error: redefinition of 's2'
  /external/chromium_org/testing/gtest/samples/
sample2_unittest.cc 90 const MyString s2 = s1; local
91 EXPECT_EQ(0, strcmp(s2.c_string(), kHelloString));
  /external/chromium_org/third_party/mesa/src/src/egl/main/
eglstring.c 45 char *s2 = malloc(l + 1); local
46 if (s2)
47 strcpy(s2, s);
48 return s2;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-298269.js 39 var s2 = "long string to make cons string 2"; variable
40 Cb(s1 + s2);
45 Cb(s1 + s2);
  /external/clang/test/Modules/Inputs/template-specialization-visibility/
b.h 5 T<int>::S *s2; variable
  /external/clang/test/PCH/
changed-files.c 3 const char *s2 = m0; variable
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
assign3.pass.cpp 22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::assign(s2, 3, char(5)) == s2);
24 assert(s2[0] == char(5));
25 assert(s2[1] == char(5));
26 assert(s2[2] == char(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::copy(s2, s1, 3) == s2);
24 assert(s2[0] == char(1));
25 assert(s2[1] == char(2));
26 assert(s2[2] == char(3));
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/
assign3.pass.cpp 23 char16_t s2[3] = {0}; local
24 assert(std::char_traits<char16_t>::assign(s2, 3, char16_t(5)) == s2);
25 assert(s2[0] == char16_t(5));
26 assert(s2[1] == char16_t(5));
27 assert(s2[2] == char16_t(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
23 char16_t s2[3] = {0}; local
24 assert(std::char_traits<char16_t>::copy(s2, s1, 3) == s2);
25 assert(s2[0] == char16_t(1));
26 assert(s2[1] == char16_t(2));
27 assert(s2[2] == char16_t(3));
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/
assign3.pass.cpp 23 char32_t s2[3] = {0}; local
24 assert(std::char_traits<char32_t>::assign(s2, 3, char32_t(5)) == s2);
25 assert(s2[0] == char32_t(5));
26 assert(s2[1] == char32_t(5));
27 assert(s2[2] == char32_t(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
23 char32_t s2[3] = {0}; local
24 assert(std::char_traits<char32_t>::copy(s2, s1, 3) == s2);
25 assert(s2[0] == char32_t(1));
26 assert(s2[1] == char32_t(2));
27 assert(s2[2] == char32_t(3));
  /external/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
assign3.pass.cpp 22 wchar_t s2[3] = {0}; local
23 assert(std::char_traits<wchar_t>::assign(s2, 3, wchar_t(5)) == s2);
24 assert(s2[0] == wchar_t(5));
25 assert(s2[1] == wchar_t(5));
26 assert(s2[2] == wchar_t(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
22 wchar_t s2[3] = {0}; local
23 assert(std::char_traits<wchar_t>::copy(s2, s1, 3) == s2);
24 assert(s2[0] == wchar_t(1));
25 assert(s2[1] == wchar_t(2));
26 assert(s2[2] == wchar_t(3));
  /external/mesa3d/src/egl/main/
eglstring.c 45 char *s2 = malloc(l + 1); local
46 if (s2)
47 strcpy(s2, s);
48 return s2;
  /external/protobuf/gtest/samples/
sample2_unittest.cc 90 const MyString s2 = s1; local
91 EXPECT_TRUE(strcmp(s2.c_string(), kHelloString) == 0);
  /external/valgrind/main/memcheck/tests/
memcmptest.c 8 char *s1, *s2; variable
12 s2 = malloc(10); strcpy(s2,"fooble");
13 if (memcmp(s1, s2, 8) != 0)
  /external/valgrind/main/none/tests/
fdleak_dup2.c 8 int s2; local
13 s2 = DO( open("/dev/null", O_RDONLY) );
16 (void) DO( dup2(s1, s2) ); // dup s1 as fd s2, which closes existing s2 fd
  /external/valgrind/main/none/tests/mips64/
fpu_load_store.c 8 int s2 = sizeof(unsigned long long); local
17 for (i = 0; i < N*s2; i = i+8)
24 for (i = 0; i < N*s2; i = i+8)
31 for (i = 0; i < N*s2; i = i+4)
38 for (i = 0; i < N*s2; i = i+4)
load_store.c 8 int s2 = sizeof(unsigned long long); local
17 for (i = 0; i < N*s2; i++)
24 for (i = 0; i < N*s2; i++)
31 for (i = 0; i < N*s2; i = i+8)
38 for (i = 0; i < N*s2; i++)
45 for (i = 0; i < N*s2; i++)
52 for (i = 0; i < N*s2; i = i+2)
59 for (i = 0; i < N*s2; i = i+2)
66 for (i = 0; i < N*s2; i = i+4)
73 for (i = 0; i < N*s2; i++
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/char.traits/char.traits.specializations/char.traits.specializations.char/
assign3.pass.cpp 22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::assign(s2, 3, char(5)) == s2);
24 assert(s2[0] == char(5));
25 assert(s2[1] == char(5));
26 assert(s2[2] == char(5));
copy.pass.cpp 14 // static char_type* copy(char_type* s1, const char_type* s2, size_t n);
22 char s2[3] = {0}; local
23 assert(std::char_traits<char>::copy(s2, s1, 3) == s2);
24 assert(s2[0] == char(1));
25 assert(s2[1] == char(2));
26 assert(s2[2] == char(3));

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 91011>>