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

1 2 3 4 5 6 7

  /external/clang/test/Modules/Inputs/wildcard-submodule-exports/
C_two.h 1 @import A.Two;
2 @import B.Two;
  /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...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
unexpected1.cpp 10 struct Two { };
21 throw Two ();
26 doit () throw (Two)
39 catch (Two &)
  /ndk/tests/device/test-stlport_static-exception/jni/
unexpected1.cpp 10 struct Two { };
21 throw Two ();
26 doit () throw (Two)
39 catch (Two &)
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
allocate_shared_no_variadics.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/Sema/
missing-field-initializers.c 26 struct Two { float c; float d; float e; };
31 struct Two two; member in union:Three::__anon9341
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/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/Modules/
wildcard-submodule-exports.cpp 13 @import C.Two;
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 45 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
49 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
  /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"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
round2-op.s 0 # Two-operand variants of "R" and "I".
two-op.s 0 # Two-operand insns; 16-bit operand.
  /external/clang/test/SemaTemplate/
alias-church-numerals.cpp 13 template<template<typename> class F, typename X> using Two = Succ<One, F, X>;
25 template<template<typename> class F, typename X> using Four = Add<Two, Two, F, X>;
  /external/markdown/MarkdownTest/Tests_2004/
Ordered and unordered lists.text 65 2. Two
81 2. Two
89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
  /external/markdown/MarkdownTest/Tests_2007/
Ordered and unordered lists.text 65 2. Two
81 2. Two
89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
  /external/markdown/tests/markdown-test/
ordered-and-unordered-list.txt 65 2. Two
81 2. Two
89 Item 2. graf two. The quick brown fox jumped over the lazy dog's
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
bpo-16m.d 9 # Two BPO:s against the same value get merged.
loc2.d 6 # Two text files.
loc3.d 6 # Two text files in opposite order.
  /external/v8/test/mjsunit/regress/
regress-crbug-305309.js 33 this.two = 2;
42 function Two(x) {
43 return x.two;
45 assertEquals(2, Two(a));
46 assertEquals(2, Two(a));
48 %OptimizeFunctionOnNextCall(Two);
49 assertEquals(2, Two(a));
  /external/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/jcommander/src/test/java/com/beust/jcommander/args/
ArgsEnum.java 37 public enum ChoiceType { ONE, Two, THREE };

Completed in 1587 milliseconds

1 2 3 4 5 6 7