Home
last modified time | relevance | path

Searched refs:S3 (Results 1 – 25 of 402) sorted by relevance

12345678910>>...17

/external/llvm/unittests/ADT/
DImmutableSetTest.cpp65 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() local
67 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
68 EXPECT_FALSE(S == S3); in TEST_F()
69 EXPECT_TRUE(S != S3); in TEST_F()
71 EXPECT_TRUE(S3.contains(2)); in TEST_F()
73 EXPECT_FALSE(S2 == S3); in TEST_F()
74 EXPECT_TRUE(S2 != S3); in TEST_F()
76 EXPECT_FALSE(S3.contains(3)); in TEST_F()
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() local
89 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
[all …]
/external/swiftshader/third_party/LLVM/unittests/ADT/
DImmutableSetTest.cpp65 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() local
67 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
68 EXPECT_FALSE(S == S3); in TEST_F()
69 EXPECT_TRUE(S != S3); in TEST_F()
71 EXPECT_TRUE(S3.contains(2)); in TEST_F()
73 EXPECT_FALSE(S2 == S3); in TEST_F()
74 EXPECT_TRUE(S2 != S3); in TEST_F()
76 EXPECT_FALSE(S3.contains(3)); in TEST_F()
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() local
89 EXPECT_FALSE(S3.isEmpty()); in TEST_F()
[all …]
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
Dp2.cpp29 struct S3 { struct
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {} in S3() function
36 constexpr S3 s3a = S3(0); argument
37 constexpr S3 s3b = s3a;
38 constexpr S3 s3c = S3();
39 constexpr S3 s3d; // expected-error {{default initialization of an object of const type 'const S3' …
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringSwitch.h122 const char (&S2)[N2], const char (&S3)[N3], in Cases()
124 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases()
130 const char (&S2)[N2], const char (&S3)[N3], in Cases()
132 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases()
139 const char (&S2)[N2], const char (&S3)[N3], in Cases()
142 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases()
149 const char (&S2)[N2], const char (&S3)[N3], in Cases()
152 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases()
159 const char (&S2)[N2], const char (&S3)[N3], in Cases()
163 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, S7, Value); in Cases()
[all …]
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
Dsema.cpp180 struct S3 { struct
181 virtual ~S3() throw();
182 S3() throw();
183 explicit S3(int);
184 S3(const S2&);
189 P(dynamic_cast<S3&>(f2<T&>())); in late2()
192 void operator +(const S1&, const S3&);
195 late<S3, false>(); in tlate()
196 late2<S3>(); in tlate()
/external/tensorflow/tensorflow/docs_src/deploy/
Ds3.md1 # How to run TensorFlow on S3
3 This document describes how to run TensorFlow on S3 file system.
5 ## S3 section in How to run TensorFlow on S3
9 To use S3 with TensorFlow, change the file paths you use to read and write
10 data to an S3 path. For example:
18 When reading or writing data on S3 with your TensorFlow program, the behavior
21 * **AWS_REGION**: By default, regional endpoint is used for S3, with region
26 * **S3_USE_HTTPS**: HTTPS is used to access S3 by default, unless
/external/clang/test/OpenMP/
Dparallel_reduction_messages.cpp27 class S3 { class
32 S3() : a(0) {} in S3() function in S3
33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
34 S3 operator+(const S3 &arg1) { return arg1; } in operator +()
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +()
37 S3 c; // expected-note 3 {{'c' defined here}}
38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
70 S3 h, k;
80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain()
175 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
Dparallel_firstprivate_messages.cpp23 class S3 { class
26 S3():a(0) { } in S3() function in S3
27 S3(const S3 &s3):a(s3.a) { } in S3() function in S3
29 const S3 c;
30 const S3 ca[5];
47 S3 h;
Dtarget_data_use_device_ptr_ast_print.cpp71 class S3 { class
74 S3():a(0) { } in S3() function in S3
75 S3(S3 &s3):a(s3.a) { } in S3() function in S3
77 const S3 c;
78 const S3 ca[5];
95 S3 h;
Dparallel_shared_messages.cpp20 class S3 { class
23 S3():a(0) { } in S3() function in S3
24 S3(S3 &s3):a(s3.a) { } in S3() function in S3
26 const S3 c;
27 const S3 ca[5];
44 S3 h;
Dparallel_sections_reduction_messages.cpp27 class S3 { class
32 S3() : a(0) {} in S3() function in S3
33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
34 S3 operator+(const S3 &arg1) { return arg1; } in operator +()
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +()
37 S3 c; // expected-note 3 {{'c' defined here}}
38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
70 S3 h, k;
80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain()
233 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
Dtarget_parallel_reduction_messages.cpp27 class S3 { class
32 S3() : a(0) {} in S3() function in S3
33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
34 S3 operator+(const S3 &arg1) { return arg1; } in operator +()
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +()
37 S3 c; // expected-note 3 {{'c' defined here}}
38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
70 S3 h, k;
80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain()
178 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
Dparallel_sections_lastprivate_messages.cpp25 class S3 { class
27 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}}
30 S3() : a(0) {} in S3() function in S3
31 S3(S3 &s3) : a(s3.a) {} in S3() function in S3
33 const S3 c; // expected-note {{global variable is predetermined as shared}}
34 const S3 ca[5]; // expected-note {{global variable is predetermined as shared}}
61 S3 h;
158 S3 m; in main()
Dtask_shared_messages.cpp21 class S3 { class
25 S3() : a(0) {} in S3() function in S3
26 S3(S3 &s3) : a(s3.a) {} in S3() function in S3
28 const S3 c;
29 const S3 ca[5];
48 S3 h;
Dthreadprivate_codegen.cpp67 struct S3 { struct
70 S3() in S3() argument
73 S3(int a) in S3() function
76 S3(const S3 &s) { in S3() function
79 ~S3() { in ~S3() argument
187 static S3 s;
Dtarget_parallel_shared_messages.cpp20 class S3 { class
23 S3():a(0) { } in S3() function in S3
24 S3(S3 &s3):a(s3.a) { } in S3() function in S3
26 const S3 c;
27 const S3 ca[5];
44 S3 h;
Dparallel_sections_shared_messages.cpp21 class S3 { class
25 S3() : a(0) {} in S3() function in S3
26 S3(S3 &s3) : a(s3.a) {} in S3() function in S3
28 const S3 c;
29 const S3 ca[5];
48 S3 h;
Dtarget_parallel_firstprivate_messages.cpp23 class S3 { class
26 S3():a(0) { } in S3() function in S3
27 S3(const S3 &s3):a(s3.a) { } in S3() function in S3
29 const S3 c;
30 const S3 ca[5];
47 S3 h;
Dtask_firstprivate_messages.cpp35 class S3 { class
39 S3() : a(0) {} in S3() function in S3
40 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
42 const S3 c;
43 const S3 ca[5];
62 S3 h;
Dsections_lastprivate_messages.cpp25 class S3 { class
27 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}}
30 S3() : a(0) {} in S3() function in S3
31 S3(S3 &s3) : a(s3.a) {} in S3() function in S3
33 const S3 c; // expected-note {{global variable is predetermined as shared}}
34 const S3 ca[5]; // expected-note {{global variable is predetermined as shared}}
61 S3 h;
172 S3 m; in main()
Dteams_reduction_messages.cpp27 class S3 { class
32 S3() : a(0) {} in S3() function in S3
33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
34 S3 operator+(const S3 &arg1) { return arg1; } in operator +()
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +()
37 S3 c; // expected-note 3 {{'c' defined here}}
38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
70 S3 h, k;
80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain()
210 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
Dsections_reduction_messages.cpp27 class S3 { class
32 S3() : a(0) {} in S3() function in S3
33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3
34 S3 operator+(const S3 &arg1) { return arg1; } in operator +()
36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +()
37 S3 c; // expected-note 3 {{'c' defined here}}
38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}}
70 S3 h, k;
80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain()
260 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
/external/clang/test/SemaCXX/
Dwarn-unused-variables.cpp107 struct S3 { struct
110 S3 makeS3();
111 void testS3(S3 a) { in testS3()
112 S3 x = makeS3(); // expected-warning {{unused variable 'x'}} in testS3()
113 S3 y; in testS3()
114 S3 z = a; // expected-warning {{unused variable 'z'}} in testS3()
/external/tensorflow/tensorflow/core/platform/s3/
Ds3_file_system.cc133 void ShutdownClient(Aws::S3::S3Client* s3_client) { in ShutdownClient()
170 std::shared_ptr<Aws::S3::S3Client> s3_client) in S3RandomAccessFile()
175 Aws::S3::Model::GetObjectRequest getObjectRequest; in Read()
200 std::shared_ptr<Aws::S3::S3Client> s3_client_;
206 std::shared_ptr<Aws::S3::S3Client> s3_client) in S3WritableFile()
248 Aws::S3::Model::PutObjectRequest putObjectRequest; in Sync()
269 std::shared_ptr<Aws::S3::S3Client> s3_client_;
294 std::shared_ptr<Aws::S3::S3Client> S3FileSystem::GetS3Client() { in GetS3Client()
315 this->s3_client_ = std::shared_ptr<Aws::S3::S3Client>(new Aws::S3::S3Client( in GetS3Client()
401 Aws::S3::Model::ListObjectsRequest listObjectsRequest; in GetChildren()
[all …]
/external/clang/test/CodeGenCXX/
Dmangle-98.cpp3 template <bool B> struct S3 {}; struct
6 void f(S3<true>) {} in f()
9 void f(S3<false>) {} in f()
12 void f2(S3<100>) {} in f2()

12345678910>>...17