/external/clang/test/Analysis/ |
D | uninit-sometimes.cpp | 4 bool maybe(); 34 if (maybe()) { in test_while_false() 64 if (maybe()) { in test_do_while_false() 100 if (maybe()) { in test_for_false() 164 maybe() // expected-warning {{whenever '?:' condition is false}} \ in test_conditional_false() 177 maybe() // expected-warning {{whenever '?:' condition is true}} \ in test_conditional_true() 189 maybe() // expected-warning {{whenever '&&' condition is false}} \ in test_logical_and_false() 201 maybe() // expected-warning {{whenever '&&' condition is true}} \ in test_logical_and_true() 215 maybe() // expected-warning {{whenever '||' condition is false}} \ in test_logical_or_false() 229 maybe() // expected-warning {{whenever '||' condition is true}} \ in test_logical_or_true() [all …]
|
/external/toybox/lib/ |
D | interestingtimes.c | 152 int maybe, i, j; in scan_key() local 160 maybe = 0; in scan_key() 174 } else for (i=0; i<6; i++) if (pos[i]==*scratch) maybe = 1; in scan_key() 181 maybe = 1; in scan_key() 191 if (!maybe) break; in scan_key() 197 if (maybe || miliwait != -1) in scan_key() 198 if (!xpoll(&pfd, 1, maybe ? 30 : miliwait)) break; in scan_key()
|
/external/javassist/src/main/javassist/compiler/ |
D | MemberResolver.java | 81 Method maybe = null; in lookupMethod() local 92 maybe = r; in lookupMethod() 97 argClassNames, maybe != null); in lookupMethod() 101 return maybe; in lookupMethod() 109 Method maybe = null; in lookupMethod() local 125 else if (maybe == null || maybe.notmatch > res) in lookupMethod() 126 maybe = r; in lookupMethod() 133 maybe = null; in lookupMethod() 135 onlyExact = maybe != null; in lookupMethod() 178 return maybe; in lookupMethod()
|
/external/v8/src/ |
D | i18n.cc | 428 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings() local 429 CHECK(maybe.IsJust()); in SetResolvedNumberSettings() 430 if (maybe.FromJust()) { in SetResolvedNumberSettings() 438 maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings() 439 CHECK(maybe.IsJust()); in SetResolvedNumberSettings() 440 if (maybe.FromJust()) { in SetResolvedNumberSettings() 758 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackDateFormat() local 759 CHECK(maybe.IsJust()); in UnpackDateFormat() 760 if (maybe.FromJust()) { in UnpackDateFormat() 838 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackNumberFormat() local [all …]
|
D | contexts.cc | 276 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); in Lookup() local 279 maybe = JSReceiver::GetOwnPropertyAttributes(object, name); in Lookup() 283 maybe = Just(ABSENT); in Lookup() 288 maybe = Nothing<PropertyAttributes>(); in Lookup() 293 maybe = Just(found.FromJust() ? NONE : ABSENT); in Lookup() 297 maybe = JSReceiver::GetPropertyAttributes(object, name); in Lookup() 300 if (!maybe.IsJust()) return Handle<Object>(); in Lookup() 302 *attributes = maybe.FromJust(); in Lookup() 304 if (maybe.FromJust() != ABSENT) { in Lookup()
|
/external/v8/src/runtime/ |
D | runtime-object.cc | 215 Maybe<PropertyAttributes> maybe = JSObject::GetPropertyAttributes(&it); in GetOwnProperty() local 217 if (!maybe.IsJust()) return MaybeHandle<Object>(); in GetOwnProperty() 218 PropertyAttributes attrs = maybe.FromJust(); in GetOwnProperty() 477 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local 478 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION() 506 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local 507 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION() 600 Maybe<bool> maybe = JSReceiver::HasOwnProperty(object, key); in HasOwnPropertyImplementation() local 601 if (!maybe.IsJust()) return isolate->heap()->exception(); in HasOwnPropertyImplementation() 602 if (maybe.FromJust()) return isolate->heap()->true_value(); in HasOwnPropertyImplementation() [all …]
|
D | runtime-scopes.cc | 48 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in DeclareGlobals() local 49 if (!maybe.IsJust()) return isolate->heap()->exception(); in DeclareGlobals() 52 PropertyAttributes old_attributes = maybe.FromJust(); in DeclareGlobals() 180 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local 181 DCHECK(maybe.IsJust()); in RUNTIME_FUNCTION() 182 PropertyAttributes old_attributes = maybe.FromJust(); in RUNTIME_FUNCTION() 392 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local 393 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION() 394 PropertyAttributes old_attributes = maybe.FromJust(); in RUNTIME_FUNCTION() 764 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in FindNameClash() local [all …]
|
/external/v8/src/debug/ |
D | debug-scopes.cc | 659 Maybe<bool> maybe = JSReceiver::HasProperty(ext, variable_name); in SetLocalVariableValue() local 660 DCHECK(maybe.IsJust()); in SetLocalVariableValue() 661 if (maybe.FromJust()) { in SetLocalVariableValue() 698 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); in SetBlockVariableValue() local 699 DCHECK(maybe.IsJust()); in SetBlockVariableValue() 700 if (maybe.FromJust()) { in SetBlockVariableValue() 731 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); in SetClosureVariableValue() local 732 DCHECK(maybe.IsJust()); in SetClosureVariableValue() 733 if (maybe.FromJust()) { in SetClosureVariableValue()
|
D | debug-evaluate.cc | 299 Maybe<bool> maybe = JSReceiver::HasOwnProperty( in MaterializeArgumentsObject() local 301 DCHECK(maybe.IsJust()); in MaterializeArgumentsObject() 302 if (maybe.FromJust()) return; in MaterializeArgumentsObject()
|
/external/testng/src/main/java/org/testng/reporters/jq/ |
D | NavigatorPanel.java | 102 maybe(failed, "failed", ", "), in generateResult() 103 maybe(skipped, "skipped", ", "), in generateResult() 104 maybe(passed, "passed", "")); in generateResult() 156 private static String maybe(int count, String s, String sep) { in maybe() method in NavigatorPanel
|
/external/wpa_supplicant_8/src/utils/ |
D | os_unix.c | 550 int maybe = 0; in testing_fail_alloc() local 556 maybe = 1; in testing_fail_alloc() 565 if (maybe && next) { in testing_fail_alloc() 622 int maybe = 0; in testing_test_fail() local 628 maybe = 1; in testing_test_fail() 637 if (maybe && next) { in testing_test_fail()
|
/external/harfbuzz_ng/ |
D | git.mk | 328 all: $(srcdir)/.gitignore gitignore-recurse-maybe 331 gitignore-recurse-maybe: 347 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
|
/external/libchrome/sandbox/linux/bpf_dsl/ |
D | bpf_dsl_unittest.cc | 456 ResultExpr maybe = If(arg == 0, Allow()).Else(Error(EPERM)); in TEST() local 457 EXPECT_FALSE(maybe->IsAllow()); in TEST() 458 EXPECT_FALSE(maybe->IsDeny()); in TEST() 472 ResultExpr maybe = If(arg == 0, allow).Else(unsafe); in TEST() local 473 EXPECT_TRUE(maybe->HasUnsafeTraps()); in TEST()
|
/external/ltrace/ |
D | configure.ac | 141 esac],[enable_elfutils=maybe]) 157 (yes|maybe) 160 elif test $enable_elfutils = maybe; then 187 esac],[enable_libunwind=maybe]) 197 (yes|maybe) 200 elif test $enable_libunwind = maybe; then
|
/external/cblas/ |
D | README.version | 2 Version: 3.5 (maybe)
|
/external/curl/tests/data/ |
D | test61 | 22 Set-Cookie: test3=maybe; domain=foo.com; path=/moo; secure 70 .foo.com TRUE /moo TRUE 0 test3 maybe
|
/external/liblzf/cs/ |
D | README | 7 original author (and maybe CC me, Marc Lehmann <liblzf@schmorp.de>).
|
/external/clang/test/Sema/ |
D | outof-range-constant-compare.c | 141 maybe in main() enumerator
|
/external/skia/cmake/ |
D | README.md | 21 Currently maybe-kinda-working platforms
|
/external/bison/m4/ |
D | getopt.m4 | 112 [gl_cv_func_getopt_posix=maybe], 114 if test $gl_cv_func_getopt_posix = maybe; then 158 [gl_cv_func_getopt_posix=maybe], 161 if test $gl_cv_func_getopt_posix = maybe; then
|
/external/chromium-trace/catapult/third_party/Paste/docs/ |
D | future.txt | 47 Some proxyish app... maybe WSGIProxy? 96 …It's an okay naive session system. But maybe Beaker makes it irrelevant (Beaker does seem slightl…
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64Schedule.td | 49 def WriteLDIdx : SchedWrite; // Load from a register index (maybe scaled). 50 def WriteSTIdx : SchedWrite; // Store to a register index (maybe scaled).
|
/external/compiler-rt/lib/tsan/go/ |
D | build.bat | 3 …tti -DSANITIZER_GO -Wno-error=attributes -Wno-attributes -Wno-format -Wno-maybe-uninitialized -DSA…
|
/external/dhcpcd-6.8.2/ |
D | Android.mk | 78 LOCAL_CFLAGS += -Wno-maybe-uninitialized
|
/external/llvm/ |
D | llvm-host-build.mk | 15 -Wno-maybe-uninitialized \
|