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

<<11121314151617181920>>

  /frameworks/compile/slang/tests/
test.py 13 import re namespace
153 bc_dst = re.sub('tmp\/', cts_res_raw_path, bc_src, 1)
156 java_dst = re.sub('tmp\/', cts_src_path, java_src, 1)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
diff.py 14 import re namespace
77 """Walk a file-like object, yielding DiffHunks as they're parsed."""
79 file_regex = re.compile(r"(\+\+\+|---) (\S+)")
80 range_regex = re.compile(r"@@ -(\d+)(,(\d+))? \+(\d+)(,(\d+))?")
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 138 // Implements RE. Currently only needed for death tests.
140 RE::~RE() {
152 // Returns true iff regular expression re matches the entire str.
153 bool RE::FullMatch(const char* str, const RE& re) {
154 if (!re.is_valid_) return false;
157 return regexec(&re.full_regex_, str, 1, &match, 0) == 0;
160 // Returns true iff regular expression re matches a substring of st
    [all...]
  /pdk/build/
prepare_pdk_tree.py 23 import re namespace
33 self.patterns = [re.compile('path=\"([^\"]*)\".*groups=\"([^\"]*)\"'), \
34 re.compile('groups=\"([^\"]*)\".*path=\"([^\"]*)\"')]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 3 import re namespace
82 l.append(re.compile(pat, re.IGNORECASE))
ColorDelegator.py 2 import re namespace
32 prog = re.compile(make_pat(), re.S)
33 idprog = re.compile(r"\s+(\w+)", re.S)
34 asprog = re.compile(r".*?\b(as)\b")
239 # We're in an inconsistent state, and the call to
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
OutputWindow.py 3 import re namespace
82 l.append(re.compile(pat, re.IGNORECASE))
ColorDelegator.py 2 import re namespace
32 prog = re.compile(make_pat(), re.S)
33 idprog = re.compile(r"\s+(\w+)", re.S)
34 asprog = re.compile(r".*?\b(as)\b")
239 # We're in an inconsistent state, and the call to
  /external/v8/test/mjsunit/regress/
regress-regexp-codeflush.js 36 var re = new RegExp('(s)', "g");
45 // Make a long string with plenty of matches for re.
54 x.replace(re, foo);
  /frameworks/base/core/java/android/app/
SearchManager.java 522 * not want to re-speak (e.g. by typing).
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dp.java 130 } catch (Exception re) {
131 Log.e(TAG,"",re);
141 } catch (Exception re) {
142 Log.e(TAG,"",re);
197 } catch (Exception re) {
198 Log.e(TAG,"",re);
BluetoothHealth.java 110 } catch (Exception re) {
111 Log.e(TAG,"",re);
121 } catch (Exception re) {
122 Log.e(TAG,"",re);
514 } catch (Exception re) {
515 Log.e(TAG,"",re);
BluetoothMap.java 65 } catch (Exception re) {
66 Log.e(TAG,"",re);
76 } catch (Exception re) {
77 Log.e(TAG,"",re);
144 } catch (Exception re) {
145 Log.e(TAG,"",re);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
generator.py 8 import re namespace
20 fcre = re.compile(r'^From ', re.MULTILINE)
370 cre = re.compile('^--' + re.escape(b) + '(--)?$', re.MULTILINE)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 3 import re namespace
15 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
57 STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS)
146 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
generator.py 8 import re namespace
20 fcre = re.compile(r'^From ', re.MULTILINE)
370 cre = re.compile('^--' + re.escape(b) + '(--)?$', re.MULTILINE)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 3 import re namespace
15 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
57 STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS)
146 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
  /bionic/benchmarks/
Benchmark.cpp 79 for (const auto& re : regs) {
80 if (regexec(re, GetNameStr(arg).c_str(), 0, NULL, 0) != REG_NOMATCH) {
  /build/tools/
product_debug.py 18 import re namespace
53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
  /development/testrunner/test_defs/
gtest.py 22 import re namespace
120 if re.search("_test$|_test_$|_unittest$|_unittest_$|^test_|Tests$", name):
  /external/aac/libFDK/include/
FDK_trigFcts.h 184 sl = (LONG)tmp.v.re;
190 cl = (LONG)tmp.v.re;
  /external/antlr/antlr-3.4/runtime/Python/tests/
t005lexer.py 16 def reportError(self, re):
18 raise re
t010lexer.py 16 def reportError(self, re):
18 raise re
t011lexer.py 16 def reportError(self, re):
18 raise re
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
nuances.rb 76 def recover(re)
77 raise re

Completed in 1000 milliseconds

<<11121314151617181920>>