Home
last modified time | relevance | path

Searched refs:maybe (Results 1 – 25 of 319) sorted by relevance

12345678910>>...13

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
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_constructible::maybe,
84 copy_constructible::maybe, move_assignable::trivial>);
88 ConformanceProfile<default_constructible::maybe, move_constructible::maybe,
89 copy_constructible::maybe, move_assignable::nothrow>);
[all …]
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 …]
Dconformance_profile.h264 enum class function_support { maybe, yes, nothrow, trivial };
267 return v == function_support::maybe
322 enum class name { maybe, yes, nothrow, trivial }; \
343 enum class name { maybe, yes, nothrow }; \
360 enum class hashable { maybe, yes };
378 : property::maybe; \
467 : property::maybe; \
514 : swappable::maybe;
532 : hashable::maybe;
546 default_constructible::maybe,
[all …]
Dconformance_archetype.h105 struct ArchetypeStateBase<default_constructible::maybe> {
191 copy_constructible::maybe>
307 copy_assignable::maybe>
403 MoveConstructibleValue != move_constructible::maybe
407 MoveAssignableValue != move_assignable::maybe ? MoveAssignableValue
410 DestructibleValue != destructible::maybe ? DestructibleValue
429 move_constructible::maybe &&
432 copy_constructible::maybe &&
445 (PropertiesOfT<Prof>::move_assignable_support != move_assignable::maybe &&
447 (PropertiesOfT<Prof>::copy_assignable_support != copy_assignable::maybe &&
[all …]
/third_party/toybox/lib/
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/rust/crates/cxx/third-party/bazel/
Ddefs.bzl20 load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
373 maybe(
383 maybe(
393 maybe(
403 maybe(
413 maybe(
423 maybe(
433 maybe(
443 maybe(
453 maybe(
[all …]
Dcrates.bzl9 load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
18 maybe(
/third_party/node/src/
Djs_native_api_v8.h249 #define CHECK_MAYBE_EMPTY(env, maybe, status) \ argument
250 RETURN_STATUS_IF_FALSE((env), !((maybe).IsEmpty()), (status))
252 #define CHECK_MAYBE_EMPTY_WITH_PREAMBLE(env, maybe, status) \ argument
253 RETURN_STATUS_IF_FALSE_WITH_PREAMBLE((env), !((maybe).IsEmpty()), (status))
271 auto maybe = v8impl::V8LocalValueFromJsValue((src))->To##type((context)); \
272 CHECK_MAYBE_EMPTY((env), maybe, (status)); \
273 (result) = maybe.ToLocalChecked(); \
279 auto maybe = v8impl::V8LocalValueFromJsValue((src))->To##type((context)); \
280 CHECK_MAYBE_EMPTY_WITH_PREAMBLE((env), maybe, (status)); \
281 (result) = maybe.ToLocalChecked(); \
[all …]
/third_party/node/deps/v8/src/objects/
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()
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()
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()
/third_party/typescript/tests/baselines/reference/
DobjectSpreadNegative.types173 { ...{ a: 4, ...{ b: false, c: 'overriden' } }, d: 'actually new', ...{ a: 5, d: 'maybe new' } }
174 >{ ...{ a: 4, ...{ b: false, c: 'overriden' } }, d: 'actually new', ...{ a: 5, d: 'maybe new' } } :…
185 >{ a: 5, d: 'maybe new' } : { a: number; d: string; }
189 >'maybe new' : "maybe new"
209 { ...o3, ['in the middle']: 13, b: 'maybe?', ...o4 }
210 >{ ...o3, ['in the middle']: 13, b: 'maybe?', ...o4 } : { b: string; c: boolean; "in the middle": n…
216 >'maybe?' : "maybe?"
DunknownType2.errors.txt1 …ypes/unknown/unknownType2.ts(216,13): error TS2322: Type '"yes" | "no" | "maybe"' is not assignabl…
2 Type '"maybe"' is not assignable to type 'SomeResponse'.
220 case 'maybe':
223 !!! error TS2322: Type '"yes" | "no" | "maybe"' is not assignable to type 'SomeResponse'.
224 !!! error TS2322: Type '"maybe"' is not assignable to type 'SomeResponse'.
/third_party/node/test/fixtures/test-runner/output/
Dname_pattern.snapshot117 # Subtest: maybe
129 ok 3 - maybe
151 # Subtest: maybe
163 ok 3 - maybe
/third_party/python/Lib/
Dmodulefinder.py528 missing, maybe = self.any_missing_maybe()
536 if maybe:
540 for name in maybe:
549 missing, maybe = self.any_missing_maybe()
550 return missing + maybe
562 maybe = []
584 maybe.append(name)
595 maybe.sort()
596 return missing, maybe
/third_party/glslang/Test/baseResults/
Dpreprocessor.cpp_style___FILE__.vert.out35 #line 42 "this-is-a-quite-long-name-maybe-i-should-shorten-it"
36 "this-is-a-quite-long-name-maybe-i-should-shorten-it"
Dpreprocessor.cpp_style_line_directive.vert.err12 ERROR: this-is-a-quite-long-name-maybe-i-should-shorten-it:42: '#error' : at this-is-a-quite-long-n…
/third_party/glslang/Test/
Dpreprocessor.cpp_style_line_directive.vert35 #line 42 "this-is-a-quite-long-name-maybe-i-should-shorten-it"
36 #error at "this-is-a-quite-long-name-maybe-i-should-shorten-it:42"
/third_party/openssl/doc/man3/
DUI_create_method.pod68 the string where appropriate, maybe to the tty, maybe added as a field
83 the given prompt, maybe from the tty, maybe from a field in a dialog
90 This function takes a reference to a UI, and closes the session, maybe
91 by closing the channel to the tty, maybe by destroying a dialog box.
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
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/curl/tests/data/
Dtest194214 Server: maybe different
63 Server == maybe different
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
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/python/Misc/
Dcoverity_model.c52 int maybe; in PyLong_FromLong() local
59 if (maybe) in PyLong_FromLong()
/third_party/skia/third_party/externals/harfbuzz/
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/
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()
/third_party/ffmpeg/tests/ref/fate/
Dsub-mpsub19 Dialogue: 0,0:00:30.00,0:00:34.00,Default,,0,0,0,,...maybe cutting them a\Nlittle slack.
28 Dialogue: 0,0:01:10.00,0:01:15.00,Default,,0,0,0,,maybe Vader someday\Nlater now he's just\Na small…

12345678910>>...13