Searched refs:maybe (Results 1 - 25 of 81) sorted by relevance

1234

/external/clang/test/Analysis/
H A Duninit-sometimes.cpp4 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() // expecte
[all...]
/external/toybox/lib/
H A Dinterestingtimes.c151 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/
H A DMemberResolver.java81 Method maybe = null;
92 maybe = r;
97 argClassNames, maybe != null);
101 return maybe;
109 Method maybe = null;
125 else if (maybe == null || maybe.notmatch > res)
126 maybe = r;
133 maybe = null;
135 onlyExact = maybe !
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_modulefinder.py251 # check for missing and maybe missing modules
252 bad, maybe = mf.any_missing_maybe()
254 self.assertEqual(maybe, maybe_missing)
H A Dtest_sort.py31 maybe = raw[i]
32 if good is not maybe:
34 print "out of order at index", i, good, maybe
/external/clang/test/Sema/
H A Doutof-range-constant-compare.c141 maybe enumerator in enum:E
/external/testng/src/main/java/org/testng/reporters/jq/
H A DNavigatorPanel.java102 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/
H A Dbpf_dsl_unittest.cc456 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/v8/src/runtime/
H A Druntime-object.cc170 Maybe<bool> maybe = JSReceiver::HasProperty(&it); local
171 if (maybe.IsNothing()) return isolate->heap()->exception();
173 if (maybe.FromJust()) return isolate->heap()->true_value();
189 Maybe<bool> maybe = JSReceiver::HasProperty(&it); local
190 if (maybe.IsNothing()) return isolate->heap()->exception();
192 return isolate->heap()->ToBoolean(maybe.FromJust());
354 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
355 if (!maybe.IsJust()) return isolate->heap()->exception();
380 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
381 if (!maybe
484 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name); local
[all...]
H A Druntime-scopes.cc71 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
72 if (!maybe.IsJust()) return isolate->heap()->exception();
75 PropertyAttributes old_attributes = maybe.FromJust();
687 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
688 if (!maybe.IsJust()) return isolate->heap()->exception();
689 if ((maybe.FromJust() & DONT_DELETE) != 0) {
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_unix.c569 int maybe = 0; local
575 maybe = 1;
584 if (maybe && next) {
641 int maybe = 0; local
647 maybe = 1;
656 if (maybe && next) {
/external/wpa_supplicant_8/src/utils/
H A Dos_unix.c569 int maybe = 0; local
575 maybe = 1;
584 if (maybe && next) {
641 int maybe = 0; local
647 maybe = 1;
656 if (maybe && next) {
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_unix.c569 int maybe = 0; local
575 maybe = 1;
584 if (maybe && next) {
641 int maybe = 0; local
647 maybe = 1;
656 if (maybe && next) {
/external/python/cpython2/Lib/
H A Dmodulefinder.py516 missing, maybe = self.any_missing_maybe()
524 # Print modules that may be missing, but then again, maybe not...
525 if maybe:
529 for name in maybe:
539 missing, maybe = self.any_missing_maybe()
540 return missing + maybe
552 maybe = []
574 maybe.append(name)
585 maybe.sort()
586 return missing, maybe
[all...]
H A Dtokenize.py47 def maybe(*choices): return group(*choices) + '?' function
51 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
60 Pointfloat = group(r'\d+\.\d*', r'\.\d+') + maybe(Exponent)
H A Dpydoc.py760 def maybe(self): member in class:.docclass.HorizontalRule
769 hr.maybe()
779 hr.maybe()
797 hr.maybe()
806 hr.maybe()
1203 def maybe(self): member in class:TextDoc.docclass.HorizontalRule
1212 hr.maybe()
1229 hr.maybe()
1238 hr.maybe()
/external/v8/src/
H A Dcontexts.cc263 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); local
266 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
276 maybe = Just(ABSENT);
281 maybe = Nothing<PropertyAttributes>();
283 // Luckily, consumers of |maybe| only care whether the property
286 maybe = Just(found.FromJust() ? NONE : ABSENT);
290 maybe = JSReceiver::GetPropertyAttributes(object, name);
293 if (!maybe.IsJust()) return Handle<Object>();
295 *attributes = maybe.FromJust();
297 if (maybe
[all...]
H A Di18n.cc428 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()) {
/external/llvm/
H A Dllvm-host-build.mk9 -Wno-maybe-uninitialized \
/external/python/cpython2/Lib/plat-mac/
H A Dbundlebuilder.py688 missing, maybe = mf.any_missing_maybe()
691 maybe = []
693 self.maybeMissingModules.extend(maybe)
699 maybe = self.maybeMissingModules
701 maybe = [name for name in missing if "." in name]
704 maybe.sort()
705 if maybe:
712 for name in maybe:
/external/python/cpython2/Lib/lib2to3/pgen2/
H A Dtokenize.py50 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)
/external/dhcpcd-6.8.2/
H A DAndroid.mk80 LOCAL_CFLAGS += -Wno-maybe-uninitialized
/external/v8/src/debug/
H A Ddebug-evaluate.cc231 Maybe<bool> maybe = JSReceiver::HasOwnProperty(
233 DCHECK(maybe.IsJust());
234 if (maybe.FromJust()) return;
/external/harfbuzz_ng/
H A Dgit.mk328 all: $(srcdir)/.gitignore gitignore-recurse-maybe
331 gitignore-recurse-maybe:
347 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
/external/clang/test/SemaCXX/
H A Denum-scoped.cpp108 enum class scoped_enum { yes, no, maybe };

Completed in 862 milliseconds

1234