HomeSort by relevance Sort by last modified time
    Searched refs:S3 (Results 1 - 25 of 325) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
mangle-98.cpp 3 template <bool B> struct S3 {};
6 void f(S3<true>) {}
9 void f(S3<false>) {}
12 void f2(S3<100>) {}
regparm.cpp 29 struct S3 {
34 __attribute((regparm(2))) void foo4(S3 a, int b);
35 // CHECK: declare void @_Z4foo42S3i(%struct.S3* byval align 4, i32 inreg)
36 void bar3(S3 a, int b) {
  /external/clang/test/Modules/Inputs/
elaborated-type-structs.h 3 struct S3 { int x; };
redecl-merge-left.h 50 struct S3;
51 struct S3;
56 struct S3 *produce_S3(void);
redecl-merge-bottom.h 17 struct S3;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug417.go 13 p *[1]S3
14 s [][1]S3
15 m map[int][1]S3
16 c chan [1]S3
17 i interface { f([1]S3) [1]S3 }
18 f func([1]S3) [1]S3
22 p *struct { F S3 }
23 s []struct { F S3 }
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug417.go 13 p *[1]S3
14 s [][1]S3
15 m map[int][1]S3
16 c chan [1]S3
17 i interface { f([1]S3) [1]S3 }
18 f func([1]S3) [1]S3
22 p *struct { F S3 }
23 s []struct { F S3 }
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.unused/
p1.cpp 5 struct [[maybe_unused("Wrong")]] S3 {}; // expected-error {{'maybe_unused' cannot have an argument list}}
  /external/clang/test/SemaCXX/
attr-aligned.cpp 12 typedef struct __attribute__((aligned(4))) S3 {
14 } S3 __attribute__((aligned(8)));
15 static_assert(alignof(S3) == 8, "attribute ignored");
16 static_assert(alignof(struct S3) == 4, "attribute clobbered");
ptrtomember.cpp 20 struct S3 {
24 void f3(S3* p, void (S3::*m)()) {
cxx11-crashes.cpp 21 struct S3; // expected-note {{forward declaration}}
24 S3 x; // expected-error {{incomplete type}}
28 struct S3 {
namespace.cpp 32 namespace S3 {
45 namespace S3 {
57 namespace S3 {
warn-unused-variables.cpp 107 struct S3 {
110 S3 makeS3();
111 void testS3(S3 a) {
112 S3 x = makeS3(); // expected-warning {{unused variable 'x'}}
113 S3 y;
114 S3 z = a; // expected-warning {{unused variable 'z'}}
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.nodiscard/
p1.cpp 5 struct [[nodiscard("Wrong")]] S3 {}; // expected-error {{'nodiscard' cannot have an argument list}}
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 65 ImmutableSet<int> S3 = f.add(S, 2);
67 EXPECT_FALSE(S3.isEmpty());
68 EXPECT_FALSE(S == S3);
69 EXPECT_TRUE(S != S3);
71 EXPECT_TRUE(S3.contains(2));
73 EXPECT_FALSE(S2 == S3);
74 EXPECT_TRUE(S2 != S3);
76 EXPECT_FALSE(S3.contains(3));
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43);
89 EXPECT_FALSE(S3.isEmpty())
    [all...]
  /external/swiftshader/third_party/LLVM/unittests/ADT/
ImmutableSetTest.cpp 65 ImmutableSet<int> S3 = f.add(S, 2);
67 EXPECT_FALSE(S3.isEmpty());
68 EXPECT_FALSE(S == S3);
69 EXPECT_TRUE(S != S3);
71 EXPECT_TRUE(S3.contains(2));
73 EXPECT_FALSE(S2 == S3);
74 EXPECT_TRUE(S2 != S3);
76 EXPECT_FALSE(S3.contains(3));
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43);
89 EXPECT_FALSE(S3.isEmpty())
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 29 struct S3 {
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {}
36 constexpr S3 s3a = S3(0);
37 constexpr S3 s3b = s3a
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/bug479.dir/
b.go 9 type S3 struct {
14 var i interface{} = S3{}
  /prebuilts/go/linux-x86/test/fixedbugs/bug479.dir/
b.go 9 type S3 struct {
14 var i interface{} = S3{}
  /external/clang/test/PCH/
check-deserializations.cpp 2 // RUN: %clang_cc1 -triple x86_64-linux-gnu -error-on-deserialized-decl S1_keyfunc -error-on-deserialized-decl S3 -error-on-deserialized-decl DND -std=c++11 -include-pch %t.1 -emit-pch -o %t.2 %s
3 // RUN: %clang_cc1 -triple x86_64-linux-gnu -error-on-deserialized-decl S1_method -error-on-deserialized-decl S3 -error-on-deserialized-decl DND -std=c++11 -include-pch %t.2 -emit-llvm-only %s
17 struct S3 {};
20 operator S3();
  /external/clang/test/CodeGen/
malign-double.cpp 7 /* Structs S1, S2, S3, S4, and union U5 are taken from Intel, "IA-64
45 struct S3 {
50 unsigned S3_align = __alignof(struct S3);
51 unsigned S3_size = sizeof(struct S3);
55 unsigned S3_c_offset = (unsigned) &((struct S3*) 0)->c;
56 unsigned S3_s_offset = (unsigned) &((struct S3*) 0)->s;
  /external/clang/test/OpenMP/
parallel_copyin_messages.cpp 17 class S3 {
20 S3():a(0) { }
21 S3 &operator =(S3 &s3) { return *this; }
52 S3 h;
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sinf.c 29 S3 = -0x1a00f9e2cae774.0p-65, /* -0.000198393348360966317347 */
43 r = S3+z*S4;
  /external/clang/test/Sema/
MicrosoftCompatibility.c 21 struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */
  /external/guava/guava-tests/benchmark/com/google/common/base/
ObjectsBenchmark.java 35 private static final String S3 = "Lowly laundry lefties";
59 dummy += Objects.hashCode(S0, S1, S2, S3);
67 dummy += Objects.hashCode(S0, S1, S2, S3, S4);
76 dummy += Objects.hashCode(D0, I1, S3, I2, S0);

Completed in 488 milliseconds

1 2 3 4 5 6 7 8 91011>>