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

1 2

  /external/clang/unittests/Driver/
MultilibTest.cpp 182 // Single maybe
185 MS.Maybe(Multilib("64").flag("+m64"));
198 // Double maybe
200 MS.Maybe(Multilib("sof").flag("+sof"));
201 MS.Maybe(Multilib("el").flag("+EL"));
242 MS.Maybe(Multilib("one"));
243 MS.Maybe(Multilib("two"));
244 MS.Maybe(Multilib("three"));
264 MS.Maybe(Multilib("orange"));
265 MS.Maybe(Multilib("pear"))
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
UninitializedValues.h 72 Maybe,
90 !branch_empty() ? Sometimes : Maybe;
  /external/chromium_org/v8/src/
type-info.h 85 Maybe<int>* fixed_right_arg,
hydrogen-representation-changes.cc 31 Maybe<HConstant*> res = constant->CopyToTruncatedInt32(graph()->zone());
type-info.cc 225 Maybe<int>* fixed_right_arg,
235 *fixed_right_arg = Maybe<int>();
types.h 93 // 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); }
    [all...]
types.cc 363 bool TypeImpl<Config>::Maybe(TypeImpl* that) {
370 if (unioned->Get(i)->Maybe(that)) return true;
379 if (this->Maybe(unioned->Get(i))) return true;
ic.h 847 Maybe<int> fixed_right_arg() const { return fixed_right_arg_; }
893 Maybe<int> fixed_right_arg_;
    [all...]
code-stubs-hydrogen.cc 868 (left_type->Maybe(Type::String()) || right_type->Maybe(Type::String())) &&
872 if (left_type->Maybe(Type::String())) {
    [all...]
typing.cc 610 Maybe<int> fixed_right_arg;
hydrogen-instructions.cc     [all...]
ast.h     [all...]
  /external/clang/include/clang/Driver/
Multilib.h 113 MultilibSet &Maybe(const Multilib &M);
  /external/chromium_org/remoting/webapp/
log_to_server.js 55 // Maybe set the session ID and start time.
71 // Maybe clear the session start time, and log the session duration.
84 // Maybe clear the session ID.
  /external/chromium_org/v8/test/cctest/
test-types.cc 409 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_type)))
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/chrome_search/
background.js 157 // TODO(aa): We need a way to pass arbitrary data through. Maybe that is just
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
example.js 60 // Maybe add extra args
  /external/clang/lib/Driver/
Multilib.cpp 143 MultilibSet &MultilibSet::Maybe(const Multilib &M) {
ToolChains.cpp     [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/third_party/skia/experimental/Intersection/
thingsToDo.txt 122 next contour is inside another? Maybe shoot out a line and brute-force
  /external/skia/experimental/Intersection/
thingsToDo.txt 122 next contour is inside another? Maybe shoot out a line and brute-force
  /external/chromium_org/v8/include/
v8.h 884 * A simple Maybe type, representing an object which may or may not have a
888 struct Maybe {
889 Maybe() : has_value(false) {}
890 explicit Maybe(T t) : has_value(true), value(t) {}
891 Maybe(bool has, T t) : has_value(has), value(t) {}
    [all...]
  /ndk/
ndk-gdb.py 742 Maybe using --port=<port> to use a different TCP port might help?''')
    [all...]
  /external/chromium_org/third_party/readability/js/
readability.js 420 /* Note, this is pretty costly as far as processing goes. Maybe optimize later. */
614 * A score is determined by things like number of commas, class names, etc. Maybe eventually link density.
    [all...]

Completed in 728 milliseconds

1 2