Home
last modified time | relevance | path

Searched refs:OrderedDict (Results 1 – 10 of 10) sorted by relevance

/external/markdown/markdown/
Dodict.py1 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__.py215 self.preprocessors = odict.OrderedDict()
249 self.inlinePatterns = odict.OrderedDict()
288 self.treeprocessors = odict.OrderedDict()
294 self.postprocessors = odict.OrderedDict()
Dblockparser.py45 self.blockprocessors = markdown.odict.OrderedDict()
/external/markdown/docs/
Dwriting_extensions.txt30 * [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/
Dmerge_to_branch.py30 from collections import OrderedDict
70 self["full_revision_list"] = list(OrderedDict.fromkeys(
/external/lldb/examples/python/
Dpytracer.py3 from collections import OrderedDict
102 argWValues = OrderedDict()
/external/v8/tools/
Drun-tests.py31 from collections import OrderedDict
421 args_suites = OrderedDict() # Used as set
/external/markdown/markdown/extensions/
Dfootnotes.py77 self.footnotes = markdown.odict.OrderedDict()
/external/markdown/
Dregression-tests.py134 self.odict = markdown.odict.OrderedDict()
/external/deqp/scripts/khr_util/
Dregistry.py25 from collections import OrderedDict