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

1 2

  /external/deqp/framework/common/
tcuEither.hpp 17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23 * \brief Template class that is either type of First or Second.
32 * \brief Object containing Either First or Second type of object
40 class Either
43 Either (const First& first);
44 Either (const Second& second);
45 ~Either (void);
47 Either (const Either<First, Second>& other);
48 Either& operator= (const Either<First, Second>& other)
    [all...]
tcuEither.cpp 15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 * \brief Template class that is either type of Left or Right.
90 const Either<int, float> either (intValue);
92 TCU_CHECK(either.isFirst());
93 TCU_CHECK(!either.isSecond());
95 TCU_CHECK(either.is<int>());
96 TCU_CHECK(!either.is<float>());
98 TCU_CHECK(either.getFirst() == intValue);
99 TCU_CHECK(either.get<int>() == intValue)
    [all...]
  /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/clang/include/clang/Driver/
Multilib.h 71 /// All elements begin with either '+' or '-'
119 MultilibSet &Either(const Multilib &M1, const Multilib &M2);
120 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
122 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
124 MultilibSet &Either(const Multilib &M1, const Multilib &M2,
127 MultilibSet &Either(ArrayRef<Multilib> Ms);
  /external/clang/lib/Driver/
Multilib.cpp 150 return Either(M, Opposite);
153 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2) {
154 return Either({M1, M2});
157 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2,
159 return Either({M1, M2, M3});
162 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2,
164 return Either({M1, M2, M3, M4});
167 MultilibSet &MultilibSet::Either(const Multilib &M1, const Multilib &M2,
170 return Either({M1, M2, M3, M4, M5});
192 MultilibSet &MultilibSet::Either(ArrayRef<Multilib> MultilibSegments)
    [all...]
ToolChains.cpp 814 // Skip this argument unless the architecture matches either the toolchain
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawBuffersIndexedTests.cpp 15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
66 using tcu::Either;
164 const Maybe<Either<BlendEq, SeparateBlendEq> >& blendEq_,
165 const Maybe<Either<BlendFunc, SeparateBlendFunc> >& blendFunc_,
180 Maybe<Either<BlendEq, SeparateBlendEq> > blendEq;
181 Maybe<Either<BlendFunc, SeparateBlendFunc> > blendFunc;
204 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq;
216 const Either<BlendFunc, SeparateBlendFunc>& blendFunc = *blend.blendFunc;
248 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq;
260 const Either<BlendFunc, SeparateBlendFunc>& blendFunc = *blend.blendFunc
    [all...]
  /external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 28 Errors from the lexer are never passed to the parser. Either you want
  /external/antlr/runtime/Ruby/test/functional/parser/
backtracking.rb 43 /** Either a function definition or any other kind of C decl/def.
  /external/clang/examples/clang-interpreter/
main.cpp 48 .setEngineKind(llvm::EngineKind::Either)
  /external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
ExecutionEngine.h 451 const static Kind Either = (Kind)(JIT | Interpreter);
474 WhichEngine = EngineKind::Either;
492 /// or whichever engine works. This option defaults to EngineKind::Either.
575 /// selectTarget - Pick a target either via -march or by guessing the native
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 95 builder.setEngineKind(EngineKind::Either)
  /external/swiftshader/third_party/LLVM/tools/llvm-config/
llvm-config.in.in 199 backend Either a native backend or the C backend.
200 engine Either a native JIT or a bitcode interpreter.
  /external/syzkaller/vendor/golang.org/x/net/http2/hpack/
huffman.go 95 // Either there was an incomplete symbol, or overlong padding.
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 506 const static Kind Either = (Kind)(JIT | Interpreter);
540 /// or whichever engine works. This option defaults to EngineKind::Either.
630 /// selectTarget - Pick a target either via -march or by guessing the native
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 227 /// function (i.e. those returning void or int, and taking either no
519 const static Kind Either = (Kind)(JIT | Interpreter);
555 /// or whichever engine works. This option defaults to EngineKind::Either.
648 /// selectTarget - Pick a target either via -march or by guessing the native
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 108 builder.setEngineKind(EngineKind::Either)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 109 builder.setEngineKind(EngineKind::Either)
  /external/tensorflow/tensorflow/python/keras/engine/
distributed_training_utils.py 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
380 'Using TPUs currently requires fully defined shapes. Either use '
612 that we're using Strategy variables and any updates on either model are
    [all...]
  /build/soong/java/
hiddenapi.go 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
64 // Either way extract the name of the boot jar module.
  /external/boringssl/src/util/
convert_comments.go 33 // * Either one of the following are true:
176 // Parse starting from |idx|, looking for either a convertable
  /external/libunwind/doc/
libunwind-ptrace.tex 69 either by forking a new process, invoking \Const{PTRACE\_TRACEME}, and
72 \Const{PTRACE\_ATTACH}). Either way, once the process-ID (pid) of the
  /external/syzkaller/vendor/google.golang.org/appengine/datastore/
key.go 251 // Either one or both of stringID and intID must be zero. If both are zero,
253 // parent must either be a complete key or nil.
  /external/u-boot/arch/arm/lib/
lib1funcs.S 178 @ Either 1, 2 or 3 comparison/subtractions are left.
  /external/syzkaller/prog/
prog.go 227 // Either holds constant value or reference another ResultArg.

Completed in 6171 milliseconds

1 2