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

  /external/clang/test/Profile/
cxx-class.cpp 16 class Simple {
22 explicit Simple(int Member) : Member(Member) {
35 ~Simple() {
66 Simple S(I);
  /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/chromium_org/ui/base/l10n/
time_format.cc 29 base::string16 TimeFormat::Simple(TimeFormat::Format format,
  /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/lzma/CS/7zip/Common/
CommandLineParser.cs 10 Simple,
  /external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSetTest.cpp 504 struct Simple {
505 Simple(int value) : m_value(value) { };
520 Simple m_simple;
534 static unsigned hash(const Simple& key) { return key.m_value; }
535 static bool equal(const Complicated& a, const Simple& b) { return a.m_simple.m_value == b.m_value; }
545 typename Set::iterator it = set.template find<ComplexityTranslator>(Simple(42));
549 it = set.template find<ComplexityTranslator>(Simple(103));
555 typename Set::const_iterator constIterator = constSet.template find<ComplexityTranslator>(Simple(42));
559 constIterator = constSet.template find<ComplexityTranslator>(Simple(103));
  /external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
main.cpp 44 struct Simple
49 Simple(int X, float Y, char Z) :
74 Simple* s;
76 s(new Simple(X,Y,Z)) {}
169 Simple a_simple_object(3,0.14,'E');
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/skia/src/sfnt/
SkOTTable_glyf.h 68 SK_OT_SHORT numberOfContours; //== -1 Composite, > 0 Simple
74 struct 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/clang/lib/CodeGen/
CGValue.h 35 /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the
106 /// bitfields, this is not a simple LLVM pointer, it may be a pointer plus a
110 Simple, // This is a normal l-value, use getAddress().
192 bool isSimple() const { return LVType == Simple; }
263 // simple lvalue
301 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/chromium_org/ipc/
ipc_sync_channel_unittest.cc 295 void Simple(bool pump_during_send) {
303 TEST_F(IPCSyncChannelTest, Simple) {
304 Simple(false);
305 Simple(true);
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 633 milliseconds