/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
recognizers.rb | 182 they're pretty useless on their own. Instead, to make useful code, you write an 979 # if you're using the standard streams, ANTLR3::StringStream and [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/ |
ecmalintrules.py | 24 import re namespace 73 MISSING_PARAMETER_SPACE = re.compile(r',\S') 75 EXTRA_SPACE = re.compile('(\(\s|\s\))') 77 ENDS_WITH_SPACE = re.compile('\s$') 79 ILLEGAL_TAB = re.compile(r'\t') 82 TYPE_SPLIT = re.compile(r'[,<>()]') 85 AUTHOR_SPEC = re.compile(r'(\s*)[^\s]+@[^(\s]+(\s*)\(.+\)') [all...] |
/external/fonttools/Lib/fontTools/ttLib/ |
__init__.py | 64 Tables will be only decompiled when necessary, ie. when they're actually 77 It we're running on a Macintosh, 'res_name_or_index' maybe an sfnt 465 # Bootstrapping: we're getting called by the cmap parser 836 import re namespace 837 if re.match("[a-z0-9]", c): 839 elif re.match("[A-Z]", c): 858 import re namespace 868 if re.match("[0-9]", ident): 899 import re namespace 905 if re.match("[A-Za-z_][A-Za-z_0-9]* *$", tag) [all...] |
/external/lldb/examples/python/ |
gdbremote.py | 22 import re namespace 461 g_thread_suffix_regex = re.compile(';thread:([0-9a-fA-F]+);') [all...] |
/frameworks/base/core/tests/overlaytests/ |
testrunner.py | 5 import re namespace 287 all_matches = re.findall('\s' + self.pattern + '$', stdout, flags=re.MULTILINE) 463 regex_status_code = re.compile(r'^INSTRUMENTATION_STATUS_CODE: -?(\d+)') 464 regex_name = re.compile(r'^INSTRUMENTATION_STATUS: test=(.*)') 465 regex_begin_stack = re.compile(r'^INSTRUMENTATION_STATUS: stack=(.*)') 466 regex_end_stack = re.compile(r'^$')
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/ |
fsdiff.py | 23 import re namespace 339 cur_indent = len(re.search(r'^[ ]*', t).group(0)) 390 match = re.search(r'^(\s*)', line)
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/vinn/ |
d8_runner_unittest.py | 6 import re namespace 28 m = re.search('at %s.+\(.*%s.*\)' % (func_name, file_and_linum), 40 m = re.search('at .*%s.*' % file_and_linum, exception_message)
|
/external/clang/tools/clang-format/ |
git-clang-format | 31 import re namespace 280 match = re.search(r'^\+\+\+\ [^/]+/(.*)', line) 283 match = re.search(r'^@@ -[0-9,]+ \+(\d+)(,(\d+))?', line)
|
/external/fonttools/Lib/fontTools/ |
t1Lib.py | 23 import re namespace 285 _ishexRE = re.compile('[0-9A-Fa-f]*$') 341 _fontType1RE = re.compile(br"/FontType\s+1\s+def")
|
/external/lldb/test/unittest2/ |
loader.py | 4 import re namespace 35 VALID_MODULE_NAME = re.compile(r'[_a-z]\w*\.py$', re.IGNORECASE)
|
/external/markdown/markdown/ |
__init__.py | 45 import re namespace 70 BLOCK_LEVEL_ELEMENTS = re.compile("p|div|h[1-6]|blockquote|pre|table|dl|ol|ul" 382 source = re.sub(r'\n\s+\n', '\n\n', source)
|
/external/v8/tools/ |
gc-nvp-trace-processor.py | 41 import sys, types, re, subprocess, math namespace 50 for (name, value) in re.findall(r"(\w+)=([-\w]+)", s): 71 for m in re.finditer(r"$(\w+)", script):
|
presubmit.py | 42 import re namespace 103 # TODO(bmeurer): Fix and re-enable readability/check 105 LINT_OUTPUT_PATTERN = re.compile(r'^.+[:(]\d+[:)]|^Done processing') 287 COPYRIGHT_HEADER_PATTERN = re.compile(
|
stats-viewer.py | 34 in a window, re-reading and re-displaying with regular intervals. 40 import re namespace 108 for m in re.finditer(r"/dev/shm/\S*", maps_file.read()): 462 parser = optparse.OptionParser("usage: %prog [--filter=re] " 472 Main(args[0], re.compile(options.filter))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_strptime.py | 16 from re import compile as re_compile 17 from re import IGNORECASE 18 from re import escape as re_escape 249 # as regex syntax. Cannot use re.escape since we have to deal with 264 """Return a compiled re object for the format string.""" 374 # We're in AM so the hour is correct unless we're 380 # We're in PM so we need to add 12 to the hour unless 381 # we're looking at 12 noon.
|
csv.py | 6 import re namespace 218 regexp = re.compile(restr, re.DOTALL | re.MULTILINE) 264 dq_regexp = re.compile(r"((%(delim)s)|^)\W*%(quote)s[^%(delim)s\n]*%(quote)s[^%(delim)s\n]*%(quote)s\W*((%(delim)s)|$)" % \ 265 {'delim':delim, 'quote':quotechar}, re.MULTILINE)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_dbtables.py | 23 import os, re, sys namespace 198 conditions={'e': re.compile('wuzzy').search, 199 'a': re.compile('^[0-9]+$').match})
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 4 import re namespace 19 VALID_MODULE_NAME = re.compile(r'[_a-z]\w*\.py$', re.IGNORECASE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_strptime.py | 16 from re import compile as re_compile 17 from re import IGNORECASE 18 from re import escape as re_escape 249 # as regex syntax. Cannot use re.escape since we have to deal with 264 """Return a compiled re object for the format string.""" 374 # We're in AM so the hour is correct unless we're 380 # We're in PM so we need to add 12 to the hour unless 381 # we're looking at 12 noon.
|
csv.py | 6 import re namespace 218 regexp = re.compile(restr, re.DOTALL | re.MULTILINE) 264 dq_regexp = re.compile(r"((%(delim)s)|^)\W*%(quote)s[^%(delim)s\n]*%(quote)s[^%(delim)s\n]*%(quote)s\W*((%(delim)s)|$)" % \ 265 {'delim':delim, 'quote':quotechar}, re.MULTILINE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_dbtables.py | 23 import os, re, sys namespace 198 conditions={'e': re.compile('wuzzy').search, 199 'a': re.compile('^[0-9]+$').match})
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
loader.py | 4 import re namespace 19 VALID_MODULE_NAME = re.compile(r'[_a-z]\w*\.py$', re.IGNORECASE)
|
/build/tools/releasetools/ |
sign_target_files_apks | 79 import re namespace 201 # an APK we're not supposed to sign. 222 # don't copy these files if we're regenerating them below 270 (data, num) = re.subn(pattern, new_cert16, data, flags=re.IGNORECASE) 351 m = re.match(r"^(.*)\.x509\.pem$", k)
|
sign_target_files_apks.py | 79 import re namespace 201 # an APK we're not supposed to sign. 222 # don't copy these files if we're regenerating them below 270 (data, num) = re.subn(pattern, new_cert16, data, flags=re.IGNORECASE) 351 m = re.match(r"^(.*)\.x509\.pem$", k)
|
/cts/apps/CameraITS/pymodules/its/ |
objects.py | 18 import re namespace
|