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

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug418.go 12 func Two() (a, b int)
16 return Two(), 0 // ERROR "single-value context"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug418.go 12 func Two() (a, b int)
16 return Two(), 0 // ERROR "single-value context"
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 51 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
55 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
  /external/swiftshader/third_party/LLVM/examples/ModuleMaker/
ModuleMaker.cpp 45 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
49 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared_cxx03.pass.cpp 47 struct Two
51 Two(int v, int) : value(v) {++count;}
52 Two(Two const & o) : value(o.value) {++count;}
53 ~Two() {--count;}
56 int Two::count = 0;
87 std::shared_ptr<Two> p = std::allocate_shared<Two>(Alloc(), i, bad);
88 assert(Two::count == 1);
91 assert(Two::count == 0)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared_cxx03.pass.cpp 47 struct Two
51 Two(int v, int) : value(v) {++count;}
52 Two(Two const & o) : value(o.value) {++count;}
53 ~Two() {--count;}
56 int Two::count = 0;
87 std::shared_ptr<Two> p = std::allocate_shared<Two>(Alloc(), i, bad);
88 assert(Two::count == 1);
91 assert(Two::count == 0)
    [all...]
  /external/clang/test/Index/
comment-c-decls.c 86 * \brief Two;
88 Two,
92 // CHECK: <Declaration>Two</Declaration>
format-comment-cdecls.c 81 * \brief Two;
83 Two,
87 // CHECK: <Declaration>Two</Declaration>
  /external/clang/test/SemaCXX/
init-priority-attr.cpp 3 class Two {
8 Two( int ii, int jj ) { i = ii; j = jj; k = count++; };
9 Two( void ) { i = 0; j = 0; k = count++; };
15 extern Two foo;
16 extern Two goo;
17 extern Two coo[];
18 extern Two koo[];
20 Two foo __attribute__((init_priority(101))) ( 5, 6 );
22 Two goo __attribute__((init_priority(2,3))) ( 5, 6 ); // expected-error {{'init_priority' attribute takes one argument}}
24 Two coo[2] __attribute__((init_priority(3))); // expected-error {{'init_priority' attribute requires (…)
    [all...]
  /external/llvm/unittests/IR/
PatternMatch.cpp 52 // Two = One + 42
53 // Leaf = (Two + 8) + (Two + 13)
56 Value *Two = IRB.CreateAdd(One, IRB.getInt32(42));
57 Value *Leaf = IRB.CreateAdd(IRB.CreateAdd(Two, IRB.getInt32(8)),
58 IRB.CreateAdd(Two, IRB.getInt32(13)));
64 EXPECT_FALSE(m_OneUse(m_Value()).match(Two));
ConstantsTest.cpp 216 Constant *Two = ConstantInt::get(Int64Ty, 2);
291 EXPECT_EQ(Undef16, ConstantExpr::getExtractElement(P6, Two));
297 EXPECT_EQ(UndefV16, ConstantExpr::getInsertElement(P6, Elt, Two));
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsEnum.java 37 public enum ChoiceType { ONE, Two, THREE };
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 65 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
77 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
89 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
  /external/swiftshader/third_party/LLVM/examples/Fibonacci/
fibonacci.cpp 52 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
64 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
76 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
  /external/clang/test/Sema/
missing-field-initializers.c 26 struct Two { float c; float d; float e; };
31 struct Two two; member in union:Three::__anon15624
39 { .two = { 1.0f, 2.0f, 3.0f } }
45 { { .two = { 1.0f, 2.0f, 3.0f } } },
46 { { .two = { 1.0f, 2.0f } } } // expected-warning {{missing field 'e' initializer}}
warn-outof-range-assign-enum.c 7 Two=4,
60 foo(Two+1);
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
assign_value.pass.cpp 242 enum MyEnum { Zero, One, Two, Three, FortyTwo = 42 };
  /external/boringssl/mac-x86_64/crypto/fipsmodule/
p256-x86_64-asm.S 12 L$Two:
  /external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
Symmetry.h 42 constexpr static int Two = Two_;
51 constexpr static int Two = Two_;
60 constexpr static int Two = Two_;
69 constexpr static int Two = Two_;
163 constexpr static std::size_t Two = static_cast<std::size_t>(Two_);
167 constexpr static std::size_t maxOneTwoPlusOne = ((One > Two) ? One : Two) + 1;
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 12 // This test program creates two LLVM functions then calls them from three
96 Value *Two = ConstantInt::get(Type::getInt32Ty(M->getContext()), 2);
108 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
119 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
275 // Create one thread for add1 and two threads for fib
  /external/llvm/unittests/ADT/
APIntTest.cpp 128 const APInt two(1, 2);
136 EXPECT_EQ(0u, two.getZExtValue());
137 EXPECT_EQ(0, two.getSExtValue());
140 EXPECT_EQ(zero, two);
143 EXPECT_EQ(two, neg_two);
152 EXPECT_EQ(two, one + one);
158 EXPECT_EQ(two, one - neg_one);
202 APInt two(8, 2);
206 EXPECT_EQ(nine.srem(two), one);
207 EXPECT_EQ(nine.srem(-two), one)
    [all...]
APFloatTest.cpp     [all...]
  /external/swiftshader/third_party/LLVM/examples/ParallelJIT/
ParallelJIT.cpp 12 // This test program creates two LLVM functions then calls them from three
79 Value *Two = ConstantInt::get(Type::getInt32Ty(M->getContext()), 2);
91 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
102 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
253 // Create one thread for add1 and two threads for fib
  /frameworks/base/tools/aapt2/
ResourceValues.h 303 enum { Zero = 0, One, Two, Few, Many, Other, Count };
  /external/boringssl/win-x86_64/crypto/fipsmodule/
p256-x86_64-asm.asm 16 $L$Two:

Completed in 730 milliseconds

1 2