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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
filelist.py 187 def include_pattern(self, pattern, anchor=1, prefix=None, is_regex=0):
204 If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and
214 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
231 def exclude_pattern(self, pattern, anchor=1, prefix=None, is_regex=0):
240 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
308 def translate_pattern(pattern, anchor=1, prefix=None, is_regex=0):
312 Return the compiled regex. If 'is_regex' true,
316 if is_regex:
  /external/python/cpython2/Lib/distutils/
filelist.py 187 def include_pattern(self, pattern, anchor=1, prefix=None, is_regex=0):
204 If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and
215 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
232 def exclude_pattern(self, pattern, anchor=1, prefix=None, is_regex=0):
241 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
312 def translate_pattern(pattern, anchor=1, prefix=None, is_regex=0):
316 Return the compiled regex. If 'is_regex' true,
320 if is_regex:
  /external/python/cpython3/Lib/distutils/
filelist.py 180 def include_pattern(self, pattern, anchor=1, prefix=None, is_regex=0):
196 If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and
207 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
224 anchor=1, prefix=None, is_regex=0):
232 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
293 def translate_pattern(pattern, anchor=1, prefix=None, is_regex=0):
295 expression. Return the compiled regex. If 'is_regex' true,
299 if is_regex:
  /external/python/cpython2/Lib/distutils/tests/
test_filelist.py 134 translate_pattern('a', anchor=True, is_regex=False),
140 translate_pattern(regex, anchor=True, is_regex=True),
145 translate_pattern('a', anchor=True, is_regex=True),
150 '*.py', anchor=True, is_regex=False).search('filelist.py'))
  /external/python/cpython3/Lib/distutils/tests/
test_filelist.py 136 translate_pattern('a', anchor=True, is_regex=False),
142 translate_pattern(regex, anchor=True, is_regex=True),
147 translate_pattern('a', anchor=True, is_regex=True),
152 '*.py', anchor=True, is_regex=False).search('filelist.py'))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
sdist.py 348 self.filelist.exclude_pattern(vcs_ptrn, is_regex=1)
  /external/python/cpython2/Lib/distutils/command/
sdist.py 357 self.filelist.exclude_pattern(vcs_ptrn, is_regex=1)
  /external/python/cpython3/Lib/distutils/command/
sdist.py 375 self.filelist.exclude_pattern(vcs_ptrn, is_regex=1)
  /external/python/setuptools/setuptools/command/
egg_info.py 578 is_regex=1)

Completed in 603 milliseconds