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 114 template <class A, class B> struct Either {
121 Either(const A& a) : tag(true), a(a) {}
122 Either(const B& b) : tag(false), b(b) {}
126 Either<int,Virtual> virt(0); // expected-note {{in instantiation of template}}
127 Either<int,VirtualBase> vbase(0); // expected-note {{in instantiation of template}}
128 Either<int,Ctor> ctor(0); // expected-note {{in instantiation of template}}
129 Either<int,CopyCtor> copyctor(0); // expected-note {{in instantiation of template}}
130 Either<int,CopyAssign> copyassign(0); // expected-note {{in instantiation of template}}
131 Either<int,Dtor> dtor(0); // expected-note {{in instantiation of template}}
132 Either<int,Okay> okay(0)
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 479 const static Kind Either = (Kind)(JIT | Interpreter);
503 WhichEngine = EngineKind::Either;
522 /// or whichever engine works. This option defaults to EngineKind::Either.
614 /// selectTarget - Pick a target either via -march or by guessing the native

Completed in 142 milliseconds