Searched refs:maybe (Results 1 - 25 of 62) sorted by last modified time

123

/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_unix.c511 int maybe = 0; local
517 maybe = 1;
526 if (maybe && next) {
/external/wpa_supplicant_8/src/utils/
H A Dos_unix.c511 int maybe = 0; local
517 maybe = 1;
526 if (maybe && next) {
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_unix.c511 int maybe = 0; local
517 maybe = 1;
526 if (maybe && next) {
/external/v8/test/cctest/
H A Dtest-heap.cc194 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, object_string); local
195 CHECK(maybe.has_value);
196 CHECK(maybe.value);
263 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, name); local
264 CHECK(maybe.has_value);
265 CHECK(maybe.value);
283 maybe = JSReceiver::HasOwnProperty(global, obj_name);
284 CHECK(maybe.has_value);
285 CHECK(maybe.value);
642 v8::Maybe<bool> maybe local
[all...]
H A Dtest-mark-compact.cc170 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, func_name); local
171 CHECK(maybe.has_value);
172 CHECK(maybe.value);
190 v8::Maybe<bool> maybe = JSReceiver::HasOwnProperty(global, obj_name); local
191 CHECK(maybe.has_value);
192 CHECK(maybe.value);
/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/toybox/lib/
H A Dinterestingtimes.c92 int maybe, i, j; local
101 maybe = 0;
103 for (i = maybe = 0; (test = seqs[i]); i++) {
106 maybe = 1;
115 if (!maybe) break;
121 if (maybe || !block) if (!xpoll(&pfd, 1, 30*maybe)) break;
/external/v8/include/
H A Dv8.h902 inline Maybe<T> maybe(T t) { function in namespace:v8
/external/v8/src/
H A Daccessors.cc245 MaybeHandle<Object> maybe; local
247 maybe = Execution::ToUint32(isolate, value);
248 if (!maybe.ToHandle(&uint32_v)) {
253 maybe = Execution::ToNumber(isolate, value);
254 if (!maybe.ToHandle(&number_v)) {
260 maybe = JSArray::SetElementsLength(array_handle, uint32_v);
261 maybe.Check();
266 maybe = isolate->factory()->NewRangeError("invalid_array_length",
268 if (!maybe.ToHandle(&exception)) {
1361 MaybeHandle<Object> maybe local
1388 MaybeHandle<Object> maybe = isolate->factory()->NewReferenceError( local
[all...]
H A Dapi.cc1997 Maybe<bool> maybe = i::JSReceiver::HasProperty(obj, name); local
1998 has_pending_exception = !maybe.has_value;
2000 if (!maybe.value) return v8::Local<Value>();
3493 Maybe<bool> maybe = i::JSReceiver::HasElement(self, index); local
3494 has_pending_exception = !maybe.has_value;
3496 return maybe.value;
3587 Maybe<bool> maybe = i::JSReceiver::HasOwnProperty(Utils::OpenHandle(this), local
3589 has_pending_exception = !maybe.has_value;
3591 return maybe.value;
3600 Maybe<bool> maybe local
3613 Maybe<bool> maybe = local
3628 Maybe<bool> maybe = i::JSObject::HasRealNamedCallbackProperty( local
[all...]
H A Dcontexts.cc101 if (blacklist.value) return maybe(ABSENT);
141 Maybe<PropertyAttributes> maybe; local
144 maybe = JSReceiver::GetOwnPropertyAttributes(object, name);
147 maybe = UnscopableLookup(&it);
149 maybe = JSReceiver::GetPropertyAttributes(object, name);
152 if (!maybe.has_value) return Handle<Object>();
154 *attributes = maybe.value;
156 if (maybe.value != ABSENT) {
H A Di18n.cc397 Maybe<bool> maybe = JSReceiver::HasOwnProperty(resolved, key); local
398 CHECK(maybe.has_value);
399 if (maybe.value) {
407 maybe = JSReceiver::HasOwnProperty(resolved, key);
408 CHECK(maybe.has_value);
409 if (maybe.value) {
721 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
722 CHECK(maybe.has_value);
723 if (maybe.value) {
797 Maybe<bool> maybe local
854 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
915 Maybe<bool> maybe = JSReceiver::HasOwnProperty(obj, key); local
[all...]
H A Dobjects-inl.h1672 // Here we just allow state transitions from undecided or maybe tenure
1673 // to don't tenure, maybe tenure, or tenure.
6654 return maybe(result.value != ABSENT);
6666 return maybe(result.value != ABSENT);
6726 return maybe(result.value != ABSENT);
6739 return maybe(result.value != ABSENT);
H A Dobjects.cc605 return maybe(it->property_details().attributes());
609 return maybe(ABSENT);
3386 if (name->IsSymbol()) return maybe(false);
3395 return maybe(result->BooleanValue());
3567 if (name->IsSymbol()) return maybe(ABSENT);
3577 if (result->IsUndefined()) return maybe(ABSENT);
3625 return maybe(NONE);
3632 return maybe(static_cast<PropertyAttributes>(attributes));
3784 Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it); local
3785 DCHECK(maybe
4689 Maybe<PropertyAttributes> maybe = GetPropertyAttributes(&it); local
4865 Maybe<bool> maybe = HasOwnElement(object, index); local
4889 Maybe<bool> maybe = HasOwnElement(object, index); local
5466 Maybe<PropertyAttributes> maybe = local
6123 Maybe<bool> maybe = HasOwnElement(object, index); local
11078 Maybe<PropertyAttributes> maybe = local
12372 Maybe<PropertyAttributes> maybe = local
[all...]
H A Druntime.cc1980 Maybe<PropertyAttributes> maybe = local
1982 if (!maybe.has_value) return MaybeHandle<Object>();
1983 attrs = maybe.value;
1997 Maybe<PropertyAttributes> maybe = JSObject::GetPropertyAttributes(&it); local
1998 if (!maybe.has_value) return MaybeHandle<Object>();
1999 attrs = maybe.value;
2217 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
2218 if (!maybe.has_value) return isolate->heap()->exception();
2221 PropertyAttributes old_attributes = maybe.value;
2347 Maybe<PropertyAttributes> maybe local
2497 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
4840 Maybe<bool> maybe; local
5343 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
5375 Maybe<PropertyAttributes> maybe = JSReceiver::GetPropertyAttributes(&it); local
5381 Maybe<bool> maybe = JSReceiver::HasOwnElement(object, index); local
5648 Maybe<bool> maybe = JSReceiver::HasOwnProperty(object, key); local
5685 Maybe<bool> maybe = JSObject::HasRealNamedProperty(js_obj, key); local
5718 Maybe<bool> maybe = JSReceiver::HasProperty(receiver, key); local
5730 Maybe<bool> maybe = JSReceiver::HasElement(receiver, index); local
5743 Maybe<PropertyAttributes> maybe = local
[all...]
/external/v8/src/heap/
H A Dspaces-inl.h170 MemoryChunk* maybe = reinterpret_cast<MemoryChunk*>( local
172 if (maybe->owner() != NULL) return maybe;
/external/tcpdump/
H A Dconfigure1171 cross_compiling=maybe
3048 if test "$cross_compiling" = maybe; then
3421 # 1989 and the early '90's, so maybe we can just
/external/srtp/
H A Dconfigure691 cross_compiling=maybe
1812 if test "$cross_compiling" = maybe; then
/external/robolectric/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/ ...
/external/protobuf/
H A Dconfigure1263 cross_compiling=maybe
3769 if test "$cross_compiling" = maybe; then
10582 # Supported since Solaris 2.6 (maybe 2.5.1?)
13728 # Supported since Solaris 2.6 (maybe 2.5.1?)
/external/protobuf/gtest/
H A Dconfigure1248 cross_compiling=maybe
3394 if test "$cross_compiling" = maybe; then
10037 # Supported since Solaris 2.6 (maybe 2.5.1?)
13183 # Supported since Solaris 2.6 (maybe 2.5.1?)
/external/parameter-framework/parameter/
H A DAndroid.mk129 -Wno-maybe-uninitialized
/external/pcre/dist/
H A Dconfigure1332 cross_compiling=maybe
3987 if test "$cross_compiling" = maybe; then
11830 # Supported since Solaris 2.6 (maybe 2.5.1?)
14978 # Supported since Solaris 2.6 (maybe 2.5.1?)
/external/openfst/
H A Dconfigure1237 cross_compiling=maybe
3134 if test "$cross_compiling" = maybe; then
9900 # Supported since Solaris 2.6 (maybe 2.5.1?)
13060 # Supported since Solaris 2.6 (maybe 2.5.1?)
/external/openssh/
H A Dconfigure1142 cross_compiling=maybe
2285 if test "$cross_compiling" = maybe; then

Completed in 1122 milliseconds

123