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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/bug437.dir/
two.go 9 type S2 struct {
  /prebuilts/go/linux-x86/test/fixedbugs/bug437.dir/
two.go 9 type S2 struct {
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.unused/
p1.cpp 4 struct [[maybe_unused maybe_unused]] S2 {}; // expected-error {{attribute 'maybe_unused' cannot appear multiple times in an attribute specifier}}
  /external/clang/test/Modules/Inputs/PR24954/
B.h 19 template <class _CharT> class S2;
22 operator<<(basic_ostream<_CharT>& __os, const S2<_CharT>& __x);
25 struct S2 {
27 operator<<(basic_ostream<_Cp>& __os, const S2<_Cp>& __x);
  /external/clang/test/Modules/Inputs/
elaborated-type-structs.h 2 struct S2 { int x; };
  /external/llvm/unittests/ADT/
ImmutableMapTest.cpp 34 ImmutableMap<int, int> S2 = f.add(f.add(f.add(S, 3, 10), 4, 11), 5, 12);
37 EXPECT_FALSE(S2.isEmpty());
42 EXPECT_EQ(10, *S2.lookup(3));
43 EXPECT_EQ(11, *S2.lookup(4));
44 EXPECT_EQ(12, *S2.lookup(5));
46 EXPECT_EQ(5, S2.getMaxElement()->first);
47 EXPECT_EQ(3U, S2.getHeight());
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug177.go 12 type S2 struct{ S1 }
15 typ := reflect.TypeOf(S2{})
bug417.go 21 type S2 struct {
gcc65755.go 22 type S2 struct{}
24 func (S2) Fix() string {
33 f2 := S2{}.Fix()
bug253.go 12 type S2 struct {
17 S2
issue4734.go 15 type S2 struct {
  /prebuilts/go/darwin-x86/test/fixedbugs/bug478.dir/
b.go 9 type S2 struct {
13 func (s S2) f() {}
  /prebuilts/go/darwin-x86/test/fixedbugs/bug479.dir/
a.go 9 type S2 struct {}
11 const C = unsafe.Sizeof(S2{})
14 S2
  /prebuilts/go/linux-x86/test/fixedbugs/
bug177.go 12 type S2 struct{ S1 }
15 typ := reflect.TypeOf(S2{})
bug417.go 21 type S2 struct {
gcc65755.go 22 type S2 struct{}
24 func (S2) Fix() string {
33 f2 := S2{}.Fix()
bug253.go 12 type S2 struct {
17 S2
issue4734.go 15 type S2 struct {
  /prebuilts/go/linux-x86/test/fixedbugs/bug478.dir/
b.go 9 type S2 struct {
13 func (s S2) f() {}
  /prebuilts/go/linux-x86/test/fixedbugs/bug479.dir/
a.go 9 type S2 struct {}
11 const C = unsafe.Sizeof(S2{})
14 S2
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.nodiscard/
p1.cpp 4 struct [[nodiscard nodiscard]] S2 {}; // expected-error {{attribute 'nodiscard' cannot appear multiple times in an attribute specifier}}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p8.cpp 18 struct S2 {
23 void S2::f(int i) {
  /external/clang/test/CodeGenCXX/
cfi-blacklist.cpp 11 struct S2 {
27 void s2f(std::S2 *s2) {
28 s2->f();
exception-spec-decay.cpp 17 struct S2 {
29 S2 <int[10]> s2; local
30 s2.foo();
  /external/clang/test/SemaCXX/
attr-aligned.cpp 8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS;
9 static_assert(alignof(S2) == 8, "attribute not propagated");
10 static_assert(alignof(struct S2) == 8, "attribute ignored");

Completed in 1032 milliseconds

1 2 3 4 5 6 7 8 91011>>