Home
last modified time | relevance | path

Searched refs:cachekey (Results 1 – 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
DvkPrograms.cpp427 std::string cachekey; in buildProgram() local
435 getCompileEnvironment(cachekey); in buildProgram()
436 getBuildOptions(cachekey, program.buildOptions, optimizationRecipe); in buildProgram()
442 cachekey += glu::getShaderTypeName((glu::ShaderType)i); in buildProgram()
449 cachekey = cachekey + shaderstring; in buildProgram()
451 res = shadercacheLoad(cachekey, commandLine.getShaderCacheFilename()); in buildProgram()
502 shadercacheSave(res, cachekey, commandLine.getShaderCacheFilename()); in buildProgram()
512 std::string cachekey; in buildProgram() local
520 getCompileEnvironment(cachekey); in buildProgram()
521 getBuildOptions(cachekey, program.buildOptions, optimizationRecipe); in buildProgram()
[all …]
/external/python/httplib2/python3/httplib2/
D__init__.py490 def _updateCache(request_headers, response_headers, content, cache, cachekey): argument
491 if cachekey:
495 cache.delete(cachekey)
531 cache.set(cachekey, text)
1625 cachekey, argument
1693 _updateCache(headers, response, content, self.cache, cachekey)
1730 _updateCache(headers, response, content, self.cache, cachekey)
1827 cachekey = defrag_uri
1828 cached_value = self.cache.get(cachekey)
1839 self.cache.delete(cachekey)
[all …]
/external/python/httplib2/python2/httplib2/
D__init__.py545 def _updateCache(request_headers, response_headers, content, cache, cachekey): argument
546 if cachekey:
550 cache.delete(cachekey)
580 cache.set(cachekey, text)
1820 cachekey, argument
1888 _updateCache(headers, response, content, self.cache, cachekey)
1925 _updateCache(headers, response, content, self.cache, cachekey)
2023 cachekey = defrag_uri.encode("utf-8")
2024 cached_value = self.cache.get(cachekey)
2038 self.cache.delete(cachekey)
[all …]
/external/python/cpython2/Lib/
Dre.py235 cachekey = (type(key[0]),) + key
237 p, loc = _cache[cachekey]
261 _cache[cachekey] = p, loc
Durllib.py1287 cachekey = (safe, always_safe)
1289 (quoter, safe) = _safe_quoters[cachekey]
1295 _safe_quoters[cachekey] = (quoter, safe)