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

  /external/clang/test/CXX/class/class.union/
p1.cpp 105 template <class A, class B> struct Either {
112 Either(const A& a) : tag(true), a(a) {}
113 Either(const B& b) : tag(false), b(b) {}
117 Either<int,Virtual> virt(0); // expected-note {{in instantiation of template}}
118 Either<int,VirtualBase> vbase(0); // expected-note {{in instantiation of template}}
119 Either<int,Ctor> ctor(0); // expected-note {{in instantiation of template}}
120 Either<int,CopyCtor> copyctor(0); // expected-note {{in instantiation of template}}
121 Either<int,CopyAssign> copyassign(0); // expected-note {{in instantiation of template}}
122 Either<int,Dtor> dtor(0); // expected-note {{in instantiation of template}}
123 Either<int,Okay> okay(0)
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 472 const static Kind Either = (Kind)(JIT | Interpreter);
496 WhichEngine = EngineKind::Either;
515 /// or whichever engine works. This option defaults to EngineKind::Either.
607 /// selectTarget - Pick a target either via -march or by guessing the native

Completed in 74 milliseconds