HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 701 - 725 of 3066) sorted by null

<<21222324252627282930>>

  /external/selinux/policycoreutils/mcstrans/share/util/
mlscolor-test 3 import re
  /external/skia/bench/
bench_util.py 8 import re namespace
32 PER_SETTING_RE_COMPILED = re.compile(PER_SETTING_RE)
33 SETTINGS_RE_COMPILED = re.compile(SETTINGS_RE)
34 BENCH_RE_COMPILED = re.compile(BENCH_RE)
35 TIME_RE_COMPILED = re.compile(TIME_RE)
36 CONFIG_RE_COMPILED = re.compile(CONFIG_RE)
37 TILE_RE_COMPILED = re.compile(TILE_RE)
38 TILE_LAYOUT_RE_COMPILED = re.compile(TILE_LAYOUT_RE)
185 # need the RE complexities.
  /external/v8/build/
download_gold_plugin.py 11 import re namespace
49 if not re.search(r'cfi_vptr=1', os.environ.get('GYP_DEFINES', '')):
  /external/v8/test/webkit/
regexp-in-and-foreach-handling.js 40 var re = tests[i][0],
43 matches = re.exec(str);
55 var re = tests[i][0],
58 matches = re.exec(str);
  /external/v8/tools/testrunner/local/
utils.py 34 import re namespace
97 elif (not machine) or (not re.match('(x|i[3-6])86$', machine) is None):
  /external/webrtc/tools/valgrind-webrtc/memcheck/
PRESUBMIT.py 18 import re namespace
30 sup_regex = re.compile('suppressions.*\.txt$')
  /frameworks/native/services/surfaceflinger/tests/
Android.mk 29 # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
  /frameworks/webview/chromium/tools/
memreport.py 27 import re namespace
69 regexps[region_filter] = re.compile(region_filter)
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapTempFileLiteral.java 78 // It's probably possible if we're low on storage and the system clears the cache dir.
108 } catch (RuntimeException re) {
110 LogUtils.w(Logging.LOG_TAG, "Failed to remove temp file: " + re.getMessage());
  /packages/services/Telephony/src/com/android/phone/common/mail/store/imap/
ImapTempFileLiteral.java 78 // It's probably possible if we're low on storage and the system clears the cache dir.
108 } catch (RuntimeException re) {
110 LogUtils.w(TAG, "Failed to remove temp file: " + re.getMessage());
  /prebuilts/gdb/darwin-x86/lib/python2.7/
glob.py 5 import re namespace
92 magic_check = re.compile('[*?[]')
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/function/
strfns.py 20 import re namespace
100 r = re.compile(regex.string())
  /prebuilts/gdb/linux-x86/lib/python2.7/
glob.py 5 import re namespace
92 magic_check = re.compile('[*?[]')
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/function/
strfns.py 20 import re namespace
100 r = re.compile(regex.string())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
glob.py 5 import re namespace
92 magic_check = re.compile('[*?[]')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
glob.py 5 import re namespace
92 magic_check = re.compile('[*?[]')
  /system/core/toolbox/
generate-input.h-labels.py 21 import re namespace
39 r = re.compile(r'#define\s+(\S+)\s+((?:0x)?\d+)')
  /art/tools/checker/file_format/checker/
parser.py 20 import re namespace
41 match = re.match(regexPrefix, line)
121 matchWhitespace = re.search(r"\s+", line)
122 matchPattern = re.search(TestExpression.Regex.regexPattern, line)
123 matchVariableDefinition = re.search(TestExpression.Regex.regexVariableDefinition, line)
124 matchVariableReference = re.search(TestExpression.Regex.regexVariableReference, line)
151 # If we're not currently looking at a special marker, this is a plain
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
ComplexFormat.java 32 * Formats a Complex number in cartesian format "Re(c) + Im(c)i". 'i' can
131 * @return A formatted number in the form "Re(c) + Im(c)i"
153 double re = complex.getReal(); local
154 formatDouble(re, getRealFormat(), toAppendTo, pos);
279 Number re = parseNumber(source, getRealFormat(), pos); local
280 if (re == null) {
295 return new Complex(re.doubleValue(), 0.0);
328 return new Complex(re.doubleValue(), im.doubleValue() * sign);
  /external/autotest/client/cros/
cros_logging.py 5 import abc, logging, os, re, time namespace
20 kernel = re.search(r' kernel: \[ *\d+.\d+\] (.*)$', msg)
24 user = re.match(r'[^a-z]+ [^ ]* ([^\[ ]+)(?:\[.*\])?(: .*)$', msg)
41 match = re.search('\[\s*([0-9]+\.[0-9]+)\] ', msg)
71 regexp_compiled = re.compile(regexp)
153 regexp_compiled = re.compile(pattern)
  /external/avahi/avahi-python/avahi/
ServiceTypeDatabase.py.in 22 import re
96 if re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+', key) and not re.search('_[a-zA-Z0-9-]+\._[a-zA-Z0-9-]+\[.*\]', key):
  /external/chromium-trace/catapult/firefighter/update/handlers/
builds.py 7 import re namespace
125 match = re.match(r'(.+) \(([0-9]+)\)', builder.name)
191 match = re.match(r'^([A-Za-z]+)(?: ([0-9\.]+|XP))?([A-Za-z0-9-\. ]+)? '
205 match = re.match(r'^Catapult(?: ([A-Za-z])+)? ([A-Za-z]+)$',
213 match = re.match(r'^(android|linux|mac|win).*_([a-z]+)$',
219 match = re.match(r'^Catapult(?: (Android|Linux|Mac|Windows))? ([A-Za-z]+)$',
  /external/chromium-trace/catapult/third_party/coverage/coverage/
phystokens.py 8 import re namespace
23 re-create a faithful representation of the original source.
101 for part in re.split('(\n)', ttext):
156 COOKIE_RE = re.compile(r"^[ \t]*#.*coding[:=][ \t]*([-\w.]+)", flags=re.MULTILINE)
178 if re.match(r"^utf-8($|-)", enc):
180 if re.match(r"^(latin-1|iso-8859-1|iso-latin-1)($|-)", enc):
  /external/dbus/test/
unused-code-gc.py 6 import re namespace
92 sym_re = re.compile ('([0-9a-f]+) <([^>]+)>:')
94 ref_re = re.compile (' <([^>]+)> *$')
96 file_re = re.compile ('^(\/[^:].*):[0-9]+$')
98 funcname_re = re.compile ('([^+]+)\+[0-9a-fx]+')
100 dynsym_re = re.compile ('T ([^ \n]+)$')
  /external/jsoncpp/devtools/
antglob.py 7 import re namespace
57 _ANT_RE = re.compile( r'(/\*\*/)|(\*\*/)|(/\*\*)|(\*)|(/)|([^\*/]*)' )
68 sep_rex = r'(?:/|%s)' % re.escape( os.path.sep )
82 rex.append( '[^/%s]*' % re.escape(os.path.sep) )
86 rex.append( re.escape(match.group(6)) )
89 return re.compile( ''.join( rex ) )

Completed in 1245 milliseconds

<<21222324252627282930>>