| /external/sandboxed-api/.github/workflows/ |
| D | ubuntu-cmake.yml | 1 name: ubuntu-cmake 11 fail-fast: false 15 - os: ubuntu-22.04 17 compiler-version: 14 18 libclang-version: 14 19 pip-clang-version: "14.0" 20 ignore-errors: false 21 - os: ubuntu-22.04 23 compiler-version: 13 24 libclang-version: 13 [all …]
|
| /external/dtc/pylibfdt/ |
| D | libfdt.i | 1 // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) 3 * pylibfdt - Flat Device Tree manipulation in Python 55 # Pass this as the 'quiet' parameter to return -ENOTFOUND on NOTFOUND errors, 73 fdt_err: Error number (-ve) 81 """Raise an error if the return value is -ve 83 This is used to check for errors returned by libfdt C functions. 87 quiet: Errors to ignore (empty to raise on all errors) 96 if -val not in quiet: 108 quiet: Errors to ignore (empty to raise on all errors) 120 if -val not in quiet: [all …]
|
| /external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/ |
| D | Unit.java | 18 final String ignore; field in Unit 19 final List<Error> errors; field in Unit 27 String ignore, in Unit() argument 28 List<Error> errors) { in Unit() argument 34 this.ignore = ignore; in Unit() 35 this.errors = errors; in Unit() 83 String newIgnore = other.ignore != null ? other.ignore : this.ignore; in merge() 84 List<Error> newErrors = other.errors != null ? other.errors : this.errors; in merge() 94 str.chars().forEach(c -> { in escapeString()
|
| D | TestUtils.java | 23 import org.junit.Ignore; 31 @Ignore("Utility class, has no test methods.") 33 static final Gson GSON = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create(); 35 // ======= Legacy TestCase utilities, no json-compatible ======== 42 if (testCase.ignore) { in runTestCase() 57 if (!testCase.errors.isEmpty()) { in runTestCase() 64 if (testCase.errors.isEmpty()) { in runTestCase() 78 return unit.errors != null && !unit.errors.isEmpty(); in expectsErrors() 86 if (unit.ignore != null) { in runTestCase()
|
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/message2/ |
| D | Unit.java | 19 final String ignore; field in Unit 20 final List<Error> errors; field in Unit 28 String ignore, in Unit() argument 29 List<Error> errors) { in Unit() argument 35 this.ignore = ignore; in Unit() 36 this.errors = errors; in Unit() 84 String newIgnore = other.ignore != null ? other.ignore : this.ignore; in merge() 85 List<Error> newErrors = other.errors != null ? other.errors : this.errors; in merge() 95 str.chars().forEach(c -> { in escapeString()
|
| D | TestUtils.java | 24 import org.junit.Ignore; 32 @Ignore("Utility class, has no test methods.") 34 static final Gson GSON = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create(); 36 // ======= Legacy TestCase utilities, no json-compatible ======== 43 if (testCase.ignore) { in runTestCase() 58 if (!testCase.errors.isEmpty()) { in runTestCase() 65 if (testCase.errors.isEmpty()) { in runTestCase() 79 return unit.errors != null && !unit.errors.isEmpty(); in expectsErrors() 87 if (unit.ignore != null) { in runTestCase()
|
| /external/python/setuptools/setuptools/_distutils/tests/ |
| D | test_log.py | 12 # Issues #8663, #34421: test that non-encodable text is escaped with 13 # backslashreplace error handler and encodable non-ASCII text is 15 for errors in ('strict', 'backslashreplace', 'surrogateescape', 16 'replace', 'ignore'): 17 with self.subTest(errors=errors): 19 encoding='cp437', errors=errors) 21 encoding='cp437', errors=errors) 33 'Dεbug\tM?ss?ge' if errors == 'replace' else 34 'Dεbug\tMssge' if errors == 'ignore' else 38 'Fαtal\t?rr?r' if errors == 'replace' else [all …]
|
| /external/python/cpython3/Lib/distutils/tests/ |
| D | test_log.py | 12 # Issues #8663, #34421: test that non-encodable text is escaped with 13 # backslashreplace error handler and encodable non-ASCII text is 15 for errors in ('strict', 'backslashreplace', 'surrogateescape', 16 'replace', 'ignore'): 17 with self.subTest(errors=errors): 19 encoding='cp437', errors=errors) 21 encoding='cp437', errors=errors) 33 'Dεbug\tM?ss?ge' if errors == 'replace' else 34 'Dεbug\tMssge' if errors == 'ignore' else 38 'Fαtal\t?rr?r' if errors == 'replace' else [all …]
|
| /external/rust/crates/tokio/src/io/util/ |
| D | async_write_ext.rs | 28 fn $name:ident(&mut self, n: $ty:ty) -> $($fut:ident)*; 33 fn $name(&mut self, n: $ty) -> $($fut)*<&mut Self> where Self: Unpin { 51 /// async fn main() -> io::Result<()> { 75 /// ```ignore 76 /// async fn write(&mut self, buf: &[u8]) -> io::Result<usize>; 92 /// # Errors 115 /// async fn main() -> io::Result<()> { 123 fn write<'a>(&'a mut self, src: &'a [u8]) -> Write<'a, Self> 134 /// ```ignore 135 /// async fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> io::Result<usize>; [all …]
|
| D | async_read_ext.rs | 25 fn $name:ident(&mut self) -> $($fut:ident)*; 30 fn $name(&mut self) -> $($fut)*<&mut Self> where Self: Unpin { 48 /// async fn main() -> io::Result<()> { 79 /// async fn main() -> io::Result<()> { 92 fn chain<R>(self, next: R) -> Chain<Self, R> 105 /// ```ignore 106 /// async fn read(&mut self, buf: &mut [u8]) -> io::Result<usize>; 136 /// # Errors 157 /// async fn main() -> io::Result<()> { 168 fn read<'a>(&'a mut self, buf: &'a mut [u8]) -> Read<'a, Self> [all …]
|
| /external/doclava/doclet_adapter/src/test/java/com/google/doclava/javadoc/ |
| D | PackageDocImplTest.java | 8 * http://www.apache.org/licenses/LICENSE-2.0 28 import org.junit.Ignore; 41 @Ignore("Not used") 46 @Ignore("Not used") 75 public void errors() { in errors() method in PackageDocImplTest 76 ClassDoc[] errors = comExamplePackages.errors(); in errors() local 78 assertEquals(1, errors.length); in errors() 79 assertTrue(errors[0].isError()); in errors() 80 assertEquals("Error", errors[0].name()); in errors() 110 @Ignore("Not yet implemented") [all …]
|
| /external/grpc-grpc/test/core/xds/ |
| D | xds_bootstrap_test.cc | 8 // http://www.apache.org/licenses/LICENSE-2.0 65 bool ok = ::testing::ExplainMatchResult(name, server->server_uri(), 67 auto creds_config = server->channel_creds_config(); 72 ok |= ::testing::ExplainMatchResult(creds_config_type, creds_config->type(), 86 " \"ignore\": 0" in TEST() 89 " \"ignore\": 0" in TEST() 96 " \"ignore\": 0" in TEST() 99 " \"ignore\": 0" in TEST() 152 " \"ignore\": {}" in TEST() 158 " \"ignore\": \"whee\"" in TEST() [all …]
|
| /external/clang/test/Frontend/ |
| D | verify-ignore-unexpected.c | 1 // RUN: not %clang_cc1 -DTEST_SWITCH -verify-ignore-unexpected=remark,aoeu,note -verify %s 2>&1 \ 2 // RUN: | FileCheck -check-prefix=CHECK-BAD-SWITCH %s 4 // expected-no-diagnostics 6 // CHECK-BAD-SWITCH: error: 'error' diagnostics seen but not expected: 7 // CHECK-BAD-SWITCH-NEXT: (frontend): invalid value 'aoeu' in '-verify-ignore-unexpected=' 9 // RUN: %clang_cc1 -DTEST1 -verify %s 10 // RUN: %clang_cc1 -DTEST1 -verify -verify-ignore-unexpected %s 13 // expected-warning@-1 {{MyWarning1}} 14 int x; // expected-note {{previous definition is here}} 15 float x; // expected-error {{redefinition of 'x'}} [all …]
|
| /external/mesa3d/src/gfxstream/guest/android-emu/aemu/base/files/ |
| D | Stream.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 36 // of bytes that were actually transferred, or -errno value on error. 40 // number of bytes that were actually transferred, or -errno value on 44 // Write a single byte |value| into the stream. Ignore errors. 47 // Write a 16-bit |value| as big-endian into the stream. Ignore errors. 50 // Write a 32-bit |value| as big-endian into the stream. Ignore errors. 53 // Write a 64-bit |value| as big-endian into the stream. Ignore errors. 59 // Read a single big-endian 16-bit value from the stream. 63 // Read a single big-endian 32-bit value from the stream. 67 // Read a single big-endian 64-bit value from the stream. [all …]
|
| /external/cronet/build/android/docs/ |
| D | lint.md | 8 [Android Lint]: https://googlesamples.github.io/android-custom-lint-rules/book.md.html 10 [list of checks]: https://googlesamples.github.io/android-custom-lint-rules/checks/index.md.html 19 - `//chrome/android:monochrome_public_bundle` 20 - `//android_webview/support_library/boundary_interfaces:boundary_interface_example_apk` 21 - `//remoting/android:remoting_apk` 37 that tells lint to ignore the annotated element. It can be used on classes, 43 **lint** what to ignore. It can be a single `String`: 66 For resource xml files you can use `tools:ignore`: 69 <?xml version="1.0" encoding="utf-8"?> 71 <!-- TODO(crbug/###): remove tools:ignore once these colors are used --> [all …]
|
| /external/rust/crates/darling_core/src/ |
| D | from_meta.rs | 19 /// * Do not take a dependency on the `ident` of the passed-in meta item. The ident will be set by … 20 …`from_*` methods that you intend to support. The default implementations will return useful errors. 25 /// * Word with no value specified - becomes `true`. 38 /// * As a string literal, e.g. `foo = "-25"`. 43 /// See `darling::util::Flag` for a more strongly-typed alternative. 52 fn from_nested_meta(item: &NestedMeta) -> Result<Self> { in from_nested_meta() 60 /// Create an instance from a `syn::Meta` by dispatching to the format-appropriate 64 /// If this method is overridden and can introduce errors that weren't passed up from 68 fn from_meta(item: &Meta) -> Result<Self> { in from_meta() 79 /// When a field is omitted from a parent meta-item, `from_none` is used to attempt [all …]
|
| /external/angle/build/android/docs/ |
| D | lint.md | 8 [Android Lint]: https://googlesamples.github.io/android-custom-lint-rules/book.md.html 10 [list of checks]: https://googlesamples.github.io/android-custom-lint-rules/checks/index.md.html 23 - `//chrome/android:monochrome_public_bundle` 24 - `//android_webview/support_library/boundary_interfaces:boundary_interface_example_apk` 25 …- Other targets with `enable_lint` enabled: https://source.chromium.org/search?q=lang:gn%20enable_… 32 $ gn args out/Default --list=android_static_analysis 52 that tells lint to ignore the annotated element. It can be used on classes, 58 **lint** what to ignore. It can be a single `String`: 81 For resource xml files you can use `tools:ignore`: 84 <?xml version="1.0" encoding="utf-8"?> [all …]
|
| /external/wycheproof/keystore-cts/java/com/google/security/wycheproof/testcases/ |
| D | JsonSignatureTest.java | 6 * http://www.apache.org/licenses/LICENSE-2.0 38 import org.junit.Ignore; 88 * digests (e.g. "SHA-256") but are not used in the corresponding names for digital signatures 90 * cryptographic primitive. On the other hand, the dash remains for SHA-3. Hence, the correct 91 * name for ECDSA with SHA3-256 is "SHA3-256WithECDSA". 93 * <p>See https://docs.oracle.com/en/java/javase/11/docs/specs/security/standard-names.html 99 if (md.equalsIgnoreCase("SHA-1")) { in convertMdName() 101 } else if (md.equalsIgnoreCase("SHA-224")) { in convertMdName() 103 } else if (md.equalsIgnoreCase("SHA-256")) { in convertMdName() 105 } else if (md.equalsIgnoreCase("SHA-384")) { in convertMdName() [all …]
|
| D | JsonEcdhTest.java | 6 * http://www.apache.org/licenses/LICENSE-2.0 33 import org.junit.Ignore; 107 int errors = 0; in testEcdhComp() local 146 errors++; in testEcdhComp() 158 errors++; in testEcdhComp() 176 errors++; in testEcdhComp() 180 assertEquals(0, errors); in testEcdhComp() 194 @Ignore //TODO Reverify after bug b/215175472 is fixed. 211 @Ignore // Secp256k1 curve not supported in AndroidKeystore 217 @Ignore // Brainpool curves are not supported in AndroidKeystore [all …]
|
| D | JsonMacTest.java | 5 * <p>http://www.apache.org/licenses/LICENSE-2.0 31 import org.junit.Ignore; 126 int errors = 0; in testMac() local 154 // E.g. an implementation must not allow AES-GMAC with an IV of length 0, in testMac() 156 errors++; in testMac() 162 errors++; in testMac() 167 assertEquals(0, errors); in testMac() 187 if (algorithm.equals("AES-GMAC")) { in getInitializedMacWithIv() 190 throw new InvalidAlgorithmParameterException("only 128-bit tag is supported"); in getInitializedMacWithIv() 218 int errors = 0; in testMacWithIv() local [all …]
|
| /external/python/cpython2/Doc/library/ |
| D | shutil.rst | 1 :mod:`shutil` --- High-level file operations 5 :synopsis: High-level file operations, including copying. 15 -------------- 17 The :mod:`shutil` module offers a number of high-level operations on files and 24 Even the higher-level file copying functions (:func:`shutil.copy`, 34 .. _file-operations: 37 ------------------------------ 41 Copy the contents of the file-like object *fsrc* to the file-like object *fdst*. 85 Similar to :func:`shutil.copy`, but metadata is copied as well -- in fact, 87 similar to the Unix command :program:`cp -p`. [all …]
|
| /external/python/cpython2/Lib/ |
| D | codecs.py | 1 """ codecs -- Python Codec Registry, API and helpers. 4 Written by Marc-Andre Lemburg (mal@lemburg.com). 36 # Byte Order Mark (BOM = ZERO WIDTH NO-BREAK SPACE = U+FEFF) 41 # UTF-8 44 # UTF-16, little endian 47 # UTF-16, big endian 50 # UTF-32, little endian 53 # UTF-32, big endian 58 # UTF-16, native endianness 61 # UTF-32, native endianness [all …]
|
| /external/python/pyserial/serial/urlhandler/ |
| D | protocol_socket.py | 4 # It does not support changing any port parameters and will silently ignore any 11 # (C) 2001-2015 Chris Liechti <cliechti@gmx.net> 13 # SPDX-License-Identifier: BSD-3-Clause 17 # - "debug" print diagnostic messages 67 # after connecting, switch to non-blocking, we're using select 99 # ignore errors. 133 # - - - - - - - - - - - - - - - - - - - - - - - - 162 # returns with empty lists -> thus abort read operation. 163 # For timeout == 0 (non-blocking operation) also abort when 167 buf = self._socket.recv(size - len(read)) [all …]
|
| /external/python/cpython3/Lib/ |
| D | codecs.py | 1 """ codecs -- Python Codec Registry, API and helpers. 4 Written by Marc-Andre Lemburg (mal@lemburg.com). 38 # Byte Order Mark (BOM = ZERO WIDTH NO-BREAK SPACE = U+FEFF) 43 # UTF-8 46 # UTF-16, little endian 49 # UTF-16, big endian 52 # UTF-32, little endian 55 # UTF-32, big endian 60 # UTF-16, native endianness 63 # UTF-32, native endianness [all …]
|
| /external/curl/tests/ |
| D | test1275.pl | 22 # SPDX-License-Identifier: curl 28 my @m = `git ls-files -- $root`; 30 my $errors; 35 'c-ares' => 1); 46 my $ignore = 0; 52 if(($l == 1) && ($line =~ /^---/)) { 53 # first line is a meta-data divider, skip to the next one 58 if($line !~ /^---/) { 65 # start or stop ignore-mode 66 $ignore ^= 1; [all …]
|