Home | History | Annotate | Download | only in tools

Lines Matching refs:split

612     for filt in filters.split(','):
631 category = category.split('/')[0]
827 def Split(self):
830 For 'chrome/browser/browser.cc', Split() would
838 project, rest = os.path.split(googlename)
843 return self.Split()[1]
847 return self.Split()[2]
851 return '/'.join(self.Split()[0:2])
1188 linesplit = line.split()
1875 base_classname = classinfo.name.split('::')[-1]
2010 function_name = match_result.group(1).split()[-1]
2897 # split them.
2899 # URLs can be long too. It's possible to split these, but it makes them
3032 os.path.split(_DropCommonSuffixes(fileinfo.RepositoryName())))
3033 include_dir, include_base = os.path.split(_DropCommonSuffixes(include))
3225 fnline = line.split('{', 1)[0]
3269 # are missing context is if MOCK_METHOD was split across
3423 # Split the size using space and arithmetic operators as delimiters.
3426 tokens = re.split(r'\s|\+|\-|\*|\/|<<|>>]', match.group(3))
3447 # requires skipping the next token because we split on ' ' and '*'.
3927 # If after the split a trailing '\r' is present, it is removed
3936 'replace').read().split('\n')
3938 lines = codecs.open(filename, 'r', 'utf8', 'replace').read().split('\n')