Searched defs:maybe (Results 1 - 23 of 23) sorted by relevance

/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/toybox/lib/
H A Dinterestingtimes.c152 int maybe, i, j; local
160 maybe = 0;
174 } else for (i=0; i<6; i++) if (pos[i]==*scratch) maybe = 1;
181 maybe = 1;
191 if (!maybe) break;
197 if (maybe || miliwait != -1)
198 if (!xpoll(&pfd, 1, maybe ? 30 : miliwait)) break;
/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.cc215 Maybe<PropertyAttributes> maybe = JSObject::GetPropertyAttributes(&it); local
217 if (!maybe.IsJust()) return MaybeHandle<Object>();
218 PropertyAttributes attrs = maybe.FromJust();
477 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
478 if (!maybe.IsJust()) return isolate->heap()->exception();
506 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
507 if (!maybe.IsJust()) return isolate->heap()->exception();
600 Maybe<bool> maybe = JSReceiver::HasOwnProperty(object, key); local
601 if (!maybe.IsJust()) return isolate->heap()->exception();
602 if (maybe
640 Maybe<bool> maybe = Nothing<bool>(); local
698 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, name); local
711 Maybe<PropertyAttributes> maybe = local
[all...]
H A Druntime-scopes.cc48 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
49 if (!maybe.IsJust()) return isolate->heap()->exception();
52 PropertyAttributes old_attributes = maybe.FromJust();
180 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
181 DCHECK(maybe.IsJust());
182 PropertyAttributes old_attributes = maybe.FromJust();
392 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
393 if (!maybe.IsJust()) return isolate->heap()->exception();
394 PropertyAttributes old_attributes = maybe.FromJust();
764 Maybe<PropertyAttributes> maybe local
[all...]
/external/v8/src/
H A Dcontexts.cc276 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); local
279 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
283 maybe = Just(ABSENT);
288 maybe = Nothing<PropertyAttributes>();
290 // Luckily, consumers of |maybe| only care whether the property
293 maybe = Just(found.FromJust() ? NONE : ABSENT);
297 maybe = JSReceiver::GetPropertyAttributes(object, name);
300 if (!maybe.IsJust()) return Handle<Object>();
302 *attributes = maybe.FromJust();
304 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()) {
758 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
759 CHECK(maybe.IsJust());
760 if (maybe.FromJust()) {
838 Maybe<bool> maybe local
899 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
964 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
[all...]
H A Dmessages.cc226 MaybeHandle<JSReceiver> maybe = Object::ToObject(isolate_, receiver_); local
228 if (!maybe.ToHandle(&receiver) || !receiver->IsJSObject()) {
H A Dapi-natives.cc80 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
81 DCHECK(maybe.IsJust());
H A Dapi.h324 inline bool ToLocal(v8::internal::MaybeHandle<v8::internal::Object> maybe, argument
327 if (maybe.ToHandle(&handle)) {
H A Dbuiltins.cc972 Maybe<bool> maybe = JSReceiver::HasElement(receiver, i); local
973 if (!maybe.IsJust()) return false;
974 if (maybe.FromJust()) {
1041 Maybe<bool> maybe = JSReceiver::HasElement(array, j); local
1042 if (!maybe.IsJust()) return false;
1043 if (maybe.FromJust()) {
1077 Maybe<bool> maybe = JSReceiver::HasElement(array, j); local
1078 if (!maybe.IsJust()) return false;
1079 if (maybe.FromJust()) {
1193 Maybe<bool> maybe local
[all...]
H A Dapi.cc1829 auto maybe = CompileUnboundInternal(isolate, source, options, false); local
1831 if (!maybe.ToLocal(&result)) return MaybeLocal<Script>();
1851 auto maybe = CompileUnboundInternal(isolate, source, options, true); local
1853 if (!maybe.ToLocal(&generic)) return MaybeLocal<Script>();
2215 Maybe<bool> maybe = i::JSReceiver::HasProperty(obj, name); local
2216 has_pending_exception = !maybe.IsJust();
2218 if (!maybe.FromJust()) return v8::Local<Value>();
2661 auto maybe = source->IsSeqOneByteString() local
2665 has_pending_exception = !ToLocal<Value>(maybe, &result);
3849 Maybe<bool> maybe local
3898 auto maybe = i::JSReceiver::HasElement(self, index); local
[all...]
H A Dobjects.cc5195 Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it); local
5196 DCHECK(maybe.IsJust());
6081 Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it); local
6083 DCHECK(maybe.IsJust());
6084 return maybe.FromJust() != ABSENT;
6431 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
6432 if (!maybe.IsJust()) return MaybeHandle<Object>();
6433 PropertyAttributes attrs = maybe.FromJust();
7253 Maybe<PropertyAttributes> maybe = JSObject::GetPropertyAttributes(it); local
7254 MAYBE_RETURN(maybe, Nothin
[all...]
/external/v8/src/debug/
H A Ddebug-scopes.cc659 Maybe<bool> maybe = JSReceiver::HasProperty(ext, variable_name); local
660 DCHECK(maybe.IsJust());
661 if (maybe.FromJust()) {
698 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); local
699 DCHECK(maybe.IsJust());
700 if (maybe.FromJust()) {
731 Maybe<bool> maybe = JSReceiver::HasOwnProperty(ext, variable_name); local
732 DCHECK(maybe.IsJust());
733 if (maybe.FromJust()) {
/external/v8/src/heap/
H A Dspaces-inl.h232 MemoryChunk* maybe = reinterpret_cast<MemoryChunk*>( local
234 if (maybe->owner() != NULL) return maybe;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_unix.c550 int maybe = 0; local
556 maybe = 1;
565 if (maybe && next) {
622 int maybe = 0; local
628 maybe = 1;
637 if (maybe && next) {
/external/wpa_supplicant_8/src/utils/
H A Dos_unix.c550 int maybe = 0; local
556 maybe = 1;
565 if (maybe && next) {
622 int maybe = 0; local
628 maybe = 1;
637 if (maybe && next) {
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_unix.c550 int maybe = 0; local
556 maybe = 1;
565 if (maybe && next) {
622 int maybe = 0; local
628 maybe = 1;
637 if (maybe && next) {
/external/valgrind/VEX/priv/
H A Dhost_arm64_isel.c1209 ARM64RIL* maybe = NULL; local
1212 maybe = mb_mkARM64RIL_I(e->Iex.Const.con->Ico.U64);
1219 maybe = mb_mkARM64RIL_I(u64);
1222 if (!maybe) {
1223 maybe = mb_mkARM64RIL_I((u64 << 32) | u64);
1226 if (maybe) return maybe;
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/guice/extensions/struts2/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/robolectric/v1/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 631 milliseconds