/external/chromium-trace/catapult/perf_insights/third_party/cloudstorage/ |
common.py | 48 import re namespace 57 _GCS_BUCKET_REGEX = re.compile(_GCS_BUCKET_REGEX_BASE + r'$') 58 _GCS_BUCKET_PATH_REGEX = re.compile(r'/' + _GCS_BUCKET_REGEX_BASE + r'$') 59 _GCS_PATH_PREFIX_REGEX = re.compile(r'/' + _GCS_BUCKET_REGEX_BASE + r'.*') 60 _GCS_FULLPATH_REGEX = re.compile(r'/' + _GCS_BUCKET_REGEX_BASE + r'/.*')
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
strace_profiler.py | 7 import re namespace 19 _STRACE_LINE_RE = re.compile( 28 _UNFINISHED_LINE_RE = re.compile( 33 _RESUMED_LINE_RE = re.compile( 40 _KILLED_LINE_RE = re.compile(
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
help.py | 22 import re namespace 186 help_str = re.sub('<B>', '', help_str) 187 help_str = re.sub('</B>', '', help_str) 190 help_str = re.sub('<B>', '\033[1m', help_str) 191 help_str = re.sub('</B>', '\033[0;0m', help_str)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
util.py | 31 import re namespace 68 _TIME_ZONE_RE = re.compile(_TIME_ZONE_RE_STRING, re.IGNORECASE | re.VERBOSE) 223 __CONTENT_TYPE_REGEX = re.compile(r'^([^/]+)/([^/]+)$') 473 # object to the datetime. Datetimes can't be changed after they're
|
/external/eigen/debug/gdb/ |
printers.py | 30 import re namespace 49 regex = re.compile('\<.*\>') 175 pretty_printers_dict[re.compile('^Eigen::Quaternion<.*>$')] = lambda val: EigenQuaternionPrinter(val) 176 pretty_printers_dict[re.compile('^Eigen::Matrix<.*>$')] = lambda val: EigenMatrixPrinter("Matrix", val) 177 pretty_printers_dict[re.compile('^Eigen::Array<.*>$')] = lambda val: EigenMatrixPrinter("Array", val)
|
/external/pdfium/tools/drmemory/scripts/ |
drmemory_analyze.py | 16 import re namespace 99 m = re.search("# Suppression for Error #([0-9]+)", line.strip()) 118 match = re.search("^Error #([0-9]+): (.*)", self.line_) 126 if re.search("SUPPRESSIONS USED:", self.line_): 130 (count, name) = re.match(" *([0-9\?]+)x(?: \(.*?\))?: (.*)",
|
/external/tpm2/generator/ |
tpm_table.py | 10 import re namespace 107 (re.compile('(Constants|Defines for Logic Values)'), '_ProcessConstants'), 108 (re.compile('(of Types for|Base Types)'), '_ProcessTypes'), 109 (re.compile('Definition of .* Type'), '_ProcessInterfaceOrType'), 110 (re.compile('Unmarshaling Errors'), '_ProcessEnum'), 111 (re.compile(r'Definition of [\S]+ (Structure|Union)'), 113 (re.compile('Definition of .* Bits'), '_ProcessBits'), 114 (re.compile(r' TPM2_\S+ (Command|Response)'), '_ProcessCommand'), 129 _alg_macro = re.compile(r'!ALG\.([a-z\.]+)', re.IGNORECASE [all...] |
/external/v8/test/mjsunit/ |
string-replace.js | 222 var re = /sh/g; variable 224 str.replace(re,"$$" + 'sch')) 248 function testIndices99(re) { 252 subject.replace(re, "$" + i)); 258 subject.replace(re, "$0" + i)); 261 assertEquals("$0", subject.replace(re, "$0")); 262 assertEquals("$00", subject.replace(re, "$00")); 264 subject.replace(re, "$100")); 273 function testIndices59(re) { 280 subject.replace(re, "$" + i)) [all...] |
/external/v8/test/webkit/ |
testcfg.py | 30 import re namespace 35 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)") 36 FILES_PATTERN = re.compile(r"//\s+Files:(.*)") 37 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME") 68 flags_match = re.findall(FLAGS_PATTERN, source)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
FormatParagraph.py | 17 import re namespace 53 # re-split and re-insert the comment header. 123 words = re.split("(\s+)", lines[i]) 142 return re.match(r"^\s*$", line) is not None 145 return re.match(r"^(\s*)", line).group() 148 m = re.match(r"^(\s*#*)", line)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
pipes.py | 60 import re namespace 122 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 125 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd): 144 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 147 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd):
|
xmllib.py | 5 import re namespace 24 illegal = re.compile('[^\t\r\n -\176\240-\377]') # illegal chars in content 25 interesting = re.compile('[]&<]') 27 amp = re.compile('&') 28 ref = re.compile('&(' + _Name + '|#[0-9]+|#x[0-9a-fA-F]+)[^-a-zA-Z0-9._:]') 29 entityref = re.compile('&(?P<name>' + _Name + ')[^-a-zA-Z0-9._:]') 30 charref = re.compile('&#(?P<char>[0-9]+[^0-9]|x[0-9a-fA-F]+[^0-9a-fA-F])') 31 space = re.compile(_S + '$') 32 newline = re.compile('\n') 34 attrfind = re.compile [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_strftime.py | 7 import re namespace 24 new_text = re.escape(text) 25 new_text = new_text.replace(re.escape(ampm), ampm) 122 if re.match(escapestr(e[1], self.ampm), result): 168 if re.match(escapestr(e[1], self.ampm), result):
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
FormatParagraph.py | 17 import re namespace 53 # re-split and re-insert the comment header. 123 words = re.split("(\s+)", lines[i]) 142 return re.match(r"^\s*$", line) is not None 145 return re.match(r"^(\s*)", line).group() 148 m = re.match(r"^(\s*#*)", line)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
pipes.py | 60 import re namespace 122 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 125 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd): 144 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 147 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd):
|
xmllib.py | 5 import re namespace 24 illegal = re.compile('[^\t\r\n -\176\240-\377]') # illegal chars in content 25 interesting = re.compile('[]&<]') 27 amp = re.compile('&') 28 ref = re.compile('&(' + _Name + '|#[0-9]+|#x[0-9a-fA-F]+)[^-a-zA-Z0-9._:]') 29 entityref = re.compile('&(?P<name>' + _Name + ')[^-a-zA-Z0-9._:]') 30 charref = re.compile('&#(?P<char>[0-9]+[^0-9]|x[0-9a-fA-F]+[^0-9a-fA-F])') 31 space = re.compile(_S + '$') 32 newline = re.compile('\n') 34 attrfind = re.compile [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_strftime.py | 7 import re namespace 24 new_text = re.escape(text) 25 new_text = new_text.replace(re.escape(ampm), ampm) 122 if re.match(escapestr(e[1], self.ampm), result): 168 if re.match(escapestr(e[1], self.ampm), result):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
FormatParagraph.py | 17 import re namespace 53 # re-split and re-insert the comment header. 123 words = re.split("(\s+)", lines[i]) 142 return re.match(r"^\s*$", line) is not None 145 return re.match(r"^(\s*)", line).group() 148 m = re.match(r"^(\s*#*)", line)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
pipes.py | 60 import re namespace 122 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 125 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd): 144 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 147 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd):
|
xmllib.py | 5 import re namespace 24 illegal = re.compile('[^\t\r\n -\176\240-\377]') # illegal chars in content 25 interesting = re.compile('[]&<]') 27 amp = re.compile('&') 28 ref = re.compile('&(' + _Name + '|#[0-9]+|#x[0-9a-fA-F]+)[^-a-zA-Z0-9._:]') 29 entityref = re.compile('&(?P<name>' + _Name + ')[^-a-zA-Z0-9._:]') 30 charref = re.compile('&#(?P<char>[0-9]+[^0-9]|x[0-9a-fA-F]+[^0-9a-fA-F])') 31 space = re.compile(_S + '$') 32 newline = re.compile('\n') 34 attrfind = re.compile [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_strftime.py | 7 import re namespace 24 new_text = re.escape(text) 25 new_text = new_text.replace(re.escape(ampm), ampm) 122 if re.match(escapestr(e[1], self.ampm), result): 168 if re.match(escapestr(e[1], self.ampm), result):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
FormatParagraph.py | 17 import re namespace 53 # re-split and re-insert the comment header. 123 words = re.split("(\s+)", lines[i]) 142 return re.match(r"^\s*$", line) is not None 145 return re.match(r"^(\s*)", line).group() 148 m = re.match(r"^(\s*#*)", line)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
pipes.py | 60 import re namespace 122 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 125 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd): 144 if kind[0] == 'f' and not re.search(r'\$IN\b', cmd): 147 if kind[1] == 'f' and not re.search(r'\$OUT\b', cmd):
|
xmllib.py | 5 import re namespace 24 illegal = re.compile('[^\t\r\n -\176\240-\377]') # illegal chars in content 25 interesting = re.compile('[]&<]') 27 amp = re.compile('&') 28 ref = re.compile('&(' + _Name + '|#[0-9]+|#x[0-9a-fA-F]+)[^-a-zA-Z0-9._:]') 29 entityref = re.compile('&(?P<name>' + _Name + ')[^-a-zA-Z0-9._:]') 30 charref = re.compile('&#(?P<char>[0-9]+[^0-9]|x[0-9a-fA-F]+[^0-9a-fA-F])') 31 space = re.compile(_S + '$') 32 newline = re.compile('\n') 34 attrfind = re.compile [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_strftime.py | 7 import re namespace 24 new_text = re.escape(text) 25 new_text = new_text.replace(re.escape(ampm), ampm) 122 if re.match(escapestr(e[1], self.ampm), result): 168 if re.match(escapestr(e[1], self.ampm), result):
|