HomeSort by relevance Sort by last modified time
    Searched defs:_cache (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/tools/json_schema_compiler/
json_schema.py 47 _cache = {} variable
52 if filename not in _cache:
53 _cache[filename] = Load(filename)
56 return copy.deepcopy(_cache[filename])
  /external/chromium_org/third_party/closure_compiler/
processor.py 31 _cache = defaultdict(str) variable in class:FileCache
44 self._cache[abs_file] = self._cache[abs_file] or open(abs_file, "r").read()
45 return self._cache[abs_file]
compile_modules.py 43 _cache = {} variable in class:ModuleParser
49 if file_path in self._cache:
51 return self._cache[file_path]
61 self._cache[file_path] = [Module.from_dict(m) for m in data]
62 return self._cache[file_path]
  /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/darwin-x86/2.7.5/lib/python2.7/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
50 if not pat in _cache:
52 if len(_cache) >= _MAXCACHE:
53 _cache.clear()
54 _cache[pat] = re.compile(res)
55 match=_cache[pat].match
74 if not pat in _cache:
76 if len(_cache) >= _MAXCACHE:
77 _cache.clear(
    [all...]
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/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache namespace
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge namespace
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /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
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fnmatch.py 17 _cache = {} variable
22 _cache.clear()
50 if not pat in _cache:
52 if len(_cache) >= _MAXCACHE:
53 _cache.clear()
54 _cache[pat] = re.compile(res)
55 match=_cache[pat].match
74 if not pat in _cache:
76 if len(_cache) >= _MAXCACHE:
77 _cache.clear(
    [all...]
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/test/
test_fnmatch.py 6 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache namespace
7 from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _purge namespace
65 self.assertLessEqual(len(_cache), _MAXCACHE)
  /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/xml/etree/
ElementPath.py 235 _cache = {} variable
252 selector = _cache[path]
254 if len(_cache) > 100:
255 _cache.clear()
272 _cache[path] = selector
  /external/lzma/CPP/7zip/Compress/
RangeCoder.h 19 Byte _cache; member in class:NCompress::NRangeCoder::CEncoder
33 _cache = 0;
62 Byte temp = _cache;
69 _cache = (Byte)((UInt32)Low >> 24);
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 14 byte _cache; field in class:SevenZip.Compression.RangeCoder.Encoder
35 _cache = 0;
69 byte temp = _cache;
76 _cache = (byte)(((uint)Low) >> 24);
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Encoder.java 17 int _cache; field in class:Encoder
37 _cache = 0;
57 int temp = _cache;
64 _cache = (((int)Low) >>> 24);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 89 _cache = set() variable
92 global _lock, _listener, _cache
93 for h in _cache:
95 _cache.clear()
126 _cache.remove(handle_wanted)
146 _cache.add(dup_handle)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
reduction.py 89 _cache = set() variable
92 global _lock, _listener, _cache
93 for h in _cache:
95 _cache.clear()
126 _cache.remove(handle_wanted)
146 _cache.add(dup_handle)
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 90 private final DNSCache _cache; field in class:JmDNSImpl
397 _cache = new DNSCache(100);
661 return _cache;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 

Completed in 5766 milliseconds