/external/vixl/tools/ |
generate_simulator_traces.py | 32 import re namespace
|
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/ |
DumpCommand.java | 100 } catch (TimeoutException re) {
|
/frameworks/base/core/java/android/view/ |
InputFilter.java | 178 } catch (RemoteException re) {
|
/frameworks/base/services/core/java/com/android/server/wm/ |
KeyguardDisableHandler.java | 74 // should be re-enabled, so determine the allow state immediately. 80 // lazily evaluate this next time we're asked to disable keyguard 104 } catch (RemoteException re) {
|
/frameworks/native/opengl/libs/GLES_trace/tools/ |
genapi.py | 38 import re namespace 296 m = re.search(self.API_ENTRY_REGEX, apientry) 305 m = re.search(self.API_ENTRY_REGEX, apientry) 313 m = re.search(self.CALL_GL_API_REGEX, callsite)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cygwinccompiler.py | 443 import re namespace 451 result = re.search('(\d+\.\d+(\.\d+)*)',out_string) 465 result = re.search('(\d+\.\d+(\.\d+)*)',out_string) 477 result = re.search(' (\d+\.\d+(\.\d+)*)',out_string)
|
fancy_getopt.py | 15 import re namespace 24 longopt_re = re.compile(r'^%s$' % longopt_pat) 27 neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat)) 72 # don't actually populate these structures until we're ready to 424 chunks = re.split(r'( +|-+)', text) 455 # (and we know from the re.split above that if a chunk has
|
filelist.py | 9 import os, re namespace 297 # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which 300 # any OS. So change all non-escaped dots in the RE to match any 304 # we're using a regex to manipulate a regex, so we need 308 pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', escaped, pattern_re) 322 return re.compile(pattern) 343 return re.compile(pattern_re)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
support.py | 9 import re namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cygwinccompiler.py | 443 import re namespace 451 result = re.search('(\d+\.\d+(\.\d+)*)',out_string) 465 result = re.search('(\d+\.\d+(\.\d+)*)',out_string) 477 result = re.search(' (\d+\.\d+(\.\d+)*)',out_string)
|
fancy_getopt.py | 15 import re namespace 24 longopt_re = re.compile(r'^%s$' % longopt_pat) 27 neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat)) 72 # don't actually populate these structures until we're ready to 424 chunks = re.split(r'( +|-+)', text) 455 # (and we know from the re.split above that if a chunk has
|
filelist.py | 9 import os, re namespace 297 # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which 300 # any OS. So change all non-escaped dots in the RE to match any 304 # we're using a regex to manipulate a regex, so we need 308 pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', escaped, pattern_re) 322 return re.compile(pattern) 343 return re.compile(pattern_re)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/ |
support.py | 9 import re namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
userquery.py | 20 import re namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/setools/ |
userquery.py | 20 import re namespace
|
/external/icu/icu4c/source/test/intltest/ |
regextst.cpp | 800 UnicodeString re("abc"); 802 pat2 = RegexPattern::compile(re, flags, pe, status); 932 UnicodeString re("01(23(45)67)(.*)"); 933 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); 1864 UText re = UTEXT_INITIALIZER; local 2007 UText re=UTEXT_INITIALIZER; local 2152 UText re=UTEXT_INITIALIZER; local 2213 UText re=UTEXT_INITIALIZER; local 2449 UText re=UTEXT_INITIALIZER; local 5018 URegularExpression *re; local 5349 URegularExpression *re = uregex_openC("..(?<one>m)(.)(.)", 0, NULL, &status); local 5786 URegularExpression *re = uregex_openC("(A)|(B)", 0, NULL, &status); local [all...] |
/bionic/libc/tools/zoneinfo/ |
update-tzdata.py | 9 import re namespace 186 new_version = re.search('(tzdata.+)\\.tar\\.gz', data_filename).group(1) 234 m = re.compile('.*href="/time-zones/repository/releases/(tzdata20\d\d\c\.tar\.gz)".*').match(line) 238 # If you're several releases behind, we'll walk you through the upgrades
|
/bionic/tools/bionicbb/ |
presubmit.py | 21 import re namespace 189 re.finditer(r'^bionicbb:\s*(.+)$', body, flags=re.MULTILINE)]
|
/cts/tools/utils/cts/ |
tools.py | 19 import re namespace 173 exp = re.compile(pattern) 188 exp = re.compile(pattern)
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
Lexer.cs | 135 } catch (RecognitionException re) { 136 ReportError(re); 337 public virtual void Recover(RecognitionException re) { 339 //re.printStackTrace();
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/ |
SlimLexer.cs | 167 catch ( RecognitionException re ) 169 ReportError( re ); 426 public virtual void Recover( RecognitionException re ) 429 //re.printStackTrace();
|
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
cachecontrol.py | 4 import re namespace 60 token_re = re.compile( 62 need_quote_re = re.compile(r'[^a-zA-Z0-9._-]')
|
/external/lldb/utils/test/ |
lldb-disasm.py | 9 import re namespace 84 import lldb, atexit, re namespace 134 pattern = re.compile(re_symbol_pattern) 148 # If we come here, we're ready to disassemble the symbol.
|
/external/markdown/markdown/extensions/ |
footnotes.py | 26 import re, markdown namespace 31 DEF_RE = re.compile(r'(\ ?\ ?\ ?)\[\^([^\]]*)\]:\s*(.*)') 32 TABBED_RE = re.compile(r'((\t)|( ))(.*)')
|
/external/markdown/markdown/ |
preprocessors.py | 10 import re namespace 194 RE = re.compile(r'^(\ ?\ ?\ ?)\[([^\]]*)\]:\s*([^ ]*)(.*)$', re.DOTALL) 199 m = self.RE.match(line)
|