Searched refs:findall (Results 1 - 25 of 78) sorted by relevance

1234

/external/chromium_org/third_party/skia/tools/copyright/
H A Dfileparser.py50 matches = self._attribute_pattern.findall(comment_block)
79 return self._comment_pattern.findall(file_contents)
/external/skia/tools/copyright/
H A Dfileparser.py50 matches = self._attribute_pattern.findall(comment_block)
79 return self._comment_pattern.findall(file_contents)
/external/chromium_org/third_party/libvpx/source/libvpx/test/android/
H A Dscrape_gtest_log.py43 re.findall(r'{([^}]*.?)}', blob)) + ']'
/external/chromium_org/tools/gyp/test/linux/
H A Dgyptest-implicit-rpath.py30 return r.findall(o)
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-rpath.py31 return r.findall(o)
/external/libvpx/libvpx/test/android/
H A Dscrape_gtest_log.py43 re.findall(r'{([^}]*.?)}', blob)) + ']'
/external/chromium_org/build/android/
H A Davd.py73 names = re.findall('Name: (\w+)', avds_output)
74 api_levels = re.findall('API level (\d+)', avds_output)
H A Dadb_logcat_monitor.py86 return re.findall('^(\w+)\tdevice$', out, re.MULTILINE)
/external/chromium_org/build/mac/
H A Dfind_sdk.py24 return map(int, re.findall(r'(\d+)', version_str))
58 sdks = [re.findall('^MacOSX(10\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
/external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
H A Dcros_power_monitor.py113 result = re.findall(r'^Device:\s+(.*)', ln)
117 result = re.findall(r'\s+(.+):\s+(.+)', ln)
119 kname = re.findall(r'(.*)\s+\(\w+\)', result[0][0])
/external/lldb/test/pexpect-2.4/examples/
H A Drippy.py309 ar = re.findall("(mp3lame)", command_output)
420 ar = re.findall("Movie-Aspect is ([0-9]+\.?[0-9]*:[0-9]+\.?[0-9]*)", command_output)
428 #idh = re.findall("ID_VIDEO_HEIGHT=([0-9]+)", command_output)
445 idl = re.findall("ID_AUDIO_ID=([0-9]+)", command_output)
455 idl = re.findall("ID_SUBTITLE_ID=([0-9]+)", command_output)
490 idl = re.findall("ID_LENGTH=([0-9.]*)", command_output)
554 idl = re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output1)
555 idl = idl + re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output2)
556 idl = idl + re.findall("-vf crop=([0-9]+:[0-9]+:[0-9]+:[0-9]+)", command_output3)
557 idl = idl + re.findall("
[all...]
/external/sepolicy/tools/
H A Dpost_process_mac_perms53 results = re.findall(PEM_CERT_RE, pem_string, re.DOTALL)
76 policy_certs = re.findall(cert_pattern, f.read())
/external/chromium-trace/trace-viewer/build/
H A Dcheck_grit.py21 grit_files.extend(re.findall(
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
H A Dsource.py70 for comment_content in cls._COMMENT_REGEX.findall(source):
/external/chromium_org/third_party/skia/tools/
H A Dtest_gpuveto.py106 matches = re.findall('[\d]+\.[\d]+', output)
121 matches = re.findall('[\d]+\.[\d]+', output)
/external/skia/tools/
H A Dtest_gpuveto.py106 matches = re.findall('[\d]+\.[\d]+', output)
121 matches = re.findall('[\d]+\.[\d]+', output)
/external/chromium_org/tools/grit/grit/
H A Dshortcuts.py43 keys = [groups[1] for groups in self.SHORTCUT_RE.findall(content)]
/external/chromium_org/android_webview/buildbot/
H A Dgenerate_local_manifest.py33 for project in manifest_tree.getroot().findall('project'):
/external/chromium_org/build/android/gyp/
H A Dwrite_ordered_libraries.py72 return set(_library_re.findall(elf))
/external/chromium_org/media/tools/layout_tests/
H A Dtest_expectations_history.py117 matches = re.findall(testname, line)
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dexportfig.m202 allLines = findall(H, 'type', 'line');
203 allText = findall(H, 'type', 'text');
204 allAxes = findall(H, 'type', 'axes');
205 allImages = findall(H, 'type', 'image');
206 allLights = findall(H, 'type', 'light');
207 allPatch = findall(H, 'type', 'patch');
208 allSurf = findall(H, 'type', 'surface');
209 allRect = findall(H, 'type', 'rectangle');
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
H A Drun_audio_test.py121 value = ''.join(re.findall(options.regexp, output))
/external/chromium_org/tools/grit/grit/tool/
H A Drc2grd_unittest.py61 self.failUnless(len(rc2grd._MENU.findall(two_menus)) == 2)
/external/chromium_org/v8/test/mjsunit/
H A Dtestcfg.py61 flags_match = re.findall(FLAGS_PATTERN, source)
/external/llvm/utils/release/
H A DfindRegressions-nightly.py19 r = re.findall(r'TEST-(PASS|FAIL|RESULT.*?):\s+(.*?)\s+(.*?)\r*\n', d)

Completed in 4375 milliseconds

1234