/third_party/gn/src/gn/ |
H A D | resolved_target_data_unittest.cc | 35 ResolvedTargetData resolved; in TEST() local 37 const auto& a_deps = resolved.GetTargetDeps(&a); in TEST() 47 const auto& b_deps = resolved.GetTargetDeps(&b); in TEST() 61 ResolvedTargetData resolved; in TEST() local 72 // All lib[_dir]s should be set when target is resolved. in TEST() 73 const auto& all_libs = resolved.GetLinkedLibraries(&z); in TEST() 77 const auto& all_lib_dirs = resolved.GetLinkedLibraryDirs(&z); in TEST() 91 const auto& all_libs2 = resolved.GetLinkedLibraries(&shared); in TEST() 96 const auto& all_lib_dirs2 = resolved.GetLinkedLibraryDirs(&shared); in TEST() 106 const auto& all_libs3 = resolved in TEST() 128 ResolvedTargetData resolved; TEST() local 190 ResolvedTargetData resolved; TEST() local 213 ResolvedTargetData resolved; TEST() local 238 ResolvedTargetData resolved; TEST() local 297 ResolvedTargetData resolved; TEST() local 331 ResolvedTargetData resolved; TEST() local 348 ResolvedTargetData resolved; TEST() local 393 ResolvedTargetData resolved; TEST() local [all...] |
H A D | ninja_target_writer.cc | 43 void NinjaTargetWriter::SetResolvedTargetData(ResolvedTargetData* resolved) { in SetResolvedTargetData() argument 44 if (resolved) { in SetResolvedTargetData() 46 resolved_ptr_ = resolved; in SetResolvedTargetData() 56 return const_cast<ResolvedTargetData*>(&resolved()); in GetResolvedTargetData() 59 const ResolvedTargetData& NinjaTargetWriter::resolved() const { in resolved() function in NinjaTargetWriter 100 ResolvedTargetData* resolved, in RunAndWriteFile() 134 writer.SetResolvedTargetData(resolved); in RunAndWriteFile() 139 writer.SetResolvedTargetData(resolved); in RunAndWriteFile() 144 writer.SetResolvedTargetData(resolved); in RunAndWriteFile() 150 writer.SetResolvedTargetData(resolved); in RunAndWriteFile() 98 RunAndWriteFile( const Target* target, ResolvedTargetData* resolved, std::vector<OutputFile>* ninja_outputs) RunAndWriteFile() argument [all...] |
H A D | ninja_target_writer_unittest.cc | 50 const auto* resolved_ptr = &writer.resolved(); in TEST() 54 EXPECT_EQ(resolved_ptr, &writer.resolved()); in TEST() 69 ResolvedTargetData resolved; in TEST() local 72 writer.SetResolvedTargetData(&resolved); in TEST() 74 EXPECT_EQ(&resolved, &writer.resolved()); in TEST()
|
H A D | ninja_target_writer.h | 30 const ResolvedTargetData& resolved() const; 32 // Sets the ResolvedTargetData instance to return for future resolved() 35 void SetResolvedTargetData(ResolvedTargetData* resolved); 54 ResolvedTargetData* resolved = nullptr, 60 // Returns a writable pointer to resolved(). Only used internally. 123 // or it will be created lazily when resolved() is called, hence the need
|
/third_party/node/deps/npm/node_modules/pacote/lib/ |
H A D | dir.js | 17 // just the fully resolved filename 18 this.resolved = this.spec.fetchSpec 51 path: this.resolved, 55 npm_package_resolved: this.resolved, 57 npm_package_json: resolve(this.resolved, 'package.json'), 69 stream.resolved = this.resolved 79 const arb = new this.Arborist({ path: this.resolved }) 82 return packlist(this.tree, { path: this.resolved, prefix, workspaces }) 95 return this[_readPackageJson](this.resolved [all...] |
H A D | git.js | 58 this.resolved = this.spec.hosted 80 if (this.resolved) { 94 // NB: we always store the https url in resolved field if auth 139 return this.resolved 146 this.resolved = !this.spec.hosted ? withSha 159 return this[_clone](dir => this.resolved) 185 if (noPrepare.includes(this.resolved)) { 186 log.info('prepare', 'skip prepare, already seen', this.resolved) 189 noPrepare.push(this.resolved) 205 stream.resolved [all...] |
H A D | remote.js | 13 this.resolved = this.spec.fetchSpec 14 const resolvedURL = new URL(this.resolved) 18 this.resolved = new URL(resolvedURL.pathname, this.registry).href 23 this.pkgid = opts.pkgid ? opts.pkgid : `remote:${nameat}${this.resolved}` 45 fetch(this.resolved, fetchOpts).then(res => {
|
H A D | registry.js | 48 // XXX pacote <=9 has some logic to ignore opts.resolved if 49 // the resolved URL doesn't go to the same registry. 50 // Consider reproducing that here, to throw away this.resolved 55 // fetching the manifest sets resolved and (if present) integrity 57 if (!this.resolved) { 63 return this.resolved 147 this.resolved = mani._resolved = dist.tarball 217 resolved: mani._resolved, 336 resolved: mani._resolved, 354 return new RemoteFetcher(this.resolved, { [all...] |
/third_party/python/Tools/c-analyzer/c_analyzer/ |
H A D | info.py | 56 def from_resolved(cls, item, resolved, **extra): 57 if isinstance(resolved, TypeDeclaration): 58 return cls(item, typedecl=resolved, **extra) 60 typedeps, extra = cls._parse_raw_resolved(item, resolved, extra) 63 raise NotImplementedError((item, resolved, extra)) 65 raise NotImplementedError((item, resolved, extra)) 69 def _parse_raw_resolved(cls, item, resolved, extra_extra): 70 if resolved in (UNKNOWN, IGNORED): 71 return resolved, None 73 typedeps, extra = resolved [all...] |
H A D | __init__.py | 77 resolved = types[decl] 79 resolved = analyze_decl(decl) 80 if resolved and handle_unresolved: 81 typedeps, _ = resolved 84 raise NotImplementedError((decl, resolved)) 86 yield decl, resolved
|
H A D | analyze.py | 33 resolved = resolve_decl(decl, typespecs, knowntypespecs, types) 34 if resolved is None: 38 return resolved, None 39 return analyze_resolved(resolved, decl, types, knowntypes) 50 resolved = analyze_decl(decl) 51 if resolved is None: 56 typedeps, _ = resolved 80 # We don't have all dependencies resolved yet. 82 types[decl] = resolved 143 # The typedecl for the typespec hasn't been resolved ye [all...] |
/third_party/node/lib/internal/modules/esm/ |
H A D | resolve.js | 121 * @param {URL} url - The URL of the module being resolved. 123 * @param {string | URL} [base] - The base URL for the module being resolved. 144 `excluding the full filename and extension to the resolved file at "${ 268 * Finalizes the resolution of a module specifier by checking if the resolved pathname contains encoded "/" or "\\" 269 * characters, checking if the resolved pathname is a directory or file, and resolving any symlinks if necessary. 270 * @param {URL} resolved - The resolved URL object. 274 * @throws {ERR_INVALID_MODULE_SPECIFIER} - If the resolved pathname contains encoded "/" or "\\" characters. 275 * @throws {ERR_UNSUPPORTED_DIR_IMPORT} - If the resolved pathname is a directory. 276 * @throws {ERR_MODULE_NOT_FOUND} - If the resolved pathnam [all...] |
H A D | package_config.js | 24 * Returns the package configuration for the given resolved URL. 25 * @param {URL | string} resolved - The resolved URL. 28 function getPackageScopeConfig(resolved) { 29 let packageJSONUrl = new URL('./package.json', resolved); 37 specifier: resolved,
|
/third_party/node/deps/npm/node_modules/cross-spawn/lib/util/ |
H A D | resolveCommand.js | 24 let resolved; 27 resolved = which.sync(parsed.command, { 39 // If we successfully resolved, ensure that an absolute path is returned 41 if (resolved) { 42 resolved = path.resolve(hasCustomCwd ? parsed.options.cwd : '', resolved); 45 return resolved;
|
/third_party/skia/modules/skparagraph/src/ |
H A D | OneLineShaper.cpp | 43 // Fill all the gaps between unresolved blocks with resolved ones in commitRunBuffer() 45 // No unresolved blocks added - we resolved the block with one run entirely in commitRunBuffer() 51 // Nothing was resolved; preserve the initial run if it makes sense in commitRunBuffer() 67 for (auto& resolved : fResolvedBlocks) { in printState() 68 if (resolved.fRun == nullptr) { in printState() 70 resolved.fText.start, resolved.fText.end); in printState() 74 if (resolved.fRun->fFont.getTypeface() != nullptr) { in printState() 75 resolved.fRun->fFont.getTypeface()->getFamilyName(&name); in printState() 77 SkDebugf("[%zu:%zu) ", resolved in printState() 536 auto resolved = visitor(typeface); global() local [all...] |
/third_party/elfutils/libdwfl/ |
H A D | dwfl_module_getsym.c | 39 bool *resolved, bool adjust_st_value) in __libdwfl_getsym() 127 *resolved = false; in __libdwfl_getsym() 142 *resolved = ebl_resolve_sym_value (mod->ebl, &st_value); in __libdwfl_getsym() 143 if (! *resolved) in __libdwfl_getsym() 177 *resolved ? mod->main.elf : elf, in __libdwfl_getsym() 206 bool resolved; in dwfl_module_getsym_info() local 208 &resolved, false); in dwfl_module_getsym_info() 216 bool resolved; in INTDEF() local 218 &resolved, true); in INTDEF() 37 __libdwfl_getsym(Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Addr *addr, GElf_Word *shndxp, Elf **elfp, Dwarf_Addr *biasp, bool *resolved, bool adjust_st_value) __libdwfl_getsym() argument
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
H A D | TerritoryContainment.java | 82 SortedSetMultimap<String, String> resolved = TreeMultimap.create(graph); in TerritoryContainment() 83 resolve(WORLD, graph, resolved); in TerritoryContainment() 85 // have child regions from the resolved graph. in TerritoryContainment() 86 this.macroToLeafRegions = resolved.entries().stream() in TerritoryContainment() 96 String region, SetMultimap<String, String> graph, SetMultimap<String, String> resolved) { in resolve() 97 graph.get(region).forEach(sub -> resolved.putAll(region, resolve(sub, graph, resolved))); in resolve() 98 return resolved.get(region); in resolve() 95 resolve( String region, SetMultimap<String, String> graph, SetMultimap<String, String> resolved) resolve() argument
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/ |
H A D | consistent-resolve.js | 1 // take a path and a resolved value, and turn it into a resolution from 7 const consistentResolve = (resolved, fromPath, toPath, relPaths = false) => { 8 if (!resolved) { 21 } = npa(resolved, fromPath) 42 return resolved
|
H A D | dep-valid.js | 3 // Only relies on child.resolved, which MAY come from 19 // tarball/dir must have resolved to the same tgz on disk, but for 68 return child.resolved && npa(child.resolved).type === 'remote' 72 return child.resolved === requested.fetchSpec 82 const resRepo = npa(child.resolved || '') 132 if (child.resolved) { 133 return child.resolved.replace(/\\/g, '/') === `file:${requested.fetchSpec.replace(/\\/g, '/')}` 137 // sure that it resolved to the same file, but if it was the same
|
/third_party/node/test/fixtures/wpt/streams/writable-streams/ |
H A D | reentrant-strategy.any.js | 75 const resolved = []; 77 const readyPromise1 = writer.ready.then(() => resolved.push('ready1')); 80 .then(() => resolved.push('write')); 82 .then(() => resolved.push('ready2')); 84 .then(() => resolved.push('closed')); 87 assert_array_equals(resolved, ['ready1', 'write', 'ready2', 'closed'],
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
H A D | realpath.c | 10 char *realpath(const char *restrict filename, char *restrict resolved) in realpath() argument 23 return resolved ? strcpy(resolved, tmp) : strdup(tmp); in realpath()
|
/third_party/musl/src/misc/liteos_a/ |
H A D | realpath.c | 25 char *realpath(const char *restrict filename, char *restrict resolved) in realpath() argument 38 return resolved ? strcpy(resolved, tmp) : strdup(tmp); in realpath()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/ |
H A D | AlternateLocaleDataTest.java | 42 // Something that should only exist in the resolved data. in testLocaleData() 54 CldrData resolved = transformed.getDataForLocale("xx", RESOLVED); in testLocaleData() 58 assertValuesUnordered(resolved, altValue, other, inherited); in testLocaleData() 75 CldrData resolved = transformed.getDataForLocale("xx", RESOLVED); in testMissingSource() 79 assertValuesUnordered(resolved, target); in testMissingSource() 98 CldrData resolved = transformed.getDataForLocale("xx", RESOLVED); in testMissingTarget() 103 assertValuesUnordered(resolved, source, other); in testMissingTarget()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/testing/ |
H A D | FakeDataSupplier.java | 58 Map<CldrPath, CldrValue> resolved = new HashMap<>(); in getDataForLocale() 61 if (!resolved.containsKey(p)) { in getDataForLocale() 62 resolved.put(p, v); in getDataForLocale() 70 values = resolved.values(); in getDataForLocale()
|
/third_party/node/deps/npm/lib/utils/ |
H A D | sbom-cyclonedx.js | 81 const purl = npa.toPurl(spec) + (isGitNode(node) ? `?vcs_url=${node.resolved}` : '') 143 if (!node.isLink && node.resolved) { 144 component.externalReferences.push(extRef(REF_DISTRIBUTION, node.resolved)) 188 if (!node.resolved) { 193 const { type } = npa(node.resolved)
|