/external/antlr/antlr-3.4/runtime/Python/tests/ |
t035ruleLabelPropertyRef.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t036multipleReturnValues.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t037rulePropertyRef.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t041parameters.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
t043synpred.py | 13 def recover(self, input, re): 22 def recover(self, input, re):
|
/external/chromium/build/ |
compiler_version.py | 14 import re namespace 24 result = re.match(r"(\d+)\.(\d+)", gcc_output)
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
run_all.py | 50 import re namespace 55 _TEST_MODULE_PATTERN = re.compile(r'^(test_.+)\.py$')
|
/external/regex-re2/re2/testing/ |
possible_match_test.cc | 110 Regexp* re = Regexp::Parse(t.regexp, Regexp::LikePerl, NULL); local 111 CHECK(re); 112 Prog* prog = re->CompileToProg(0); 117 re->Decref(); 199 RE2 re(regexp, RE2::Latin1); 200 CHECK_EQ(re.error(), ""); 203 if(!re.PossibleMatchRange(&min, &max, 10)) { 216 if (!RE2::FullMatch(s, re))
|
/external/v8/tools/ |
utils.py | 30 import re namespace 78 elif (not id) or (not re.match('(x|i[3-6])86$', id) is None):
|
disasm.py | 31 import re namespace 44 _DISASM_HEADER_RE = re.compile(r"[a-f0-9]+\s+<.*:$") 45 _DISASM_LINE_RE = re.compile(r"\s*([a-f0-9]+):\s*(\S.*)")
|
gen-postmortem-metadata.py | 49 import re namespace 137 # for which we're going to emit descriptive constants. 182 # Construct a dictionary for the classes we're sure should be present. 203 line = re.sub('//.*', '', line.rstrip().lstrip()); 209 match = re.match('class (\w[^\s:]*)(: public (\w[^\s{]*))?\s*{', 222 types[re.sub('\s*=.*', '', entry).lstrip()] = True; 235 usetype = re.sub('SYMBOL_', 'STRING_', type); 240 usetype = re.sub('_REGEXP_', '_REG_EXP_', usetype); 286 # representation and encoding and add them if they're not 295 cctype = re.sub('AsciiString$' [all...] |
/external/valgrind/unittest/ |
match_output.py | 3 import re namespace 17 if re.search(line_re, line):
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/ |
regress-169534.js | 55 var re = /(\|)([\w\x81-\xff ]*)(\|)([\/a-z][\w:\/\.]*\.[a-z]{3,4})(\|)/ig; variable 57 actual = str.replace(re, '<a href="$4">$2</a>');
|
regress-220367-002.js | 54 var re = /(a)|(b)/; variable 56 re.test('a'); 67 re.test('b');
|
/external/webkit/Tools/Scripts/ |
make-gypi | 31 import re namespace 43 source_code_regexp = re.compile(r'\.(cpp|h|m|mm)$')
|
/external/webkit/Tools/Scripts/webkitpy/common/checkout/ |
changelog.py | 34 import re namespace 55 match = re.match(self.date_line_regexp, self._contents, re.MULTILINE) 63 match = re.search("^\s+Reviewed by (?P<reviewer>.*?)[\.,]?\s*$", self._contents, re.MULTILINE) # Discard everything after the first period 106 date_line_regexp = re.compile(ChangeLogEntry.date_line_regexp) 107 rolled_over_regexp = re.compile(ChangeLogEntry.rolled_over_regexp) 151 reviewed_by_regexp = re.compile( 154 # inplace=1 creates a backup file and re-directs stdout to the file 170 # inplace=1 creates a backup file and re-directs stdout to the fil [all...] |
/external/v8/test/mjsunit/ |
regexp-compile.js | 30 var re = /x/; variable 31 assertEquals("a.yb", "axyb".replace(re, ".")); 33 re.compile("y"); 34 assertEquals("ax.b", "axyb".replace(re, ".")); 36 re.compile("(x)"); 38 assertEquals(["x", "x"], re.exec("axyb")); 40 re.compile("(y)"); 42 assertEquals(["y", "y"], re.exec("axyb"));
|
/external/valgrind/main/memcheck/tests/ |
clireq_nofill.stderr.exp | 3 Address 0x........ is 0 bytes inside a recently re-allocated block of size 40 alloc'd 9 Address 0x........ is 0 bytes inside a recently re-allocated block of size 40 alloc'd
|
/bionic/libc/tools/ |
check-symbols.py | 5 import re namespace 11 arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain) 38 r = re.compile(r' +\d+: [0-9a-f]+ +\d+ (FUNC|OBJECT) +\S+ +\S+ +\d+ (\S+)')
|
/external/llvm/utils/lint/ |
common_lint.py | 5 import re namespace 42 tab_re = re.compile(r'\t') 63 trailing_whitespace_re = re.compile(r'\s+$')
|
/external/markdown/markdown/extensions/ |
meta.py | 43 import markdown, re namespace 46 META_RE = re.compile(r'^[ ]{0,3}(?P<key>[A-Za-z0-9_-]+):\s*(?P<value>.*)') 47 META_MORE_RE = re.compile(r'^[ ]{4,}(?P<value>.*)')
|
/external/v8/test/mjsunit/regress/ |
regress-58740.js | 30 var re = /.+/g; variable 31 re.exec(""); 32 re.exec("anystring"); 33 re=/.+/g; 34 re.exec(""); 35 assertEquals(0, re.lastIndex);
|
regress-219.js | 39 function assertFlags(re, global, multiline, ignoreCase) { 40 var name = re + " flag: "; 41 (global ? assertTrue : assertFalse)(re.global, name + "g"); 42 (multiline ? assertTrue : assertFalse)(re.multiline, name + "m"); 43 (ignoreCase ? assertTrue : assertFalse)(re.ignoreCase, name + "i"); 46 var re = /a/; variable 47 assertFlags(re, false, false, false) 49 re = /a/gim; 50 assertFlags(re, true, true, true) 52 re = RegExp("a","") 126 var re = \/a\/gmi; variable [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
update_webgl_conformance_tests.py | 32 import re namespace 41 return re.compile(r'^<!--.*?-->\s*', re.DOTALL).sub('', text) 55 search = r'(?:[^"\'= ]*/)?' + re.escape(filename) 59 text = re.sub(search, replace, text)
|
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
SSLContextSpiTest.java | 60 } catch (RuntimeException re) { 61 String str = re.getMessage(); 79 } catch (RuntimeException re) { 80 String str = re.getMessage(); 110 } catch (RuntimeException re) { 111 String str = re.getMessage(); 121 } catch (RuntimeException re) { 122 String str = re.getMessage(); 132 } catch (RuntimeException re) { 133 String str = re.getMessage() [all...] |