/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/ |
filter.rb | 42 rescue ANTLR3::Error::RecognitionError => re 44 report_error( re ) 45 recover( re )
|
/external/chromium/googleurl/ |
PRESUBMIT_unittest.py | 12 import re namespace 19 self.re = re
|
/external/chromium_org/build/android/gyp/ |
jar_toc.py | 20 import re namespace 64 return (re.match('|'.join(good_patterns), line) and 65 not re.match('|'.join(bad_patterns), line))
|
/external/chromium_org/build/android/ |
provision_devices.py | 15 import re namespace 26 matches = re.findall('\\n.*host_heartbeat.*', stdout) 29 pid = re.findall('(\d+)', match)[1]
|
/external/chromium_org/build/mac/ |
find_sdk.py | 7 import re namespace 23 return map(int, re.findall(r'(\d+)', version_str)) 54 sdks = [re.findall('^MacOSX(10\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
|
/external/chromium_org/chrome/app/nibs/ |
PRESUBMIT.py | 11 import re namespace 48 m = re.search(SYSTEM_VERSION_RE, line) 52 m = re.search(IB_VERSION_RE, line) 87 # can ask their reviewer or another person to re-save the XIBs for them.
|
/external/chromium_org/chrome/test/functional/ |
wifi_notification.py | 6 import re namespace 46 result_error = re.search('Error|Failed', notification_result) 49 result_ssid = re.search(router_config['ssid'], notification_result)
|
/external/chromium_org/chrome/test/pyautolib/chromeos/ |
power_strip.py | 6 import re namespace 100 if not re.search('%s\s+\S+\s+%s\s+%s' % (outlet, command, command), 101 resp, re.I):
|
/external/chromium_org/third_party/jinja2/_markupsafe/ |
__init__.py | 11 import re namespace 18 _striptags_re = re.compile(r'(<!--.*?-->|<[^>]*>)') 19 _entity_re = re.compile(r'&([^;]+);')
|
/external/chromium_org/tools/grit/grit/ |
pseudo_rtl.py | 11 import re namespace 45 re.I | re.S # html tokens are case-insensitive
|
/external/chromium_org/tools/gyp/tools/ |
pretty_gyp.py | 10 import re namespace 13 # Regex to remove comments when we're counting braces. 14 COMMENT_RE = re.compile(r'\s*#.*') 16 # Regex to remove quoted strings when we're counting braces. 21 QUOTE_RE = re.compile(QUOTE_RE_STR) 30 search_re = re.compile(r'(.*?)(#)(.*)') 43 search_re = re.compile(r'(.*?)' + QUOTE_RE_STR) 64 lines (lines that matche the double_*_brace re's above) before 71 double_open_brace_re = re.compile(r'(.*?[\[\{\(,])(\s*)([\[\{\(])') 72 double_close_brace_re = re.compile(r'(.*?[\]\}\)],?)(\s*)([\]\}\)])' [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-45469.js | 30 var re = /x/g; variable 33 assertEquals(i % 3, re.lastIndex, "preindex" + i); 34 var res = re.exec("xx"); 38 re = /x/g; 41 assertEquals(i % 3, re.lastIndex, "testpreindex" + i); 42 var res = re.test("xx");
|
/external/protobuf/gtest/test/ |
gtest_help_test.py | 43 import re namespace 55 HELP_REGEX = re.compile( 67 re.DOTALL)
|
/external/v8/test/mjsunit/regress/ |
regress-45469.js | 30 var re = /x/g; variable 33 assertEquals(i % 3, re.lastIndex, "preindex" + i); 34 var res = re.exec("xx"); 38 re = /x/g; 41 assertEquals(i % 3, re.lastIndex, "testpreindex" + i); 42 var res = re.test("xx");
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_list_tests_unittest.py | 43 import re namespace 56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\. 100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
install_egg_info.py | 9 import os, sys, re namespace 60 return re.sub('[^A-Za-z0-9.]+', '-', name) 70 return re.sub('[^A-Za-z0-9.]+', '-', version)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
install_egg_info.py | 9 import os, sys, re namespace 60 return re.sub('[^A-Za-z0-9.]+', '-', name) 70 return re.sub('[^A-Za-z0-9.]+', '-', version)
|
/build/core/ |
checktree | 3 import sys, os, re namespace 14 excludes_compiled = map(re.compile, excludes) 59 regex_compiled = re.compile(regex) 60 filt_compiled = re.compile(filt)
|
/development/tools/findunused/ |
find_unused_resources.rb | 75 def findAllOccurrences(re, string) 79 matchData = re.match(s) 83 matchData = re.match(s) 95 @@javaIdPatterns.each { |re| 96 findAllOccurrences(re, line).each { |id| 121 @@stringXmlPatterns.each { |re| 122 findAllOccurrences(re, line).each {|id| 134 @@stringXmlPatterns.each { |re| 135 findAllOccurrences(re, line).each {|id|
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/ |
SymbolTableParser.m | 247 @catch (ANTLRRecognitionException *re) { 248 [self reportError:re]; 249 [self recover:input Exception:re]; 319 @catch (ANTLRRecognitionException *re) { 320 [self reportError:re]; 321 [self recover:input Exception:re]; 367 @catch (ANTLRRecognitionException *re) { 368 [self reportError:re]; 369 [self recover:input Exception:re]; 473 @catch (ANTLRRecognitionException *re) { [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
SymbolTableParser.m | 275 @catch (ANTLRRecognitionException *re) { 276 [self reportError:re]; 277 [self recover:input Exception:re]; 341 @catch (ANTLRRecognitionException *re) { 342 [self reportError:re]; 343 [self recover:input Exception:re]; 378 @catch (ANTLRRecognitionException *re) { 379 [self reportError:re]; 380 [self recover:input Exception:re]; 473 @catch (ANTLRRecognitionException *re) { [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/ |
TreeRewriteParser.m | 288 @catch (ANTLRRecognitionException *re) { 289 [self reportError:re]; 290 [self recover:input Exception:re]; 291 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re]; 338 @catch (ANTLRRecognitionException *re) { 339 [self reportError:re]; 340 [self recover:input Exception:re]; 341 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re];
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t033backtracking.py | 13 def recover(self, input, re):
|
t038lexerRuleLabel.py | 13 def recover(self, input, re):
|
t040bug80.py | 13 def recover(self, input, re):
|