| /third_party/backends/testsuite/tools/data/ |
| D | hwdb.ref | 2 # by sane-desc 3.6 from sane-backends 1.0.29-241-g1f9590ab 13 # If the scanner is supported by sane-backends, please mail the entry to 14 # the sane-devel mailing list (sane-devel@alioth-lists.debian.net). 16 # Hewlett-Packard ScanJet 4100C 18 libsane_matched=yes 20 # Hewlett-Packard ScanJet 4200C | Hewlett-Packard ScanJet 4200Cxi | Hewlett-Packard ScanJet 4200Cse 22 libsane_matched=yes 24 # Hewlett-Packard ScanJet 6200C | Hewlett-Packard ScanJet 6250C 26 libsane_matched=yes 28 # Hewlett-Packard ScanJet 3300c [all …]
|
| D | udev+acl.ref | 2 # by sane-desc 3.6 from sane-backends 1.0.31-118-g5d3ce7806 8 # SCSI-scanners from HP and other vendors that are entitled "processor" 23 # If the scanner is supported by sane-backends, please mail the entry to 24 # the sane-devel mailing list (sane-devel@alioth-lists.debian.net). 42 # Hewlett-Packard ScanJet 4100C 43 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0101", ENV{libsane_matched}="yes" 44 # Hewlett-Packard ScanJet 4200C | Hewlett-Packard ScanJet 4200Cxi | Hewlett-Packard ScanJet 4200Cse 45 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0105", ENV{libsane_matched}="yes" 46 # Hewlett-Packard ScanJet 6200C | Hewlett-Packard ScanJet 6250C 47 ATTR{idVendor}=="03f0", ATTR{idProduct}=="0201", ENV{libsane_matched}="yes" [all …]
|
| D | udev.ref | 2 # by sane-desc 3.6 from sane-backends 1.0.31-118-g5d3ce7806 8 # SCSI-scanners from HP and other vendors that are entitled "processor" 23 # If the scanner is supported by sane-backends, please mail the entry to 24 # the sane-devel mailing list (sane-devel@alioth-lists.debian.net). 42 # Hewlett-Packard ScanJet 4100C 43 …dVendor}=="03f0", ATTR{idProduct}=="0101", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 44 # Hewlett-Packard ScanJet 4200C | Hewlett-Packard ScanJet 4200Cxi | Hewlett-Packard ScanJet 4200Cse 45 …dVendor}=="03f0", ATTR{idProduct}=="0105", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" 46 # Hewlett-Packard ScanJet 6200C | Hewlett-Packard ScanJet 6250C 47 …dVendor}=="03f0", ATTR{idProduct}=="0201", MODE="0664", GROUP="scanner", ENV{libsane_matched}="yes" [all …]
|
| /third_party/curl/tests/data/ |
| D | test444 | 12 --resolve 17 # Server-side 22 Server: test-server/fake 23 Content-Length: 6 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; [all …]
|
| /third_party/flatbuffers/docs/source/ |
| D | Support.md | 22 ------------------------------ | ------ | ----- | -------- | ----- | ------ | ----- | --- | ------ … 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… [all …]
|
| /third_party/toybox/tests/ |
| D | pkill.test | 6 #cleaning 'yes' processes 7 killall yes >/dev/null 2>&1 9 [ -f testing.sh ] && . testing.sh 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 & [all …]
|
| D | cp.test | 3 [ -f testing.sh ] && . testing.sh 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" "" "" 25 testing "file->dir/file" \ [all …]
|
| D | mv.test | 5 # "touch two; chmod -w two; mv one two" shouldn't prompt to delete two if 11 [ -f testing.sh ] && . testing.sh 17 "mv file file1 && [ ! -e file -a -f file1 ] && echo yes" \ 18 "yes\n" "" "" 19 rm -f file* 24 "mv file dir && [ ! -e file -a -f dir/file ] && echo yes" \ 25 "yes\n" "" "" 26 rm -rf file* dir* 30 "mv dir dir1 && [ ! -e dir -a -d dir1 ] && echo yes" \ 31 "yes\n" "" "" [all …]
|
| D | mktemp.test | 3 [ -f testing.sh ] && . testing.sh 7 …efault template uses \$TMPDIR" "TMPDIR=. mktemp | grep -q '^./tmp\...........$' && echo yes" "yes\… 8 testing "default creates file" "test -f `TMPDIR=. mktemp` && echo yes" "yes\n" \ 10 testing "-d creates dir" "test -d `TMPDIR=. mktemp -d` && echo yes" "yes\n" \ 12 …TE does not use \$TMPDIR" "TMPDIR=/t mktemp -u hello.XXXXXXXX | grep -q '^hello\.........$' && ech… 13 … but ignores \$TMPDIR" "TMPDIR=/t mktemp -u /x/hello.XXXXXXXX | grep -q '^/x/hello\.........$' && … 14 testing "/ in TEMPLATE with -p DIR is error" "TMPDIR=/t mktemp -p DIR -u /x/hello.XXXXXXXX 2>/dev/n… 15 testing "-t TEMPLATE uses \$TMPDIR" "TMPDIR=/t mktemp -u -t hello.XXXXXXXX | grep -q '^/t/hello\...… 16 testing "-t and TEMPLATE but no \$TMPDIR uses /tmp" "TMPDIR= mktemp -u -t hello.XXXXXXXX | grep -q … 17 testing "-p DIR and TEMPLATE should use DIR" "TMPDIR=/t mktemp -u -p DIR hello.XXXXXXXX | grep -q '… [all …]
|
| /third_party/rust/rust/tests/ui/half-open-range-patterns/ |
| D | half-open-range-pats-semantics.rs | 1 // run-pass 3 // Test half-open range patterns against their expression equivalents 10 macro_rules! yes { macro 22 // `..=X` (`RangeToInclusive`-equivalent): in range_to_inclusive() 23 //--------------------------------------- in range_to_inclusive() 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() [all …]
|
| /third_party/curl/m4/ |
| D | curl-functions.m4 | 21 # SPDX-License-Identifier: curl 30 dnl ------------------------------------------------- 61 dnl ------------------------------------------------- 85 dnl ------------------------------------------------- 112 dnl ------------------------------------------------- 133 dnl ------------------------------------------------- 154 dnl ------------------------------------------------- 178 dnl ------------------------------------------------- 197 dnl ------------------------------------------------- 216 dnl ------------------------------------------------- [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/curl/tests/ |
| D | ech_tests.sh | 22 # SPDX-License-Identifier: curl 31 # TODO: Translate this into something that approximates a valid curl test:-) 34 # ECH-enabled server and a DoH server. For now, this is just run manually. 37 # set -x 43 active_ech=$(grep ech "$CURL_CFG_FILE" | grep -v "#.*ech") 48 echo "it out - exiting." 53 # Targets we expect to be ECH-enabled servers 57 declare -A ech_targets=( 58 [my-own.net]="ech-check.php" 59 [my-own.net:8443]="ech-check.php" [all …]
|
| /third_party/python/Tools/msi/bundle/ |
| D | Default.thm | 1 <?xml version="1.0" encoding="utf-8"?> 4 <Font Id="0" Height="-14" Weight="500" Foreground="000000" Background="ffffff">Segoe UI</Font> 5 <Font Id="1" Height="-26" Weight="500" Foreground="000000" Background="ffffff">Segoe UI</Font> 6 <Font Id="2" Height="-24" Weight="500" Foreground="808080" Background="ffffff">Segoe UI</Font> 7 <Font Id="3" Height="-14" Weight="500" Foreground="000000" Background="ffffff">Segoe UI</Font> 8 …<Font Id="4" Height="-14" Weight="500" Foreground="ff0000" Background="ffffff" Underline="yes">Seg… 9 <Font Id="5" Height="-14" Weight="500" Foreground="808080" Background="ffffff">Segoe UI</Font> 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"… [all …]
|
| /third_party/openssl/providers/ |
| D | encoders.inc | 2 * Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved. 14 #define ENCODER_STRUCTURE_type_specific_keypair "type-specific" 15 #define ENCODER_STRUCTURE_type_specific_params "type-specific" 16 #define ENCODER_STRUCTURE_type_specific "type-specific" 17 #define ENCODER_STRUCTURE_type_specific_no_pub "type-specific" 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), [all …]
|
| /third_party/jerryscript/ |
| D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), [all …]
|
| /third_party/libexif/doc/ |
| D | Doxyfile-internals.in | 2 # Copyright (C) 1997-2015 by Dimitri van Heesch. 3 # SPDX-License-Identifier: GPL-2.0-only 18 #--------------------------------------------------------------------------- 20 #--------------------------------------------------------------------------- 23 # that follow. The default is UTF-8 which is also the encoding used for all text 27 # The default value is: UTF-8. 29 DOXYFILE_ENCODING = UTF-8 32 # double-quotes, unless you are using Doxywizard) that should identify the 65 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 75 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII [all …]
|
| /third_party/skia/third_party/externals/tint/ |
| D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), [all …]
|
| /third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/ |
| D | coverage.txt | 7 3 YES 9 5 YES 10 6 YES 11 7 YES 13 9 YES 14 10 YES 15 11 YES 16 12 YES 17 13 YES 18 14 YES [all …]
|
| /third_party/skia/m133/tools/doxygen/ |
| D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), [all …]
|
| /third_party/skia/tools/doxygen/ |
| D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), [all …]
|
| /third_party/vk-gl-cts/external/amber/src/ |
| D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), [all …]
|
| /third_party/skia/m133/third_party/externals/icu/source/ |
| D | Doxyfile.in | 7 # * Copyright (c) 2004-2015, International Business Machines Corporation 24 #--------------------------------------------------------------------------- 26 #--------------------------------------------------------------------------- 29 # that follow. The default is UTF-8 which is also the encoding used for all text 33 # The default value is: UTF-8. 35 DOXYFILE_ENCODING = UTF-8 38 # double-quotes, unless you are using Doxywizard) that should identify the 71 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 81 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 82 # characters to appear in the names of generated files. If set to NO, non-ASCII [all …]
|
| /third_party/icu/icu4c/source/ |
| D | Doxyfile.in | 7 # * Copyright (c) 2004-2015, International Business Machines Corporation 24 #--------------------------------------------------------------------------- 26 #--------------------------------------------------------------------------- 29 # that follow. The default is UTF-8 which is also the encoding used for all text 33 # The default value is: UTF-8. 35 DOXYFILE_ENCODING = UTF-8 38 # double-quotes, unless you are using Doxywizard) that should identify the 71 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 81 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 82 # characters to appear in the names of generated files. If set to NO, non-ASCII [all …]
|
| /third_party/skia/third_party/externals/icu/source/ |
| D | Doxyfile.in | 7 # * Copyright (c) 2004-2015, International Business Machines Corporation 24 #--------------------------------------------------------------------------- 26 #--------------------------------------------------------------------------- 29 # that follow. The default is UTF-8 which is also the encoding used for all text 33 # The default value is: UTF-8. 35 DOXYFILE_ENCODING = UTF-8 38 # double-quotes, unless you are using Doxywizard) that should identify the 71 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- 81 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 82 # characters to appear in the names of generated files. If set to NO, non-ASCII [all …]
|