Home
last modified time | relevance | path

Searched refs:maybe (Results 1 – 25 of 241) 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.c152 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/
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.cc431 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings() local
432 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
433 if (maybe.FromJust()) { in SetResolvedNumberSettings()
441 maybe = JSReceiver::HasOwnProperty(resolved, key); in SetResolvedNumberSettings()
442 CHECK(maybe.IsJust()); in SetResolvedNumberSettings()
443 if (maybe.FromJust()) { in SetResolvedNumberSettings()
761 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackDateFormat() local
762 CHECK(maybe.IsJust()); in UnpackDateFormat()
763 if (maybe.FromJust()) { in UnpackDateFormat()
825 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); in UnpackNumberFormat() local
[all …]
Dcontexts.cc283 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); in Lookup() local
286 maybe = JSReceiver::GetOwnPropertyAttributes(object, name); in Lookup()
290 maybe = Just(ABSENT); in Lookup()
295 maybe = Nothing<PropertyAttributes>(); in Lookup()
300 maybe = Just(found.FromJust() ? NONE : ABSENT); in Lookup()
304 maybe = JSReceiver::GetPropertyAttributes(object, name); in Lookup()
307 if (!maybe.IsJust()) return Handle<Object>(); in Lookup()
309 *attributes = maybe.FromJust(); in Lookup()
311 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()
375 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local
376 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
401 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local
402 if (!maybe.IsJust()) return isolate->heap()->exception(); in RUNTIME_FUNCTION()
[all …]
Druntime-scopes.cc61 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in DeclareGlobals() local
62 if (!maybe.IsJust()) return isolate->heap()->exception(); in DeclareGlobals()
65 PropertyAttributes old_attributes = maybe.FromJust(); in DeclareGlobals()
185 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in RUNTIME_FUNCTION() local
186 DCHECK(maybe.IsJust()); in RUNTIME_FUNCTION()
187 PropertyAttributes old_attributes = maybe.FromJust(); in RUNTIME_FUNCTION()
623 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); in FindNameClash() local
624 if (!maybe.IsJust()) return isolate->heap()->exception(); in FindNameClash()
625 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.c550 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/
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/ltrace/
Dconfigure.ac141 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/
DREADME.version2 Version: 3.5 (maybe)
/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.cc230 Maybe<bool> maybe = JSReceiver::HasOwnProperty( in MaterializeArgumentsObject() local
232 DCHECK(maybe.IsJust()); in MaterializeArgumentsObject()
233 if (maybe.FromJust()) return; in MaterializeArgumentsObject()
/external/liblzf/cs/
DREADME7 original author (and maybe CC me, Marc Lehmann <liblzf@schmorp.de>).
/external/clang/test/Sema/
Doutof-range-constant-compare.c141 maybe in main() enumerator
/external/skia/cmake/
DREADME.md21 Currently maybe-kinda-working platforms
/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/chromium-trace/catapult/third_party/Paste/docs/
Dfuture.txt47 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/
DAArch64Schedule.td49 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/
Dbuild.bat3 …tti -DSANITIZER_GO -Wno-error=attributes -Wno-attributes -Wno-format -Wno-maybe-uninitialized -DSA…
/external/dhcpcd-6.8.2/
DAndroid.mk78 LOCAL_CFLAGS += -Wno-maybe-uninitialized
/external/llvm/
Dllvm-host-build.mk15 -Wno-maybe-uninitialized \
/external/v8/tools/gyp/test/rules-variables/src/
Dvariables.gyp9 # slightly broken in either ninja or (maybe more likely?) on the win32 VM

12345678910