Searched refs:cachekey (Results 1 – 5 of 5) sorted by relevance
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkPrograms.cpp | 428 std::string cachekey; in buildProgram() local 436 getCompileEnvironment(cachekey); in buildProgram() 437 getBuildOptions(cachekey, program.buildOptions, optimizationRecipe); in buildProgram() 443 cachekey += glu::getShaderTypeName((glu::ShaderType)i); in buildProgram() 450 cachekey = cachekey + shaderstring; in buildProgram() 452 res = shadercacheLoad(cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 503 shadercacheSave(res, cachekey, commandLine.getShaderCacheFilename()); in buildProgram() 513 std::string cachekey; in buildProgram() local 521 getCompileEnvironment(cachekey); in buildProgram() 522 getBuildOptions(cachekey, program.buildOptions, optimizationRecipe); in buildProgram() [all …]
|
/external/python/httplib2/python2/httplib2/ |
D | __init__.py | 551 def _updateCache(request_headers, response_headers, content, cache, cachekey): argument 552 if cachekey: 556 cache.delete(cachekey) 586 cache.set(cachekey, text) 1830 cachekey, argument 1898 _updateCache(headers, response, content, self.cache, cachekey) 1935 _updateCache(headers, response, content, self.cache, cachekey) 2034 cachekey = None 2037 cachekey = defrag_uri.encode("utf-8") 2038 cached_value = self.cache.get(cachekey) [all …]
|
/external/python/httplib2/python3/httplib2/ |
D | __init__.py | 497 def _updateCache(request_headers, response_headers, content, cache, cachekey): argument 498 if cachekey: 502 cache.delete(cachekey) 538 cache.set(cachekey, text) 1636 cachekey, argument 1704 _updateCache(headers, response, content, self.cache, cachekey) 1741 _updateCache(headers, response, content, self.cache, cachekey) 1839 cachekey = None 1842 cachekey = defrag_uri 1843 cached_value = self.cache.get(cachekey) [all …]
|
/external/python/cpython2/Lib/ |
D | re.py | 235 cachekey = (type(key[0]),) + key 237 p, loc = _cache[cachekey] 261 _cache[cachekey] = p, loc
|
D | urllib.py | 1287 cachekey = (safe, always_safe) 1289 (quoter, safe) = _safe_quoters[cachekey] 1295 _safe_quoters[cachekey] = (quoter, safe)
|