| /third_party/backends/testsuite/tools/data/ |
| D | hwdb.ref | 18 libsane_matched=yes 22 libsane_matched=yes 26 libsane_matched=yes 30 libsane_matched=yes 34 libsane_matched=yes 38 libsane_matched=yes 42 libsane_matched=yes 46 libsane_matched=yes 50 libsane_matched=yes 54 libsane_matched=yes [all …]
|
| D | udev+acl.ref | 43 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0101", ENV{libsane_matched}="yes" 45 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0105", ENV{libsane_matched}="yes" 47 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0201", ENV{libsane_matched}="yes" 49 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0205", ENV{libsane_matched}="yes" 51 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0305", ENV{libsane_matched}="yes" 53 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0401", ENV{libsane_matched}="yes" 55 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0405", ENV{libsane_matched}="yes" 57 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0505", ENV{libsane_matched}="yes" 59 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0601", ENV{libsane_matched}="yes" 61 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0605", ENV{libsane_matched}="yes" [all …]
|
| D | udev.ref | 43 …dVendor}=="03f0", ATTR{idProduct}=="0101", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 45 …dVendor}=="03f0", ATTR{idProduct}=="0105", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 47 …dVendor}=="03f0", ATTR{idProduct}=="0201", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 49 …dVendor}=="03f0", ATTR{idProduct}=="0205", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 51 …dVendor}=="03f0", ATTR{idProduct}=="0305", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 53 …dVendor}=="03f0", ATTR{idProduct}=="0401", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 55 …dVendor}=="03f0", ATTR{idProduct}=="0405", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 57 …dVendor}=="03f0", ATTR{idProduct}=="0505", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 59 …dVendor}=="03f0", ATTR{idProduct}=="0601", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 61 …dVendor}=="03f0", ATTR{idProduct}=="0605", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" [all …]
|
| /third_party/toybox/tests/ |
| D | pkill.test | 6 #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 …]
|
| D | cp.test | 13 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/curl/tests/data/ |
| D | test444 | 24 Set-Cookie: cookie-1=yes; 25 Set-Cookie: cookie-2=yes; 26 Set-Cookie: cookie-3=yes; 27 Set-Cookie: cookie-4=yes; 28 Set-Cookie: cookie-5=yes; 29 Set-Cookie: cookie-6=yes; 30 Set-Cookie: cookie-7=yes; 31 Set-Cookie: cookie-8=yes; 32 Set-Cookie: cookie-9=yes; 33 Set-Cookie: cookie-10=yes; [all …]
|
| /third_party/flatbuffers/docs/source/ |
| D | Support.md | 23 …r all basic features | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | WiP | Y… 24 JSON parsing | Yes | No | No | No | No | No | No | Yes … 25 …ation | Yes | Yes | Yes | Yes | No | No | No | No | No | N… 26 Reflection | Yes | No | No | No | No | No | No | Basic … 27 Buffer verifier | Yes | No | No | No | No | No | No | Yes … 28 Native Object API | Yes | No | Yes | Yes | Yes | Yes | Yes | No … 29 …calars | Yes | Yes | Yes | No | No | Yes | Yes | Yes | No | N… 30 …uffers | Yes | Yes | ? | ? | ? | ? | ? | ? | ? … 31 …asic | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | ? | Y… 32 …ng: fuzz | Yes | No | No | Yes | Yes | No | No | No | ? … [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | enumLiteralTypes3.types | 2 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; 13 >YesNo : Choice.Yes | Choice.No 17 type NoYes = Choice.No | Choice.Yes; 18 >NoYes : Choice.Yes | Choice.No 22 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 28 function f1(a: Yes, b: YesNo, c: UnknownYesNo, d: Choice) { [all …]
|
| D | stringEnumLiteralTypes3.types | 2 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; 16 >YesNo : Choice.Yes | Choice.No 20 type NoYes = Choice.No | Choice.Yes; 21 >NoYes : Choice.Yes | Choice.No 25 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; [all …]
|
| D | stringEnumLiteralTypes1.types | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 6 >Yes : Choice.Yes 7 >"yes" : "yes" 11 type YesNo = Choice.Yes | Choice.No; 12 >YesNo : Choice.Yes | Choice.No 16 type NoYes = Choice.No | Choice.Yes; 17 >NoYes : Choice.Yes | Choice.No 21 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 36 var a: Choice.Yes | Choice.No; 41 var a: Choice.No | Choice.Yes; [all …]
|
| D | stringEnumLiteralTypes2.types | 2 const enum Choice { Unknown = "", Yes = "yes", No = "no" }; 6 >Yes : Choice.Yes 7 >"yes" : "yes" 11 type YesNo = Choice.Yes | Choice.No; 12 >YesNo : Choice.Yes | Choice.No 16 type NoYes = Choice.No | Choice.Yes; 17 >NoYes : Choice.Yes | Choice.No 21 type UnknownYesNo = Choice.Unknown | Choice.Yes | Choice.No; 36 var a: Choice.Yes | Choice.No; 41 var a: Choice.No | Choice.Yes; [all …]
|
| D | enumLiteralTypes2.types | 2 const enum Choice { Unknown, Yes, No }; 5 >Yes : Choice.Yes 8 type YesNo = Choice.Yes | Choice.No; 9 >YesNo : Choice.Yes | Choice.No 13 type NoYes = Choice.No | Choice.Yes; 14 >NoYes : Choice.Yes | Choice.No 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 [all …]
|
| D | enumLiteralTypes1.types | 2 const enum Choice { Unknown, Yes, No }; 5 >Yes : Choice.Yes 8 type YesNo = Choice.Yes | Choice.No; 9 >YesNo : Choice.Yes | Choice.No 13 type NoYes = Choice.No | Choice.Yes; 14 >NoYes : Choice.Yes | Choice.No 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 [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
| D | coverage.txt | 7 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/ |
| D | COVERAGE.threads | 21 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/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/ |
| D | coverage.txt | 7 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/libbpf/docs/sphinx/doxygen/ |
| D | Doxyfile | 11 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/openssl/providers/ |
| D | encoders.inc | 49 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 …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/ |
| D | coverage.txt | 4 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/rust/rust/tests/ui/half-open-range-patterns/ |
| D | half-open-range-pats-semantics.rs | 10 macro_rules! yes { macro 26 assert!(yes!(u8::MIN, ..=u8::MIN)); in range_to_inclusive() 27 assert!(yes!(u8::MIN, ..=5)); in range_to_inclusive() 28 assert!(yes!(5u8, ..=5)); in range_to_inclusive() 29 assert!(!yes!(6u8, ..=5)); in range_to_inclusive() 32 assert!(yes!(i16::MIN, ..=i16::MIN)); in range_to_inclusive() 33 assert!(yes!(i16::MIN, ..=0)); in range_to_inclusive() 34 assert!(yes!(i16::MIN, ..=-5)); in range_to_inclusive() 35 assert!(yes!(-5, ..=-5)); in range_to_inclusive() 36 assert!(!yes!(-4, ..=-5)); in range_to_inclusive() [all …]
|
| /third_party/curl/m4/ |
| D | curl-functions.m4 | 531 AC_MSG_RESULT([yes]) 532 tst_links_alarm="yes" 538 if test "$tst_links_alarm" = "yes"; then 543 AC_MSG_RESULT([yes]) 544 tst_proto_alarm="yes" 551 if test "$tst_proto_alarm" = "yes"; then 561 AC_MSG_RESULT([yes]) 562 tst_compi_alarm="yes" 569 if test "$tst_compi_alarm" = "yes"; then 572 AC_MSG_RESULT([yes]) [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/ |
| D | coverage.txt | 7 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/ |
| D | coverage.txt | 8 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/grpc/src/objective-c/examples/SwiftUseFrameworks/SwiftUseFrameworks.xcodeproj/ |
| D | project.pbxproj | 173 ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; 174 CLANG_ANALYZER_NONNULL = YES; 177 CLANG_ENABLE_MODULES = YES; 178 CLANG_ENABLE_OBJC_ARC = YES; 179 CLANG_ENABLE_OBJC_WEAK = YES; 180 CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 181 CLANG_WARN_BOOL_CONVERSION = YES; 182 CLANG_WARN_COMMA = YES; 183 CLANG_WARN_CONSTANT_CONVERSION = YES; 184 CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setscheduler/ |
| D | coverage.txt | 7 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 …]
|