HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 226 - 250 of 942) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/
Android.mk 5 # This tool is prebuilt if we're doing an app-only build.
  /external/antlr/antlr-3.4/runtime/Python/tests/
t004lexer.py 16 def reportError(self, re):
18 raise re
t006lexer.py 16 def reportError(self, re):
18 raise re
t007lexer.py 16 def reportError(self, re):
18 raise re
t008lexer.py 16 def reportError(self, re):
18 raise re
t009lexer.py 16 def reportError(self, re):
18 raise re
t044trace.py 27 def recover(self, input, re):
50 def recover(self, input, re):
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
filetestcase.py 27 import re namespace
41 _EXPECTED_RE = re.compile(r'\s*//\s*(?:(?P<line>[+-]?[0-9]+):)?'
  /external/jmonkeyengine/
Android.mk 15 # stripped out even if they're compiled into the jar. You will need
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-58274.js 161 var re = /\s*function\s+(\S+)\s*\(/;
162 var arr = s.match(re);
  /external/webkit/Tools/QueueStatusServer/model/
queues.py 30 import re namespace
100 _dash_regexp = re.compile("-")
  /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 79 // It's probably possible if we're low on storage and the system clears the cache dir.
104 } catch (RuntimeException re) {
106 Log.w(Logging.LOG_TAG, "Failed to remove temp file: " + re.getMessage());
  /external/oprofile/
opimport_pull 4 import re
85 deleted_pattern = re.compile(" \(deleted\)$");
100 pattern = re.compile("(^raw_samples)(.*)/(.*)$")
  /external/skia/bench/
bench_util.py 7 import re namespace
93 for config in re.finditer(config_re, line):
98 for new_time in re.finditer(time_re, times):
130 settingsMatch = re.search(settings_re, line)
133 for settingMatch in re.finditer(setting_re, settingsMatch.group(1)):
140 new_bench = re.search(bench_re, line)
  /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");
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
decoder.py 4 import re namespace
8 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
60 STRINGCHUNK = re.compile(r'(.*?)(["\\])', FLAGS)
116 WHITESPACE = re.compile(r'\s*', FLAGS)
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dp.java 122 } catch (Exception re) {
123 Log.e(TAG,"",re);
135 } catch (Exception re) {
136 Log.e(TAG,"",re);
181 } catch (Exception re) {
182 Log.e(TAG,"",re);
BluetoothPan.java 137 } catch (RemoteException re) {
138 Log.w(TAG,"Unable to register BluetoothStateChangeCallback",re);
157 } catch (RemoteException re) {
158 Log.w(TAG,"Unable to register BluetoothStateChangeCallback",re);
184 } catch (Exception re) {
185 Log.e(TAG,"",re);
BluetoothPbap.java 123 } catch (Exception re) {
124 Log.e(TAG,"",re);
138 } catch (Exception re) {
139 Log.e(TAG,"",re);
196 } catch (Exception re) {
197 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)
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCParser.m     [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCParser.m     [all...]
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 128 // RE - a simple regular expression class using the POSIX
625 // Defines RE.
629 class RE {
631 // Constructs an RE from a string.
633 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
637 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
640 RE(const char* regex) { Init(regex); } // NOLINT
641 ~RE();
646 // FullMatch(str, re) returns true iff regular expression re matche
    [all...]

Completed in 338 milliseconds

1 2 3 4 5 6 7 8 91011>>