/external/clang/test/Sema/ |
D | builtins-arm64-exclusive.c | 3 struct Simple { struct 17 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument 23 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex() 32 struct Simple var = {0}; in test_strex() 40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex() 47 …res |= __builtin_arm_strex(var, (struct Simple *)addr); // expected-error {{address argument to at… in test_strex() 48 …res |= __builtin_arm_strex(var, (struct Simple **)addr); // expected-error {{passing 'struct Simpl… in test_strex() 49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex() 66 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex() 72 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex() [all …]
|
D | builtins-arm-exclusive.c | 3 struct Simple { struct 16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() argument 22 …sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldrex() 33 struct Simple var = {0}; in test_strex() 40 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex() 47 …res |= __builtin_arm_strex(var, (struct Simple *)addr); // expected-error {{address argument to at… in test_strex() 48 …res |= __builtin_arm_strex(var, (struct Simple **)addr); // expected-error {{passing 'struct Simpl… in test_strex() 49 …res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure… in test_strex() 67 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex() 73 …sum += __builtin_arm_ldaex((struct Simple *)addr).a; // expected-error {{address argument to atomi… in test_ldaex() [all …]
|
/external/compiler-rt/test/msan/ |
D | use-after-dtor.cc | 18 struct Simple { struct 20 Simple() { in Simple() argument 23 ~Simple() { in ~Simple() argument 30 assert(sizeof(Simple) <= sizeof(buf)); in main() 32 Simple *s = new(&buf) Simple(); in main() 33 s->~Simple(); in main()
|
D | dtor-member.cc | 21 struct Simple { struct 23 Simple() { in Simple() argument 26 ~Simple() { } in ~Simple() argument 31 assert(sizeof(Simple) <= sizeof(buf)); in main() 37 Simple *s = new(&buf) Simple(); in main() 38 s->~Simple(); in main()
|
D | dtor-bit-fields.cc | 35 struct Simple { struct 37 ~Simple() {} in ~Simple() argument 61 Simple *s = new Simple(); in main() 62 s->~Simple(); in main()
|
/external/clang/test/CodeGen/ |
D | builtins-arm-exclusive.c | 31 struct Simple { struct 110 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex() 194 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex() 207 struct Simple var = {0}; in test_strex() 243 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex() 257 struct Simple var = {0}; in test_stlex() 293 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex()
|
/external/clang/test/CodeGenCXX/ |
D | sanitize-dtor-tail-call.cpp | 5 struct Simple { struct 7 Simple() { in Simple() argument 10 ~Simple() { in ~Simple() argument 15 Simple s;
|
D | sanitize-dtor-callback.cpp | 7 struct Simple { struct 9 ~Simple() {} in ~Simple() argument 11 Simple s; 41 Simple s;
|
D | sanitize-no-dtor-callback.cpp | 5 struct Simple { struct 6 ~Simple() {} in ~Simple() argument 8 Simple s;
|
D | sanitize-dtor-bit-field.cpp | 32 struct Simple { struct 34 ~Simple() {} in ~Simple() argument 36 Simple s;
|
/external/clang/test/Profile/ |
D | cxx-class.cpp | 16 class Simple { class 22 explicit Simple(int Member) : Member(Member) { in Simple() function in Simple 35 ~Simple() { in ~Simple() 66 Simple S(I); in simple_wrapper()
|
/external/llvm/lib/Target/WebAssembly/ |
D | Relooper.cpp | 344 SimpleShape *Simple = new SimpleShape; in Calculate() local 345 Notice(Simple); in Calculate() 346 Simple->Inner = Inner; in Calculate() 347 Inner->Parent = Simple; in Calculate() 354 Solipsize(iter, Branch::Direct, Simple, JustInner); in Calculate() 356 return Simple; in Calculate() 763 ShapeSwitch(S, [&](SimpleShape* Simple) { in Calculate() argument 764 Out.insert(Simple->Inner); in Calculate() 783 ShapeSwitch(Root, [](SimpleShape* Simple) { in Calculate() argument 807 [&](SimpleShape* Simple) { in Calculate() argument [all …]
|
/external/guice/core/test/com/google/inject/internal/ |
D | ProxyFactoryTest.java | 48 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Simple.class); in testSimpleCase() 51 ProxyFactory<Simple> factory = new ProxyFactory<Simple>(injectionPoint, aspects); in testSimpleCase() 53 ConstructionProxy<Simple> constructionProxy = factory.create(); in testSimpleCase() 55 Simple simple = constructionProxy.newInstance(); in testSimpleCase() 61 static class Simple { class in ProxyFactoryTest
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/ |
D | test_response.py | 77 List=ElementList(Simple=SimpleList())) 130 [element.Simple for element in item[1].List], 134 item[-1].List[0].Simple, 137 self.assertEqual(item[-1].List[1].Simple, [])
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
D | LzmaAlone.cs | 131 kSwitchForms[sw++] = new SwitchForm("?", SwitchType.Simple, false); in Main2() 132 kSwitchForms[sw++] = new SwitchForm("H", SwitchType.Simple, false); in Main2() 140 kSwitchForms[sw++] = new SwitchForm("EOS", SwitchType.Simple, false); in Main2() 141 kSwitchForms[sw++] = new SwitchForm("SI", SwitchType.Simple, false); in Main2() 142 kSwitchForms[sw++] = new SwitchForm("SO", SwitchType.Simple, false); in Main2()
|
/external/google-breakpad/src/processor/ |
D | cfi_frame_info_unittest.cc | 84 class Simple: public CFIFixture, public Test { }; class 87 TEST_F(Simple, NoCFA) { in TEST_F() argument 97 TEST_F(Simple, NoRA) { in TEST_F() argument 106 TEST_F(Simple, SetCFAAndRARule) { in TEST_F() argument 121 TEST_F(Simple, SetManyRules) { in TEST_F() argument 148 TEST_F(Simple, RulesOverride) { in TEST_F() argument
|
D | synth_minidump_unittest.cc | 58 TEST(Section, Simple) { in TEST() argument 163 TEST(Thread, Simple) { in TEST() argument 194 TEST(Exception, Simple) { in TEST() argument 237 TEST(String, Simple) { in TEST() argument
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/ |
D | README.rst | 89 * Amazon Simple Workflow Service (SWF) (Python 3) 90 * Amazon Simple Queue Service (SQS) (Python 3) 91 * Amazon Simple Notification Server (SNS) (Python 3) 92 * Amazon Simple Email Service (SES) (Python 3) 116 * Amazon Simple Storage Service (S3) (Python 3)
|
/external/llvm/test/CodeGen/ARM/ |
D | thumb1-varalloc.ll | 46 ; Simple variable ending up *at* sp. 60 ; Simple variable ending up at aligned offset from sp. 81 ; Simple variable ending up at aligned offset from sp.
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/ |
D | CyclomaticComplexityTest.java | 63 public static class Simple implements Target { class in CyclomaticComplexityTest 73 instrument(Simple.class); in testSimple1() 80 instrument(Simple.class); in testSimple2()
|
/external/sonic/debian/ |
D | control | 14 Description: Simple utility to speed up or slow down speech 24 Description: Simple library to speed up or slow down speech
|
/external/llvm/test/Transforms/BBVectorize/ |
D | metadata.ll | 4 ; Simple 3-pair chain with loads and stores (with fpmath) 24 ; Simple 3-pair chain with loads and stores (ints with range)
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-09-25.data | 1 | # Simple block scalar
|
D | spec-09-29.data | 1 > # Simple folded scalar
|
/external/bison/tests/ |
D | calc.at | 1 # Simple calculator. -*- Autotest -*- 585 # Simple LALR Calculator. # 588 AT_BANNER([[Simple LALR(1) Calculator.]]) 625 # Simple GLR Calculator. # 628 AT_BANNER([[Simple GLR Calculator.]]) 664 # Simple LALR1 C++ Calculator. # 667 AT_BANNER([[Simple LALR(1) C++ Calculator.]]) 693 # Simple GLR C++ Calculator. # 696 AT_BANNER([[Simple GLR C++ Calculator.]])
|