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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
jalbal.s 7 jal s3
9 jal s3
13 s3: label
  /external/annotation-tools/annotation-file-utilities/tests/
ArrayLiteral.java 5 String [] s3 = { "TEST" }; field in class:ArrayLiteral
  /external/libcxx/test/std/utilities/utility/exchange/
exchange.pass.cpp 66 std::string s3 = s1; // Mom local
67 assert ( std::exchange ( s3, s2 ) == s1 );
68 assert ( s3 == s2 );
69 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
70 assert ( s3 == s1 );
72 s3 = s2; // Dad
73 assert ( std::exchange ( s3, {} ) == s2 );
74 assert ( s3.size () == 0 );
76 s3 = s2; // Dad
77 assert ( std::exchange ( s3, "" ) == s2 )
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
vpx_convolve_copy_neon.c 66 uint8x16_t s0, s1, s2, s3; local
72 s3 = vld1q_u8(src + 16);
79 vst1q_u8(dst + 16, s3);
84 uint8x16_t s0, s1, s2, s3; local
89 s3 = vld1q_u8(src + 48);
95 vst1q_u8(dst + 48, s3);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mri/
expr.s 2 xdef s1,s2,s3,s4,s5
5 s3 equ 5!!3 define
  /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 }
sanitize-init-order.cpp 27 PODWithCtorAndDtor s3; variable
  /external/libcxx/test/std/input.output/string.streams/istringstream/istringstream.assign/
move.pass.cpp 46 std::istringstream s3; local
47 s3 = std::move(s2);
48 s3 >> s;
51 s1 = std::move(s3);
77 std::wistringstream s3; local
78 s3 = std::move(s2);
79 s3 >> s;
82 s1 = std::move(s3);
  /external/libcxx/test/std/numerics/numarray/template.slice.array/slice.arr.assign/
slice_array.pass.cpp 51 std::slice_array<int> const & s3 = (s1 = s2); member in class:std
52 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,");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/string.streams/istringstream/istringstream.assign/
move.pass.cpp 46 std::istringstream s3; local
47 s3 = std::move(s2);
48 s3 >> s;
51 s1 = std::move(s3);
77 std::wistringstream s3; local
78 s3 = std::move(s2);
79 s3 >> s;
82 s1 = std::move(s3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/numarray/template.slice.array/slice.arr.assign/
slice_array.pass.cpp 51 std::slice_array<int> const & s3 = (s1 = s2); member in class:std
52 assert(&s1 == &s3);
  /external/boringssl/src/ssl/
s3_lib.cc 185 UniquePtr<SSL3_STATE> s3 = MakeUnique<SSL3_STATE>(); local
186 if (!s3) {
190 s3->aead_read_ctx = SSLAEADContext::CreateNullCipher(SSL_is_dtls(ssl));
191 s3->aead_write_ctx = SSLAEADContext::CreateNullCipher(SSL_is_dtls(ssl));
192 s3->hs = ssl_handshake_new(ssl);
193 if (!s3->aead_read_ctx || !s3->aead_write_ctx || !s3->hs) {
197 ssl->s3 = s3.release()
    [all...]
  /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];
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
aligncomm-3.c 7 long s3 = 0; variable
  /cts/hostsidetests/shortcuts/deviceside/backup/publisher1/src/android/content/pm/cts/shortcut/backup/publisher1/
ShortcutManagerPreBackupTest.java 54 final ShortcutInfo s3 = new ShortcutInfo.Builder(getContext(), "s3") local
61 assertTrue(getManager().setDynamicShortcuts(list(s1, s2, s3)));
64 .haveIds("s1", "s2", "s3")
  /cts/hostsidetests/shortcuts/deviceside/backup/publisher2/src/android/content/pm/cts/shortcut/backup/publisher2/
ShortcutManagerPreBackupTest.java 54 final ShortcutInfo s3 = new ShortcutInfo.Builder(getContext(), "s3") local
61 assertTrue(getManager().setDynamicShortcuts(list(s1, s2, s3)));
64 .haveIds("s1", "s2", "s3")
  /cts/hostsidetests/shortcuts/deviceside/backup/publisher3/src/android/content/pm/cts/shortcut/backup/publisher3/
ShortcutManagerPreBackupTest.java 52 final ShortcutInfo s3 = new ShortcutInfo.Builder(getContext(), "s3") local
58 assertTrue(getManager().setDynamicShortcuts(list(s1, s2, s3)));
61 .haveIds("s1", "s2", "s3")
  /cts/hostsidetests/shortcuts/deviceside/backup/publisher4old/src/android/content/pm/cts/shortcut/backup/publisher4/
ShortcutManagerPreBackupTest.java 54 final ShortcutInfo s3 = new ShortcutInfo.Builder(getContext(), "s3") local
61 assertTrue(getManager().setDynamicShortcuts(list(s1, s2, s3)));
64 .haveIds("s1", "s2", "s3")
  /external/clang/test/SemaCXX/
builtin-assume-aligned-tmpl.cpp 76 struct s3 { struct
85 atest5<s3>(); // expected-note {{in instantiation of function template specialization 'atest5<s3>' requested here}}

Completed in 699 milliseconds

1 2 3 4 5 6 7 8 91011>>