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

1 2 3

  /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
  /frameworks/base/tests/DexLoggerIntegrationTests/src/com/android/dcl/
Simple.java 20 public final class Simple {
21 public Simple() {}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
source.py 8 class Simple:
  /external/python/cpython2/Demo/parser/
source.py 8 class Simple:
  /external/lzma/CPP/Windows/Control/
StatusBar.h 36 void Simple(bool simple)
37 { SendMsg(SB_SIMPLE, BoolToBOOL(simple), 0); }
  /external/clang/test/CodeGen/
builtins-arm-exclusive.c 5 struct Simple {
89 sum += __builtin_arm_ldrex((struct Simple **)addr)->a;
90 // CHECK: [[TMP4:%.*]] = bitcast i8* %addr to %struct.Simple**
91 // CHECK: [[TMP5:%.*]] = bitcast %struct.Simple** [[TMP4]] to i32*
93 // CHECK: inttoptr i32 [[INTRES]] to %struct.Simple*
95 // CHECK-ARM64: [[TMP4:%.*]] = bitcast i8* %addr to %struct.Simple**
96 // CHECK-ARM64: [[TMP5:%.*]] = bitcast %struct.Simple** [[TMP4]] to i64*
98 // CHECK-ARM64: inttoptr i64 [[INTRES]] to %struct.Simple*
182 sum += __builtin_arm_ldaex((struct Simple **)addr)->a;
183 // CHECK: [[TMP4:%.*]] = bitcast i8* %addr to %struct.Simple**
    [all...]
  /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/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);
  /external/python/cpython3/Lib/test/
test_finalization.py 109 class Simple(SimpleBase):
153 s = Simple()
219 class SimpleSelfCycle(SelfCycleBase, Simple):
225 class SuicidalSelfCycle(SelfCycleBase, Simple):
316 class SimpleChained(ChainedBase, Simple):
322 class SuicidalChained(ChainedBase, Simple):
  /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/golang-protobuf/jsonpb/jsonpb_test_proto/
test_objects.pb.go 58 type Simple struct {
73 func (m *Simple) Reset() { *m = Simple{} }
74 func (m *Simple) String() string { return proto.CompactTextString(m) }
75 func (*Simple) ProtoMessage() {}
76 func (*Simple) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
78 func (m *Simple) GetOBool() bool {
85 func (m *Simple) GetOInt32() int32 {
92 func (m *Simple) GetOInt64() int64 {
99 func (m *Simple) GetOUint32() uint32
    [all...]
  /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 71 unsigned int Simple;
242 if (*file == RC_FILE_TEMPORARY && s->Simple)
748 * integer value is zero, then a simple register allocator will be used that
778 s.Simple = 1;
782 /* Rewrite inputs and if we are doing the simple allocation, rewrite

Completed in 445 milliseconds

1 2 3