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

1 2 3 4 5 67 8 91011>>

  /external/v8/build/
detect_v8_host_arch.py 32 import re namespace
47 if re.match(r'i.86', host_arch) or host_arch == 'i86pc':
  /external/v8/test/webkit/fast/regex/
constructor.js 26 var re = /abc/; variable
28 shouldBeTrue("re === RegExp(re)");
29 shouldBeTrue("re !== new RegExp(re)");
30 shouldBeFalse("re === RegExp(re,'i')");
31 shouldBeTrue("re !== new RegExp(re,'i')");
  /external/v8/tools/
gc_nvp_common.py 11 import re namespace
15 for (name, value) in re.findall(r"([._\w]+)=([-\w]+(?:\.[0-9]+)?)", s):
  /external/vixl/tools/
git.py 27 import re namespace
48 untracked_regexp = re.compile('\?\?.*(src/|test/|tools/).*(.cc$|.h$)')
  /frameworks/base/core/java/android/app/
UiAutomation.java 225 } catch (RemoteException re) {
226 throw new RuntimeException("Error while connecting UiAutomation", re);
281 } catch (RemoteException re) {
282 throw new RuntimeException("Error while disconnecting UiAutomation", re);
358 } catch (RemoteException re) {
359 Log.w(LOG_TAG, "Error while calling performGlobalAction", re);
407 } catch (RemoteException re) {
408 Log.w(LOG_TAG, "Error while getting AccessibilityServiceInfo", re);
434 } catch (RemoteException re) {
435 Log.w(LOG_TAG, "Error while setting AccessibilityServiceInfo", re);
    [all...]
  /packages/apps/Messaging/build/
process_style_output.py 20 import re namespace
26 PATTERN = re.compile(r"(?P<file>[^:]+):(?P<line>\d+)(?P<column>:\d+)?:\s(?P<message>.*)")
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
reperf.py 1 import re namespace
6 p = re.compile(r"([\13\14])")
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
reperf.py 1 import re namespace
6 p = re.compile(r"([\13\14])")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
reperf.py 1 import re namespace
6 p = re.compile(r"([\13\14])")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
reperf.py 1 import re namespace
6 p = re.compile(r"([\13\14])")
  /art/tools/
generate-operator-out.py 21 import re namespace
26 _ENUM_START_RE = re.compile(r'\benum\b\s+(class\s+)?(\S+)\s+:?.*\{(\s+// private)?')
27 _ENUM_VALUE_RE = re.compile(r'([A-Za-z0-9_]+)(.*)')
28 _ENUM_END_RE = re.compile(r'^\s*\};$')
75 m = re.compile(r'^namespace (\S+) \{').search(raw_line)
79 m = re.compile(r'^\}\s+// namespace').search(raw_line)
85 m = re.compile(r'^\s*(?:class|struct)(?: MANAGED)?(?: PACKED\([0-9]\))? (\S+).* \{').search(raw_line)
91 m = re.compile(r'^\s*\}(\s+)?(while)?(.+)?;').search(raw_line)
112 m_comment = re.compile(r'// <<(.*?)>>').search(raw_line)
116 line = re.sub(r'//.*', '', raw_line
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleProfiling.java 47 * Register for the messages we're interested in.
116 } catch (RuntimeException re) {
117 return createFailChunk(1, re.getMessage());
130 } catch (RuntimeException re) {
132 + re.getMessage());
157 } catch (RuntimeException re) {
158 return createFailChunk(1, re.getMessage());
173 } catch (RuntimeException re) {
175 + re.getMessage());
176 return createFailChunk(1, re.getMessage())
    [all...]
  /external/pcre/dist/
pcretest.c 228 #define READ_CAPTURE_NAME8(p, cn8, cn16, cn32, re) \
229 p = read_capture_name8(p, cn8, re)
242 #define PCRE_COMPILE8(re, pat, options, error, erroffset, tables) \
243 re = pcre_compile((char *)pat, options, error, erroffset, tables)
245 #define PCRE_COPY_NAMED_SUBSTRING8(rc, re, bptr, offsets, count, \
247 rc = pcre_copy_named_substring(re, (char *)bptr, offsets, count, \
253 #define PCRE_DFA_EXEC8(count, re, extra, bptr, len, start_offset, options, \
255 count = pcre_dfa_exec(re, extra, (char *)bptr, len, start_offset, options, \
258 #define PCRE_EXEC8(count, re, extra, bptr, len, start_offset, options, \
260 count = pcre_exec(re, extra, (char *)bptr, len, start_offset, options,
2496 real_pcre8_or_16 *re = (real_pcre8_or_16 *)ere; local
2683 real_pcre32 *re = (real_pcre32 *)ere; local
3455 pcre *re = NULL; local
    [all...]
pcre_scanner.h 73 // Return true iff the start of the remaining input matches "re"
74 bool LookingAt(const RE& re) const;
77 // a. the start of the remaining input matches "re",
82 bool Consume(const RE& re,
83 const Arg& arg0 = RE::no_arg,
84 const Arg& arg1 = RE::no_arg,
85 const Arg& arg2 = RE::no_arg
90 // a prefix of the input matches this RE, it is automaticall
    [all...]
  /external/llvm/utils/
update_llc_test_checks.py 16 import re namespace
26 ASM_SCRUB_WHITESPACE_RE = re.compile(r'(?!^(| \w))[ \t]+', flags=re.M)
27 ASM_SCRUB_TRAILING_WHITESPACE_RE = re.compile(r'[ \t]+$', flags=re.M)
29 re.compile(
31 flags=re.M))
32 ASM_SCRUB_SP_RE = re.compile(r'\d+\(%(esp|rsp)\)')
33 ASM_SCRUB_RIP_RE = re.compile(r'[.\w]+\(%rip\)')
34 ASM_SCRUB_KILL_COMMENT_RE = re.compile(r'^ *#+ +kill:.*\n'
    [all...]
  /external/regex-re2/re2/
compile.cc 131 static Prog *Compile(Regexp* re, bool reversed, int64 max_mem);
133 // Compiles alternation of all the re to a new Prog.
134 // Each re has a match with an id equal to its index in the vector.
136 Regexp* re);
146 Frag PreVisit(Regexp* re, Frag parent_arg, bool* stop);
147 Frag PostVisit(Regexp* re, Frag parent_arg, Frag pre_arg, Frag* child_args,
149 Frag ShortVisit(Regexp* re, Frag parent_arg);
668 // We're using WalkExponential; there should be no copying.
676 Frag Compiler::ShortVisit(Regexp* re, Frag) {
682 Frag Compiler::PreVisit(Regexp* re, Frag, bool* stop)
859 Regexp* re = *pre; local
907 Regexp* re = *pre; local
    [all...]
  /cts/suite/audio_quality/lib/src/
SimpleScriptExec.cpp 47 LOGV("re match %s", match.string());
48 regex_t re; local
53 if (regcomp(&re, match.string(), cflags) != 0) {
58 if (regexec(&re, str.string(), nmatch, pmatch, 0) == 0) {
62 regfree(&re);
  /external/clang/test/SemaCXX/
ref-init-ambiguous.cpp 22 const E2 & re(C c) { function
  /external/google-breakpad/src/testing/gtest/test/
gtest_output_test.py 44 import re namespace
101 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output)
108 return re.sub(r'Stack trace:(.|\n)*?\n\n',
116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
122 return re.sub(r'\(\d+ ms', '(? ms', output)
136 return re.sub(r'unsigned int', 'unsigned', test_output)
144 test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output)
146 test_output = re.sub(r': Failure\n', r': error: ', test_output)
148 test_output = re.sub(r'((\w|\.)+)\((\d+)\):', r'\1:\3:', test_output)
156 output = re.sub(r'\d+ tests?, listed below'
    [all...]
  /external/libcxx/test/std/re/re.alg/re.alg.search/
backup.pass.cpp 30 std::regex re("\\ba");
31 std::sregex_iterator it(s.begin(), s.end(), re);
49 std::regex re("\\ba");
50 std::regex_iterator<std::list<char>::iterator> it(l.begin(), l.end(), re);
  /external/markdown/markdown/extensions/
fenced_code.py 63 import markdown, re namespace
66 FENCED_BLOCK_RE = re.compile( \
68 re.MULTILINE|re.DOTALL
  /external/v8/test/mjsunit/regress/
regress-crbug-467047.js 7 function captureMatch(re) {
9 "abcd".replace(re, function() { });
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_output_test.py 44 import re namespace
101 return re.sub(r'.*[/\\](.+)(\:\d+|\(\d+\))\: ', r'\1:#: ', test_output)
108 return re.sub(r'Stack trace:(.|\n)*?\n\n',
116 return re.sub(r'Stack trace:(.|\n)*?\n\n', '', output)
122 return re.sub(r'\(\d+ ms', '(? ms', output)
136 return re.sub(r'unsigned int', 'unsigned', test_output)
144 test_output = re.sub('\x1b\\[(0;3\d)?m', '', test_output)
146 test_output = re.sub(r': Failure\n', r': error: ', test_output)
148 test_output = re.sub(r'((\w|\.)+)\((\d+)\):', r'\1:\3:', test_output)
156 output = re.sub(r'\d+ tests?, listed below'
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
backup.pass.cpp 30 std::regex re{"\\ba"};
31 std::sregex_iterator it{s.begin(), s.end(), re};
49 std::regex re{"\\ba"};
50 std::regex_iterator<std::list<char>::iterator> it{l.begin(), l.end(), re};
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/
compquery.py 20 import re namespace

Completed in 895 milliseconds

1 2 3 4 5 67 8 91011>>