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

1 2

  /external/clang/test/CodeGenCXX/
sanitize-dtor-tail-call.cpp 5 struct Simple {
7 Simple() {
10 ~Simple() {
15 Simple s;
16 // Simple internal member is poisoned by compiler-generated dtor
sanitize-no-dtor-callback.cpp 5 struct Simple {
6 ~Simple() {}
8 Simple s;
sanitize-dtor-callback.cpp 7 struct Simple {
9 ~Simple() {}
11 Simple s;
12 // Simple internal member is poisoned by compiler-generated dtor
22 // Simple internal member is poisoned by compiler-generated dtor
41 Simple s;
46 // By including a Simple member in the struct, the compiler is
sanitize-dtor-bit-field.cpp 32 struct Simple {
34 ~Simple() {}
36 Simple s;
  /external/clang/test/Profile/
cxx-class.cpp 16 class Simple {
22 explicit Simple(int Member) : Member(Member) {
35 ~Simple() {
66 Simple S(I);
  /external/compiler-rt/test/msan/
dtor-member.cc 21 struct Simple {
23 Simple() {
26 ~Simple() { }
31 assert(sizeof(Simple) <= sizeof(buf));
37 Simple *s = new(&buf) Simple();
38 s->~Simple();
use-after-dtor.cc 18 struct Simple {
20 Simple() {
23 ~Simple() {
30 assert(sizeof(Simple) <= sizeof(buf));
32 Simple *s = new(&buf) Simple();
33 s->~Simple();
42 // CHECK-ORIGINS: {{#1 0x.* in Simple::~Simple}}
dtor-bit-fields.cc 35 struct Simple {
37 ~Simple() {}
61 Simple *s = new Simple();
62 s->~Simple();
  /external/testng/src/test/java/test/objectfactory/
Simple.java 10 public class Simple
  /external/lzma/CPP/Windows/Control/
StatusBar.h 36 void Simple(bool simple)
37 { SendMessage(SB_SIMPLE, BoolToBOOL(simple), 0); }
  /external/clang/test/Sema/
builtins-arm-exclusive.c 3 struct Simple {
16 sum += __builtin_arm_ldrex((struct Simple **)addr)->a;
22 sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomic builtin must be a pointer to}}
33 struct Simple var = {0};
40 res |= __builtin_arm_strex(&var, (struct Simple **)addr);
47 res |= __builtin_arm_strex(var, (struct Simple *)addr); // expected-error {{address argument to atomic builtin must be a pointer to}}
48 res |= __builtin_arm_strex(var, (struct Simple **)addr); // expected-error {{passing 'struct Simple' to parameter of incompatible type 'struct Simple *'}}
49 res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure or union}
    [all...]
builtins-arm64-exclusive.c 3 struct Simple {
17 sum += __builtin_arm_ldrex((struct Simple **)addr)->a;
23 sum += __builtin_arm_ldrex((struct Simple *)addr).a; // expected-error {{address argument to atomic builtin must be a pointer to}}
32 struct Simple var = {0};
40 res |= __builtin_arm_strex(&var, (struct Simple **)addr);
47 res |= __builtin_arm_strex(var, (struct Simple *)addr); // expected-error {{address argument to atomic builtin must be a pointer to}}
48 res |= __builtin_arm_strex(var, (struct Simple **)addr); // expected-error {{passing 'struct Simple' to parameter of incompatible type 'struct Simple *'}}
49 res |= __builtin_arm_strex(&var, (struct Simple **)addr).a; // expected-error {{is not a structure or union}
    [all...]
  /external/clang/test/CodeGen/
builtins-arm-exclusive.c 31 struct Simple {
110 sum += __builtin_arm_ldrex((struct Simple **)addr)->a;
112 // CHECK: inttoptr i32 [[INTRES]] to %struct.Simple*
115 // CHECK-ARM64: inttoptr i64 [[INTRES]] to %struct.Simple*
194 sum += __builtin_arm_ldaex((struct Simple **)addr)->a;
196 // CHECK: inttoptr i32 [[INTRES]] to %struct.Simple*
199 // CHECK-ARM64: inttoptr i64 [[INTRES]] to %struct.Simple*
207 struct Simple var = {0};
243 res |= __builtin_arm_strex(&var, (struct Simple **)addr);
257 struct Simple var = {0}
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
browser_test_runner_unittest.py 302 def Simple(self, x, y):
  /external/lzma/CS/7zip/Common/
CommandLineParser.cs 10 Simple,
  /external/google-breakpad/src/processor/
cfi_frame_info_unittest.cc 84 class Simple: public CFIFixture, public Test { };
87 TEST_F(Simple, NoCFA) {
97 TEST_F(Simple, NoRA) {
106 TEST_F(Simple, SetCFAAndRARule) {
121 TEST_F(Simple, SetManyRules) {
148 TEST_F(Simple, RulesOverride) {
  /external/guice/core/test/com/google/inject/internal/
ProxyFactoryTest.java 48 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Simple.class);
51 ProxyFactory<Simple> factory = new ProxyFactory<Simple>(injectionPoint, aspects);
53 ConstructionProxy<Simple> constructionProxy = factory.create();
55 Simple simple = constructionProxy.newInstance(); local
56 simple.invoke();
57 assertTrue(simple.invoked);
61 static class Simple {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
CyclomaticComplexityTest.java 63 public static class Simple implements Target {
73 instrument(Simple.class);
80 instrument(Simple.class);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
RuleBasedCollatorTest.java 36 String Simple = "&9 < a< b< c< d";
37 RuleBasedCollator rbc = new RuleBasedCollator(Simple);
  /external/guice/core/test/com/google/inject/
TypeConversionTest.java 80 bind(Simple.class);
84 Simple simple = injector.getInstance(Simple.class); local
85 assertEquals(5, simple.i);
88 static class Simple {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 69 unsigned int Simple;
191 if (*file == RC_FILE_TEMPORARY && s->Simple)
712 * integer value is zero, then a simple register allocator will be used that
742 s.Simple = 1;
746 /* Rewrite inputs and if we are doing the simple allocation, rewrite
  /external/skia/src/sfnt/
SkOTTable_glyf.h 68 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple
74 struct Simple {
  /external/clang/lib/CodeGen/
CGValue.h 36 /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the
150 /// bitfields, this is not a simple LLVM pointer, it may be a pointer plus a
154 Simple, // This is a normal l-value, use getAddress().
246 bool isSimple() const { return LVType == Simple; }
326 // simple lvalue
379 R.LVType = Simple;
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 14 private static SimpleInterface simple; field in class:ArrayAccessReplaceTest
19 CtClass simpleClass = pool.get(ArrayAccessReplaceTest.class.getName() + "$Simple");
24 simple = (SimpleInterface) simpleClass.toClass(new URLClassLoader(new URL[0], getClass().getClassLoader()), Class.class.getProtectionDomain()).newInstance();
41 simple.setBoolean(i, value);
46 assertEquals(value, simple.getBoolean(i));
52 simple.setByte(i, i);
56 assertEquals(i, simple.getByte(i));
62 simple.setShort(i, i);
66 assertEquals(i, simple.getShort(i));
72 simple.setChar(i, i)
    [all...]
  /external/llvm/lib/Target/WebAssembly/
Relooper.cpp 344 SimpleShape *Simple = new SimpleShape;
345 Notice(Simple);
346 Simple->Inner = Inner;
347 Inner->Parent = Simple;
354 Solipsize(iter, Branch::Direct, Simple, JustInner);
356 return Simple;
612 // One entry, no looping ==> Simple
741 std::function<void (SimpleShape*)> simple,
746 simple(cast<SimpleShape>(var));
763 ShapeSwitch(S, [&](SimpleShape* Simple) {
    [all...]

Completed in 1856 milliseconds

1 2