/external/fonttools/Lib/fontTools/misc/plistlib/ |
D | __init__.py | 186 dict_type: Type[MutableMapping[str, Any]] = dict, 201 self._dict_type = dict_type 492 dict_type: Type[MutableMapping[str, Any]] = dict, 505 target = PlistTarget(use_builtin_types=use_builtin_types, dict_type=dict_type) 524 dict_type: Type[MutableMapping[str, Any]] = dict, 542 target = PlistTarget(use_builtin_types=use_builtin_types, dict_type=dict_type) 556 dict_type: Type[MutableMapping[str, Any]] = dict, 573 return load(fp, use_builtin_types=use_builtin_types, dict_type=dict_type)
|
/external/python/cpython3/Lib/ |
D | plistlib.py | 165 def __init__(self, dict_type): argument 169 self._dict_type = dict_type 455 def __init__(self, dict_type): argument 456 self._dict_type = dict_type 856 def load(fp, *, fmt=None, dict_type=dict): argument 874 p = P(dict_type=dict_type) 878 def loads(value, *, fmt=None, dict_type=dict): argument 883 return load(fp, fmt=fmt, dict_type=dict_type)
|
D | configparser.py | 601 def __init__(self, defaults=None, dict_type=_default_dict, argument 608 self._dict = dict_type
|
/external/llvm-project/lldb/source/Interpreter/ |
D | OptionValueDictionary.cpp | 22 const Type dict_type = ConvertTypeMaskToType(m_type_mask); in DumpValue() local 26 GetBuiltinTypeAsCString(dict_type)); in DumpValue() 51 switch (dict_type) { in DumpValue()
|
/external/python/cpython2/Doc/library/ |
D | configparser.rst | 87 .. class:: RawConfigParser([defaults[, dict_type[, allow_no_value]]]) 90 into the dictionary of intrinsic defaults. When *dict_type* is given, it will 105 *dict_type* was added. 108 The default *dict_type* is :class:`collections.OrderedDict`. 112 .. class:: ConfigParser([defaults[, dict_type[, allow_no_value]]]) 129 *dict_type* was added. 132 The default *dict_type* is :class:`collections.OrderedDict`. 136 .. class:: SafeConfigParser([defaults[, dict_type[, allow_no_value]]]) 148 *dict_type* was added. 151 The default *dict_type* is :class:`collections.OrderedDict`.
|
/external/python/cpython3/Doc/library/ |
D | plistlib.rst | 55 .. function:: load(fp, \*, fmt=None, dict_type=dict) 69 The *dict_type* is the type used for dictionaries that are read from the 83 .. function:: loads(data, \*, fmt=None, dict_type=dict)
|
D | configparser.rst | 457 * *dict_type*, default value: :class:`dict` 874 .. class:: ConfigParser(defaults=None, dict_type=dict, allow_no_value=False, delimiters=('=', ':'),… 877 into the dictionary of intrinsic defaults. When *dict_type* is given, it 921 The default *dict_type* is :class:`collections.OrderedDict`. 937 The default *dict_type* is :class:`dict`, since it now preserves 1201 .. class:: RawConfigParser(defaults=None, dict_type=dict, \ 1215 The default *dict_type* is :class:`dict`, since it now preserves
|
/external/fonttools/Tests/misc/ |
D | plistlib_test.py | 246 BytesIO(b.getvalue()), dict_type=collections.OrderedDict 264 pl2 = plistlib.loads(data, dict_type=collections.OrderedDict)
|
/external/python/cpython2/Lib/ |
D | ConfigParser.py | 232 def __init__(self, defaults=None, dict_type=_default_dict, argument 234 self._dict = dict_type
|
/external/python/cpython2/Lib/test/ |
D | test_weakref.py | 937 def check_len_cycles(self, dict_type, cons): argument 940 dct = dict_type(cons(i, o) for i, o in enumerate(items)) 968 def check_len_race(self, dict_type, cons): argument 976 dct = dict_type(cons(o) for o in items)
|
D | test_cfgparser.py | 588 self.cf = self.config_class(defaults=defaults, dict_type=SortedDict)
|
/external/python/cpython3/Lib/test/ |
D | test_plistlib.py | 603 dict_type=collections.OrderedDict) 621 pl2 = plistlib.loads(data, dict_type=collections.OrderedDict)
|
D | test_weakref.py | 1184 def check_len_cycles(self, dict_type, cons): argument 1187 dct = dict_type(cons(o) for o in items) 1210 def check_len_race(self, dict_type, cons): argument 1218 dct = dict_type(cons(o) for o in items)
|
D | test_configparser.py | 42 dict_type = configparser._default_dict variable in CfgParserTestCaseClass 55 dict_type=self.dict_type, 1409 dict_type = SortedDict variable in SortedTestCase
|
/external/python/cpython3/Parser/pegen/ |
D | parse.c | 192 #define dict_type 1114 macro
|