Home
last modified time | relevance | path

Searched refs:maybe (Results 1 – 25 of 246) sorted by relevance

12345678910

/external/clang/test/Analysis/
Duninit-sometimes.cpp4 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/
Dinterestingtimes.c151 int maybe, i, j; in scan_key() local
159 maybe = 0; in scan_key()
173 } else for (i=0; i<6; i++) if (pos[i]==*scratch) maybe = 1; in scan_key()
180 maybe = 1; in scan_key()
190 if (!maybe) break; in scan_key()
196 if (maybe || miliwait != -1) in scan_key()
197 if (!xpoll(&pfd, 1, maybe ? 30 : miliwait)) break; in scan_key()
/external/javassist/src/main/javassist/compiler/
DMemberResolver.java81 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/
Di18n.cc434 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings() local
435 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
436 if (maybe.FromJust()) { in SetResolvedNumberSettings()
444 maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings()
445 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
446 if (maybe.FromJust()) { in SetResolvedNumberSettings()
764 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackDateFormat() local
765 CHECK(maybe.IsJust()); in UnpackDateFormat()
766 if (maybe.FromJust()) { in UnpackDateFormat()
828 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackNumberFormat() local
[all …]
Dcontexts.cc259 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); in Lookup() local
262 maybe = JSReceiver::GetOwnPropertyAttributes(object, name); in Lookup()
272 maybe = Just(ABSENT); in Lookup()
277 maybe = Nothing<PropertyAttributes>(); in Lookup()
282 maybe = Just(found.FromJust() ? NONE : ABSENT); in Lookup()
286 maybe = JSReceiver::GetPropertyAttributes(object, name); in Lookup()
289 if (!maybe.IsJust()) return Handle<Object>(); in Lookup()
291 *attributes = maybe.FromJust(); in Lookup()
293 if (maybe.FromJust() != ABSENT) { in Lookup()
/external/v8/src/runtime/
Druntime-object.cc162 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() local
163 if (maybe.IsNothing()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
165 if (maybe.FromJust()) return isolate->heap()->true_value(); in RUNTIME_FUNCTION()
181 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() local
182 if (maybe.IsNothing()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
184 return isolate->heap()->ToBoolean(maybe.FromJust()); in RUNTIME_FUNCTION()
368 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local
369 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
394 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local
395 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
[all …]
Druntime-scopes.cc71 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in DeclareGlobal() local
72 if (!maybe.IsJust()) return isolate->heap()->exception(); in DeclareGlobal()
75 PropertyAttributes old_attributes = maybe.FromJust(); in DeclareGlobal()
636 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in FindNameClash() local
637 if (!maybe.IsJust()) return isolate->heap()->exception(); in FindNameClash()
638 if ((maybe.FromJust() & DONT_DELETE) != 0) { in FindNameClash()
/external/testng/src/main/java/org/testng/reporters/jq/
DNavigatorPanel.java102 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/
Dos_unix.c549 int maybe = 0; in testing_fail_alloc() local
555 maybe = 1; in testing_fail_alloc()
564 if (maybe && next) { in testing_fail_alloc()
621 int maybe = 0; in testing_test_fail() local
627 maybe = 1; in testing_test_fail()
636 if (maybe && next) { in testing_test_fail()
/external/harfbuzz_ng/
Dgit.mk328 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/
Dbpf_dsl_unittest.cc456 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/curl/tests/data/
Dtest6122 Set-Cookie: test3=maybe; domain=foo.com; path=/moo; secure
70 .foo.com TRUE /moo TRUE 0 test3 maybe
/external/v8/src/debug/
Ddebug-evaluate.cc243 Maybe<bool> maybe = JSReceiver::HasOwnProperty( in MaterializeArgumentsObject() local
245 DCHECK(maybe.IsJust()); in MaterializeArgumentsObject()
246 if (maybe.FromJust()) return; in MaterializeArgumentsObject()
/external/cblas/
DREADME.version2 Version: 3.5 (maybe)
/external/liblzf/cs/
DREADME7 original author (and maybe CC me, Marc Lehmann <liblzf@schmorp.de>).
/external/bison/m4/
Dgetopt.m4112 [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/clang/test/Sema/
Doutof-range-constant-compare.c141 maybe in main() enumerator
/external/swiftshader/third_party/LLVM/test/Transforms/TailCallElim/
Dreturn_constant.ll2 ; plunked it into the demo script, so maybe they care about it.
/external/llvm/lib/Target/AArch64/
DAArch64Schedule.td49 def WriteLDIdx : SchedWrite; // Load from a register index (maybe scaled).
50 def WriteSTIdx : SchedWrite; // Store to a register index (maybe scaled).
/external/llvm/
Dllvm-host-build.mk9 -Wno-maybe-uninitialized \
/external/dhcpcd-6.8.2/
DAndroid.mk80 LOCAL_CFLAGS += -Wno-maybe-uninitialized
/external/compiler-rt/lib/tsan/go/
Dbuild.bat3 …tti -DSANITIZER_GO -Wno-error=attributes -Wno-attributes -Wno-format -Wno-maybe-uninitialized -DSA…
/external/linux-kselftest/tools/testing/selftests/zram/
DREADME9 use as swap disks, various caches under /var and maybe many more :)
/external/google-breakpad/src/third_party/libdisasm/
DTODO34 replace 0 with INSN_INVALID [or maybe FF for imnvalid and 00 for Not Applicable */
/external/icu/icu4c/source/test/testdata/
Dtestnorm.txt69 E011=E010 F0011 # composition of BMP+supplementary, and F0011 is maybe & combines-fwd

12345678910