HomeSort by relevance Sort by last modified time
    Searched defs:Maybe (Results 1 - 7 of 7) sorted by null

  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 72 Maybe,
90 !branch_empty() ? Sometimes : Maybe;
  /external/clang/lib/Driver/
Multilib.cpp 143 MultilibSet &MultilibSet::Maybe(const Multilib &M) {
  /external/chromium_org/v8/src/
types.cc 505 bool TypeImpl<Config>::Maybe(TypeImpl* that) {
512 if (unioned->Get(i)->Maybe(that)) return true;
520 if (this->Maybe(that->AsUnion()->Get(i))) return true;
    [all...]
types.h 109 // T1->Maybe(T2) -- tests whether T1 and T2 overlap (i.e., T1 /\ T2 =/= 0)
113 // handling (e.g., via T->Maybe(Number())).
394 bool Maybe(TypeImpl* that);
396 bool Maybe(TypeHandle that) { return this->Maybe(*that); }
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 389 CHECK(type1->Maybe(type2));
390 CHECK(type2->Maybe(type1));
396 CHECK(!type1->Maybe(type2));
397 CHECK(!type2->Maybe(type1));
738 // If Constant(V)->Is(T), then Of(V)->Is(T) or T->Maybe(Constant(V))
746 of_type->Is(type) || type->Maybe(const_type));
780 // then NowOf(V)->NowIs(T) or T->Maybe(Constant(V))
788 nowof_type->NowIs(type) || type->Maybe(const_type));
793 // then NowOf(V)->Is(T) or T->Maybe(Constant(V))
801 nowof_type->Is(type) || type->Maybe(const_type))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ndr64types.h 85 NDR64_UINT16 Maybe : 1;
  /external/chromium_org/v8/include/
v8.h 886 * A simple Maybe type, representing an object which may or may not have a
890 struct Maybe {
891 Maybe() : has_value(false) {}
892 explicit Maybe(T t) : has_value(true), value(t) {}
893 Maybe(bool has, T t) : has_value(has), value(t) {}
902 inline Maybe<T> maybe(T t) { function in namespace:v8
903 return Maybe<T>(t);
    [all...]

Completed in 8677 milliseconds