Home
last modified time | relevance | path

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

123

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
H A Dconformance_aliases.h55 HasTrivialMoveConstructor, ConformanceProfile<default_constructible::maybe,
59 HasNothrowMoveConstructor, ConformanceProfile<default_constructible::maybe,
64 ConformanceProfile<default_constructible::maybe, move_constructible::yes>);
68 ConformanceProfile<default_constructible::maybe, move_constructible::maybe,
73 ConformanceProfile<default_constructible::maybe, move_constructible::maybe,
78 ConformanceProfile<default_constructible::maybe, move_constructible::maybe,
83 ConformanceProfile<default_constructible::maybe, move_constructibl
[all...]
H A Dconformance_testing_test.cc171 case ti::default_constructible::maybe: in TYPED_TEST_P()
233 case ti::move_constructible::maybe: in TYPED_TEST_P()
295 case ti::copy_constructible::maybe: in TYPED_TEST_P()
356 case ti::destructible::maybe: in TYPED_TEST_P()
418 case ti::move_assignable::maybe: in TYPED_TEST_P()
447 case ti::copy_assignable::maybe: in TYPED_TEST_P()
530 case ti::equality_comparable::maybe: in TYPED_TEST_P()
548 case ti::inequality_comparable::maybe: in TYPED_TEST_P()
566 case ti::less_than_comparable::maybe: in TYPED_TEST_P()
584 case ti::less_equal_comparable::maybe in TYPED_TEST_P()
[all...]
H A Dconformance_profile.h264 enum class function_support { maybe, yes, nothrow, trivial }; member in absl::types_internal::function_support
267 return v == function_support::maybe in PessimisticPropertyDescription()
322 enum class name { maybe, yes, nothrow, trivial }; \
343 enum class name { maybe, yes, nothrow }; \
360 enum class hashable { maybe, yes }; member in absl::types_internal::hashable
378 : property::maybe; \
467 : property::maybe; \
514 : swappable::maybe; in swappable_support_of()
532 : hashable::maybe; in hashable_support_of()
546 default_constructible::maybe,
[all...]
H A Dconformance_archetype.h105 struct ArchetypeStateBase<default_constructible::maybe> {
191 copy_constructible::maybe>
307 copy_assignable::maybe>
390 // NOTE: move_constructible::maybe, move_assignable::maybe, and
391 // destructible::maybe are handled in the top-level type by way of SFINAE.
393 // move_constructible::maybe, move_assignable::maybe, or destructible::maybe so
403 MoveConstructibleValue != move_constructible::maybe
[all...]
/third_party/toybox/lib/
H A Dtty.c179 int maybe, i, j; in scan_key_getsize() local
187 maybe = 0; in scan_key_getsize()
203 } else for (i=0; i<6; i++) if (pos[i]==*scratch) maybe = 1; in scan_key_getsize()
210 maybe = 1; in scan_key_getsize()
220 if (!maybe) break; in scan_key_getsize()
226 if (maybe || timeout_ms != -1) in scan_key_getsize()
227 if (!xpoll(&pfd, 1, maybe ? 30 : timeout_ms)) break; in scan_key_getsize()
/third_party/node/src/
H A Djs_native_api_v8.h307 #define CHECK_MAYBE_EMPTY(env, maybe, status) \
308 RETURN_STATUS_IF_FALSE((env), !((maybe).IsEmpty()), (status))
310 #define CHECK_MAYBE_EMPTY_WITH_PREAMBLE(env, maybe, status) \
311 RETURN_STATUS_IF_FALSE_WITH_PREAMBLE((env), !((maybe).IsEmpty()), (status))
329 auto maybe = v8impl::V8LocalValueFromJsValue((src))->To##type((context)); \
330 CHECK_MAYBE_EMPTY((env), maybe, (status)); \
331 (result) = maybe.ToLocalChecked(); \
337 auto maybe = v8impl::V8LocalValueFromJsValue((src))->To##type((context)); \
338 CHECK_MAYBE_EMPTY_WITH_PREAMBLE((env), maybe, (status)); \
339 (result) = maybe
[all...]
H A Dnode_api.cc1021 v8::MaybeLocal<v8::Object> maybe = node::Buffer::New(env->isolate, length); in jsvm_create_buffer() local
1023 CHECK_MAYBE_EMPTY(env, maybe, JSVM_GENERIC_FAILURE); in jsvm_create_buffer()
1025 v8::Local<v8::Object> buffer = maybe.ToLocalChecked(); in jsvm_create_buffer()
1055 v8::MaybeLocal<v8::Object> maybe = in OH_JSVM_CreateExternal_buffer() local
1062 CHECK_MAYBE_EMPTY(env, maybe, JSVM_GENERIC_FAILURE); in OH_JSVM_CreateExternal_buffer()
1064 *result = v8impl::JsValueFromV8LocalValue(maybe.ToLocalChecked()); in OH_JSVM_CreateExternal_buffer()
1080 v8::MaybeLocal<v8::Object> maybe = in jsvm_create_buffer_copy() local
1083 CHECK_MAYBE_EMPTY(env, maybe, JSVM_GENERIC_FAILURE); in jsvm_create_buffer_copy()
1085 v8::Local<v8::Object> buffer = maybe.ToLocalChecked(); in jsvm_create_buffer_copy()
H A Dnode_builtins.cc412 MaybeLocal<Function> maybe = in LookupAndCompile() local
418 return maybe; in LookupAndCompile()
653 MaybeLocal<Function> maybe = realm->env()->builtin_loader()->LookupAndCompile( in CompileFunction() local
656 if (maybe.ToLocal(&fn)) { in CompileFunction()
/third_party/python/Tools/c-analyzer/
H A Dtable-file.py26 maybe = None
29 maybe = line[2:].lstrip()
38 if maybe:
39 yield 2, maybe
/third_party/node/deps/v8/src/objects/
H A Djs-collator.cc63 Maybe<bool> maybe = JSReceiver::CreateDataProperty( in CreateDataPropertyForOptions() local
65 DCHECK(maybe.FromJust()); in CreateDataPropertyForOptions()
66 USE(maybe); in CreateDataPropertyForOptions()
75 Maybe<bool> maybe = JSReceiver::CreateDataProperty( in CreateDataPropertyForOptions() local
77 DCHECK(maybe.FromJust()); in CreateDataPropertyForOptions()
78 USE(maybe); in CreateDataPropertyForOptions()
209 Maybe<bool> maybe = JSReceiver::CreateDataProperty( in ResolvedOptions() local
212 DCHECK(maybe.FromJust()); in ResolvedOptions()
213 USE(maybe); in ResolvedOptions()
H A Dcontexts.cc264 Maybe<PropertyAttributes> maybe = Nothing<PropertyAttributes>(); in Lookup() local
267 maybe = JSReceiver::GetOwnPropertyAttributes(object, name); in Lookup()
278 maybe = Just(ABSENT); in Lookup()
283 maybe = Nothing<PropertyAttributes>(); in Lookup()
285 // Luckily, consumers of |maybe| only care whether the property in Lookup()
288 maybe = Just(found.FromJust() ? NONE : ABSENT); in Lookup()
293 if (maybe.IsNothing()) return Handle<Object>(); in Lookup()
295 *attributes = maybe.FromJust(); in Lookup()
297 if (maybe.FromJust() != ABSENT) { in Lookup()
H A Dcode-inl.h20 #include "src/objects/maybe-object-inl.h"
1337 MaybeObject maybe = Get(cage_base, index); in get() local
1348 CHECK(!maybe.IsCleared()); in get()
1350 return maybe.GetHeapObjectOrSmi(); in get()
1354 MaybeObject maybe = MaybeObject::FromObject(value); in set() local
1356 maybe = MaybeObject::MakeWeak(maybe); in set()
1358 Set(index, maybe); in set()
H A Djs-plural-rules.cc239 Maybe<bool> maybe = JSReceiver::CreateDataProperty(isolate, options, key_str, in CreateDataPropertyForOptions() local
241 DCHECK(maybe.FromJust()); in CreateDataPropertyForOptions()
242 USE(maybe); in CreateDataPropertyForOptions()
/third_party/python/Lib/
H A Dmodulefinder.py509 missing, maybe = self.any_missing_maybe()
516 # Print modules that may be missing, but then again, maybe not...
517 if maybe:
521 for name in maybe:
530 missing, maybe = self.any_missing_maybe()
531 return missing + maybe
543 maybe = []
565 maybe.append(name)
576 maybe.sort()
577 return missing, maybe
[all...]
H A Dtokenize.py61 def maybe(*choices): return group(*choices) + '?' function
67 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
77 r'\.[0-9](?:_?[0-9])*') + maybe(Exponent)
/third_party/python/Misc/
H A Dcoverity_model.c52 int maybe; in PyLong_FromLong() local
59 if (maybe) in PyLong_FromLong()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dos_unix.c569 int maybe = 0; in testing_fail_alloc() local
575 maybe = 1; in testing_fail_alloc()
584 if (maybe && next) { in testing_fail_alloc()
641 int maybe = 0; in testing_test_fail() local
647 maybe = 1; in testing_test_fail()
656 if (maybe && next) { in testing_test_fail()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
H A Dos_unix.c580 int maybe = 0; in testing_fail_alloc() local
586 maybe = 1; in testing_fail_alloc()
595 if (maybe && next) { in testing_fail_alloc()
652 int maybe = 0; in testing_test_fail() local
658 maybe = 1; in testing_test_fail()
667 if (maybe && next) { in testing_test_fail()
/third_party/skia/third_party/externals/harfbuzz/
H A Dgit.mk381 all: $(srcdir)/.gitignore gitignore-recurse-maybe
384 gitignore-recurse-maybe:
400 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-object.cc31 Maybe<PropertyAttributes> maybe = in BUILTIN() local
33 if (maybe.IsNothing()) return ReadOnlyRoots(isolate).exception(); in BUILTIN()
34 if (maybe.FromJust() == ABSENT) return ReadOnlyRoots(isolate).false_value(); in BUILTIN()
35 return isolate->heap()->ToBoolean((maybe.FromJust() & DONT_ENUM) == 0); in BUILTIN()
H A Dbuiltins-array.cc1050 Maybe<bool> maybe = JSReceiver::HasElement(isolate, receiver, i); in IterateElementsSlow()
1051 if (maybe.IsNothing()) return false; in IterateElementsSlow()
1052 if (maybe.FromJust()) { in IterateElementsSlow()
1127 Maybe<bool> maybe = JSReceiver::HasElement(isolate, array, j); in IterateElements()
1128 if (maybe.IsNothing()) return false; in IterateElements()
1129 if (maybe.FromJust()) { in IterateElements()
1165 Maybe<bool> maybe = JSReceiver::HasElement(isolate, array, j); in IterateElements()
1166 if (maybe.IsNothing()) return false; in IterateElements()
1167 if (maybe.FromJust()) { in IterateElements()
/third_party/node/deps/v8/src/runtime/
H A Druntime-object.cc15 #include "src/handles/maybe-handles.h"
86 Maybe<bool> maybe = JSReceiver::HasProperty(isolate, receiver, name); in HasProperty() local
87 if (maybe.IsNothing()) return MaybeHandle<Object>(); in HasProperty()
88 return maybe.FromJust() ? ReadOnlyRoots(isolate).true_value_handle() in HasProperty()
386 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() local
387 if (maybe.IsNothing()) return ReadOnlyRoots(isolate).exception(); in RUNTIME_FUNCTION()
389 if (maybe.FromJust()) return ReadOnlyRoots(isolate).true_value(); in RUNTIME_FUNCTION()
402 Maybe<bool> maybe = JSReceiver::HasProperty(&it); in RUNTIME_FUNCTION() local
403 if (maybe.IsNothing()) return ReadOnlyRoots(isolate).exception(); in RUNTIME_FUNCTION()
405 return isolate->heap()->ToBoolean(maybe in RUNTIME_FUNCTION()
1008 Maybe<bool> maybe = JSReceiver::HasProperty(isolate, receiver, name); RUNTIME_FUNCTION() local
[all...]
/third_party/python/Lib/test/
H A Dtest_modulefinder.py348 # check for missing and maybe missing modules
349 bad, maybe = mf.any_missing_maybe()
351 self.assertEqual(maybe, maybe_missing)
H A Dtest_sort.py32 maybe = raw[i]
33 if good is not maybe:
35 print("out of order at index", i, good, maybe)
/third_party/python/Lib/lib2to3/pgen2/
H A Dtokenize.py50 def maybe(*choices): return group(*choices) + '?' function
58 Ignore = Whitespace + any(r'\\\r?\n' + Whitespace) + maybe(Comment)
67 Pointfloat = group(r'\d+(?:_\d+)*\.(?:\d+(?:_\d+)*)?', r'\.\d+(?:_\d+)*') + maybe(Exponent)

Completed in 29 milliseconds

123