HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 76 - 100 of 795) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.m 400 @catch (ANTLRRecognitionException *re) {
401 [self reportError:re];
402 [self recover:input Exception:re];
495 @catch (ANTLRRecognitionException *re) {
496 [self reportError:re];
497 [self recover:input Exception:re];
545 @catch (ANTLRRecognitionException *re) {
546 [self reportError:re];
547 [self recover:input Exception:re];
579 @catch (ANTLRRecognitionException *re) {
    [all...]
  /cts/suite/audio_quality/test_description/conf/
detect_usb_audio.py 20 import os, re, sys namespace
37 m = re.search("card(\d+)$", sound_dev)
  /external/antlr/antlr-3.4/runtime/Python/tests/
t034tokenLabelPropertyRef.py 13 def recover(self, input, re):
22 def recover(self, input, re):
t035ruleLabelPropertyRef.py 13 def recover(self, input, re):
22 def recover(self, input, re):
t036multipleReturnValues.py 13 def recover(self, input, re):
22 def recover(self, input, re):
t037rulePropertyRef.py 13 def recover(self, input, re):
22 def recover(self, input, re):
t041parameters.py 13 def recover(self, input, re):
22 def recover(self, input, re):
t043synpred.py 13 def recover(self, input, re):
22 def recover(self, input, re):
  /external/chromium/build/
compiler_version.py 14 import re namespace
24 result = re.match(r"(\d+)\.(\d+)", gcc_output)
  /external/v8/tools/
utils.py 30 import re namespace
78 elif (not id) or (not re.match('(x|i[3-6])86$', id) is None):
disasm.py 31 import re namespace
44 _DISASM_HEADER_RE = re.compile(r"[a-f0-9]+\s+<.*:$")
45 _DISASM_LINE_RE = re.compile(r"\s*([a-f0-9]+):\s*(\S.*)")
gen-postmortem-metadata.py 49 import re namespace
137 # for which we're going to emit descriptive constants.
182 # Construct a dictionary for the classes we're sure should be present.
203 line = re.sub('//.*', '', line.rstrip().lstrip());
209 match = re.match('class (\w[^\s:]*)(: public (\w[^\s{]*))?\s*{',
222 types[re.sub('\s*=.*', '', entry).lstrip()] = True;
235 usetype = re.sub('SYMBOL_', 'STRING_', type);
240 usetype = re.sub('_REGEXP_', '_REG_EXP_', usetype);
286 # representation and encoding and add them if they're not
295 cctype = re.sub('AsciiString$'
    [all...]
  /external/valgrind/unittest/
match_output.py 3 import re namespace
17 if re.search(line_re, line):
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-169534.js 55 var re = /(\|)([\w\x81-\xff ]*)(\|)([\/a-z][\w:\/\.]*\.[a-z]{3,4})(\|)/ig; variable
57 actual = str.replace(re, '<a href="$4">$2</a>');
regress-220367-002.js 54 var re = /(a)|(b)/; variable
56 re.test('a');
67 re.test('b');
  /external/webkit/Tools/Scripts/
make-gypi 31 import re namespace
43 source_code_regexp = re.compile(r'\.(cpp|h|m|mm)$')
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog.py 34 import re namespace
55 match = re.match(self.date_line_regexp, self._contents, re.MULTILINE)
63 match = re.search("^\s+Reviewed by (?P<reviewer>.*?)[\.,]?\s*$", self._contents, re.MULTILINE) # Discard everything after the first period
106 date_line_regexp = re.compile(ChangeLogEntry.date_line_regexp)
107 rolled_over_regexp = re.compile(ChangeLogEntry.rolled_over_regexp)
151 reviewed_by_regexp = re.compile(
154 # inplace=1 creates a backup file and re-directs stdout to the file
170 # inplace=1 creates a backup file and re-directs stdout to the fil
    [all...]
  /sdk/monkeyrunner/jython/test/
all_tests.py 20 import re namespace
25 TESTCASE_RE = re.compile('_test\.py$')
  /external/v8/test/mjsunit/
regexp-compile.js 30 var re = /x/; variable
31 assertEquals("a.yb", "axyb".replace(re, "."));
33 re.compile("y");
34 assertEquals("ax.b", "axyb".replace(re, "."));
36 re.compile("(x)");
38 assertEquals(["x", "x"], re.exec("axyb"));
40 re.compile("(y)");
42 assertEquals(["y", "y"], re.exec("axyb"));
  /external/llvm/utils/lint/
common_lint.py 5 import re namespace
42 tab_re = re.compile(r'\t')
63 trailing_whitespace_re = re.compile(r'\s+$')
  /external/llvm/utils/
lldbDataFormatters.py 36 import re namespace
39 res = re.match("^(llvm::)?SmallVectorImpl<(.+)>$", name)
42 res = re.match("^(llvm::)?SmallVector<(.+), \d+>$", name)
  /external/markdown/markdown/extensions/
meta.py 43 import markdown, re namespace
46 META_RE = re.compile(r'^[ ]{0,3}(?P<key>[A-Za-z0-9_-]+):\s*(?P<value>.*)')
47 META_MORE_RE = re.compile(r'^[ ]{4,}(?P<value>.*)')
  /external/v8/test/mjsunit/regress/
regress-58740.js 30 var re = /.+/g; variable
31 re.exec("");
32 re.exec("anystring");
33 re=/.+/g;
34 re.exec("");
35 assertEquals(0, re.lastIndex);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
update_webgl_conformance_tests.py 32 import re namespace
41 return re.compile(r'^<!--.*?-->\s*', re.DOTALL).sub('', text)
55 search = r'(?:[^"\'= ]*/)?' + re.escape(filename)
59 text = re.sub(search, replace, text)
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
SSLContextSpiTest.java 60 } catch (RuntimeException re) {
61 String str = re.getMessage();
79 } catch (RuntimeException re) {
80 String str = re.getMessage();
110 } catch (RuntimeException re) {
111 String str = re.getMessage();
121 } catch (RuntimeException re) {
122 String str = re.getMessage();
132 } catch (RuntimeException re) {
133 String str = re.getMessage()
    [all...]

Completed in 937 milliseconds

1 2 34 5 6 7 8 91011>>