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

1 2 3 4 5 6 7 891011>>

  /external/lldb/examples/python/
jump.py 1 import lldb, re namespace
23 mo = re.match("^([0-9]+)$", linespec)
35 mo = re.match("^\+([0-9]+)$", linespec)
47 mo = re.match("^\-([0-9]+)$", linespec)
59 mo = re.match("^(.*):([0-9]+)$", linespec)
68 mo = re.match("\*((0x)?([0-9a-f]+))$", linespec)
  /external/regex-re2/re2/
prefilter.cc 236 // set of strings that match this RE, then is_exact_
492 Regexp* re, Info* parent_arg,
497 Regexp* re,
506 Prefilter::Info* Prefilter::BuildInfo(Regexp* re) {
508 LOG(INFO) << "BuildPrefilter::Info: " << re->ToString();
511 bool latin1 = re->parse_flags() & Regexp::Latin1;
513 Prefilter::Info* info = w.WalkExponential(re, NULL, 100000);
524 Regexp* re, Prefilter::Info* parent_arg) {
529 // Assumes re is simplified.
531 Regexp* re, Prefilter::Info* parent_arg
    [all...]
  /external/regex-re2/re2/testing/
exhaustive_tester.cc 59 static void PrintResult(const RE2& re, const StringPiece& input, RE2::Anchor anchor, StringPiece *m, int n) {
60 if (!re.Match(input, 0, input.size(), anchor, m, n)) {
102 RE2 re(regexp);
106 int ngroup = re.NumberOfCapturingGroups()+1;
112 PrintResult(re, input, RE2::ANCHOR_BOTH, group, ngroup);
114 PrintResult(re, input, RE2::UNANCHORED, group, ngroup);
  /frameworks/base/core/java/android/printservice/
PrintJob.java 79 } catch (RemoteException re) {
80 Log.e(LOG_TAG, "Couldn't get info for job: " + mCachedInfo.getId(), re);
298 } catch (RemoteException re) {
299 Log.e(LOG_TAG, "Error setting tag for job: " + mCachedInfo.getId(), re);
381 // we may not be able to re-fetch it later if the job gets
387 } catch (RemoteException re) {
388 Log.e(LOG_TAG, "Error setting the state of job: " + mCachedInfo.getId(), re);
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 36 import re namespace
170 timestamp.value = re.sub(r'^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d$',
174 time.value = re.sub(r'^\d+(\.\d+)?$', '*', time.value)
182 message.value = re.sub(source_line_pat, '\\1*\n', message.value)
186 cdata = re.sub(source_line_pat, '\\1*\n', child.nodeValue)
188 child.nodeValue = re.sub(r'\nStack trace:\n(.|\n)*',
gtest_list_tests_unittest.py 43 import re namespace
56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\.
100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
  /bionic/libc/tools/
genserv.py 4 import sys, os, string, re namespace
14 re_service = re.compile(r"([\d\w\-_]+)\s+(\d+)/(tcp|udp)(.*)")
15 re_alias = re.compile(r"([\d\w\-_]+)(.*)")
symbols.py 18 import re namespace
39 r = re.compile(
51 symbol = re.sub('@.*', '', symbol)
  /build/core/tasks/check_boot_jars/
check_boot_jars.py 10 import re namespace
15 # The compiled whitelist RE.
32 whitelist_re = re.compile(combined_re)
33 except re.error:
  /build/tools/
filter-product-graph.py 4 import re namespace
32 (dependency, re.compile(r'"(.*)"\s*->\s*"(.*)"')),
33 (info, re.compile(r'"(.*)"(\s*\[.*\])')),
adbs 19 import re namespace
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
filter.rb 42 rescue ANTLR3::Error::RecognitionError => re
44 report_error( re )
45 recover( re )
  /external/deqp/scripts/src_util/
pre_commit.py 6 import re namespace
62 guard_re = re.compile('^[ \t]*#\s*ifndef\s+_.*?_H(PP)?\n'
65 re.MULTILINE)
  /external/gtest/test/
gtest_list_tests_unittest.py 43 import re namespace
56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\.
100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
  /external/skia/tools/
generate_includes_cpp.py 13 import re namespace
18 if re.search(ignore_path, full_path, re.I):
  /external/v8/test/mjsunit/regress/
regress-45469.js 30 var re = /x/g; variable
33 assertEquals(i % 3, re.lastIndex, "preindex" + i);
34 var res = re.exec("xx");
38 re = /x/g;
41 assertEquals(i % 3, re.lastIndex, "testpreindex" + i);
42 var res = re.test("xx");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
install_egg_info.py 9 import os, sys, re namespace
60 return re.sub('[^A-Za-z0-9.]+', '-', name)
70 return re.sub('[^A-Za-z0-9.]+', '-', version)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
install_egg_info.py 9 import os, sys, re namespace
60 return re.sub('[^A-Za-z0-9.]+', '-', name)
70 return re.sub('[^A-Za-z0-9.]+', '-', version)
  /build/core/
checktree 3 import sys, os, re namespace
14 excludes_compiled = map(re.compile, excludes)
59 regex_compiled = re.compile(regex)
60 filt_compiled = re.compile(filt)
  /development/tools/findunused/
find_unused_resources.rb 75 def findAllOccurrences(re, string)
79 matchData = re.match(s)
83 matchData = re.match(s)
95 @@javaIdPatterns.each { |re|
96 findAllOccurrences(re, line).each { |id|
121 @@stringXmlPatterns.each { |re|
122 findAllOccurrences(re, line).each {|id|
134 @@stringXmlPatterns.each { |re|
135 findAllOccurrences(re, line).each {|id|
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.m 247 @catch (ANTLRRecognitionException *re) {
248 [self reportError:re];
249 [self recover:input Exception:re];
319 @catch (ANTLRRecognitionException *re) {
320 [self reportError:re];
321 [self recover:input Exception:re];
367 @catch (ANTLRRecognitionException *re) {
368 [self reportError:re];
369 [self recover:input Exception:re];
473 @catch (ANTLRRecognitionException *re) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableParser.m 275 @catch (ANTLRRecognitionException *re) {
276 [self reportError:re];
277 [self recover:input Exception:re];
341 @catch (ANTLRRecognitionException *re) {
342 [self reportError:re];
343 [self recover:input Exception:re];
378 @catch (ANTLRRecognitionException *re) {
379 [self reportError:re];
380 [self recover:input Exception:re];
473 @catch (ANTLRRecognitionException *re) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteParser.m 288 @catch (ANTLRRecognitionException *re) {
289 [self reportError:re];
290 [self recover:input Exception:re];
291 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re];
338 @catch (ANTLRRecognitionException *re) {
339 [self reportError:re];
340 [self recover:input Exception:re];
341 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re];
  /external/antlr/antlr-3.4/runtime/Python/tests/
t033backtracking.py 13 def recover(self, input, re):
t038lexerRuleLabel.py 13 def recover(self, input, re):

Completed in 834 milliseconds

1 2 3 4 5 6 7 891011>>