HomeSort by relevance Sort by last modified time
    Searched refs:S1 (Results 26 - 50 of 131) sorted by null

12 3 4 5 6

  /external/llvm/include/llvm/ADT/
StringSwitch.h 85 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
87 return Case(S0, Value).Case(S1, Value);
91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value);
97 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 53 struct S1 {
61 S1 s;
68 void (S1::*mpnospec)();
69 void (S1::*mpallspec)() throw(...);
70 void (S1::*mpintspec)() throw(int);
71 void (S1::*mpemptyspec)() throw();
74 S1 s;
143 P(typeid(*(S1*)0));
168 B(b, S1() + T());
184 void operator +(const S1&, float) throw()
    [all...]
  /external/clang/test/Modules/Inputs/
redecl-merge-bottom.h 16 struct S1;
redecl-merge-left.h 18 struct S1;
23 struct S1 *produce_S1(void);
redecl-merge-right.h 24 struct S1;
27 void consume_S1(struct S1*);
  /external/clang/test/Sema/
MicrosoftCompatibility.c 18 __declspec(align(32768)) struct S1 { int a; } s; /* expected-error {{requested alignment must be 8192 bytes or smaller}} */
type-spec-struct-union.c 7 typedef struct S1 {
12 } S1;
14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) {
15 if (s1->u1.x == s2) return 1;
16 if (s1->u1.y == s3) return 1;
20 int test_struct_scope_2(S1 *s1) {
22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */
  /external/clang/test/CodeGen/
stdcall-fastcall.c 59 struct S1 {
62 void __attribute__((fastcall)) foo2(struct S1 y);
63 void bar2(struct S1 y) {
103 void __attribute__((fastcall)) foo7(int a, struct S1 b, int c);
104 void bar7(int a, struct S1 b, int c) {
110 void __attribute__((fastcall)) foo8(struct S1 a, int b);
111 void bar8(struct S1 a, int b) {
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerARM.h 91 load32(address, ARMRegisters::S1);
92 add32(imm, ARMRegisters::S1);
93 store32(ARMRegisters::S1, address);
103 load32(src, ARMRegisters::S1);
104 add32(ARMRegisters::S1, dest);
210 load32(address, ARMRegisters::S1);
211 sub32(imm, ARMRegisters::S1);
212 store32(ARMRegisters::S1, address);
217 load32(src, ARMRegisters::S1);
218 sub32(ARMRegisters::S1, dest)
    [all...]
  /external/wpa_supplicant_8/src/crypto/
sha1-tlsprf.c 34 const u8 *S1, *S2;
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
67 S1 = secret;
70 /* The last byte of S1 will be shared with S2 */
74 hmac_md5_vector(S1, L_S1, 2, &MD5_addr[1], &MD5_len[1], A_MD5);
81 hmac_md5_vector(S1, L_S1, 3, MD5_addr, MD5_len, P_MD5);
83 hmac_md5(S1, L_S1, A_MD5, MD5_MAC_LEN, A_MD5);
  /external/clang/test/ASTMerge/Inputs/
struct1.c 13 struct S1 {
18 struct S1 x1;
struct2.c 10 struct S1 {
15 struct S1 x1;
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-array.cpp 31 struct S1 {
33 S1();
warn-padded-packed.cpp 3 struct S1 {
5 short s; // expected-warning {{padding struct 'S1' with 1 byte to align 's'}}
6 long l; // expected-warning {{padding struct 'S1' with 4 bytes to align 'l'}}
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /external/clang/test/SemaCXX/
constructor-initializer.cpp 249 struct S1 {
253 S1(int);
256 const int S1::bar;
259 S1 s1; member in struct:PR8075::S2
260 S2() : s1(s1.FOO) {}
264 S1 s1; member in struct:PR8075::S3
265 S3() : s1(s1.bar) {
269 S1 s1; member in struct:PR8075::S4
    [all...]
warn-bad-memaccess.cpp 4 extern "C" void *memmove(void *s1, const void *s2, unsigned n);
5 extern "C" void *memcpy(void *s1, const void *s2, unsigned n);
6 extern "C" void *memcmp(void *s1, const void *s2, unsigned n);
14 struct S1 {} s1; variable in typeref:struct:S1
16 struct S3 { float x, y; S1 s[4]; void (*f)(S1**); } s3;
25 struct X2 : virtual S1 {} x2;
105 memset(&s1, 0, sizeof s1);
    [all...]
  /external/clang/test/SemaTemplate/
self-comparison.cpp 7 template <int A, int B> struct S1 {
43 S1<1, 1> s1; s1.foo(); local
  /ndk/tests/device/test-stlport_shared-exception/jni/
vtable2.cpp 14 struct S1 : virtual public S0
16 virtual void s1 ();
19 struct S2 : virtual public S1
21 virtual void s1 ();
32 virtual void s1 ();
39 void S1::s1 () function in class:S1
43 void S2::s1 () function in class:S2
55 void S4::s1 () function in class:S4
69 S1 primary vtabl
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
vtable2.cpp 14 struct S1 : virtual public S0
16 virtual void s1 ();
19 struct S2 : virtual public S1
21 virtual void s1 ();
32 virtual void s1 ();
39 void S1::s1 () function in class:S1
43 void S2::s1 () function in class:S2
55 void S4::s1 () function in class:S4
69 S1 primary vtabl
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 22 namespace N { struct S1 { struct IS1; }; }
24 struct S1::IS1 {
30 F1 f1() { return S1::IS1().member_func(); }
  /external/llvm/unittests/ADT/
IntrusiveRefCntPtrTest.cpp 31 SimpleRefCounted *S1 = new SimpleRefCounted;
32 IntrusiveRefCntPtr<SimpleRefCounted> R1 = S1;
33 SimpleRefCounted *S2 = new SimpleRefCounted(*S1);
VariadicFunctionTest.cpp 75 std::string S1("bin");
76 EXPECT_EQ(2, StringAppend(&S1, "go"));
77 EXPECT_EQ("bingo", S1);
  /external/llvm/unittests/Support/
AlignOfTest.cpp 23 // Suppress direct base '{anonymous}::S1' inaccessible in '{anonymous}::D9'
55 struct S1 {};
61 struct D1 : S1 {};
67 struct D7 : S1, S3 {};
68 struct D8 : S1, D4, D5 { double x[2]; };
69 struct D9 : S1, D1 { S1 s1; }; member in struct:__anon12054::D9
75 struct V6 : S1 { virtual ~V6(); };
110 [AlignOf<S1>::Alignment > 0
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 142 S1, S2, S3: IANTLRStringStream;
144 S1 := TANTLRStringStream.Create('lexer'#13#10);
145 CheckEquals(7, S1.Size);
156 S1: IANTLRStringStream;
158 S1 := TANTLRStringStream.Create('');
159 CheckEquals(0, S1.Size);
160 CheckEquals(0, S1.Index);
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p5.cpp 82 template <const int& N> struct S1 { }; // expected-note 2 {{template parameter is declared here}}
95 S1<i> s1; local
96 S1<ci> s1c;
97 S1<vi> s1v; // expected-error{{reference binding of non-type template parameter of type 'const int &' to template argument of type 'volatile int' ignores qualifiers}}
98 S1<cvi> s1cv; // expected-error{{reference binding of non-type template parameter of type 'const int &' to template argument of type 'const volatile int' ignores qualifiers}}

Completed in 366 milliseconds

12 3 4 5 6