HomeSort by relevance Sort by last modified time
    Searched full:_cache (Results 51 - 75 of 99) sorted by null

1 23 4

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 140 self._cache = {}
180 args=(self._outqueue, self._quick_get, self._cache)
190 self._result_handler, self._cache),
258 result = IMapIterator(self._cache)
265 result = IMapIterator(self._cache)
276 result = IMapUnorderedIterator(self._cache)
283 result = IMapUnorderedIterator(self._cache)
293 result = ApplyResult(self._cache, callback)
313 result = MapResult(self._cache, chunksize, len(iterable), callback)
324 while thread._state == RUN or (pool._cache and thread._state != TERMINATE)
    [all...]
managers.py 884 def MakeProxyType(name, exposed, _cache={}):
890 return _cache[(name, exposed)]
902 _cache[(name, exposed)] = ProxyType
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 140 self._cache = {}
180 args=(self._outqueue, self._quick_get, self._cache)
190 self._result_handler, self._cache),
258 result = IMapIterator(self._cache)
265 result = IMapIterator(self._cache)
276 result = IMapUnorderedIterator(self._cache)
283 result = IMapUnorderedIterator(self._cache)
293 result = ApplyResult(self._cache, callback)
313 result = MapResult(self._cache, chunksize, len(iterable), callback)
324 while thread._state == RUN or (pool._cache and thread._state != TERMINATE)
    [all...]
managers.py 884 def MakeProxyType(name, exposed, _cache={}):
890 return _cache[(name, exposed)]
902 _cache[(name, exposed)] = ProxyType
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
__init__.py 35 _cache = {} variable
74 entry = _cache.get(encoding, _unknown)
116 _cache[encoding] = None
140 _cache[encoding] = entry
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
__init__.py 35 _cache = {} variable
74 entry = _cache.get(encoding, _unknown)
116 _cache[encoding] = None
140 _cache[encoding] = entry
  /external/chromium_org/chrome/common/extensions/docs/server2/
content_providers.py 30 self._cache = compiled_fs_factory.ForJson(host_file_system)
68 return self._cache.GetFromFile(CONTENT_PROVIDERS).Get()
features_bundle.py 40 self._cache = compiled_fs_factory.Create(
60 return self._cache.GetFromFile(self._json_path)
redirector_test.py 105 self._redirector._cache._file_object_store.Get(
sidenav_data_source_test.py 158 sidenav_data_source._cache._file_object_store.Get(
rietveld_patcher.py 86 self._cache = None
  /external/chromium_org/tools/valgrind/
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)
  /bionic/libc/netbsd/resolv/
res_state.c 188 if (!rt->_cache) {
189 rt->_cache = _resolv_cache_create();
191 return rt->_cache;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
filecmp.py 18 _cache = {} variable
51 outcome = _cache.get((f1, f2, s1, s2))
54 if len(_cache) > 100: # limit the maximum size of the cache
55 _cache.clear()
56 _cache[f1, f2, s1, s2] = outcome
re.py 194 _cache.clear()
219 _cache = {} variable
229 p = _cache.get(cachekey)
243 if len(_cache) >= _MAXCACHE:
244 _cache.clear()
245 _cache[cachekey] = p
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementPath.py 235 _cache = {} variable
252 selector = _cache[path]
254 if len(_cache) > 100:
255 _cache.clear()
272 _cache[path] = selector
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
filecmp.py 18 _cache = {} variable
51 outcome = _cache.get((f1, f2, s1, s2))
54 if len(_cache) > 100: # limit the maximum size of the cache
55 _cache.clear()
56 _cache[f1, f2, s1, s2] = outcome
re.py 194 _cache.clear()
219 _cache = {} variable
229 p = _cache.get(cachekey)
243 if len(_cache) >= _MAXCACHE:
244 _cache.clear()
245 _cache[cachekey] = p
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementPath.py 235 _cache = {} variable
252 selector = _cache[path]
254 if len(_cache) > 100:
255 _cache.clear()
272 _cache[path] = selector
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 449 >>> cache_len_10 = len(ET.ElementPath._cache)
451 >>> len(ET.ElementPath._cache) == cache_len_10
454 >>> len(ET.ElementPath._cache) > cache_len_10
457 >>> len(ET.ElementPath._cache) < 500
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 449 >>> cache_len_10 = len(ET.ElementPath._cache)
451 >>> len(ET.ElementPath._cache) == cache_len_10
454 >>> len(ET.ElementPath._cache) > cache_len_10
457 >>> len(ET.ElementPath._cache) < 500
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
unordered_map.h 38 template<bool _Cache>
39 using __umap_traits = __detail::_Hashtable_traits<_Cache, false, true>;
55 template<bool _Cache>
56 using __ummap_traits = __detail::_Hashtable_traits<_Cache, false, false>;
    [all...]
unordered_set.h 38 template<bool _Cache>
39 using __uset_traits = __detail::_Hashtable_traits<_Cache, true, true>;
53 template<bool _Cache>
54 using __umset_traits = __detail::_Hashtable_traits<_Cache, true, false>;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
locale_classes.h 84 template<typename _Cache>
480 template<typename _Cache>
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
locale_classes.h 87 template<typename _Cache>
491 template<typename _Cache>

Completed in 407 milliseconds

1 23 4