HomeSort by relevance Sort by last modified time
    Searched defs:maybe (Results 1 - 25 of 37) sorted by null

1 2

  /external/clang/test/Sema/
outof-range-constant-compare.c 141 maybe enumerator in enum:E
  /external/toybox/lib/
interestingtimes.c 152 int maybe, i, j; local
160 maybe = 0;
174 } else for (i=0; i<6; i++) if (pos[i]==*scratch) maybe = 1;
181 maybe = 1;
191 if (!maybe) break;
197 if (maybe || miliwait != -1)
198 if (!xpoll(&pfd, 1, maybe ? 30 : miliwait)) break;
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 456 ResultExpr maybe = If(arg == 0, Allow()).Else(Error(EPERM)); local
457 EXPECT_FALSE(maybe->IsAllow());
458 EXPECT_FALSE(maybe->IsDeny());
472 ResultExpr maybe = If(arg == 0, allow).Else(unsafe); local
473 EXPECT_TRUE(maybe->HasUnsafeTraps());
  /external/testng/src/main/java/org/testng/reporters/jq/
NavigatorPanel.java 102 maybe(failed, "failed", ", "),
103 maybe(skipped, "skipped", ", "),
104 maybe(passed, "passed", ""));
156 private static String maybe(int count, String s, String sep) { method in class:NavigatorPanel
  /external/v8/src/heap/
spaces-inl.h 232 MemoryChunk* maybe = reinterpret_cast<MemoryChunk*>( local
234 if (maybe->owner() != NULL) return maybe;
  /external/v8/src/
messages.cc 226 MaybeHandle<JSReceiver> maybe = Object::ToObject(isolate_, receiver_); local
228 if (!maybe.ToHandle(&receiver) || !receiver->IsJSObject()) {
api-natives.cc 80 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
81 DCHECK(maybe.IsJust());
contexts.cc 149 static Maybe<bool> UnscopableLookup(LookupIterator* it) {
152 Maybe<bool> found = JSReceiver::HasProperty(it);
276 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); local
279 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
283 maybe = Just(ABSENT);
286 Maybe<bool> found = UnscopableLookup(&it);
288 maybe = Nothing<PropertyAttributes>();
290 // Luckily, consumers of |maybe| only care whether the property
293 maybe = Just(found.FromJust() ? NONE : ABSENT)
    [all...]
i18n.cc 428 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); local
429 CHECK(maybe.IsJust());
430 if (maybe.FromJust()) {
438 maybe = JSReceiver::HasOwnProperty(resolved, key);
439 CHECK(maybe.IsJust());
440 if (maybe.FromJust()) {
758 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
759 CHECK(maybe.IsJust())
838 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
899 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
964 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
    [all...]
  /external/v8/src/runtime/
runtime-object.cc 121 Maybe<bool> Runtime::DeleteObjectProperty(Isolate* isolate,
215 Maybe<PropertyAttributes> maybe = JSObject::GetPropertyAttributes(&it); local
217 if (!maybe.IsJust()) return MaybeHandle<Object>();
218 PropertyAttributes attrs = maybe.FromJust();
285 Maybe<bool> found = JSReceiver::GetOwnPropertyDescriptor(
477 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
478 if (!maybe.IsJust()) return isolate->heap()->exception();
506 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it) local
600 Maybe<bool> maybe = JSReceiver::HasOwnProperty(object, key); local
640 Maybe<bool> maybe = Nothing<bool>(); local
698 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name); local
711 Maybe<PropertyAttributes> maybe = local
    [all...]
runtime-scopes.cc 48 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
49 if (!maybe.IsJust()) return isolate->heap()->exception();
52 PropertyAttributes old_attributes = maybe.FromJust();
180 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
181 DCHECK(maybe.IsJust());
182 PropertyAttributes old_attributes = maybe.FromJust();
392 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it) local
764 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 50 def maybe(*choices): return group(*choices) + '?' function
54 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tokenize.py 46 def maybe(*choices): return group(*choices) + '?' function
50 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
pydoc.py 721 def maybe(self): member in class:.docclass.HorizontalRule
730 hr.maybe()
740 hr.maybe()
758 hr.maybe()
767 hr.maybe()
1164 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
tokenize.py 50 def maybe(*choices): return group(*choices) + '?' function
54 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  /prebuilts/gdb/linux-x86/lib/python2.7/
tokenize.py 46 def maybe(*choices): return group(*choices) + '?' function
50 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 50 def maybe(*choices): return group(*choices) + '?' function
54 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 46 def maybe(*choices): return group(*choices) + '?' function
50 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 50 def maybe(*choices): return group(*choices) + '?' function
54 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
63 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 46 def maybe(*choices): return group(*choices) + '?' function
50 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
59 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 81 Method maybe = null; local
92 maybe = r;
97 argClassNames, maybe != null);
101 return maybe;
109 Method maybe = null; local
125 else if (maybe == null || maybe.notmatch > res)
126 maybe = r;
133 maybe = null;
135 onlyExact = maybe != null
    [all...]
  /external/v8/src/debug/
debug-scopes.cc 659 Maybe<bool> maybe = JSReceiver::HasProperty(ext, variable_name); local
660 DCHECK(maybe.IsJust());
661 if (maybe.FromJust()) {
698 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); local
699 DCHECK(maybe.IsJust());
700 if (maybe.FromJust()) {
731 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name) local
    [all...]
  /external/wpa_supplicant_8/src/utils/
os_unix.c 550 int maybe = 0; local
556 maybe = 1;
565 if (maybe && next) {
622 int maybe = 0; local
628 maybe = 1;
637 if (maybe && next) {
  /ndk/build/core/
definitions.mk 189 define list-file-maybe-gen-10
221 define list-file-maybe-gen-100
241 $(call list-file-maybe-gen-10,$15,$2)
242 $(call list-file-maybe-gen-10,$16,$2)
243 $(call list-file-maybe-gen-10,$17,$2)
244 $(call list-file-maybe-gen-10,$18,$2)
245 $(call list-file-maybe-gen-10,$19,$2)
248 $(call list-file-maybe-gen-10,$11,$2)
249 $(call list-file-maybe-gen-10,$12,$2)
250 $(call list-file-maybe-gen-10,$13,$2
    [all...]
  /external/valgrind/VEX/priv/
host_arm64_isel.c 1209 ARM64RIL* maybe = NULL; local
    [all...]

Completed in 797 milliseconds

1 2