/external/chromium_org/tools/grit/grit/tool/ |
rc2grd_unittest.py | 61 self.failUnless(len(rc2grd._MENU.findall(two_menus)) == 2)
|
/external/chromium_org/tools/telemetry/build/ |
update_docs.py | 30 links = re.findall('(<a href="(.+?)">(.+?)</a>)', html)
|
/external/chromium_org/v8/test/message/ |
testcfg.py | 62 flags_match = re.findall(FLAGS_PATTERN, source)
|
/external/chromium_org/v8/test/webkit/ |
testcfg.py | 66 flags_match = re.findall(FLAGS_PATTERN, source)
|
/external/llvm/utils/release/ |
findRegressions-simple.py | 15 r = re.findall(r'TEST-(PASS|FAIL|RESULT.*?):\s+(.*?)\s+(.*?)\r*\n', d)
|
/external/skia/tools/ |
svn.py | 150 files = status_regex.findall(stdout)
|
/external/chromium_org/build/android/buildbot/ |
bb_device_status_check.py | 62 found = re.findall(re_expression, line) 236 usb_devices = [re.findall('Bus (\d\d\d) Device (\d\d\d)', lsusb_line)[0]
|
/external/chromium_org/ppapi/generators/ |
idl_c_header.py | 276 release_numbers = re.findall('[\d\_]+', releasestr) 277 release = re.findall('\d+', release_numbers[-1])[0]
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
samples_data_source.py | 62 calls = set(re.findall(chrome_pattern, js_file))
|
/external/chromium_org/chrome/tools/ |
check_grd_for_unused_strings.py | 90 for match in sorted(set(id_regex.findall(src_file_contents))):
|
/external/chromium_org/tools/metrics/histograms/ |
find_unmapped_histograms.py | 153 matches = set(HISTOGRAM_REGEX.findall(contents))
|
/external/clang/include/clang/ASTMatchers/ |
ASTMatchFinder.h | 159 /// Each call to FindAll(...) will call the closure once.
|
/external/eigen/debug/gdb/ |
printers.py | 50 m = regex.findall(tag)[0][1:-1]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementTree.py | 105 # emulate pre-1.2 find/findtext/findall behaviour 123 def findall(self, element, tag, namespaces=None): member in class:_SimpleElementPath 389 def findall(self, path, namespaces=None): member in class:Element 390 return ElementPath.findall(self, path, namespaces) 731 # Same as getroot().findall(path), starting at the root of the tree. 739 def findall(self, path, namespaces=None): member in class:ElementTree 749 return self._root.findall(path, namespaces) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/ |
ElementTree.py | 105 # emulate pre-1.2 find/findtext/findall behaviour 123 def findall(self, element, tag, namespaces=None): member in class:_SimpleElementPath 389 def findall(self, path, namespaces=None): member in class:Element 390 return ElementPath.findall(self, path, namespaces) 731 # Same as getroot().findall(path), starting at the root of the tree. 739 def findall(self, path, namespaces=None): member in class:ElementTree 749 return self._root.findall(path, namespaces) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/ |
BeautifulSoup.py | 338 # (Possibly) special case some findAll*(...) searches 340 # findAll*(True) 344 # findAll*('tag-name') 645 findAll() method. Eg. tag('a') returns a list of all the A tags 647 return apply(self.findAll, args, kwargs) 826 l = self.findAll(name, attrs, recursive, text, 1, **kwargs) 832 def findAll(self, name=None, attrs={}, recursive=True, text=None, 847 findChildren = findAll 851 fetch = findAll 854 return self.findAll(text=text, recursive=recursive, limit=limit [all...] |
/external/chromium_org/third_party/gtk+/gtk/ |
compose-parse.py | 13 from re import findall, match, split, sub namespace 422 if findall('^combining_', ks): 515 raw_sequence = findall('\w+', seq) 736 if findall('Multi_key', "".join(item[:-1])) != []: [all...] |
/external/chromium_org/third_party/mesa/src/scons/ |
custom.py | 104 imports = import_re.findall(contents)
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Registry.cpp | 182 // findAll
|
/external/mesa3d/scons/ |
custom.py | 104 imports = import_re.findall(contents)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 191 res = re.findall(expr, data)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 191 res = re.findall(expr, data)
|
/cts/tests/src/android/webkit/cts/ |
WebViewOnUiThread.java | 661 public int findAll(final String find) { 665 return mWebView.findAll(find);
|
/external/chromium/net/tools/testserver/ |
testserver.py | 787 status_code = re.findall('HTTP/\d+.\d+ (\d+)', response)[0] 791 header_values = re.findall('(\S+):\s*(.*)', line) 872 b64str = re.findall(r'Basic (\S+)', auth)[0] 874 username, password = re.findall(r'([^:]+):(\S+)', userpass)[0] 976 pairs = dict(re.findall(r'(\b[^ ,=]+)="?([^",]+)"?', auth)) [all...] |
/external/chromium_org/build/android/pylib/ |
android_commands.py | 78 avds = re_avd.findall(cmd_helper.GetCmdOutput(['android', 'list', 'avd'])) 106 online_devices = re_device.findall(adb_devices_output) 109 emulator_devices = re_device.findall(adb_devices_output) 112 offline_devices = re_device.findall(adb_devices_output) [all...] |