OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:odict
(Results
1 - 7
of
7
) sorted by null
/external/markdown/
regression-tests.py
134
self.
odict
= markdown.
odict
.OrderedDict()
135
self.
odict
['first'] = 'This'
136
self.
odict
['third'] = 'a'
137
self.
odict
['fourth'] = 'self'
138
self.
odict
['fifth'] = 'test'
142
self.assertEqual(self.
odict
.values(), ['This', 'a', 'self', 'test'])
146
self.assertEqual(self.
odict
.keys(),
151
self.assertEqual(self.
odict
.items(),
157
self.
odict
.add('second', 'is', '<third'
[
all
...]
/external/chromium_org/tools/gyp/
PRESUBMIT.py
63
# W0104:427,12:_test.
odict
.__setitem__: Statement seems to have no effect
/external/markdown/markdown/
blockparser.py
45
self.blockprocessors = markdown.
odict
.OrderedDict()
__init__.py
168
import
odict
namespace
215
self.preprocessors =
odict
.OrderedDict()
249
self.inlinePatterns =
odict
.OrderedDict()
288
self.treeprocessors =
odict
.OrderedDict()
294
self.postprocessors =
odict
.OrderedDict()
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
copy.py
421
class
odict
(dict):
class in function:_test
428
o =
odict
({"A" : "B"})
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
copy.py
421
class
odict
(dict):
class in function:_test
428
o =
odict
({"A" : "B"})
/external/markdown/markdown/extensions/
footnotes.py
77
self.footnotes = markdown.
odict
.OrderedDict()
Completed in 775 milliseconds