/external/chromium_org/third_party/protobuf/ |
protobuf_lite_java_parse_pom.py | 40 for profile in ElementTree.parse(pom_path).getroot().findall(profile_path): 43 for plugin in profile.findall(plugin_path): 47 for include in plugin.findall(include_path):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
reperf.py | 9 timefunc(10, p.findall, s)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
reperf.py | 9 timefunc(10, p.findall, s)
|
/external/skia/tools/copyright/ |
fileparser.py | 50 matches = self._attribute_pattern.findall(comment_block) 79 return self._comment_pattern.findall(file_contents)
|
/external/skia/tools/ |
find_mac_sdk.py | 20 return map(int, re.findall(r'(\d+)', version_str)) 50 sdks = [re.findall('^MacOSX(10\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
|
/frameworks/webview/chromium/tools/ |
run_webview_cts.py | 75 passes = set(re.findall(r'.*: (.*) PASS', stdout)) 76 failures = set(re.findall(r'.*: (.*) FAIL', stdout))
|
merge_common.py | 147 conflicts_deleted_by_us = re.findall(r'^(?:DD|DU) ([^\n]+)$', status, 159 conflicts_renamed_by_them = re.findall(r'^UA ([^\n]+)$', status, 168 conflicts = re.findall(r'^((DD|AU|UD|UA|DU|AA|UU) [^\n]+)$', status,
|
generate_local_manifest.py | 20 for project in manifest_tree.getroot().findall('project'):
|
/external/chromium_org/tools/gyp/test/linux/ |
gyptest-implicit-rpath.py | 30 return r.findall(o)
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-rpath.py | 31 return r.findall(o)
|
/external/chromium_org/build/android/ |
provision_devices.py | 26 matches = re.findall('\\n.*host_heartbeat.*', stdout) 29 pid = re.findall('(\d+)', match)[1]
|
/external/chromium_org/build/mac/ |
find_sdk.py | 23 return map(int, re.findall(r'(\d+)', version_str)) 54 sdks = [re.findall('^MacOSX(10\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
|
/external/chromium_org/tools/checkdeps/ |
java_checker.py | 71 for package in re.findall('^package ([\w\.]+);', line): 90 for clazz in re.findall('^import\s+(?:static\s+)?([\w\.]+)\s*;', line):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
AutoExpand.py | 53 wbefore = re.findall(r"\b" + word + r"\w+\b", before) 56 wafter = re.findall(r"\b" + word + r"\w+\b", after)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
AutoExpand.py | 53 wbefore = re.findall(r"\b" + word + r"\w+\b", before) 56 wafter = re.findall(r"\b" + word + r"\w+\b", after)
|
/external/chromium-trace/trace-viewer/build/ |
check_grit.py | 21 grit_files.extend(re.findall(
|
/packages/apps/Camera2/tests/exiftool_parser/ |
parser.py | 39 tags = p.findall(text)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementPath.py | 13 # 2007-09-13 fl added iterfind; changed findall to return a list 74 for token in xpath_tokenizer_re.findall(pattern): 193 for e in elem.findall(tag): 218 elems = list(parent.findall(elem.tag)) 292 def findall(elem, path, namespaces=None): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementPath.py | 13 # 2007-09-13 fl added iterfind; changed findall to return a list 74 for token in xpath_tokenizer_re.findall(pattern): 193 for e in elem.findall(tag): 218 elems = list(parent.findall(elem.tag)) 292 def findall(elem, path, namespaces=None): function
|
/external/chromium/testing/gmock/test/ |
gmock_output_test.py | 113 # findall() returns a list of all matches of the regex in output. 116 return re.findall(r'\(used in test (.+)\)', output)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/ |
http_server_unittest.py | 59 self.assertEqual(re.findall(r"alias.url.+", config_file), [
|
/external/chromium_org/tools/grit/grit/ |
shortcuts.py | 43 keys = [groups[1] for groups in self.SHORTCUT_RE.findall(content)]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 39 def findall(self, dir=os.curdir): member in class:FileList 40 self.allfiles = findall(dir) 221 self.findall() 256 def findall(dir = os.curdir): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 39 def findall(self, dir=os.curdir): member in class:FileList 40 self.allfiles = findall(dir) 221 self.findall() 256 def findall(dir = os.curdir): function
|
/external/chromium_org/chrome/test/functional/perf/ |
endure_result_parser.py | 265 for match in re.findall( 277 for match in re.findall( 291 for match in re.findall( 390 revisions = re.findall(r'<td class="left">got_revision</td>\s+' 395 in re.findall(r'(/steps/endure[^/]+/logs/stdio)', contents)] 436 match = re.findall(test_pattern, location) 438 match = re.findall(wpr_test_pattern, location) 584 matches = re.findall(r'/(\d+)/stop', url_contents) 588 matches = re.findall(r'#(\d+)</a></td>', url_contents) 648 for match in re.findall(r'([^:]+):(\d+)', file_contents) [all...] |