HomeSort by relevance Sort by last modified time
    Searched full:_dict (Results 1 - 25 of 26) sorted by null

1 2

  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/
schema.py 41 self._dict = schema_dict
79 instance._dict = reconstructed
84 return self._dict
88 return self._dict['HashKeyElement']['AttributeName']
92 return self._dict['HashKeyElement']['AttributeType']
97 if 'RangeKeyElement' in self._dict:
98 name = self._dict['RangeKeyElement']['AttributeName']
104 if 'RangeKeyElement' in self._dict:
105 type = self._dict['RangeKeyElement']['AttributeType']
table.py 117 self._dict = {}
158 return self._dict['TableName']
162 return self._dict.get('CreationDateTime', None)
166 return self._dict.get('TableStatus', None)
170 return self._dict.get('ItemCount', 0)
174 return self._dict.get('TableSizeBytes', 0)
183 return self._dict['ProvisionedThroughput']['ReadCapacityUnits']
190 return self._dict['ProvisionedThroughput']['WriteCapacityUnits']
201 self._dict.update(response['Table'])
204 self._dict.update(response['TableDescription']
    [all...]
  /external/freetype/include/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...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/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...]
  /external/pdfium/third_party/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/gdb/darwin-x86/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...]
  /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/clang/test/CodeGenObjC/
debug-info-synthesis.m 20 @synthesize dict = _dict;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
utils.py 688 self._dict = dict()
694 return key in self._dict
703 return len(self._dict)
706 item = self._dict[key]
711 item = self._dict.get(key)
714 self._dict[key] = item
722 return repr(self._dict)
735 while len(self._dict) > self.capacity:
736 del self._dict[self.tail.key]
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/
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()
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/
run_pylint.py 69 section, test_cfg._dict())
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]

Completed in 717 milliseconds

1 2