Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/framework/vulkan/
DvkPrograms.cpp558 std::string cachekey; in buildProgram() local
566 getCompileEnvironment(cachekey); in buildProgram()
567 getBuildOptions(cachekey, program.buildOptions, optimizationRecipe); in buildProgram()
573 cachekey += glu::getShaderTypeName((glu::ShaderType)i); in buildProgram()
580 cachekey = cachekey + shaderstring; in buildProgram()
582 res = shadercacheLoad(cachekey, commandLine.getShaderCacheFilename()); in buildProgram()
633 shadercacheSave(res, cachekey, commandLine.getShaderCacheFilename()); in buildProgram()
643 std::string cachekey; in buildProgram() local
651 getCompileEnvironment(cachekey); in buildProgram()
652 getBuildOptions(cachekey, program.buildOptions, optimizationRecipe); in buildProgram()
[all …]
/external/python/httplib2/python3/httplib2/
D__init__.py477 def _updateCache(request_headers, response_headers, content, cache, cachekey): argument
478 if cachekey:
482 cache.delete(cachekey)
518 cache.set(cachekey, text)
1580 cachekey, argument
1648 _updateCache(headers, response, content, self.cache, cachekey)
1685 _updateCache(headers, response, content, self.cache, cachekey)
1777 cachekey = defrag_uri
1778 cached_value = self.cache.get(cachekey)
1789 self.cache.delete(cachekey)
[all …]
/external/python/httplib2/python2/httplib2/
D__init__.py538 def _updateCache(request_headers, response_headers, content, cache, cachekey): argument
539 if cachekey:
543 cache.delete(cachekey)
573 cache.set(cachekey, text)
1781 cachekey, argument
1849 _updateCache(headers, response, content, self.cache, cachekey)
1886 _updateCache(headers, response, content, self.cache, cachekey)
1983 cachekey = defrag_uri.encode("utf-8")
1984 cached_value = self.cache.get(cachekey)
1998 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)