Searched refs:_dict (Results 1 - 8 of 8) sorted by relevance
/third_party/skia/third_party/externals/freetype/include/freetype/internal/ |
H A D | psaux.h | 278 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ 285 _dict \ 288 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ 294 _dict \ 297 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ 305 _dict \ 308 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ 315 _dict \ 319 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \ 320 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict ) [all...] |
/third_party/python/Lib/test/ |
H A D | test_dbm_dumb.py | 27 _dict = {b'0': b'', variable in DumbDBMTestCase 40 for key in self._dict: 41 f[key] = self._dict[key] 76 self._dict[b'g'] = f[b'g'] = b"indented" 93 self.assertEqual(f.get(b'a'), self._dict[b'a']) 120 self.assertEqual(f['\u00fc'], self._dict['\u00fc'.encode('utf-8')]) 130 self._dict['\u00fc'.encode('utf-8')]) 157 for key in self._dict: 158 self.assertEqual(self._dict[key], f[key]) 162 for k in self._dict [all...] |
H A D | test_dbm.py | 41 _dict = {'a': b'Python:', variable in AnyDBMTestCase 51 for k in self._dict: 52 f[k.encode("ascii")] = self._dict[k] 57 dkeys = sorted(self._dict.keys()) 70 for key in self._dict: 71 f[key.encode("ascii")] = self._dict[key] 84 self._dict['g'] = f[b'g'] = b"indented" 96 self.assertEqual(f.get(b'a'), self._dict['a']) 142 for key in self._dict: 143 self.assertEqual(self._dict[ke [all...] |
H A D | test_configparser.py | 1134 if cf._dict is configparser._default_dict:
|
/third_party/python/Lib/unittest/test/testmock/ |
H A D | testmagicmethods.py | 83 _dict = {} 85 return _dict[name] 87 _dict[name] = value 89 del _dict[name] 97 self.assertEqual(_dict, {'foo': 'bar'}) 100 self.assertEqual(_dict, {})
|
/third_party/python/Lib/ |
H A D | configparser.py | 618 self._dict = dict_type 619 self._sections = self._dict() 620 self._defaults = self._dict() 622 self._proxies = self._dict() 675 self._sections[section] = self._dict() 1093 cursect = self._dict()
|
H A D | turtle.py | 290 def __methodDict(cls, _dict): 295 __methodDict(_super, _dict) 298 _dict[key] = value 302 _dict = {} 303 __methodDict(cls, _dict) 304 return _dict.keys() 314 _dict = {} 320 _dict[ex] = _dict_1[ex] 322 for method, func in _dict.items():
|
/third_party/python/Lib/collections/ |
H A D | __init__.py | 424 _dict, _tuple, _len, _map, _zip = dict, tuple, len, map, zip 465 return _dict(_zip(self._fields, self))
|
Completed in 15 milliseconds