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

1 2 3

  /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 777 // 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/valgrind/none/tests/s390x/
op_exception.stderr.exp 13 Either way, Valgrind will now raise a SIGILL signal which will
26 Either way, Valgrind will now raise a SIGILL signal which will
39 Either way, Valgrind will now raise a SIGILL signal which will
52 Either way, Valgrind will now raise a SIGILL signal which will
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 28 Errors from the lexer are never passed to the parser. Either you want
  /external/aac/libFDK/include/
FDK_archdef.h 212 #error Either set FDK_HIGH_QUALITY or FDK_HIGH_PERFORMANCE, but not both nor none of them.
  /external/antlr/antlr-3.4/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/harfbuzz_ng/win32/
introspection-msvc.mak 16 # Either having python.exe your PATH will work or passing in
  /external/v8/src/
effects.h 17 // An effect can either be definite, if the write is known to have taken place,
22 // the other) or alternatively (either one or the other happens). A definite
48 return Effect(Bounds::Either(e1.bounds, e2.bounds, zone), e1.modality);
54 Bounds::Either(e1.bounds, e2.bounds, zone),
types.h 98 // maximum value. Either value may be an infinity, in which case that infinity
945 // Join: either b1 or b2 is known to hold.
946 static Bounds Either(Bounds b1, Bounds b2, Zone* zone) {
  /external/v8/test/mjsunit/
debug-handle.js 132 assertEquals(2, count, 'Either "o" or "p" not found');
175 assertEquals(3, count, 'Either "name", "length" or "caller" not found');
209 assertEquals(3, count, 'Either "name", "length" or "caller" not found');
  /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/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
client.py 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
851 token: A string used as the token to be revoked. Can be either an
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 107 builder.setEngineKind(EngineKind::Either)
ExecutionEngine.cpp 477 : M(std::move(M)), WhichEngine(EngineKind::Either), ErrorStr(nullptr),
    [all...]
  /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/v8/src/crankshaft/
typing.cc 369 Bounds::Either(bounds_->get(expr->then_expression()),
666 NarrowType(expr, Bounds::Either(bounds_->get(expr->left()),
  /external/v8/test/webkit/fast/js/
Object-defineProperty.js 136 // Either accessor may be omitted or replaced with undefined, or both may be replaced with undefined.
149 // Test replacing or removing either the getter or setter individually.
160 // Either accessor may be omitted or replaced with undefined, or both may be replaced with undefined.
173 // Test replacing or removing either the getter or setter individually.
  /external/ImageMagick/www/api/
layer.php 258 <p>However if all the frames have a zero time delay, then either the animation is as yet incomplete, or it is not a GIF animation. This a non-sensible situation, so no image will be removed and a 'Zero Time Animation' warning (exception) given.</p>
294 <p>Special case:- If one of the image sequences is the last image (just a single image remaining), that image is repeatally composed with all the images in the other image list. Either the source or destination lists may be the single image, for this situation.</p>
  /external/pcre/dist/
RunTest.bat 597 @echo Either your build is incomplete or you have a configuration error.
612 @echo If the build dir is not under the source dir you can either copy your exes

Completed in 1043 milliseconds

1 2 3