HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 651 - 675 of 1775) sorted by null

<<21222324252627282930>>

  /external/protobuf/python/google/protobuf/
text_format.py 40 import re namespace
54 _FLOAT_INFINITY = re.compile('-?inf(?:inity)?f?', re.IGNORECASE)
55 _FLOAT_NAN = re.compile('nanf?', re.IGNORECASE)
469 _WHITESPACE = re.compile('(\\s|(#.*$))+', re.MULTILINE)
470 _TOKEN = re.compile(
475 _IDENTIFIER = re.compile(r'\w+')
  /external/regex-re2/re2/
unicode.py 8 import re namespace
114 match = re.match("<(.*), (First|Last)>", s)
135 processing the file. When done with the file, the reader re-raises
  /external/scrypt/
Scrypt.mk 16 # If we're building an unbundled build, don't try to use clang since it's not
  /external/selinux/sepolgen/src/sepolgen/
module.py 29 import re namespace
40 m = re.findall("[^a-zA-Z0-9_\-\.]", modname)
  /external/skia/platform_tools/android/bin/
adb_list_devices.py 11 import re namespace
43 match = re.search(search_str, output)
  /external/skia/tools/
find_bad_images_in_skps.py 25 import re namespace
59 ignores = [re.compile(ignore) for ignore in ignores]
gen_bench_expectations_from_codereview.py 15 import re namespace
113 match = re.match('bench_(?P<revision>[0-9a-fA-F]{2,40})_data.*', data_file)
132 try_build: TryBuild instance; the build we're concerned about.
133 step_name: string; name of the step we're concerned about.
188 # Even if we're not erroring out on try failures, we can't generate new
  /external/v8/test/mjsunit/
string-match.js 114 var re = /\w+/g; variable
115 testMatch("Global", stringSample2, re,
118 re.lastIndex = 10;
120 testMatch("Global-ignore-lastIndex", stringSample2, re,
  /external/v8/test/preparser/
testcfg.py 30 import re namespace
48 rule_regex = re.compile("^([\w\-]+)(?::([\w\-]+))?(?::(\d+),(\d+))?$")
  /external/v8/tools/push-to-trunk/
bump_up_version.py 180 if re.search(r"maintenance|no commits", message, flags=re.I):
  /external/v8/tools/
run_perf.py 98 import re namespace
117 GENERIC_RESULTS_RE = re.compile(
212 regexp_default = parent.results_regexp % re.escape(suite["name"])
219 stddev_default = parent.stddev_regexp % re.escape(suite["name"])
240 re.search(self.results_regexp, stdout, re.M).group(1))
250 self.stddev = re.search(self.stddev_regexp, stdout, re.M).group(1)
  /frameworks/base/libs/input/
Android.mk 49 # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
  /packages/apps/Exchange/src/com/android/exchange/service/
CalendarSyncAdapterService.java 123 } catch (final RemoteException re) {
124 LogUtils.e(TAG, re, "While trying to pushModify within onPerformSync");
ContactsSyncAdapterService.java 126 } catch (final RemoteException re) {
127 LogUtils.e(TAG, re, "While trying to pushModify within onPerformSync");
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
set-xcode-analyzer 14 import re namespace
45 m = re.search('^(\s*ExecPath\s*=\s*")', line)
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
set-xcode-analyzer 14 import re namespace
45 m = re.search('^(\s*ExecPath\s*=\s*")', line)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fpformat.py 17 import re namespace
22 decoder = re.compile(r'^([-+]?)0*(\d*)((?:\.\d*)?)(([eE][-+]?\d+)?)$')
telnetlib.py 631 compiled (re.RegexObject instances) or uncompiled (strings).
659 re = None
664 if not re: import re namespace
665 expect_list[i] = re.compile(expect_list[i])
722 re = None
727 if not re: import re namespace
728 list[i] = re.compile(list[i])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 12 import re namespace
13 tspecials = re.compile(r'[ \(\)<>@,;:\\"/\[\]\?=]')
79 fields deleted and re-inserted are always appended to the header list.
100 Any fields deleted and re-inserted are always appended to the header
110 Any fields deleted and re-inserted are always appended to the header
120 Any fields deleted and re-inserted are always appended to the header
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fpformat.py 17 import re namespace
22 decoder = re.compile(r'^([-+]?)0*(\d*)((?:\.\d*)?)(([eE][-+]?\d+)?)$')
telnetlib.py 631 compiled (re.RegexObject instances) or uncompiled (strings).
659 re = None
664 if not re: import re namespace
665 expect_list[i] = re.compile(expect_list[i])
722 re = None
727 if not re: import re namespace
728 list[i] = re.compile(list[i])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
module.py 29 import re namespace
40 m = re.findall("[^a-zA-Z0-9_\-\.]", modname)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
module.py 29 import re namespace
40 m = re.findall("[^a-zA-Z0-9_\-\.]", modname)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
headers.py 12 import re namespace
13 tspecials = re.compile(r'[ \(\)<>@,;:\\"/\[\]\?=]')
79 fields deleted and re-inserted are always appended to the header list.
100 Any fields deleted and re-inserted are always appended to the header
110 Any fields deleted and re-inserted are always appended to the header
120 Any fields deleted and re-inserted are always appended to the header
  /sdk/eclipse/scripts/
collect_sources_for_sdk.py 29 import re namespace
35 _RE_PKG = re.compile("^\s*package\s+([^\s;]+)\s*;.*")

Completed in 1127 milliseconds

<<21222324252627282930>>