Home
last modified time | relevance | path

Searched full:yes (Results 1 – 25 of 4712) sorted by relevance

12345678910>>...189

/third_party/toybox/tests/
Dpkill.test6 #cleaning 'yes' processes
7 killall yes >/dev/null 2>&1
15 yes >/dev/null &
17 testing "pattern" "pkill yes && sleep 1 && (pgrep yes || echo 'yes')" \
18 "yes\n" "" ""
19 killall yes >/dev/null 2>&1
21 yes >/dev/null &
22 yes print1 >/dev/null &
23 yes print2 >/dev/null &
25 testing "pattern (multiple)" "pkill yes && sleep 1 &&
[all …]
Dcp.test13 testing "not enough arguments [fail]" "cp one 2>/dev/null || echo yes" \
14 "yes\n" "" ""
15 testing "-missing source [fail]" "cp missing two 2>/dev/null || echo yes" \
16 "yes\n" "" ""
17 testing "file->file" "cp random two && cmp random two && echo yes" \
18 "yes\n" "" ""
22 testing "file->dir" "cp random two && cmp random two/random && echo yes" \
23 "yes\n" "" ""
26 "cp random two/random && cmp random two/random && echo yes" \
27 "yes\n" "" ""
[all …]
/third_party/typescript/tests/baselines/reference/
DstringEnumLiteralTypes3.types2 const enum Choice { Unknown = "", Yes = "yes", No = "no" };
6 >Yes : Choice.Yes
7 >"yes" : "yes"
11 type Yes = Choice.Yes;
12 >Yes : Choice.Yes
15 type YesNo = Choice.Yes | Choice.No;
20 type NoYes = Choice.No | Choice.Yes;
25 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
31 function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
32 >f1 : (a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) => void
[all …]
DenumLiteralTypes3.types2 const enum Choice { Unknown, Yes, No };
5 >Yes : Choice.Yes
8 type Yes = Choice.Yes;
9 >Yes : Choice.Yes
12 type YesNo = Choice.Yes | Choice.No;
17 type NoYes = Choice.No | Choice.Yes;
22 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
28 function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) {
29 >f1 : (a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) => void
30 >a : Choice.Yes
[all …]
DenumLiteralTypes2.types2 const enum Choice { Unknown, Yes, No };
5 >Yes : Choice.Yes
8 type YesNo = Choice.Yes | Choice.No;
13 type NoYes = Choice.No | Choice.Yes;
18 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
33 var a: Choice.Yes | Choice.No;
38 var a: Choice.No | Choice.Yes;
61 >c = b : Choice.Yes | Choice.No
63 >b : Choice.Yes | Choice.No
66 function f3(a: Choice.Yes, b: UnknownYesNo) {
[all …]
DenumLiteralTypes1.types2 const enum Choice { Unknown, Yes, No };
5 >Yes : Choice.Yes
8 type YesNo = Choice.Yes | Choice.No;
13 type NoYes = Choice.No | Choice.Yes;
18 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
33 var a: Choice.Yes | Choice.No;
38 var a: Choice.No | Choice.Yes;
61 >c = b : Choice.Yes | Choice.No
63 >b : Choice.Yes | Choice.No
66 function f3(a: Choice.Yes, b: YesNo) {
[all …]
DstringEnumLiteralTypes1.types2 const enum Choice { Unknown = "", Yes = "yes", No = "no" };
6 >Yes : Choice.Yes
7 >"yes" : "yes"
11 type YesNo = Choice.Yes | Choice.No;
16 type NoYes = Choice.No | Choice.Yes;
21 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
36 var a: Choice.Yes | Choice.No;
41 var a: Choice.No | Choice.Yes;
64 >c = b : Choice.Yes | Choice.No
66 >b : Choice.Yes | Choice.No
[all …]
DstringEnumLiteralTypes2.types2 const enum Choice { Unknown = "", Yes = "yes", No = "no" };
6 >Yes : Choice.Yes
7 >"yes" : "yes"
11 type YesNo = Choice.Yes | Choice.No;
16 type NoYes = Choice.No | Choice.Yes;
21 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
36 var a: Choice.Yes | Choice.No;
41 var a: Choice.No | Choice.Yes;
64 >c = b : Choice.Yes | Choice.No
66 >b : Choice.Yes | Choice.No
[all …]
DstringEnumLiteralTypes3.js2 const enum Choice { Unknown = "", Yes = "yes", No = "no" };
4 type Yes = Choice.Yes;
5 type YesNo = Choice.Yes | Choice.No;
6 type NoYes = Choice.No | Choice.Yes;
7 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No;
9 function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument
16 function f2(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument
23 function f3(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument
30 function f4(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument
37 function f5(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { argument
[all …]
DstringEnumLiteralTypes3.errors.txt1 …tringEnumLiteralTypes3.ts(10,5): error TS2322: Type 'YesNo' is not assignable to type 'Choice.Yes'.
2 Type 'Choice.No' is not assignable to type 'Choice.Yes'.
3 …umLiteralTypes3.ts(11,5): error TS2322: Type 'UnknownYesNo' is not assignable to type 'Choice.Yes'.
4 Type 'Choice.Unknown' is not assignable to type 'Choice.Yes'.
5 …ringEnumLiteralTypes3.ts(12,5): error TS2322: Type 'Choice' is not assignable to type 'Choice.Yes'.
9 …LiteralTypes3.ts(37,5): error TS2322: Type 'Choice.Unknown' is not assignable to type 'Choice.Yes'.
10 …gEnumLiteralTypes3.ts(39,5): error TS2322: Type 'Choice.No' is not assignable to type 'Choice.Yes'.
12 … TS2367: This condition will always return 'false' since the types 'Choice.Yes' and 'Choice.Unknow…
13 … TS2367: This condition will always return 'false' since the types 'Choice.Yes' and 'Choice.No' ha…
15 …iteralTypes3.ts(87,14): error TS2678: Type 'Choice.Unknown' is not comparable to type 'Choice.Yes'.
[all …]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/
Dcoverage.txt7 1 YES
8 2 YES Implementation of file description not specified.
9 3 YES Unspecified.
10 4 YES
11 5 YES
12 6 YES Implementation defined.
13 7 YES Implementation defined.
14 8 YES
15 9 YES Implementation of file description not specified.
16 10 YES Unspecified.
[all …]
/third_party/ltp/testcases/open_posix_testsuite/Documentation/
DCOVERAGE.threads21 pthread_attr_destroy YES HIGH
22 pthread_attr_getdetachstate YES HIGH
23 pthread_attr_init YES HIGH
24 pthread_attr_setdetachstate YES HIGH
25 pthread_cancel YES HIGH
26 pthread_cond_broadcast YES MED
27 pthread_cond_destroy YES MED
28 pthread_cond_init YES MED
29 pthread_cond_signal YES MED
30 pthread_cond_timedwait YES MED
[all …]
/third_party/openssl/providers/
Dencoders.inc49 ENCODER_TEXT("RSA", rsa, yes),
50 ENCODER_TEXT("RSA-PSS", rsapss, yes),
52 ENCODER_TEXT("DH", dh, yes),
53 ENCODER_TEXT("DHX", dhx, yes),
56 ENCODER_TEXT("DSA", dsa, yes),
59 ENCODER_TEXT("EC", ec, yes),
60 ENCODER_TEXT("ED25519", ed25519, yes),
61 ENCODER_TEXT("ED448", ed448, yes),
62 ENCODER_TEXT("X25519", x25519, yes),
63 ENCODER_TEXT("X448", x448, yes),
[all …]
Ddecoders.inc39 DECODER_w_structure("DH", der, PrivateKeyInfo, dh, yes),
40 DECODER_w_structure("DH", der, SubjectPublicKeyInfo, dh, yes),
41 DECODER_w_structure("DH", der, type_specific_params, dh, yes),
42 DECODER_w_structure("DH", der, DH, dh, yes),
43 DECODER_w_structure("DHX", der, PrivateKeyInfo, dhx, yes),
44 DECODER_w_structure("DHX", der, SubjectPublicKeyInfo, dhx, yes),
45 DECODER_w_structure("DHX", der, type_specific_params, dhx, yes),
46 DECODER_w_structure("DHX", der, DHX, dhx, yes),
49 DECODER_w_structure("DSA", der, PrivateKeyInfo, dsa, yes),
50 DECODER_w_structure("DSA", der, SubjectPublicKeyInfo, dsa, yes),
[all …]
/third_party/libbpf/docs/sphinx/doxygen/
DDoxyfile11 BRIEF_MEMBER_DESC = YES
12 REPEAT_BRIEF = YES
15 FULL_PATH_NAMES = YES
24 INHERIT_DOCS = YES
28 OPTIMIZE_OUTPUT_FOR_C = YES
34 MARKDOWN_SUPPORT = YES
36 AUTOLINK_SUPPORT = YES
40 IDL_PROPERTY_SUPPORT = YES
43 SUBGROUPING = YES
54 EXTRACT_LOCAL_CLASSES = YES
[all …]
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
Dcoverage.txt7 1 YES
8 2 YES
9 3 YES
10 4 YES - Assigns uninitialized values, but works.
11 5 YES - Assigns uninitialized values, but works.
12 6 YES - 6.3 fails on current test impl. b/c no MON implemented
13 7 YES - 7.1 fails on my impl -- BUG?
14 8 YES
15 9 YES
16 10 YES
[all …]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/
Dcoverage.txt4 1 YES
5 2 YES
6 3 YES
7 4 YES
8 5 YES
9 6 YES
10 7 YES
11 8 YES
12 9 YES
13 10 YES
[all …]
/third_party/node/deps/cares/m4/
Dcares-functions.m4369 AC_MSG_RESULT([yes])
370 tst_links_closesocket="yes"
376 if test "$tst_links_closesocket" = "yes"; then
382 AC_MSG_RESULT([yes])
383 tst_proto_closesocket="yes"
390 if test "$tst_proto_closesocket" = "yes"; then
401 AC_MSG_RESULT([yes])
402 tst_compi_closesocket="yes"
409 if test "$tst_compi_closesocket" = "yes"; then
412 AC_MSG_RESULT([yes])
[all …]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
Dcoverage.txt7 1 YES
8 2 YES
9 3 YES Behavior unspecified
10 4 YES
11 5 YES
12 6 YES Implementation-defined
13 7 YES may assertion
14 8 YES Only a stub.
15 9 YES
16 10 YES
[all …]
/third_party/ltp/testcases/open_posix_testsuite/conformance/definitions/sys/mman_h/
Dcoverage.txt8 1 YES
9 2 YES
10 3 YES
11 4 YES
12 5 YES
13 6 YES
14 7 YES
15 8 YES
16 9 YES
17 10 YES
[all …]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/
Dcoverage.txt7 1 YES
8 2 YES Behavior unspecified
9 3 YES
10 4 YES
11 5 YES Implementation-defined
12 6 YES may assertion
13 7 YES Implementation-defined
14 8 YES
15 9 YES
16 10 YES
[all …]
/third_party/python/Tools/msi/bundle/
DDefault.thm8 …<Font Id="4" Height="-14" Weight="500" Foreground="ff0000" Background="ffffff" Underline="yes">Seg…
12 …<Text X="185" Y="11" Width="-11" Height="36" FontId="1" DisablePrefix="yes">#(loc.HelpHeader)</Tex…
15 …<Hypertext X="185" Y="50" Width="-11" Height="-35" FontId="3" DisablePrefix="yes">#(loc.HelpText)<…
16 …<Button Name="SuccessCancelButton" X="-11" Y="-11" Width="85" Height="27" TabStop="yes" FontId="0"…
19 …<Text X="185" Y="11" Width="-11" Height="36" FontId="1" DisablePrefix="yes">#(loc.InstallHeader)</…
22 … <Text X="185" Y="50" Width="-11" Height="50" FontId="3" TabStop="yes">#(loc.InstallMessage)</Text>
24 …<Button Name="InstallButton" X="185" Y="101" Width="-11" Height="109" TabStop="yes" FontId="3" Hex…
25 …<Button Name="InstallCustomButton" X="185" Y="221" Width="-11" Height="59" TabStop="yes" FontId="3…
27 …InstallLauncherAllUsers" X="185" Y="-37" Width="-100" Height="24" TabStop="yes" FontId="3">#(loc.S…
28 …<Checkbox Name="PrependPath" X="185" Y="-13" Width="-100" Height="24" TabStop="yes" FontId="3">#(l…
[all …]
/third_party/flutter/flutter/dev/integration_tests/ios_host_app/Host.xcodeproj/
Dproject.pbxproj192 CLANG_ANALYZER_NONNULL = YES;
196 CLANG_ENABLE_MODULES = YES;
197 CLANG_ENABLE_OBJC_ARC = YES;
198 CLANG_ENABLE_OBJC_WEAK = YES;
199 CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
200 CLANG_WARN_BOOL_CONVERSION = YES;
201 CLANG_WARN_COMMA = YES;
202 CLANG_WARN_CONSTANT_CONVERSION = YES;
203 CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
205 CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
[all …]
/third_party/flutter/flutter/examples/platform_channel_swift/ios/Runner.xcodeproj/
Dproject.pbxproj269 CLANG_ANALYZER_NONNULL = YES;
272 CLANG_ENABLE_MODULES = YES;
273 CLANG_ENABLE_OBJC_ARC = YES;
274 CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
275 CLANG_WARN_BOOL_CONVERSION = YES;
276 CLANG_WARN_COMMA = YES;
277 CLANG_WARN_CONSTANT_CONVERSION = YES;
278 CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
280 CLANG_WARN_EMPTY_BODY = YES;
281 CLANG_WARN_ENUM_CONVERSION = YES;
[all …]
/third_party/flutter/flutter/packages/flutter_tools/templates/app/ios-swift.tmpl/Runner.xcodeproj/
Dproject.pbxproj.tmpl261 CLANG_ANALYZER_NONNULL = YES;
264 CLANG_ENABLE_MODULES = YES;
265 CLANG_ENABLE_OBJC_ARC = YES;
266 CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
267 CLANG_WARN_BOOL_CONVERSION = YES;
268 CLANG_WARN_COMMA = YES;
269 CLANG_WARN_CONSTANT_CONVERSION = YES;
270 CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
272 CLANG_WARN_EMPTY_BODY = YES;
273 CLANG_WARN_ENUM_CONVERSION = YES;
[all …]

12345678910>>...189