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

1 2 3

  /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/
contexts.cc 78 static Maybe<PropertyAttributes> UnscopableLookup(LookupIterator* it) {
81 Maybe<PropertyAttributes> attrs = JSReceiver::GetPropertyAttributes(it);
92 return Maybe<PropertyAttributes>();
95 Maybe<bool> blacklist = JSReceiver::HasProperty(
99 return Maybe<PropertyAttributes>();
101 if (blacklist.value) return maybe(ABSENT);
141 Maybe<PropertyAttributes> maybe; local
144 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
147 maybe = UnscopableLookup(&it)
    [all...]
type-info.h 80 Maybe<int>* fixed_right_arg,
i18n.cc 397 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); local
398 CHECK(maybe.has_value);
399 if (maybe.value) {
407 maybe = JSReceiver::HasOwnProperty(resolved, key);
408 CHECK(maybe.has_value);
409 if (maybe.value) {
721 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
722 CHECK(maybe.has_value)
797 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
854 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
915 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
    [all...]
hydrogen-representation-changes.cc 31 Maybe<HConstant*> res = constant->CopyToTruncatedInt32(graph()->zone());
type-info.cc 214 Maybe<int>* fixed_right_arg,
224 *fixed_right_arg = Maybe<int>();
objects.h     [all...]
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...]
objects-inl.h     [all...]
objects.cc 601 Maybe<PropertyAttributes> JSObject::GetPropertyAttributesWithFailedAccessCheck(
605 return maybe(it->property_details().attributes());
608 Maybe<PropertyAttributes>());
609 return maybe(ABSENT);
3784 Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it); local
4689 Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it); local
4865 Maybe<bool> maybe = HasOwnElement(object, index); local
4889 Maybe<bool> maybe = HasOwnElement(object, index); local
5466 Maybe<PropertyAttributes> maybe = local
6123 Maybe<bool> maybe = HasOwnElement(object, index); local
11078 Maybe<PropertyAttributes> maybe = local
12372 Maybe<PropertyAttributes> maybe = local
    [all...]
  /external/chromium_org/v8/src/ic/
ic-state.h 131 Maybe<int> fixed_right_arg() const { return fixed_right_arg_; }
171 Maybe<int> fixed_right_arg_;
  /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/src/compiler/
js-typed-lowering.cc 119 return !left_type_->Maybe(t) || !right_type_->Maybe(t);
123 return !left_type_->Maybe(t) && !right_type_->Maybe(t);
381 if (!r.left_type()->Maybe(Type::NaN())) {
386 if (!r.left_type()->Maybe(r.right_type())) {
  /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...]
test-mark-compact.cc 170 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, func_name); local
171 CHECK(maybe.has_value);
172 CHECK(maybe.value);
190 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, obj_name); local
191 CHECK(maybe.has_value);
192 CHECK(maybe.value);
  /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/ui/webui/resources/js/cr/ui/
menu_button.js 251 case 'U+001B': // Maybe this is remote desktop playing a prank?
  /external/chromium_org/third_party/skia/experimental/Intersection/
thingsToDo.txt 122 next contour is inside another? Maybe shoot out a line and brute-force

Completed in 653 milliseconds

1 2 3