HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 476 - 500 of 2026) sorted by null

<<11121314151617181920>>

  /external/jmonkeyengine/
Android.mk 15 # stripped out even if they're compiled into the jar. You will need
  /external/mesa3d/src/glsl/tests/
sexps.py 30 import re namespace
49 sexp_token_regexp = re.compile(
  /external/skia/bench/
bench_util.py 7 import re namespace
31 PER_SETTING_RE_COMPILED = re.compile(PER_SETTING_RE)
32 SETTINGS_RE_COMPILED = re.compile(SETTINGS_RE)
33 BENCH_RE_COMPILED = re.compile(BENCH_RE)
34 TIME_RE_COMPILED = re.compile(TIME_RE)
35 CONFIG_RE_COMPILED = re.compile(CONFIG_RE)
36 TILE_RE_COMPILED = re.compile(TILE_RE)
37 TILE_LAYOUT_RE_COMPILED = re.compile(TILE_LAYOUT_RE)
  /frameworks/webview/chromium/tools/
memreport.py 27 import re namespace
69 regexps[region_filter] = re.compile(region_filter)
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 36 # define re_set_registers(bu, re, nu, st, en) \
37 __re_set_registers (bu, re, nu, st, en)
  /packages/apps/Email/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());
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/function/
strfns.py 20 import re namespace
100 r = re.compile(regex.string())
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/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('[*?[]')
  /external/chromium_org/build/android/pylib/instrumentation/
test_jar.py 11 import re namespace
26 _PROGUARD_CLASS_RE = re.compile(r'\s*?- Program class:\s*([\S]+)$')
27 _PROGUARD_METHOD_RE = re.compile(r'\s*?- Method:\s*(\S*)[(].*$')
28 _PROGUARD_ANNOTATION_RE = re.compile(r'\s*?- Annotation \[L(\S*);\]:$')
30 re.compile(r'\s*?- Constant element value.*$'))
31 _PROGUARD_ANNOTATION_VALUE_RE = re.compile(r'\s*?- \S+? \[(.*)\]$')
  /external/chromium_org/chrome/common/extensions/docs/server2/
fake_fetchers.py 10 import re namespace
51 self._base_pattern = re.compile(r'.*chrome/common/extensions/(.*)')
78 self._base_pattern = re.compile(r'.*chrome/common/extensions/(.*)')
127 self._base_pattern = re.compile(r'.*/(api/.*)')
143 self._base_pattern = re.compile(r'.*/(tarball/\d+/\d+)')
161 re.escape(url_constants.OMAHA_DEV_HISTORY): FakeOmahaHistory(docs),
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/xmlpool/
gen_xmlpool.py 5 import re namespace
144 reLibintl_h = re.compile (r'#\s*include\s*<libintl.h>')
145 reDESC = re.compile (r'(\s*DRI_CONF_DESC\s*\(\s*)([a-z]+)(\s*,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
146 reDESC_BEGIN = re.compile (r'(\s*DRI_CONF_DESC_BEGIN\s*\(\s*)([a-z]+)(\s*,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
147 reENUM = re.compile (r'(\s*DRI_CONF_ENUM\s*\([^,]+,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
148 reDESC_END = re.compile (r'\s*DRI_CONF_DESC_END')
  /external/chromium_org/v8/test/mjsunit/bugs/
bug-617.js 38 var re = /foo/; variable
40 re.exec = make_sure_we_dont_get_here;
42 re("foo");
  /external/chromium_org/v8/test/mjsunit/regress/
regress-227.js 28 var re = /\u23a1|x/; variable
29 var res = re.exec("!");
32 res = re.exec("!x");
  /external/chromium_org/v8/test/webkit/fast/regex/
alternative-length-miscalculation.js 28 var re = /b|[^b]/g; variable
29 re.lastIndex = 1;
30 shouldBe("re.exec('a')", "null");
  /external/mesa3d/src/mesa/drivers/dri/common/xmlpool/
gen_xmlpool.py 5 import re namespace
144 reLibintl_h = re.compile (r'#\s*include\s*<libintl.h>')
145 reDESC = re.compile (r'(\s*DRI_CONF_DESC\s*\(\s*)([a-z]+)(\s*,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
146 reDESC_BEGIN = re.compile (r'(\s*DRI_CONF_DESC_BEGIN\s*\(\s*)([a-z]+)(\s*,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
147 reENUM = re.compile (r'(\s*DRI_CONF_ENUM\s*\([^,]+,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
148 reDESC_END = re.compile (r'\s*DRI_CONF_DESC_END')
  /external/oprofile/
opimport_pull 4 import re
85 deleted_pattern = re.compile(" \(deleted\)$");
100 pattern = re.compile("(^raw_samples)(.*)/(.*)$")
  /external/v8/test/mjsunit/bugs/
bug-617.js 38 var re = /foo/; variable
40 re.exec = make_sure_we_dont_get_here;
42 re("foo");
  /external/v8/test/mjsunit/regress/
regress-227.js 28 var re = /\u23a1|x/; variable
29 var res = re.exec("!");
32 res = re.exec("!x");
  /frameworks/base/core/java/android/bluetooth/
BluetoothPbap.java 123 } catch (Exception re) {
124 Log.e(TAG,"",re);
134 } catch (Exception re) {
135 Log.e(TAG,"",re);
200 } catch (Exception re) {
201 Log.e(TAG,"",re);
  /packages/apps/Browser/tools/
get_search_engines.py 29 import re namespace
89 str = re.sub(r'\\x([a-fA-F0-9]{1,4})', r'&#x\1;', str)
107 search_obj = re.search(re_exp, self.chrome_data)
128 engine_data_str = re.sub('\"\s+\"', '', engine_data_str)
129 engine_data_str = re.sub('\"\s+L\"', '', engine_data_str)
164 engines_str = re.sub('\/\*.+\*\/', '', engines_str)
165 engines_str = re.sub('\s+', '', engines_str)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 1 import re namespace
53 pat = re.escape(pat)
66 flags = flags | re.IGNORECASE
68 prog = re.compile(pat, flags)
69 except re.error, what:
91 pat = re.escape(pat)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
SearchEngine.py 1 import re namespace
53 pat = re.escape(pat)
66 flags = flags | re.IGNORECASE
68 prog = re.compile(pat, flags)
69 except re.error, what:
91 pat = re.escape(pat)
  /external/chromium_org/base/android/jni_generator/
jni_generator.py 13 import re namespace
132 re_import = re.compile(r'import.*?(?P<class>\S*?);')
133 for match in re.finditer(re_import, contents):
136 re_inner = re.compile(r'(class|interface)\s+?(?P<name>\w+?)\W')
137 for match in re.finditer(re_inner, contents):
271 re_jni_namespace = re.compile('.*?@JNINamespace\("(.*?)"\)')
272 m = re.findall(re_jni_namespace, contents)
279 re_package = re.compile('.*?package (.*?);')
280 matches = re.findall(re_package, contents)
291 re_native = re.compile(r'(@NativeClassQualifiedName
    [all...]

Completed in 1220 milliseconds

<<11121314151617181920>>