/external/fonttools/Lib/fontTools/misc/ |
D | filenames.py | 9 characters, and clashes with existing files. 32 def userNameToFileName(userName, existing=[], prefix="", suffix=""): argument 36 upper- and lower-case characters, and clashes with existing files. 40 existing: A case-insensitive list of all existing file names. 130 if fullName.lower() in existing: 131 fullName = handleClash1(userName, existing, prefix, suffix) 136 def handleClash1(userName, existing=[], prefix="", suffix=""): argument 138 existing should be a case-insensitive list 139 of all existing file names. 143 >>> existing = ["a" * 5] [all …]
|
/external/leakcanary2/shark-graph/src/main/java/shark/internal/hppc/ |
D | LongLongScatterMap.kt | 91 var existing = keys[slot] in set() variable 92 while (existing != 0L) { in set() 93 if (existing == key) { in set() 99 existing = keys[slot] in set() 125 var existing = keys[slot] in remove() variable 126 while (existing != 0L) { in remove() 127 if (existing == key) { in remove() 133 existing = keys[slot] in remove() 154 var existing = keys[slot] in getSlot() variable 155 while (existing != 0L) { in getSlot() [all …]
|
D | LongScatterSet.kt | 68 var existing: Long in elementSequence() variable 71 existing = keys[slot] in elementSequence() 72 if (existing != 0L) { in elementSequence() 73 return@generateSequence existing in elementSequence() 104 var existing = keys[slot] in add() variable 105 while (existing != 0L) { in add() 106 if (existing == key) { in add() 110 existing = keys[slot] in add() 131 var existing = keys[slot] in contains() variable 132 while (existing != 0L) { in contains() [all …]
|
D | LongObjectScatterMap.kt | 87 var existing = keys[slot] in set() variable 88 while (existing != 0L) { in set() 89 if (existing == key) { in set() 95 existing = keys[slot] in set() 121 var existing = keys[slot] in remove() variable 122 while (existing != 0L) { in remove() 123 if (existing == key) { in remove() 129 existing = keys[slot] in remove() 144 var existing = keys[slot] in get() variable 145 while (existing != 0L) { in get() [all …]
|
/external/fonttools/Lib/fontTools/ufoLib/ |
D | filenames.py | 95 def userNameToFileName(userName: str, existing=(), prefix="", suffix=""): argument 97 `existing` should be a set-like object. 177 if fullName.lower() in existing: 178 fullName = handleClash1(userName, existing, prefix, suffix) 183 def handleClash1(userName, existing=[], prefix="", suffix=""): argument 185 existing should be a case-insensitive list 186 of all existing file names. 190 >>> existing = ["a" * 5] 192 >>> e = list(existing) 193 >>> handleClash1(userName="A" * 5, existing=e, [all …]
|
/external/google-cloud-java/java-dlp/proto-google-cloud-dlp-v2/src/main/java/com/google/privacy/dlp/v2/ |
D | OutputStorageConfigOrBuilder.java | 30 * Store findings in an existing table or a new table in an existing 35 * For Inspect, each column in an existing output table must have the same 37 * For Risk, an existing output table should be the output of a previous 53 * Store findings in an existing table or a new table in an existing 58 * For Inspect, each column in an existing output table must have the same 60 * For Risk, an existing output table should be the output of a previous 76 * Store findings in an existing table or a new table in an existing 81 * For Inspect, each column in an existing output table must have the same 83 * For Risk, an existing output table should be the output of a previous 100 * from the `Finding` object. If appending to an existing table, any columns [all …]
|
D | OutputStorageConfig.java | 345 * Store findings in an existing table or a new table in an existing 350 * For Inspect, each column in an existing output table must have the same 352 * For Risk, an existing output table should be the output of a previous 371 * Store findings in an existing table or a new table in an existing 376 * For Inspect, each column in an existing output table must have the same 378 * For Risk, an existing output table should be the output of a previous 400 * Store findings in an existing table or a new table in an existing 405 * For Inspect, each column in an existing output table must have the same 407 * For Risk, an existing output table should be the output of a previous 432 * from the `Finding` object. If appending to an existing table, any columns [all …]
|
/external/toybox/tests/ |
D | mkdir.test | 10 touch existing 11 testing "existing file" \ 12 "mkdir existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" "" 13 rm existing 15 mkdir existing 16 testing "existing dir" \ 17 "mkdir existing 2> /dev/null || echo yes" "yes\n" "" "" 18 rmdir existing 31 mkdir existing 32 testing "-p existing" "mkdir -p existing && echo yes" "yes\n" "" "" [all …]
|
D | mkfifo.test | 10 touch existing 11 testing "existing" \ 12 "mkfifo existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" "" 13 rm existing
|
/external/fonttools/Tests/ufoLib/ |
D | filenames_test.py | 57 existing = ["a" * 5] 59 e = list(existing) 61 handleClash1(userName="A" * 5, existing=e, prefix=prefix, suffix=suffix), 65 e = list(existing) 68 handleClash1(userName="A" * 5, existing=e, prefix=prefix, suffix=suffix), 72 e = list(existing) 75 handleClash1(userName="A" * 5, existing=e, prefix=prefix, suffix=suffix), 82 existing = [prefix + str(i) + suffix for i in range(100)] 84 e = list(existing) 86 handleClash2(existing=e, prefix=prefix, suffix=suffix), [all …]
|
/external/fonttools/Tests/misc/ |
D | filenames_test.py | 74 existing = ["a" * 5] 76 e = list(existing) 78 handleClash1(userName="A" * 5, existing=e, prefix=prefix, suffix=suffix), 82 e = list(existing) 85 handleClash1(userName="A" * 5, existing=e, prefix=prefix, suffix=suffix), 89 e = list(existing) 92 handleClash1(userName="A" * 5, existing=e, prefix=prefix, suffix=suffix), 99 existing = [prefix + str(i) + suffix for i in range(100)] 101 e = list(existing) 103 handleClash2(existing=e, prefix=prefix, suffix=suffix), [all …]
|
/external/tensorflow/tensorflow/compiler/xla/g3doc/ |
D | developing_new_backend.md | 10 be significantly simpler and scalable than implementing every existing 15 1. Existing CPU architecture not yet officially supported by XLA, with or 16 without an existing [LLVM](http://llvm.org) backend. 17 2. Non-CPU-like hardware with an existing LLVM backend. 18 3. Non-CPU-like hardware without an existing LLVM backend. 23 ## Scenario 1: Existing CPU architecture not yet officially supported by XLA 25 In this scenario, start by looking at the existing 37 If there is no existing LLVM backend but another kind of code generator exists, 38 it should be possible to reuse most of the existing CPU backend. 40 ## Scenario 2: Non-CPU-like hardware with an existing LLVM backend [all …]
|
/external/llvm/test/CodeGen/AArch64/ |
D | bitfield-insert.ll | 26 define void @test_whole32(i32* %existing, i32* %new) { 31 %oldval = load volatile i32, i32* %existing 39 store volatile i32 %combined, i32* %existing 44 define void @test_whole64(i64* %existing, i64* %new) { 50 %oldval = load volatile i64, i64* %existing 58 store volatile i64 %combined, i64* %existing 63 define void @test_whole32_from64(i64* %existing, i64* %new) { 71 %oldval = load volatile i64, i64* %existing 78 store volatile i64 %combined, i64* %existing 83 define void @test_32bit_masked(i32 *%existing, i32 *%new) { [all …]
|
/external/skia/src/sksl/ir/ |
D | SkSLBlock.cpp | 68 std::unique_ptr<Statement> Block::MakeCompoundStatement(std::unique_ptr<Statement> existing, in MakeCompoundStatement() argument 71 if (!existing || existing->isEmpty()) { in MakeCompoundStatement() 75 return existing; in MakeCompoundStatement() 78 // If the existing statement is a compound-statement Block, append the additional statement. in MakeCompoundStatement() 79 if (existing->is<Block>()) { in MakeCompoundStatement() 80 SkSL::Block& block = existing->as<Block>(); in MakeCompoundStatement() 83 return existing; in MakeCompoundStatement() 87 // The existing statement was not a compound-statement Block; create one, and put both in MakeCompoundStatement() 89 Position pos = existing->fPosition.rangeThrough(additional->fPosition); in MakeCompoundStatement() 92 stmts.push_back(std::move(existing)); in MakeCompoundStatement()
|
/external/flac/include/FLAC/ |
D | metadata.h | 116 * Unless you will be using the level 1 or 2 interfaces to modify existing 154 * an existing structure. It need not be initialized. 374 * \param iterator A pointer to an existing iterator. 384 * \param iterator A pointer to an existing iterator. 400 * \param iterator A pointer to an existing iterator. 422 * \param iterator A pointer to an existing iterator. 433 * \param iterator A pointer to an existing initialized iterator. 447 * \param iterator A pointer to an existing initialized iterator. 460 * \param iterator A pointer to an existing initialized iterator. 475 * \param iterator A pointer to an existing initialized iterator. [all …]
|
/external/autotest/server/site_tests/bluetooth_AdapterCLHealth/ |
D | control.cl_sdp_service_search_attribute_request_test | 19 * non-existing Service, existing Attribute 20 * existing Service, non-existing Attribute 21 * non-existing Service, non-existing Attribute 22 * existing Service, existing Attribute
|
/external/pigweed/pw_bluetooth_sapphire/lib/cpp-string/ |
D | string_printf_test.cc | 71 std::string s = "existing"; in TEST() 73 EXPECT_EQ("existing", s); in TEST() 76 std::string s = "existing"; in TEST() 81 std::string s = "existing"; in TEST() 86 std::string s = "existing"; in TEST() 93 EXPECT_EQ("existing", VAListHelper([](va_list ap) -> std::string { in TEST() 94 std::string s = "existing"; in TEST() 99 std::string s = "existing"; in TEST() 106 std::string s = "existing"; in TEST() 114 std::string s = "existing"; in TEST()
|
/external/mesa3d/src/compiler/glsl/ |
D | glsl_symbol_table.cpp | 139 symbol_table_entry *existing = get_entry(v->name); in add_variable() local 141 /* If there's already an existing function (not a constructor!) in in add_variable() 142 * the current scope, just update the existing entry to include 'v'. in add_variable() 144 if (existing->v == NULL && existing->t == NULL) { in add_variable() 145 existing->v = v; in add_variable() 149 /* If not declared at this scope, add a new entry. But if an existing in add_variable() 154 if (existing != NULL) in add_variable() 155 entry->f = existing->f; in add_variable() 196 symbol_table_entry *existing = get_entry(f->name); in add_function() local 197 if ((existing->f == NULL) && (existing->t == NULL)) { in add_function() [all …]
|
/external/sg3_utils/doc/ |
D | sg_wr_mode.8 | 14 or 10 byte variant) command to fetch the existing mode data which includes 33 the existing mode page are printed out. In this case the mode page is 37 must match the existing mode page in various aspects unless the 44 existing mode page supplies bit positions corresponding to clear bits. 46 than the existing mode page. If the mask is shorter than the contents then 48 than the existing mode page then the remaining bytes are taken from the 49 existing mod page. 52 mode page without any prior checks on the existing mode page. This should 53 only be required for vendor specific mode pages. The existing mode data 88 doesn't do checks on the existing mode page. Note that \fIDEVICE\fR may [all …]
|
/external/openthread/third_party/mbedtls/repo/docs/architecture/psa-migration/ |
D | testing.md | 35 in order to create PK contexts that can then be passed to existing TLS and 45 - in `test_suite_pk` we modified the existing `pk_psa_sign` test function to 50 - integration testing of the new API with each existing API which should 57 existing `mbedtls_x509write_csr_set_key()`. (And also 74 - in `test_suite_cipher`, the existing test functions `auth_crypt_tv` and 78 - usually already covered by existing tests for higher-level modules: 80 covered by running the existing TLS tests in a build with 94 be already be covered by running the existing tests in a build with 95 `MBEDTLS_USE_PSA_CRYPTO` enabled; however we need to make sure the existing
|
/external/mbedtls/docs/architecture/psa-migration/ |
D | testing.md | 35 in order to create PK contexts that can then be passed to existing TLS and 45 - in `test_suite_pk` we modified the existing `pk_psa_sign` test function to 50 - integration testing of the new API with each existing API which should 57 existing `mbedtls_x509write_csr_set_key()`. (And also 74 - in `test_suite_cipher`, the existing test functions `auth_crypt_tv` and 78 - usually already covered by existing tests for higher-level modules: 80 covered by running the existing TLS tests in a build with 94 be already be covered by running the existing tests in a build with 95 `MBEDTLS_USE_PSA_CRYPTO` enabled; however we need to make sure the existing
|
/external/google-cloud-java/java-monitoring/proto-google-cloud-monitoring-v3/src/main/java/com/google/monitoring/v3/ |
D | UpdateSnoozeRequestOrBuilder.java | 68 * value for that field, the value of the field in the existing `Snooze` 71 * in the existing `Snooze` is set to its default value. 72 * Fields not listed retain their existing value. 96 * value for that field, the value of the field in the existing `Snooze` 99 * in the existing `Snooze` is set to its default value. 100 * Fields not listed retain their existing value. 124 * value for that field, the value of the field in the existing `Snooze` 127 * in the existing `Snooze` is set to its default value. 128 * Fields not listed retain their existing value.
|
/external/iproute2/man/man8/ |
D | ip-xfrm.8 | 411 ip xfrm state update update existing state in xfrm 413 ip xfrm state delete delete existing state in xfrm 414 ip xfrm state get get existing state in xfrm 415 ip xfrm state deleteall delete all existing state in xfrm 416 ip xfrm state list print out the list of existing state in xfrm 418 ip xfrm state count count all existing state in xfrm 555 ip xfrm policy update update an existing policy 556 ip xfrm policy delete delete an existing policy 557 ip xfrm policy get get an existing policy 558 ip xfrm policy deleteall delete all existing xfrm policies [all …]
|
/external/icing/icing/file/ |
D | version-util_test.cc | 633 // - Existing version -1, max_version -1 (invalid) 634 // - Existing enabled features = {} 652 // - Existing version -1, max_version 2 (invalid) 653 // - Existing enabled features = {} 671 // - Existing version 3, max_version 3 (pre v2 version check) 672 // - Existing enabled features = {} 690 // - Existing version 3, max_version 3 (pre v2 version check) 691 // - Existing enabled features = {} 710 // - Existing version 3, max_version 3 (pre v2 version check) 711 // - Existing enabled features = {} [all …]
|
/external/python/cpython3/Lib/logging/ |
D | config.py | 178 def _handle_existing_loggers(existing, child_loggers, disable_existing): argument 186 what was intended by the user. Also, allow existing loggers to NOT be 190 for log in existing: 224 #we don't want to lose the existing loggers, 226 #existing is set to contain all existing loggers, 229 #what's left in existing is the set of loggers 232 existing = list(root.manager.loggerDict.keys()) 237 existing.sort() 238 #We'll keep the list of existing loggers 247 if qn in existing: [all …]
|