| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
| D | PluralRulesLoader.java | 188 String cacheKey = rulesId + "/" + rangesId; // could end with "/null" (this is OK) in getOrCreateRulesForLocale() local 193 hasRules = pluralRulesCache.containsKey(cacheKey); in getOrCreateRulesForLocale() 195 rules = pluralRulesCache.get(cacheKey); // can be null in getOrCreateRulesForLocale() 220 if (pluralRulesCache.containsKey(cacheKey)) { in getOrCreateRulesForLocale() 221 rules = pluralRulesCache.get(cacheKey); in getOrCreateRulesForLocale() 223 pluralRulesCache.put(cacheKey, rules); // can be null in getOrCreateRulesForLocale()
|
| D | ResourceBundleWrapper.java | 148 String cacheKey = disableFallback ? name : name + '#' + defaultID; in instantiateBundle() local 149 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() { in instantiateBundle()
|
| D | ICUResourceBundle.java | 1363 String cacheKey = openType != OpenType.LOCALE_DEFAULT_ROOT ? in instantiateBundle() 1366 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() { in instantiateBundle()
|
| /third_party/node/deps/npm/node_modules/make-fetch-happen/lib/cache/ |
| D | key.js | 12 const cacheKey = (request) => { function 17 module.exports = cacheKey
|
| D | entry.js | 9 const cacheKey = require('./key.js') constant 127 this.key = cacheKey(request) 143 var matches = await cacache.index.compact(options.cachePath, cacheKey(request), (A, B) => { 196 const key = cacheKey(request)
|
| /third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
| D | ShaderModuleVk.cpp | 118 auto cacheKey = std::make_pair(layout, entryPointName); in GetTransformedModuleHandle() local 120 mTransformedShaderModuleCache->FindShaderModule(cacheKey); in GetTransformedModuleHandle() 194 mTransformedShaderModuleCache->AddOrGetCachedShaderModule(cacheKey, newHandle); in GetTransformedModuleHandle()
|
| /third_party/typescript/src/tsserver/ |
| D | nodeServer.ts | 204 const cacheKey = extractWatchDirectoryCacheKey(path, currentDrive); constant 205 let status = cacheKey && statusCache.get(cacheKey); 208 logger.info(`${cacheKey} for path ${path} not found in cache...`); 227 if (cacheKey) { 228 statusCache.set(cacheKey, status);
|
| /third_party/typescript/src/harness/ |
| D | fakesHosts.ts | 344 …const cacheKey = this.vfs.shadowRoot && `SourceFile[languageVersion=${languageVersion},setParentNo… constant 345 if (cacheKey) { 347 const sourceFileFromMetadata = meta.get(cacheKey) as ts.SourceFile | undefined; 361 if (cacheKey) { 383 fs.filemeta(canonicalFileName).set(cacheKey, parsed);
|
| /third_party/node/deps/icu-small/source/i18n/ |
| D | tzgnames.cpp | 819 … PartialLocationKey* cacheKey = (PartialLocationKey *)uprv_malloc(sizeof(PartialLocationKey)); in getPartialLocationName() local 820 if (cacheKey != nullptr) { in getPartialLocationName() 821 cacheKey->tzID = key.tzID; in getPartialLocationName() 822 cacheKey->mzID = key.mzID; in getPartialLocationName() 823 cacheKey->isLong = key.isLong; in getPartialLocationName() 824 uhash_put(fPartialLocationNamesMap, (void *)cacheKey, (void *)uplname, &status); in getPartialLocationName() 826 uprv_free(cacheKey); in getPartialLocationName()
|
| /third_party/icu/icu4c/source/i18n/ |
| D | tzgnames.cpp | 819 … PartialLocationKey* cacheKey = (PartialLocationKey *)uprv_malloc(sizeof(PartialLocationKey)); in getPartialLocationName() local 820 if (cacheKey != NULL) { in getPartialLocationName() 821 cacheKey->tzID = key.tzID; in getPartialLocationName() 822 cacheKey->mzID = key.mzID; in getPartialLocationName() 823 cacheKey->isLong = key.isLong; in getPartialLocationName() 824 uhash_put(fPartialLocationNamesMap, (void *)cacheKey, (void *)uplname, &status); in getPartialLocationName() 826 uprv_free(cacheKey); in getPartialLocationName()
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| D | tzgnames.cpp | 822 … PartialLocationKey* cacheKey = (PartialLocationKey *)uprv_malloc(sizeof(PartialLocationKey)); in getPartialLocationName() local 823 if (cacheKey != NULL) { in getPartialLocationName() 824 cacheKey->tzID = key.tzID; in getPartialLocationName() 825 cacheKey->mzID = key.mzID; in getPartialLocationName() 826 cacheKey->isLong = key.isLong; in getPartialLocationName() 827 uhash_put(fPartialLocationNamesMap, (void *)cacheKey, (void *)uplname, &status); in getPartialLocationName() 829 uprv_free(cacheKey); in getPartialLocationName()
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
| D | ResourceBundleWrapper.java | 150 String cacheKey = disableFallback ? name : name + '#' + defaultID; in instantiateBundle() local 151 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() { in instantiateBundle()
|
| D | ICUResourceBundle.java | 1230 String cacheKey = openType != OpenType.LOCALE_DEFAULT_ROOT ? 1233 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() {
|
| /third_party/node/lib/internal/ |
| D | vm.js | 105 callbackMap.set(result.cacheKey, {
|
| /third_party/weex-loader/src/ |
| D | util.js | 42 const cacheKey = hash.digest('hex') 43 return `./${filename}?${cacheKey}`
|
| /third_party/node/lib/internal/modules/cjs/ |
| D | loader.js | 592 const cacheKey = request + '\x00' + ArrayPrototypeJoin(paths, '\x00'); 593 const entry = Module._pathCache[cacheKey]; 684 Module._pathCache[cacheKey] = filename; 1056 const cacheKey = request + '\x00' + 1058 Module._pathCache[cacheKey] = selfResolved;
|
| /third_party/typescript/src/compiler/ |
| D | program.ts | 487 const cacheKey = mode !== undefined ? `${mode}|${strName}` : strName; constant 488 if (cache.has(cacheKey)) { 489 result = cache.get(cacheKey)!; 492 … cache.set(cacheKey, result = loader(strName, containingFile, redirectedReference, mode)); 618 const cacheKey = mode !== undefined ? `${mode}|${name}` : name; constant 619 if (cache.has(cacheKey)) { 620 result = cache.get(cacheKey)!; 623 … cache.set(cacheKey, result = loader(name, mode, containingFileName, redirectedReference));
|
| D | checker.ts | 6459 const cacheKey = getSpecifierCacheKey(contextFile.path, resolutionMode); 6461 let specifier = links.specifierCache && links.specifierCache.get(cacheKey); 6485 links.specifierCache.set(cacheKey, specifier); 39747 …function getCachedIterationTypes(type: Type, cacheKey: MatchingKeys<IterableOrIteratorType, Iterat… 39748 return (type as IterableOrIteratorType)[cacheKey]; 39751 …function setCachedIterationTypes(type: Type, cacheKey: MatchingKeys<IterableOrIteratorType, Iterat… 39752 return (type as IterableOrIteratorType)[cacheKey] = cachedTypes; 39801 …const cacheKey = use & IterationUse.AllowsAsyncIterablesFlag ? "iterationTypesOfAsyncIterable" : "… constant 39802 const cachedTypes = getCachedIterationTypes(type, cacheKey); 39816 setCachedIterationTypes(type, cacheKey, noIterationTypes); [all …]
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 56369 var cacheKey = getSpecifierCacheKey(contextFile.path, resolutionMode); 56371 var specifier = links.specifierCache && links.specifierCache.get(cacheKey); 56387 links.specifierCache.set(cacheKey, specifier); 86956 function getCachedIterationTypes(type, cacheKey) { argument 86957 return type[cacheKey]; 86959 function setCachedIterationTypes(type, cacheKey, cachedTypes) { argument 86960 return type[cacheKey] = cachedTypes; 87008 …var cacheKey = use & 2 /* IterationUse.AllowsAsyncIterablesFlag */ ? "iterationTypesOfAsyncIterabl… 87009 var cachedTypes = getCachedIterationTypes(type, cacheKey); 87024 setCachedIterationTypes(type, cacheKey, noIterationTypes); [all …]
|
| D | tsc.js | 46755 var cacheKey = getSpecifierCacheKey(contextFile.path, resolutionMode); 46757 var specifier = links.specifierCache && links.specifierCache.get(cacheKey); 46769 links.specifierCache.set(cacheKey, specifier); 73231 function getCachedIterationTypes(type, cacheKey) { argument 73232 return type[cacheKey]; 73234 function setCachedIterationTypes(type, cacheKey, cachedTypes) { argument 73235 return type[cacheKey] = cachedTypes; 73262 var cacheKey = use & 2 ? "iterationTypesOfAsyncIterable" : "iterationTypesOfIterable"; 73263 var cachedTypes = getCachedIterationTypes(type, cacheKey); 73278 setCachedIterationTypes(type, cacheKey, noIterationTypes); [all …]
|
| /third_party/node/deps/corepack/dist/lib/ |
| D | corepack.cjs | 30328 const cacheKey = `${protocol}+${proxy}`; 30329 let agent = this.cache.get(cacheKey); 30338 this.cache.set(cacheKey, agent);
|