Searched refs:matchobj (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Tools/freeze/ |
D | parsesetup.py | 26 matchobj = makevardef.match(line) 27 if not matchobj: 29 (name, value) = matchobj.group(1, 2) 68 matchobj = setupvardef.match(line) 69 if matchobj: 70 (name, value) = matchobj.group(1, 2)
|
/external/python/cpython2/Tools/freeze/ |
D | parsesetup.py | 26 matchobj = makevardef.match(line) 27 if not matchobj: 29 (name, value) = matchobj.group(1, 2) 68 matchobj = setupvardef.match(line) 69 if matchobj: 70 (name, value) = matchobj.group(1, 2)
|
/external/python/cpython3/Doc/tools/extensions/ |
D | escape4chm.py | 16 def escape(matchobj): argument 17 codepoint = ord(matchobj.group(0))
|
/external/tensorflow/tensorflow/tools/api/tests/ |
D | api_compatibility_test.py | 123 def _ReplaceCapsWithDash(matchobj): argument 124 match = matchobj.group(0) 143 def _ReplaceDashWithCaps(matchobj): argument 144 match = matchobj.group(0)
|
/external/python/cpython2/Lib/test/ |
D | test_re.py | 45 def bump_num(self, matchobj): argument 46 int_value = int(matchobj.group(0))
|
/external/python/cpython2/Doc/library/ |
D | re.rst | 669 >>> def dashrepl(matchobj): 670 ... if matchobj.group(0) == '-': return ' '
|
/external/python/cpython3/Lib/test/ |
D | test_re.py | 86 def bump_num(self, matchobj): argument 87 int_value = int(matchobj.group(0))
|
/external/python/cpython3/Doc/library/ |
D | re.rst | 879 >>> def dashrepl(matchobj): 880 ... if matchobj.group(0) == '-': return ' '
|