/third_party/node/deps/npm/node_modules/libnpx/ |
D | index.js | 56 const existing = args[0] 63 if ((!existing && !argv.call) || argv.packageRequested) { 81 !existing && 103 return existing 108 return existing 110 }).then(existing => { 111 return execCommand(existing, argv) 255 return findNodeScript(_existing, argv).then(existing => { 257 …if (existing && !argv.alwaysSpawn && !argv.nodeArg && !argv.shell && existing !== process.argv[1])… 266 existing // node script path. `runMain()` will set this as the new main [all …]
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
D | RangeException.java | 31 Column<T> column, T value, RangeTree existing, RangeTree ranges, OverwriteMode mode) { in checkDisjoint() argument 32 RangeTree intersection = existing.intersect(ranges); in checkDisjoint() 35 throw new RangeException(column, value, existing, ranges, intersection, mode); in checkDisjoint() 41 RangeTree existing, in RangeException() argument 45 super(explain(checkNotNull(column), value, existing, ranges, intersection, checkNotNull(mode))); in RangeException() local 51 RangeTree existing, in explain() argument 60 value, column, mode, toLines(intersection), toLines(existing), toLines(ranges)); in explain()
|
/third_party/gettext/gettext-tools/tests/ |
D | msgmerge-properties-1 | 11 not\ existing=but with translation 14 !not\ existing\ without\ translation= 17 still\ existing=translation 28 still\ existing=here is normally no comment 43 still\ existing=translation
|
/third_party/skia/src/sksl/dsl/priv/ |
D | DSLWriter.cpp | 98 void DSLWriter::AddVarDeclaration(DSLStatement& existing, DSLVar& additional) { in AddVarDeclaration() argument 99 if (existing.fStatement->is<Block>()) { in AddVarDeclaration() 100 SkSL::Block& block = existing.fStatement->as<Block>(); in AddVarDeclaration() 103 } else if (existing.fStatement->is<VarDeclaration>()) { in AddVarDeclaration() 106 stmts.push_back(std::move(existing.fStatement)); in AddVarDeclaration() 108 existing.fStatement = SkSL::Block::MakeUnscoped(/*line=*/-1, std::move(stmts)); in AddVarDeclaration() 109 } else if (existing.fStatement->isEmpty()) { in AddVarDeclaration() 111 existing.fStatement = Declare(additional).release(); in AddVarDeclaration()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | glsl_symbol_table.cpp | 139 symbol_table_entry *existing = get_entry(v->name); in add_variable() local 144 if (existing->v == NULL && existing->t == NULL) { in add_variable() 145 existing->v = v; 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() 198 existing->f = f; in add_function()
|
/third_party/toybox/tests/ |
D | mkdir.test | 10 touch existing 13 rm existing 26 mkdir existing 28 rmdir existing
|
/third_party/json/doc/mkdocs/docs/features/element_access/ |
D | checked_access.md | 48 …reater than or equal to the array size) or the passed object key is non-existing, an exception is … 74 | access to existing object key | reference to existing value is returned | const reference to exis… 75 | access to valid array index | reference to existing value is returned | const reference to existi… 76 | access to non-existing object key | `basic_json::out_of_range` exception is thrown | `basic_json:…
|
D | unchecked_access.md | 30 … can be modify the original value. In case the passed object key is non-existing, a `#!json null` … 87 - It is **undefined behavior** to access a const object with a non-existing key. 99 | access to existing object key | reference to existing value is returned | const reference to exis… 100 | access to valid array index | reference to existing value is returned | const reference to existi… 101 | access to non-existing object key | reference to newly inserted `#!json null` value is returned |…
|
/third_party/musl/src/unistd/ |
D | symlink.c | 5 int symlink(const char *existing, const char *new) in symlink() argument 8 return syscall(SYS_symlink, existing, new); in symlink() 10 return syscall(SYS_symlinkat, existing, AT_FDCWD, new); in symlink()
|
D | link.c | 5 int link(const char *existing, const char *new) in link() argument 8 return syscall(SYS_link, existing, new); in link() 10 return syscall(SYS_linkat, AT_FDCWD, existing, AT_FDCWD, new, 0); in link()
|
/third_party/curl/tests/data/ |
D | test534 | 8 non-existing host 32 FTP RETR twice using multi: non-existing host and non-existing file 35 ftp://non-existing-host.haxx.se/path/%TESTNUMBER ftp://%HOSTIP:%FTPPORT/path/%TESTNUMBER
|
D | test507 | 7 non-existing host 21 multi interface get with non-existing host name 27 http://non-existing-host.haxx.se/
|
D | test20 | 6 non-existing host 25 attempt connect to non-existing host name 28 --ipv4 non-existing-host.haxx.se.
|
/third_party/mesa3d/src/panfrost/lib/genxml/ |
D | decode_common.c | 96 struct pandecode_mapped_memory *existing = in pandecode_inject_mmap() local 99 if (existing && existing->gpu_va == gpu_va) { in pandecode_inject_mmap() 100 existing->length = sz; in pandecode_inject_mmap() 101 existing->addr = cpu; in pandecode_inject_mmap() 102 pandecode_add_name(existing, gpu_va, name); in pandecode_inject_mmap()
|
/third_party/python/Lib/logging/ |
D | config.py | 163 def _handle_existing_loggers(existing, child_loggers, disable_existing): argument 175 for log in existing: 217 existing = list(root.manager.loggerDict.keys()) 222 existing.sort() 232 if qn in existing: 233 i = existing.index(qn) + 1 # start with the entry after qn 236 num_existing = len(existing) 238 if existing[i][:pflen] == prefixed: 239 child_loggers.append(existing[i]) 241 existing.remove(qn) [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | jsxIntrinsicElementsTypeArgumentErrors.tsx | 14 const e = <div<Record<object, object>>></div>; // existing but incorrect nested type args 16 const f = <div<number>></div>; // existing type argument with no internal issues 27 const k = <div<Record<object, object>>/>; // existing but incorrect nested type args 29 const l = <div<number>/>; // existing type argument with no internal issues
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/ |
D | ide_config_test.dart | 124 testUsingContext("doesn't touch existing files without --overwrite", () async { 132 'existing', 162 testUsingContext('overwrites existing files with --overwrite', () async { 170 'existing', 203 templateManifest[flutterIml] = 'flutter existing'; 206 'existing', 228 'existing', 233 'existing', 255 'existing', 261 'existing', [all …]
|
/third_party/flutter/flutter/packages/flutter_test/lib/src/ |
D | window.dart | 66 /// Deletes any existing test device pixel ratio and returns to using the real 82 /// Deletes any existing test physical size and returns to using the real 98 /// Deletes any existing test physical depth and returns to using the real 114 /// Deletes any existing test view insets and returns to using the real view 130 /// Deletes any existing test view padding and returns to using the real 145 /// Deletes any existing test padding and returns to using the real padding. 166 /// Deletes any existing test locale and returns to using the real locale. 180 /// Deletes any existing test locales and returns to using the real locales. 210 /// Deletes any existing test text scale factor and returns to using the real 232 /// Deletes any existing test platform brightness and returns to using the [all …]
|
/third_party/node/lib/ |
D | events.js | 431 let existing; 450 existing = events[type]; 453 if (existing === undefined) { 458 if (typeof existing === 'function') { 460 existing = events[type] = 461 prepend ? [listener, existing] : [existing, listener]; 464 existing.unshift(listener); 466 existing.push(listener); 471 if (m > 0 && existing.length > m && !existing.warned) { 472 existing.warned = true; [all …]
|
/third_party/protobuf/python/ |
D | release.sh | 88 twine upload --skip-existing -r testpypi -u protobuf-wheel-test dist/* 96 twine upload --skip-existing -r testpypi -u protobuf-wheel-test dist/* 113 twine upload --skip-existing -u protobuf-packages dist/* 120 twine upload --skip-existing -u protobuf-packages dist/*
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_program_cache.c | 127 const struct crocus_compiled_shader *existing = entry->data; in find_existing_assembly() local 129 if (existing->map_size != assembly_size) in find_existing_assembly() 132 if (memcmp(map + existing->offset, assembly, assembly_size) == 0) in find_existing_assembly() 133 return existing; in find_existing_assembly() 199 const struct crocus_compiled_shader *existing = find_existing_assembly( in crocus_upload_shader() local 208 if (existing) { in crocus_upload_shader() 209 shader->offset = existing->offset; in crocus_upload_shader() 210 shader->map_size = existing->map_size; in crocus_upload_shader()
|
/third_party/node/deps/npm/test/tap/ |
D | install-order.js | 19 existing: false, property 29 existing: false, property 39 existing: false, property
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_error.data | 13 Non existing high error 16 Non existing low error 19 Non existing low and high error
|
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/ |
D | gendynapi.pl | 37 my %existing = (); 42 $existing{$1} = 1; 77 next if $existing{$fn}; # already slotted into the jump table.
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | SizedMRUCache.h | 81 auto existing = mStore.Peek(key); in eraseByKey() local 82 if (existing != mStore.end()) in eraseByKey() 84 mCurrentSize -= existing->second.size; in eraseByKey() 85 mStore.Erase(existing); in eraseByKey()
|