HomeSort by relevance Sort by last modified time
    Searched refs:matchobj (Results 1 - 8 of 8) sorted by null

  /external/python/cpython3/Tools/freeze/
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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
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/
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/
escape4chm.py 15 def escape(matchobj):
16 codepoint = ord(matchobj.group(0))
  /external/tensorflow/tensorflow/tools/api/tests/
api_compatibility_test.py 94 def _ReplaceCapsWithDash(matchobj):
95 match = matchobj.group(0)
107 def _ReplaceDashWithCaps(matchobj):
108 match = matchobj.group(0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_re.py 37 def bump_num(self, matchobj):
38 int_value = int(matchobj.group(0))
    [all...]
  /external/python/cpython2/Lib/test/
test_re.py 45 def bump_num(self, matchobj):
46 int_value = int(matchobj.group(0))
    [all...]
  /external/python/cpython3/Lib/test/
test_re.py 85 def bump_num(self, matchobj):
86 int_value = int(matchobj.group(0))
    [all...]

Completed in 858 milliseconds