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

<<31323334353637383940>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 25 import binascii, errno, random, re, socket, subprocess, sys, time namespace
84 Continuation = re.compile(r'\+( (?P<data>.*))?')
85 Flags = re.compile(r'.*FLAGS \((?P<flags>[^\)]*)\)')
86 InternalDate = re.compile(r'.*INTERNALDATE "'
91 Literal = re.compile(r'.*{(?P<size>\d+)}$')
92 MapCRLF = re.compile(r'\r\n|\r|\n')
93 Response_code = re.compile(r'\[(?P<type>[A-Z-]+)( (?P<data>[^\]]*))?\]')
94 Untagged_response = re.compile(r'\* (?P<type>[A-Z-]+)( (?P<data>.*))?')
95 Untagged_status = re.compile(r'\* (?P<data>\d+) (?P<type>[A-Z-]+)( (?P<data2>.*))?')
136 the command re-tried
    [all...]
markupbase.py 9 import re namespace
11 _declname_match = re.compile(r'[a-zA-Z][-_.a-zA-Z0-9]*\s*').match
12 _declstringlit_match = re.compile(r'(\'[^\']*\'|"[^"]*")\s*').match
13 _commentclose = re.compile(r'--\s*>')
14 _markedsectionclose = re.compile(r']\s*]\s*>')
19 _msmarkedsectionclose = re.compile(r']\s*>')
21 del re
poplib.py 16 import re, socket namespace
269 timestamp = re.compile(r'\+OK.*(<[^>]+>)')
364 renewline = re.compile(r'.*?\n')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/wsgiref/
validate.py 114 import re namespace
119 header_re = re.compile(r'^[a-zA-Z][a-zA-Z0-9\-_]*$')
120 bad_header_value_re = re.compile(r'[\000-\037]')
  /cts/hostsidetests/theme/
android_device.py 19 import re namespace
  /cts/tools/utils/
buildCts.py 21 import re namespace
50 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
  /development/perftests/panorama/feature_mos/src/mosaic/
Delaunay.h 64 void build(int lo, int hi, EdgePointer *le, EdgePointer *re, int rows);
  /external/antlr/antlr-3.4/runtime/Python/tests/
t047treeparser.py 24 def recover(self, input, re):
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
TreeToNFAConverter.g 689 catch[RecognitionException re] { throw re; }
808 catch[RecognitionException re] { throw re; }
827 catch[RecognitionException re] { throw re; }
855 catch[RecognitionException re] { throw re; }
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMManagerDefault.java 403 // if we're using IncrementalSAXSource.filter().
406 } catch (RuntimeException re) {
410 throw re;
440 } catch (RuntimeException re) {
443 throw re;
507 // one that contains ancestors or siblings of the node we're
626 * will only re-use XMLReaders that it created.
698 * we're done with it.
  /external/clang/utils/
FindSpecRefs 4 import re namespace
630 doxyLineRefRE = re.compile(r"<a name=\"l([0-9]+)\"></a>")
650 nameAndSpecRefRE = re.compile(r"(C99|C90|C\+\+|H\&S) ((([0-9]+)(\.[0-9]+)*|\[[^]]+\])(p[0-9]+)?)")
651 loneSpecRefRE = re.compile(r" (([0-9]+)(\.[0-9]+){2,100}(p[0-9]+)?)")
    [all...]
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 12 import re namespace
44 match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE)
55 file_name = re.sub(".*" + path_to_cut, "", file_name)
56 file_name = re.sub(".*asan_[a-z_]*.(cc|h):[0-9]*", "[asan_rtl]", file_name)
57 file_name = re.sub(".*crtstuff.c:0", "???:0", file_name)
64 line = re.sub(r'^.*?: ', '', line)
66 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE)
  /external/deqp/scripts/egl/
common.py 24 import re namespace
  /external/google-breakpad/src/testing/gtest/test/
gtest_filter_unittest.py 46 import re namespace
103 PARAM_TEST_REGEX = re.compile(r'/ParamTest')
106 TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)')
109 TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)')
  /external/google-breakpad/src/testing/scripts/generator/cpp/
gmock_class.py 33 import re namespace
109 args_strings = re.sub(r'//.*', '', source[start:end])
114 args = re.sub(' +', ' ', args_strings.replace('\n', ' '))
  /external/gtest/test/
gtest_filter_unittest.py 46 import re namespace
103 PARAM_TEST_REGEX = re.compile(r'/ParamTest')
106 TEST_CASE_REGEX = re.compile(r'^\[\-+\] \d+ tests? from (\w+(/\w+)?)')
109 TEST_REGEX = re.compile(r'^\[\s*RUN\s*\].*\.(\w+(/\w+)?)')
  /external/libnl/lib/route/
tc.c 108 struct gnet_stats_rate_est *re; local
110 re = nla_data(tbs[TCA_STATS_RATE_EST]);
111 g->tc_stats[RTNL_TC_RATE_BPS] = re->bps;
112 g->tc_stats[RTNL_TC_RATE_PPS] = re->pps;
  /external/lldb/test/api/check_public_api_headers/
TestPublicAPIHeaders.py 6 import os, re, StringIO namespace
  /external/lldb/test/functionalities/conditional_break/
TestConditionalBreak.py 6 import re namespace
  /external/lldb/test/lang/objc/foundation/
TestObjectDescriptionAPI.py 6 import re namespace
  /external/lldb/test/python_api/frame/inlines/
TestInlinedFrame.py 6 import re namespace
  /external/lldb/test/python_api/function_symbol/
TestSymbolAPI.py 6 import re namespace
  /external/lldb/test/python_api/lldbutil/iter/
TestRegistersIterator.py 6 import re namespace
  /external/lldb/test/python_api/symbol-context/
TestSymbolContext.py 6 import re namespace
  /external/lldb/test/python_api/watchpoint/
TestSetWatchpoint.py 6 import re namespace

Completed in 1393 milliseconds

<<31323334353637383940>>