/cts/tools/utils/ |
buildCts.py | 21 import re namespace 61 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/autotest/client/common_lib/cros/ |
autoupdater.py | 10 import re namespace 57 return re.sub('/au/.*', '', 94 parts = re.search(re_pattern, update_url) 282 active_root = int(re.findall('\d+\Z', self.rootdev('-s'))[0]) 489 # Re-raise the first error that occurred.
|
/external/autotest/client/common_lib/perf_expectations/ |
expectation_checker.py | 13 import re namespace
|
/external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/ |
platform_CryptohomeTPMReOwn.py | 5 import logging, os, re, shutil, sys, time namespace 10 Test of cryptohome functionality to re-create a user's vault directory if 11 the TPM is cleared and re-owned and the vault keyset is TPM-wrapped. 117 error_msg = ('Cryptohome not re-created, ' +
|
/external/autotest/client/site_tests/power_HotCPUSuspend/ |
power_HotCPUSuspend.py | 5 import hashlib, logging, multiprocessing, os, re, time namespace 84 # There should be no idle time accounted while we're spinning. 93 # There should be no idle time accounted while we're spinning.
|
/external/autotest/client/tests/kernbench/ |
kernbench.py | 1 import re, pickle, os, logging namespace
|
/external/autotest/database/ |
database_connection.py | 3 import re, time, traceback namespace 90 self._last_insert_id_re = re.compile(r'\sLAST_INSERT_ID\(\)', 91 re.IGNORECASE) 360 Returns a translator that calls re.sub() on the query with the given 364 return re.sub(search_re, replace_str, query)
|
/external/autotest/frontend/shared/ |
json_html_formatter.py | 31 import re namespace
|
/external/autotest/server/site_tests/firmware_FastbootErase/ |
firmware_FastbootErase.py | 7 import re namespace
|
/external/autotest/site_utils/autoupdate/ |
full_release_test.py | 17 import re namespace 103 # If we're looking for our own image, use the target archive_url if set 132 @param is_delta_update: whether we're testing a delta update 142 _version_re = re.compile( 165 _build_version_re = re.compile( 192 _delta_re = re.compile( 524 'Please check exception and re-run this '
|
/external/autotest/site_utils/ |
test_push.py | 25 import re namespace 145 if build and re.match(BUILD_REGEX, build): 237 # assume they're all cros hosts (valid assumption?) so powerwash 273 m = re.match(SUITE_JOB_START_INFO_REGEX, line) 351 if re.search(key, test_name):
|
/external/autotest/tko/parsers/ |
version_1.py | 1 import json, math, os, re namespace 78 typed_match = re.search('^([^=]*)\{(\w*)\}=(.*)$', line) 83 untyped_match = re.search('^([^=]*)=(.*)$', line) 216 base = re.sub('-autotest$', '', fields.get('kernel', '')) 306 yield [] # We're ready to start running.
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/ |
network_quiescence.js | 47 // new entries are not added. We're only interested in the last entry, 48 // so we can clear new entries when they're added.
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
wildcard_iterator.py | 22 import re namespace 41 FLAT_LIST_REGEX = re.compile(r'(?P<before>.*?)\*\*(?P<after>.*)') 114 # each object and prefix. If we're not using the default of requesting 126 # If we're making versioned requests, ensure generation and 194 prog = re.compile(fnmatch.translate(prefix_wildcard)) 341 prog = re.compile(regex)
|
/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/libjpeg-turbo/doc/html/ |
dynsections.js | 59 var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub 60 return this.id.match(re);
|