/prebuilts/gdb/linux-x86/lib/python2.7/ |
fnmatch.py | 13 import re namespace 54 _cache[pat] = re.compile(res) 78 _cache[pat] = re.compile(res) 115 res = res + re.escape(c)
|
/prebuilts/go/darwin-x86/test/bench/shootout/ |
regex-dna.go | 76 re := regexp.MustCompile(pat) 79 e := re.FindIndex(bytes)
|
/prebuilts/go/linux-x86/test/bench/shootout/ |
regex-dna.go | 76 re := regexp.MustCompile(pat) 79 e := re.FindIndex(bytes)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 103 import re, tempfile, errno namespace 106 expr = r'[^\(\)\s]*lib%s\.[^\(\)\s]*' % re.escape(name) 125 res = re.search(expr, trace) 142 res = re.search(r'\[.*\]\sSONAME\s+([^\s]+)', data) 163 res = re.search(r'\sSONAME\s+([^\s]+)', data) 184 ename = re.escape(name) 191 res = re.findall(expr, data) 244 expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type) 250 res = re.search(expr, data)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
utils.py | 24 import re namespace 51 specialsre = re.compile(r'[][\\()<>@,:;".]') 52 escapesre = re.compile(r'[][\\()"]') 80 s = re.sub(r'(?<!\r)\n', CRLF, s) 82 s = re.sub(r'\r(?!\n)', CRLF, s) 117 ecre = re.compile(r''' 125 ''', re.VERBOSE | re.IGNORECASE) 267 rfc2231_continuation = re.compile(r'^(?P<name>\w+)\*((?P<num>[0-9]+)\*?)?$')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fnmatch.py | 13 import re namespace 54 _cache[pat] = re.compile(res) 78 _cache[pat] = re.compile(res) 115 res = res + re.escape(c)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 103 import re, tempfile, errno namespace 106 expr = r'[^\(\)\s]*lib%s\.[^\(\)\s]*' % re.escape(name) 125 res = re.search(expr, trace) 142 res = re.search(r'\[.*\]\sSONAME\s+([^\s]+)', data) 163 res = re.search(r'\sSONAME\s+([^\s]+)', data) 184 ename = re.escape(name) 191 res = re.findall(expr, data) 244 expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type) 250 res = re.search(expr, data)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
utils.py | 24 import re namespace 51 specialsre = re.compile(r'[][\\()<>@,:;".]') 52 escapesre = re.compile(r'[][\\()"]') 80 s = re.sub(r'(?<!\r)\n', CRLF, s) 82 s = re.sub(r'\r(?!\n)', CRLF, s) 117 ecre = re.compile(r''' 125 ''', re.VERBOSE | re.IGNORECASE) 267 rfc2231_continuation = re.compile(r'^(?P<name>\w+)\*((?P<num>[0-9]+)\*?)?$')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fnmatch.py | 13 import re namespace 54 _cache[pat] = re.compile(res) 78 _cache[pat] = re.compile(res) 115 res = res + re.escape(c)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
commonquery.py | 20 import re namespace
|
/system/sepolicy/tools/ |
post_process_mac_perms | 29 import re namespace 53 results = re.findall(PEM_CERT_RE, pem_string, re.DOTALL) 76 policy_certs = re.findall(cert_pattern, f.read())
|
/toolchain/binutils/binutils-2.25/binutils/ |
windres.c | 334 rc_res_entry *re = NULL; 360 re = *pp; 363 re = (rc_res_entry *) res_alloc (sizeof (rc_res_entry)); 364 re->next = NULL; 365 re->id = ids[i]; 368 re->subdir = 1; 369 re->u.dir = NULL; 373 re->subdir = 0; 374 re->u.res = NULL; 377 *pp = re; 330 rc_res_entry *re = NULL; local 451 rc_res_entry *re; local [all...] |
/development/scripts/ |
stack_core.py | 20 import re namespace 34 process_info_line = re.compile("(pid: [0-9]+, tid: [0-9]+.*)") 35 revision_line = re.compile("(Revision: \'(.*)\')") 36 signal_line = re.compile("(signal [0-9]+ \(.*\).*)") 37 abort_message_line = re.compile("(Abort message: '.*')") 38 thread_line = re.compile("(.*)(\-\-\- ){15}\-\-\-") 39 dalvik_jni_thread_line = re.compile("(\".*\" prio=[0-9]+ tid=[0-9]+ NATIVE.*)") 40 dalvik_native_thread_line = re.compile("(\".*\" sysTid=[0-9]+ nice=[0-9]+.*)") 41 register_line = re.compile("$a") 42 trace_line = re.compile("$a" [all...] |
/external/opencv3/modules/core/src/ |
dxt.cpp | 312 w.re = w1.re = DFTTab[m][0]; 319 w.re = w1.re = std::sqrt(1. - w1.im*w1.im); 327 wave[0].re = 1.; 332 wave[n].re = -1.; 339 wave[n0-i].re = w.re; 342 t = w.re*w1.re - w.im*w1.im [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCParser.java | 132 catch (RecognitionException re) { 133 reportError(re); 134 recover(input,re); 135 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 286 catch (RecognitionException re) { 287 reportError(re); 288 recover(input,re); 289 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 377 catch (RecognitionException re) { 378 reportError(re); [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCParser.java | 132 catch (RecognitionException re) { 133 reportError(re); 134 recover(input,re); 135 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 286 catch (RecognitionException re) { 287 reportError(re); 288 recover(input,re); 289 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 377 catch (RecognitionException re) { 378 reportError(re); [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
PyParse.py | 1 import re namespace 14 _synchre = re.compile(r""" 33 """, re.VERBOSE | re.MULTILINE).search 37 _junkre = re.compile(r""" 41 """, re.VERBOSE).match 44 # so that we're robust in the face of incomplete program text. 46 _match_stringre = re.compile(r""" 62 """, re.VERBOSE | re.DOTALL).matc [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
PyParse.py | 1 import re namespace 14 _synchre = re.compile(r""" 33 """, re.VERBOSE | re.MULTILINE).search 37 _junkre = re.compile(r""" 41 """, re.VERBOSE).match 44 # so that we're robust in the face of incomplete program text. 46 _match_stringre = re.compile(r""" 62 """, re.VERBOSE | re.DOTALL).matc [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 1 import re namespace 14 _synchre = re.compile(r""" 33 """, re.VERBOSE | re.MULTILINE).search 37 _junkre = re.compile(r""" 41 """, re.VERBOSE).match 44 # so that we're robust in the face of incomplete program text. 46 _match_stringre = re.compile(r""" 62 """, re.VERBOSE | re.DOTALL).matc [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 1 import re namespace 14 _synchre = re.compile(r""" 33 """, re.VERBOSE | re.MULTILINE).search 37 _junkre = re.compile(r""" 41 """, re.VERBOSE).match 44 # so that we're robust in the face of incomplete program text. 46 _match_stringre = re.compile(r""" 62 """, re.VERBOSE | re.DOTALL).matc [all...] |
/external/libopus/celt/ |
mdct.c | 130 /* Temp pointers to make it really clear to the compiler what we're doing */ 173 kiss_fft_scalar re, im, yr, yi; local 174 re = yp[0]; 176 yr = -S_MUL(re,t[i<<shift]) - S_MUL(im,t[(N4-i)<<shift]); 177 yi = -S_MUL(im,t[i<<shift]) + S_MUL(re,t[(N4-i)<<shift]); 189 /* Temp pointers to make it really clear to the compiler what we're doing */ 194 /* Temp pointers to make it really clear to the compiler what we're doing */ 233 /* Temp pointers to make it really clear to the compiler what we're doing */ 264 kiss_fft_scalar re, im, yr, yi; local 266 re = yp0[0] [all...] |
/external/opencv3/modules/ts/misc/ |
run.py | 3 import sys, os, platform, xml, re, tempfile, glob, datetime, getpass, shutil namespace 56 {'name': "has_perf_tests", 'default': "OFF", 'pattern': re.compile("^BUILD_PERF_TESTS:BOOL=(ON)$")}, 57 {'name': "has_accuracy_tests", 'default': "OFF", 'pattern': re.compile("^BUILD_TESTS:BOOL=(ON)$")}, 58 {'name': "cmake_home", 'default': None, 'pattern': re.compile("^CMAKE_HOME_DIRECTORY:INTERNAL=(.+)$")}, 59 {'name': "opencv_home", 'default': None, 'pattern': re.compile("^OpenCV_SOURCE_DIR:STATIC=(.+)$")}, 60 {'name': "tests_dir", 'default': None, 'pattern': re.compile("^EXECUTABLE_OUTPUT_PATH:PATH=(.+)$")}, 61 {'name': "build_type", 'default': "Release", 'pattern': re.compile("^CMAKE_BUILD_TYPE:STRING=(.*)$")}, 62 {'name': "svnversion_path", 'default': None, 'pattern': re.compile("^SVNVERSION_PATH:FILEPATH=(.*)$")}, 63 {'name': "git_executable", 'default': None, 'pattern': re.compile("^GIT_EXECUTABLE:FILEPATH=(.*)$")}, 64 {'name': "cxx_flags", 'default': "", 'pattern': re.compile("^CMAKE_CXX_FLAGS:STRING=(.*)$")} [all...] |
/external/autotest/client/virt/ |
virt_test_utils.py | 24 import time, os, logging, re, signal namespace 151 Migrate a VM locally and re-register it in the environment. 312 if re.search(r"\bFAILED (1060|1062)\b", o, re.I): 333 if re.search(r"\bFAILED 1060\b", o, re.I): 337 if re.search(r"\bFAILED 1056\b", o, re.I): 361 if len(re.findall("ntpdate|w32tm", time_command)) == 0: 366 s = re.findall(time_filter_re, s)[0 [all...] |
/art/runtime/interpreter/mterp/arm/ |
bincmp.S | 15 cmp rPROFILE, #JIT_CHECK_OSR @ possible OSR re-entry?
|
zcmp.S | 13 cmp rPROFILE, #JIT_CHECK_OSR @ possible OSR re-entry?
|