Home
last modified time | relevance | path

Searched refs:_dict (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/freetype/include/freetype/internal/
Dpsaux.h278 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ argument
285 _dict \
288 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ argument
294 _dict \
297 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ argument
305 _dict \
308 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ argument
315 _dict \
319 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \ argument
320 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict )
[all …]
/third_party/freetype/include/freetype/internal/
Dpsaux.h278 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ argument
285 _dict \
288 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ argument
294 _dict \
297 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ argument
305 _dict \
308 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ argument
315 _dict \
319 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \ argument
320 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict )
[all …]
/third_party/flutter/skia/third_party/externals/freetype/include/freetype/internal/
Dpsaux.h279 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ argument
286 _dict \
289 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ argument
295 _dict \
298 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ argument
306 _dict \
309 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ argument
316 _dict \
320 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \ argument
321 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict )
[all …]
/third_party/python/Lib/test/
Dtest_dbm_dumb.py27 _dict = {b'0': b'', variable in DumbDBMTestCase
40 for key in self._dict:
41 f[key] = self._dict[key]
75 self._dict[b'g'] = f[b'g'] = b"indented"
92 self.assertEqual(f.get(b'a'), self._dict[b'a'])
119 self.assertEqual(f['\u00fc'], self._dict['\u00fc'.encode('utf-8')])
129 self._dict['\u00fc'.encode('utf-8')])
156 for key in self._dict:
157 self.assertEqual(self._dict[key], f[key])
161 for k in self._dict:
[all …]
Dtest_dbm.py41 _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'])
133 for key in self._dict:
134 self.assertEqual(self._dict[key], f[key.encode("ascii")])
Dtest_configparser.py1124 if cf._dict is configparser._default_dict:
/third_party/python/Lib/unittest/test/testmock/
Dtestmagicmethods.py83 _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/
Dconfigparser.py608 self._dict = dict_type
609 self._sections = self._dict()
610 self._defaults = self._dict()
612 self._proxies = self._dict()
660 self._sections[section] = self._dict()
1078 cursect = self._dict()
Dturtle.py289 def __methodDict(cls, _dict): argument
294 __methodDict(_super, _dict)
297 _dict[key] = value
301 _dict = {}
302 __methodDict(cls, _dict)
303 return _dict.keys()
313 _dict = {}
319 _dict[ex] = _dict_1[ex]
321 for method, func in _dict.items():
/third_party/python/Lib/collections/
D__init__.py404 _dict, _tuple, _len, _map, _zip = dict, tuple, len, map, zip
445 return _dict(_zip(self._fields, self))
/third_party/python/Doc/reference/
Dexpressions.rst288 .. _dict:
/third_party/python/Doc/library/
Dstdtypes.rst4614 .. _dict-views: