Home
last modified time | relevance | path

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

/external/pdfium/third_party/freetype/include/freetype/internal/
Dpsaux.h248 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ argument
255 _dict \
258 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ argument
264 _dict \
267 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ argument
275 _dict \
278 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ argument
285 _dict \
289 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \ argument
290 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict )
[all …]
/external/freetype/include/freetype/internal/
Dpsaux.h249 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \ argument
256 _dict \
259 #define T1_NEW_CALLBACK_FIELD( _ident, _reader, _dict ) \ argument
265 _dict \
268 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \ argument
276 _dict \
279 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \ argument
286 _dict \
290 #define T1_FIELD_BOOL( _ident, _fname, _dict ) \ argument
291 T1_NEW_SIMPLE_FIELD( _ident, T1_FIELD_TYPE_BOOL, _fname, _dict )
[all …]
/external/python/cpython2/Lib/test/
Dtest_anydbm.py25 _dict = {'0': '', variable in AnyDBMTestCase
40 for key in self._dict:
41 f[key] = self._dict[key]
48 self._dict['g'] = f['g'] = "indented"
66 for key in self._dict:
67 self.assertEqual(self._dict[key], f[key])
71 for k in self._dict:
72 f[k] = self._dict[k]
78 dkeys = self._dict.keys()
Dtest_dumbdbm.py21 _dict = {'0': '', variable in DumbDBMTestCase
36 for key in self._dict:
37 f[key] = self._dict[key]
73 self._dict['g'] = f['g'] = "indented"
119 for key in self._dict:
120 self.assertEqual(self._dict[key], f[key])
124 for k in self._dict:
125 f[k] = self._dict[k]
131 dkeys = self._dict.keys()
180 for key in self._dict:
[all …]
/external/python/cpython2/Lib/plat-mac/
Dpimp.py534 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/python/cpython2/Lib/
DConfigParser.py234 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/python/cpython2/Demo/pdist/
DRCSProxy.py87 return self._dict(self.sum, list)
133 def _dict(self, function, list = None): member in RCSProxyLocal
DFSProxy.py199 def _dict(self, function, list): member in FSProxyLocal
223 return self._dict(self.info, list)
/external/clang/test/CodeGenObjC/
Ddebug-info-synthesis.m20 @synthesize dict = _dict;
/external/python/cpython2/Lib/lib-tk/
Dturtle.py308 def __methodDict(cls, _dict): argument
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/python/cpython2/Doc/reference/
Dexpressions.rst269 .. _dict:
/external/python/cpython2/Doc/library/
Dstdtypes.rst2306 .. _dict-views: