Searched refs:OrderedDict (Results 1 – 10 of 10) sorted by relevance
/external/markdown/markdown/ |
D | odict.py | 1 class OrderedDict(dict): class 9 instance = super(OrderedDict, cls).__new__(cls, *args, **kwargs) 16 super(OrderedDict, self).__init__(data) 31 super(OrderedDict, self).__setitem__(key, value) 36 super(OrderedDict, self).__delitem__(key) 44 result = super(OrderedDict, self).pop(k, *args) 53 result = super(OrderedDict, self).popitem() 62 yield key, super(OrderedDict, self).__getitem__(key) 71 return [super(OrderedDict, self).__getitem__(k) for k in self.keyOrder] 75 yield super(OrderedDict, self).__getitem__(key) [all …]
|
D | __init__.py | 215 self.preprocessors = odict.OrderedDict() 249 self.inlinePatterns = odict.OrderedDict() 288 self.treeprocessors = odict.OrderedDict() 294 self.postprocessors = odict.OrderedDict()
|
D | blockparser.py | 45 self.blockprocessors = markdown.odict.OrderedDict()
|
/external/markdown/docs/ |
D | writing_extensions.txt | 30 * [OrderedDict][] 363 the Markdown class in [OrderedDict][]s. Your ``Extension`` class will need to 365 processors and patterns into the appropriate location in an OrderedDict, remove 376 access the [OrderedDict][]s of processors and patterns. They are found 412 <h4 id="ordereddict">OrderedDict</h4> 414 An OrderedDict is a dictionary like object that retains the order of it's 416 the OrderedDict. However, an item can also be inserted into the OrderedDict 419 Think of OrderedDict as a combination of a list and a dictionary as it has 427 helper method ``add()`` to add additional items to an existing OrderedDict. 440 beginning or end of the OrderedDict respectively. [all …]
|
/external/v8/tools/push-to-trunk/ |
D | merge_to_branch.py | 30 from collections import OrderedDict 70 self["full_revision_list"] = list(OrderedDict.fromkeys(
|
/external/lldb/examples/python/ |
D | pytracer.py | 3 from collections import OrderedDict 102 argWValues = OrderedDict()
|
/external/v8/tools/ |
D | run-tests.py | 31 from collections import OrderedDict 421 args_suites = OrderedDict() # Used as set
|
/external/markdown/markdown/extensions/ |
D | footnotes.py | 77 self.footnotes = markdown.odict.OrderedDict()
|
/external/markdown/ |
D | regression-tests.py | 134 self.odict = markdown.odict.OrderedDict()
|
/external/deqp/scripts/khr_util/ |
D | registry.py | 25 from collections import OrderedDict
|