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

1 2 3 4 5 6 7 8 910

  /external/clang/test/Analysis/
uninit-sometimes.cpp 4 bool maybe();
34 if (maybe()) {
64 if (maybe()) {
100 if (maybe()) {
164 maybe() // expected-warning {{whenever '?:' condition is false}} \
177 maybe() // expected-warning {{whenever '?:' condition is true}} \
189 maybe() // expected-warning {{whenever '&&' condition is false}} \
201 maybe() // expected-warning {{whenever '&&' condition is true}} \
215 maybe() // expected-warning {{whenever '||' condition is false}} \
229 maybe() // expected-warning {{whenever '||' condition is true}}
    [all...]
  /external/toybox/lib/
interestingtimes.c 151 int maybe, i, j; local
159 maybe = 0;
173 } else for (i=0; i<6; i++) if (pos[i]==*scratch) maybe = 1;
180 maybe = 1;
190 if (!maybe) break;
196 if (maybe || miliwait != -1)
197 if (!xpoll(&pfd, 1, maybe ? 30 : miliwait)) break;
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_modulefinder.py 251 # check for missing and maybe missing modules
252 bad, maybe = mf.any_missing_maybe()
254 self.assertEqual(maybe, maybe_missing)
  /external/v8/src/
i18n.cc 434 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); local
435 CHECK(maybe.IsJust());
436 if (maybe.FromJust()) {
444 maybe = JSReceiver::HasOwnProperty(resolved, key);
445 CHECK(maybe.IsJust());
446 if (maybe.FromJust()) {
764 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
765 CHECK(maybe.IsJust())
828 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
887 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
950 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
    [all...]
contexts.cc 169 static Maybe<bool> UnscopableLookup(LookupIterator* it) {
172 Maybe<bool> found = JSReceiver::HasProperty(it);
259 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); local
262 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
272 maybe = Just(ABSENT);
275 Maybe<bool> found = UnscopableLookup(&it);
277 maybe = Nothing<PropertyAttributes>();
279 // Luckily, consumers of |maybe| only care whether the property
282 maybe = Just(found.FromJust() ? NONE : ABSENT)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_modulefinder.py 251 # check for missing and maybe missing modules
252 bad, maybe = mf.any_missing_maybe()
254 self.assertEqual(maybe, maybe_missing)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_modulefinder.py 251 # check for missing and maybe missing modules
252 bad, maybe = mf.any_missing_maybe()
254 self.assertEqual(maybe, maybe_missing)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_modulefinder.py 251 # check for missing and maybe missing modules
252 bad, maybe = mf.any_missing_maybe()
254 self.assertEqual(maybe, maybe_missing)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_modulefinder.py 251 # check for missing and maybe missing modules
252 bad, maybe = mf.any_missing_maybe()
254 self.assertEqual(maybe, maybe_missing)
  /toolchain/binutils/binutils-2.25/config/
multi.m4 44 cross_compiling=maybe
  /external/clang/test/Sema/
outof-range-constant-compare.c 141 maybe enumerator in enum:E
  /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/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());
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava2/rxjava/2.0.6/
rxjava-2.0.6.jar 
  /external/v8/src/runtime/
runtime-object.cc 121 Maybe<bool> Runtime::DeleteObjectProperty(Isolate* isolate,
162 Maybe<bool> maybe = JSReceiver::HasProperty(&it); local
163 if (maybe.IsNothing()) return isolate->heap()->exception();
165 if (maybe.FromJust()) return isolate->heap()->true_value();
181 Maybe<bool> maybe = JSReceiver::HasProperty(&it); local
182 if (maybe.IsNothing()) return isolate->heap()->exception();
184 return isolate->heap()->ToBoolean(maybe.FromJust());
192 Maybe<bool> result
368 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
394 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
498 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name); local
    [all...]
  /external/wpa_supplicant_8/src/utils/
os_unix.c 549 int maybe = 0; local
555 maybe = 1;
564 if (maybe && next) {
621 int maybe = 0; local
627 maybe = 1;
636 if (maybe && next) {
  /external/v8/src/debug/
debug-evaluate.cc 243 Maybe<bool> maybe = JSReceiver::HasOwnProperty(
245 DCHECK(maybe.IsJust());
246 if (maybe.FromJust()) return;
  /build/soong/cc/config/
clang.go 22 "-Wno-error=maybe-uninitialized",
27 "-Wno-maybe-uninitialized",
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
modulefinder.py 510 missing, maybe = self.any_missing_maybe()
518 # Print modules that may be missing, but then again, maybe not...
519 if maybe:
523 for name in maybe:
533 missing, maybe = self.any_missing_maybe()
534 return missing + maybe
546 maybe = []
568 maybe.append(name)
579 maybe.sort()
580 return missing, maybe
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
modulefinder.py 508 missing, maybe = self.any_missing_maybe()
516 # Print modules that may be missing, but then again, maybe not...
517 if maybe:
521 for name in maybe:
531 missing, maybe = self.any_missing_maybe()
532 return missing + maybe
544 maybe = []
566 maybe.append(name)
577 maybe.sort()
578 return missing, maybe
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
modulefinder.py 508 missing, maybe = self.any_missing_maybe()
516 # Print modules that may be missing, but then again, maybe not...
517 if maybe:
521 for name in maybe:
531 missing, maybe = self.any_missing_maybe()
532 return missing + maybe
544 maybe = []
566 maybe.append(name)
577 maybe.sort()
578 return missing, maybe
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
modulefinder.py 508 missing, maybe = self.any_missing_maybe()
516 # Print modules that may be missing, but then again, maybe not...
517 if maybe:
521 for name in maybe:
531 missing, maybe = self.any_missing_maybe()
532 return missing + maybe
544 maybe = []
566 maybe.append(name)
577 maybe.sort()
578 return missing, maybe
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
unsafeptr.go 72 // maybe call to reflect.Value.Pointer or reflect.Value.UnsafeAddr.
86 // maybe conversion of uintptr to unsafe.Pointer
  /prebuilts/go/linux-x86/src/cmd/vet/
unsafeptr.go 72 // maybe call to reflect.Value.Pointer or reflect.Value.UnsafeAddr.
86 // maybe conversion of uintptr to unsafe.Pointer

Completed in 1249 milliseconds

1 2 3 4 5 6 7 8 910