HomeSort by relevance Sort by last modified time
    Searched refs:_dict (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
lru_cache.py 46 self._dict = {}
50 if key in self._dict:
55 if len(self._dict) >= self._capacity:
56 del self._dict[self._last.key]
66 self._dict[key] = node
70 self._dict[key] = node
91 node = self._dict[key]
101 node = self._dict[key]
102 del self._dict[key]
119 return len(self._dict)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_anydbm.py 26 _dict = {'0': '', variable in class:AnyDBMTestCase
41 for key in self._dict:
42 f[key] = self._dict[key]
49 self._dict['g'] = f['g'] = "indented"
67 for key in self._dict:
68 self.assertEqual(self._dict[key], f[key])
72 for k in self._dict:
73 f[k] = self._dict[k]
79 dkeys = self._dict.keys()
test_dumbdbm.py 21 _dict = {'0': '', variable in class:DumbDBMTestCase
36 for key in self._dict:
37 f[key] = self._dict[key]
75 self._dict['g'] = f['g'] = "indented"
121 for key in self._dict:
122 self.assertEqual(self._dict[key], f[key])
126 for k in self._dict:
127 f[k] = self._dict[k]
133 dkeys = self._dict.keys()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_anydbm.py 26 _dict = {'0': '', variable in class:AnyDBMTestCase
41 for key in self._dict:
42 f[key] = self._dict[key]
49 self._dict['g'] = f['g'] = "indented"
67 for key in self._dict:
68 self.assertEqual(self._dict[key], f[key])
72 for k in self._dict:
73 f[k] = self._dict[k]
79 dkeys = self._dict.keys()
test_dumbdbm.py 21 _dict = {'0': '', variable in class:DumbDBMTestCase
36 for key in self._dict:
37 f[key] = self._dict[key]
75 self._dict['g'] = f['g'] = "indented"
121 for key in self._dict:
122 self.assertEqual(self._dict[key], f[key])
126 for k in self._dict:
127 f[k] = self._dict[k]
133 dkeys = self._dict.keys()
  /external/chromium_org/third_party/freetype/include/freetype/internal/
psaux.h 244 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \
251 _dict \
254 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \
260 _dict \
263 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \
271 _dict \
274 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \
281 _dict \
285 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \
286 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict )
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 248 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \
255 _dict \
258 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \
264 _dict \
267 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \
275 _dict \
278 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \
285 _dict \
289 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \
290 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict )
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
pimp.py 534 self._dict = plistdata
537 return self._dict[key]
539 def name(self): return self._dict['Name']
540 def version(self): return self._dict.get('Version')
541 def flavor(self): return self._dict.get('Flavor')
542 def description(self): return self._dict['Description'].strip()
544 def homepage(self): return self._dict.get('Home-page')
545 def downloadURL(self): return self._dict.get('Download-URL')
546 def systemwideOnly(self): return self._dict.get('Systemwide-only')
554 rv = self._dict['Name'
    [all...]
  /external/chromium_org/chrome/test/functional/
multiprofile.py 48 _dict: Dictionary of key preferences and its value to be set.
61 _dict = {pyauto.kURLsToRestoreOnStartup: [url],
63 self._SetPreferences(_dict, windex=windex)
75 _dict = {pyauto.kHomePage: url,
78 self._SetPreferences(_dict, windex=windex)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ConfigParser.py 234 self._dict = dict_type
235 self._sections = self._dict()
236 self._defaults = self._dict()
265 self._sections[section] = self._dict()
348 d2 = self._dict()
505 cursect = self._dict()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ConfigParser.py 234 self._dict = dict_type
235 self._sections = self._dict()
236 self._defaults = self._dict()
265 self._sections[section] = self._dict()
348 d2 = self._dict()
505 cursect = self._dict()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 308 def __methodDict(cls, _dict):
313 __methodDict(_super, _dict)
316 _dict[key] = value
320 _dict = {}
321 __methodDict(cls, _dict)
322 return _dict.keys()
332 _dict = {}
333 __methodDict(toClass, _dict)
334 for ex in _dict.keys():
336 del _dict[ex
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 308 def __methodDict(cls, _dict):
313 __methodDict(_super, _dict)
316 _dict[key] = value
320 _dict = {}
321 __methodDict(cls, _dict)
322 return _dict.keys()
332 _dict = {}
333 __methodDict(toClass, _dict)
334 for ex in _dict.keys():
336 del _dict[ex
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/lib/
sorter.py 427 self._dict = dct
430 return self._dict

Completed in 620 milliseconds