Searched defs:Maybe (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/Analysis/Analyses/
H A DUninitializedValues.h72 Maybe, enumerator in enum:clang::UninitUse::Kind
90 !branch_empty() ? Sometimes : Maybe;
/external/clang/lib/Driver/
H A DMultilib.cpp143 MultilibSet &MultilibSet::Maybe(const Multilib &M) { function in class:MultilibSet
/external/chromium_org/v8/src/
H A Dtypes.cc363 bool TypeImpl<Config>::Maybe(TypeImpl* that) { function in class:v8::internal::TypeImpl
370 if (unioned->Get(i)->Maybe(that)) return true;
379 if (this->Maybe(unioned->Get(i))) return true;
H A Dtypes.h93 // T1->Maybe(T2) -- tests whether T1 and T2 overlap (i.e., T1 /\ T2 =/= 0)
97 // handling (e.g., via T->Maybe(Number())).
342 bool Maybe(TypeImpl* that);
344 bool Maybe(TypeHandle that) { return this->Maybe(*that); } function in class:v8::internal::TypeImpl
/external/chromium_org/v8/test/cctest/
H A Dtest-types.cc409 CHECK(type1->Maybe(type2));
410 CHECK(type2->Maybe(type1));
420 CHECK(!type1->Maybe(type2));
421 CHECK(!type2->Maybe(type1));
696 // Constant(V)->Is(T) iff Of(V)->Is(T) or T->Maybe(Constant(V))
704 (of_type->Is(type) || type->Maybe(const_type)));
726 // Constant(V)->NowIs(T) iff NowOf(V)->NowIs(T) or T->Maybe(Constant(V))
734 (nowof_type->NowIs(type) || type->Maybe(const_type)));
738 // Constant(V)->Is(T) implies NowOf(V)->Is(T) or T->Maybe(Constant(V))
746 (nowof_type->Is(type) || type->Maybe(const_typ
1125 void Maybe() { function in struct:Tests
[all...]
/external/chromium_org/v8/include/
H A Dv8.h884 * A simple Maybe type, representing an object which may or may not have a
888 struct Maybe { struct in namespace:v8
889 Maybe() : has_value(false) {} function in struct:v8::Maybe
890 explicit Maybe(T t) : has_value(true), value(t) {} function in struct:v8::Maybe
891 Maybe(bool has, T t) : has_value(has), value(t) {} function in struct:v8::Maybe

Completed in 258 milliseconds