/external/chromium_org/testing/gtest/test/ |
gtest_filter_unittest.py | 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/chromium_org/tools/grit/grit/tool/ |
android2grd.py | 28 _STRING_NAME = lazy_re.compile(r'[a-z0-9_]+\Z') 31 _CHAR_LIMIT = lazy_re.compile(r'\[CHAR-LIMIT=(\d+)\]') 34 _FORMAT_SPECIFIER = lazy_re.compile(
|
/external/clang/utils/ |
FindSpecRefs | 484 ('20.3 Compile-time rational arithmetic', '463'), 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/gtest/test/ |
gtest_filter_unittest.py | 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+)?)')
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_filter_unittest.py | 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+)?)')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_strptime.py | 16 from re import compile as re_compile 263 def compile(self, format): member in class:TimeRE 308 format_regex = _TimeRE_cache.compile(format)
|
nntplib.py | 320 line_pat = re.compile("^(?P<group>[^ \t]+)[ \t]+(.*)$") 460 pat = re.compile('^([0-9]+) ?(.*)\n?') 502 line_pat = re.compile("^([^ \t]+)[ \t]+(.*)$")
|
tokenize.py | 102 re.compile, (Token, PseudoToken, Single3, Double3)) 103 endprogs = {"'": re.compile(Single), '"': re.compile(Double),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
build_py.py | 22 ('compile', 'c', "compile .py to .pyc"), 23 ('no-compile', None, "don't compile .py files [default]"), 25 "also compile with optimization: -O1 for \"python -O\", " 30 boolean_options = ['compile', 'force'] 31 negative_opt = {'no-compile' : 'compile'} 39 self.compile = 0 315 if self.compile [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 208 def write_stub(self, output_dir, ext, compile=False): 211 if compile and os.path.exists(stub_file): 237 if compile:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 14 ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]') 15 ESCAPE_ASCII = re.compile(r'([\\"]|[^\ -~])') 16 HAS_UTF8 = re.compile(r'[\x80-\xff]')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_strptime.py | 16 from re import compile as re_compile 263 def compile(self, format): member in class:TimeRE 308 format_regex = _TimeRE_cache.compile(format)
|
nntplib.py | 320 line_pat = re.compile("^(?P<group>[^ \t]+)[ \t]+(.*)$") 460 pat = re.compile('^([0-9]+) ?(.*)\n?') 502 line_pat = re.compile("^([^ \t]+)[ \t]+(.*)$")
|
tokenize.py | 102 re.compile, (Token, PseudoToken, Single3, Double3)) 103 endprogs = {"'": re.compile(Single), '"': re.compile(Double),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
build_py.py | 22 ('compile', 'c', "compile .py to .pyc"), 23 ('no-compile', None, "don't compile .py files [default]"), 25 "also compile with optimization: -O1 for \"python -O\", " 30 boolean_options = ['compile', 'force'] 31 negative_opt = {'no-compile' : 'compile'} 39 self.compile = 0 315 if self.compile [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 208 def write_stub(self, output_dir, ext, compile=False): 211 if compile and os.path.exists(stub_file): 237 if compile:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
encoder.py | 14 ESCAPE = re.compile(r'[\x00-\x1f\\"\b\f\n\r\t]') 15 ESCAPE_ASCII = re.compile(r'([\\"]|[^\ -~])') 16 HAS_UTF8 = re.compile(r'[\x80-\xff]')
|
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
RootProcessScanner.java | 50 return Pattern.compile(rootProcessPattern.toString());
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyGetAppFrameRateEvent.java | 54 Pattern.compile(".* ([0-9]*) frames rendered");
|
MonkeyGetFrameRateEvent.java | 53 Pattern.compile(".*\\(([a-f[A-F][0-9]].*?)\\s.*\\)");
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
WordWidget.java | 103 Matcher matcher = Pattern.compile(WOTD_PATTERN).matcher(pageContent);
|
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/ |
WordWidget.java | 93 Pattern pattern = Pattern.compile(SimpleWikiHelper.WORD_OF_DAY_REGEX);
|
/development/tools/idegen/src/com/android/idegen/ |
DirectorySearch.java | 48 private static final Pattern EXCLUDE_PATTERN = Pattern.compile("values-..(-.*)*");
|
/external/bison/build-aux/ |
compile | 83 # Adjust compile command to suit cl 97 # configure might choose to run compile as `compile cc -o foo foo.c'. 204 Usage: compile [--help] [--version] PROGRAM [ARGS] 218 echo "compile $scriptversion" 236 # configure might choose to run compile as `compile cc -o foo foo.c'. 289 # Run the compile.
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/ |
javascriptlintrules.py | 111 regex = re.compile('^this\.[a-zA-Z_]+$') 536 re.compile('.*// @suppress longLineCheck$'), 537 re.compile('goog\.require\(.+\);?\s*$'), 538 re.compile('goog\.provide\(.+\);?\s*$')
|