/external/chromium_org/tools/gyp/test/lib/ |
D | TestMac.py | 40 self._cache = {} 49 if 'Version' not in self._cache: 50 self._cache['Version'], self._cache['Build'] = self._XcodeVersion() 51 return self._cache['Version'] 54 if 'Build' not in self._cache: 55 self._cache['Version'], self._cache['Build'] = self._XcodeVersion() 56 return self._cache['Build'] 59 if 'SDKBuild' not in self._cache: 60 self._cache['SDKBuild'] = subprocess.check_output( 62 self._cache['SDKBuild'] = self._cache['SDKBuild'].rstrip('\n') [all …]
|
/external/libunwind/doc/ |
D | unw_flush_cache.tex | 8 \begin{Name}{3}{unw\_flush\_cache}{David Mosberger-Tang}{Programming Library}{unw\_flush\_cache}unw… 15 \Type{void} \Func{unw\_flush\_cache}(\Type{unw\_addr\_space\_t} \Var{as}, \Type{unw\_word\_t} \Var{… 19 The \Func{unw\_flush\_cache}() routine flushes all cached info as it 27 \Func{unw\_flush\_cache}() may flush more information than requested, 28 but \emph{never} less. In other words, \Func{unw\_flush\_cache}() may 36 The \Func{unw\_flush\_cache}() routine cannot fail and does not 41 The \Func{unw\_flush\_cache}() routine is thread-safe as well as safe to
|
D | unw_set_caching_policy.tex | 26 \Func{unw\_flush\_cache}() had been called. 38 appropriate calls to \Func{unw\_flush\_cache}() whenever the target 41 \Func{unw\_flush\_cache}() would have to be called (at least) for the 70 \SeeAlso{unw\_flush\_cache(3)}
|
D | libunwind.tex | 43 \Type{void} \Func{unw\_flush\_cache}(\Type{unw\_addr\_space\_t}, \Type{unw\_word\_t}, \Type{unw\_wo… 289 \Func{unw\_flush\_cache}(). The second facility is provided by 326 \SeeAlso{unw\_flush\_cache(3)},
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | cache_chain_object_store.py | 28 self._cache = {} 31 self._cache.update(mapping) 39 if key in self._cache: 40 cached_items[key] = self._cache.get(key) 64 self._cache[k] = v 79 self._cache.pop(k, None)
|
D | content_providers.py | 53 self._cache = None 69 self._cache = compiled_fs_factory.ForJson(local_fs) 71 if not self._cache: 72 self._cache = compiled_fs_factory.ForJson(host_file_system) 112 return self._cache.GetFromFile(CONTENT_PROVIDERS).Get()
|
D | redirector.py | 14 self._cache = compiled_fs_factory.ForJson(file_system) 33 rules = self._cache.GetFromFile( 68 self._cache.GetFromFile(posixpath.join(root, 'redirects.json')))
|
D | sidenav_data_source.py | 61 self._cache = server_instance.compiled_fs_factory.Create( 95 return self._cache.GetFromFile( 101 sidenav = self._cache.GetFromFile(
|
D | strings_data_source.py | 16 self._cache = server_instance.compiled_fs_factory.ForJson( 20 return self._cache.GetFromFile('%sstrings.json' % JSON_TEMPLATES)
|
D | path_canonicalizer.py | 35 self._cache = object_store_creator.Create( 41 cached_future = self._cache.GetMulti(('canonical_paths', 72 self._cache.SetMulti({
|
D | api_categorizer.py | 18 self._cache = compiled_fs_factory.Create(file_system, 23 return self._cache.GetFromFileListing(
|
D | features_bundle.py | 67 self._cache = compiled_fs_factory.Create(file_system, populate, type(self)) 90 return self._cache.GetFromFile(self._json_path)
|
D | redirector_test.py | 108 self._redirector._cache._file_object_store.Get(
|
D | sidenav_data_source_test.py | 155 sidenav_data_source._cache._file_object_store.Get(
|
D | rietveld_patcher.py | 81 self._cache = None
|
/external/valgrind/main/helgrind/ |
D | hg_wordset.c | 87 WCache* _cache = &(_zzcache); \ 88 tl_assert(_cache->dynMax >= 1); \ 89 tl_assert(_cache->dynMax <= N_WCACHE_STAT_MAX); \ 90 tl_assert(_cache->inUse >= 0); \ 91 tl_assert(_cache->inUse <= _cache->dynMax); \ 92 if (_cache->inUse > 0) { \ 93 if (_cache->ent[0].arg1 == _arg1 \ 94 && _cache->ent[0].arg2 == _arg2) \ 95 return (_retty)_cache->ent[0].res; \ 96 for (_i = 1; _i < _cache->inUse; _i++) { \ [all …]
|
/external/chromium_org/tools/json_schema_compiler/ |
D | json_schema.py | 40 _cache = {} variable 45 if filename not in _cache: 46 _cache[filename] = Load(filename) 49 return copy.deepcopy(_cache[filename])
|
/external/freetype/src/cache/ |
D | ftccache.h | 213 FTC_Cache _cache = FTC_CACHE(cache); \ 223 _bucket = _pnode = FTC_NODE__TOP_FOR_HASH( _cache, _hash ); \ 234 _nodcomp( _node, query, _cache, &_list_changed ) ) \ 243 _bucket = _pnode = FTC_NODE__TOP_FOR_HASH( _cache, _hash ); \ 268 FTC_Manager _manager = _cache->manager; \ 279 error = FTC_Cache_NewNode( _cache, _hash, query, &_node ); \
|
/external/chromium_org/third_party/freetype/src/cache/ |
D | ftccache.h | 213 FTC_Cache _cache = FTC_CACHE(cache); \ 223 _bucket = _pnode = FTC_NODE__TOP_FOR_HASH( _cache, _hash ); \ 234 _nodcomp( _node, query, _cache, &_list_changed ) ) \ 243 _bucket = _pnode = FTC_NODE__TOP_FOR_HASH( _cache, _hash ); \ 268 FTC_Manager _manager = _cache->manager; \ 279 error = FTC_Cache_NewNode( _cache, _hash, query, &_node ); \
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
D | Encoder.java | 17 int _cache; field in Encoder 37 _cache = 0; in Init() 57 int temp = _cache; in ShiftLow() 64 _cache = (((int)Low) >>> 24); in ShiftLow()
|
/external/lzma/CS/7zip/Compress/RangeCoder/ |
D | RangeCoder.cs | 14 byte _cache; field in SevenZip.Compression.RangeCoder.Encoder 35 _cache = 0; in Init() 69 byte temp = _cache; in ShiftLow() 76 _cache = (byte)(((uint)Low) >> 24); in ShiftLow()
|
/external/lzma/CPP/7zip/Compress/ |
D | RangeCoder.h | 19 Byte _cache; variable 33 _cache = 0; in Init() 62 Byte temp = _cache; in ShiftLow() 69 _cache = (Byte)((UInt32)Low >> 24); in ShiftLow()
|
/external/chromium_org/tools/valgrind/ |
D | scan-build.py | 103 return self._waterfall._cache.FetchData(local_build_file, 128 self._cache = Cache(cache_dir) 134 self._cache.Update("builders", self._root_url) 141 html = self._cache.FetchData("builders", self._root_url)
|
/external/jmdns/src/javax/jmdns/impl/ |
D | JmDNSImpl.java | 90 private final DNSCache _cache; field in JmDNSImpl 397 _cache = new DNSCache(100); in JmDNSImpl() 661 return _cache; in getCache() 1883 aLog.append(_cache.toString()); in toString()
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/ |
D | prototype-1.6.0.3.js | 2779 if (Selector._cache[e]) { 2780 this.matcher = Selector._cache[e]; 2802 Selector._cache[this.expression] = this.matcher; 2809 if (Selector._cache[e]) { 2810 this.xpath = Selector._cache[e]; return; 2827 Selector._cache[this.expression] = this.xpath; 2901 _cache: { }, property
|