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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/webkit/fast/regex/
overflow.js 32 var s3 = "&{6}u4a64YfQP{C}u88c4u5772Qu8693{4294967167}u85f2u7f3fs((uf202){4})u5bc6u1947"; variable
33 var regexp3 = new RegExp(s3, "");
34 shouldBe("regexp3.exec(s3)", 'null');
  /external/libcxx/test/std/utilities/utility/exchange/
exchange.pass.cpp 42 std::string s3 = s1; // Mom local
43 assert ( std::exchange ( s3, s2 ) == s1 );
44 assert ( s3 == s2 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
46 assert ( s3 == s1 );
48 s3 = s2; // Dad
49 assert ( std::exchange ( s3, {} ) == s2 );
50 assert ( s3.size () == 0 );
52 s3 = s2; // Dad
53 assert ( std::exchange ( s3, "" ) == s2 )
    [all...]
  /external/v8/test/mjsunit/es6/
unicode-escapes.js 32 var s3 = "foob\u{61}r"; variable
33 assertEquals(s3, "foobar");
  /external/v8/test/mjsunit/regress/
regress-298269.js 42 var s3 = "string for triggering osr in Cb"; variable
43 for (var i = 0; i < 16; i++) s3 = s3 + s3;
44 Cb(s3);
regress-crbug-3867.js 55 assertArrayEquals(["s1", "s2", "s3"], props({s1: 0, s2: 0, s3: 0}));
56 assertArrayEquals(["s3", "s2", "s1"], props({s3: 0, s2: 0, s1: 0}));
57 assertArrayEquals(["s3", "s1", "s2"], props({s3: 0, s1: 0, s2: 0}));
69 var o1 = {s1: 0, s2: 0, s3: 0}
72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o1));
74 var o2 = {s3: 0, s2: 0, s1: 0}
77 assertArrayEquals(["s3", "s2", "s1", "s4", "s0"], props(o2))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/exchange/
exchange.pass.cpp 42 std::string s3 = s1; // Mom local
43 assert ( std::exchange ( s3, s2 ) == s1 );
44 assert ( s3 == s2 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
46 assert ( s3 == s1 );
48 s3 = s2; // Dad
49 assert ( std::exchange ( s3, {} ) == s2 );
50 assert ( s3.size () == 0 );
52 s3 = s2; // Dad
53 assert ( std::exchange ( s3, "" ) == s2 )
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
jalbal.s 7 jal s3
9 jal s3
13 s3: label
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
expr.s 2 xdef s1,s2,s3,s4,s5
5 s3 equ 5!!3 define
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_cert_verification.py 31 import boto.s3 namespace
35 s3 = True variable in class:S3CertVerificationTest
36 regions = boto.s3.regions()
test_encryption.py 25 Some unit tests for the S3 Encryption
29 from boto.s3.connection import S3Connection
41 "Action":"s3:PutObject",
42 "Resource":"arn:aws:s3:::%s/*",
45 "s3:x-amz-server-side-encryption":"AES256"
53 s3 = True variable in class:S3EncryptionTest
72 # now get the contents from s3
75 # check to make sure content read from s3 is identical to original
test_cors.py 25 Some integration tests for S3 CORS
31 from boto.s3.connection import S3Connection
33 from boto.s3.cors import CORSConfiguration
37 s3 = True variable in class:S3CORSTest
test_connect_to_region.py 31 from boto.s3.connection import S3Connection
32 from boto.s3 import connect_to_region
35 s3 = True variable in class:S3SpecifyHost
44 connect_args = dict({'host':'s3.amazonaws.com'})
46 self.assertEquals('s3.amazonaws.com', connection.host)
52 self.assertEquals('s3-us-west-2.amazonaws.com', connection.host)
57 self.assertEquals('s3.amazonaws.com', connection.host)
63 self.assertEquals('s3-us-west-2.amazonaws.com', connection.host)
69 self.assertEquals('s3.amazonaws.com', connection.host)
  /external/clang/test/CodeGen/
mms-bitfields.c 17 struct s3 { struct
20 } s3; variable in typeref:struct:s3
22 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
ms_struct.c 18 struct s3 { struct
21 } ATTR s3; variable in typeref:struct:s3
23 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
  /external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.assign/
move.pass.cpp 45 std::istringstream s3; local
46 s3 = std::move(s2);
47 s3 >> s;
50 s1 = std::move(s3);
76 std::wistringstream s3; local
77 s3 = std::move(s2);
78 s3 >> s;
81 s1 = std::move(s3);
  /external/libcxx/test/std/numerics/numarray/template.slice.array/slice.arr.assign/
slice_array.pass.cpp 52 std::slice_array<int> const & s3 = (s1 = s2); member in class:std
53 assert(&s1 == &s3);
  /external/testng/src/test/java/test/
FileStringBufferTest.java 13 String s3 = s + s + s; local
15 fsb.append(s3);
16 // Assert.assertEquals(s3, fsb.toString());
22 String s3 = s + s + s; local
27 // Assert.assertEquals(s3, fsb.toString());
  /external/webrtc/webrtc/system_wrappers/source/
data_log_helpers_unittest.cc 55 std::string s1, s2, s3; local
63 m3.ToString(&s3);
64 ASSERT_EQ(s3, "1,2,3,");
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/storage_uri/
test_storage_uri.py 30 from boto.s3.connection import S3Connection, Location
34 s3 = True variable in class:StorageUriTest
45 host='s3-us-west-2.amazonaws.com'
53 suri = boto.storage_uri('s3://%s/test' % bucket_name)
61 alt_conn = boto.connect_s3(host='s3-us-west-2.amazonaws.com')
  /external/clang/test/Sema/
arm-layout.c 36 struct s3 { struct
41 check(s3_size, sizeof(struct s3) == 8);
42 check(s3_offset_0, __builtin_offsetof(struct s3, field0) == 0);
43 check(s3_offset_1, __builtin_offsetof(struct s3, field2) == 7);
pragma-pack-5.c 31 struct s3 { struct
37 extern int check[sizeof(struct s3) == 8 ? 1 : -1];
38 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
pragma-pack-and-options-align.c 35 struct s3 { struct
39 extern int a[sizeof(struct s3) == 8 ? 1 : -1];
  /external/fio/lib/
rand.h 7 unsigned int s1, s2, s3; member in struct:frand_state
15 dst->s3 = src->s3;
24 state->s3 = TAUSWORTHE(state->s3, 3, 11, 4294967280UL, 17);
26 return (state->s1 ^ state->s2 ^ state->s3);
  /external/v8/test/webkit/
regexp-zero-length-alternatives.js 31 var s3 = "aax"; variable
42 shouldBe('s3.match(re1)', '["aa"]');
49 shouldBe('s3.match(re2)', '["aa"]');
56 shouldBe('s3.match(re3)', '["aa"]');
63 shouldBe('s3.match(re4)', '["aa", "a"]');
70 shouldBe('s3.match(re5)', '["aa", "a"]');
77 shouldBe('s3.match(re6)', '["aa", "a"]');
84 shouldBe('s3.match(re7)', '["aa"]');
91 shouldBe('s3.match(re8)', '["aa"]');
98 shouldBe('s3.match(re9)', '["aa"]')
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pe/
aligncomm-3.c 7 long s3 = 0; variable

Completed in 557 milliseconds

1 2 3 4 5 6 7 8 91011>>