Searched defs:Either (Results 1 - 2 of 2) sorted by relevance

/external/clang/test/CXX/class/class.union/
H A Dp1.cpp105 template <class A, class B> struct Either { struct
112 Either(const A& a) : tag(true), a(a) {} function in struct:Either
113 Either(const B& b) : tag(false), b(b) {} function in struct:Either
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<in
[all...]
/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h472 const static Kind Either = (Kind)(JIT | Interpreter); member in namespace:llvm::EngineKind
496 WhichEngine = EngineKind::Either;
515 /// or whichever engine works. This option defaults to EngineKind::Either.

Completed in 68 milliseconds