HomeSort by relevance Sort by last modified time
    Searched full:split (Results 926 - 950 of 5986) sorted by null

<<31323334353637383940>>

  /frameworks/native/opengl/libs/GLES_trace/tools/
genapi.py 224 """ Split declaration of a variable to a tuple of (variable name, DataType).
226 elements = decl.strip().split(' ')
243 name = name.split('[')[0]
251 args = arglist.split(',')
253 argtypelist = map(getNameTypePair, args) # split arg into arg type and arg name
319 args = arglist.split(',')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 82 split Split a string by the occurrences of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
164 def split(pattern, string, maxsplit=0, flags=0): function
165 """Split the source string by the occurrences of the pattern,
167 return _compile(pattern, flags).split(string, maxsplit)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 44 self.assertEqual(posixpath.split("/foo/bar"), ("/foo", "bar"))
45 self.assertEqual(posixpath.split("/"), ("/", ""))
46 self.assertEqual(posixpath.split("foo"), ("", "foo"))
47 self.assertEqual(posixpath.split("////foo"), ("////", "foo"))
48 self.assertEqual(posixpath.split("//foo//bar"), ("//foo", "bar"))
390 curdir = os.path.split(os.getcwd())[-1]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 82 split Split a string by the occurrences of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
164 def split(pattern, string, maxsplit=0, flags=0): function
165 """Split the source string by the occurrences of the pattern,
167 return _compile(pattern, flags).split(string, maxsplit)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 44 self.assertEqual(posixpath.split("/foo/bar"), ("/foo", "bar"))
45 self.assertEqual(posixpath.split("/"), ("/", ""))
46 self.assertEqual(posixpath.split("foo"), ("", "foo"))
47 self.assertEqual(posixpath.split("////foo"), ("////", "foo"))
48 self.assertEqual(posixpath.split("//foo//bar"), ("//foo", "bar"))
390 curdir = os.path.split(os.getcwd())[-1]
  /cts/libs/vogar-expect/src/vogar/
ExpectationStore.java 171 Iterable<String> split = Splitter.on("\n").omitEmptyStrings().trimResults().split(reader.nextString()); local
172 description = Joiner.on("\n").join(split);
  /device/asus/deb/
releasetools.py 162 to_flash = "sbl2 sbl3 tz rpm aboot".split()
164 to_flash = "sbl1 sbl2 sbl3 tz rpm aboot".split()
185 for i in "sbl2 sbl3 tz rpm aboot".split():
  /device/asus/flo/
releasetools.py 187 to_flash = "sbl2 sbl3 tz rpm aboot".split()
189 to_flash = "sbl1 sbl2 sbl3 tz rpm aboot".split()
210 for i in "sbl2 sbl3 tz rpm aboot".split():
  /device/lge/hammerhead/
releasetools.py 162 to_flash = "sbl2 sbl3 tz rpm aboot".split()
164 to_flash = "sbl1 sbl2 sbl3 tz rpm aboot".split()
185 for i in "sbl2 sbl3 tz rpm aboot".split():
  /device/lge/mako/
releasetools.py 162 to_flash = "sbl2 sbl3 tz rpm aboot".split()
164 to_flash = "sbl1 sbl2 sbl3 tz rpm aboot".split()
185 for i in "sbl2 sbl3 tz rpm aboot".split():
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator_unittest.cc 75 // English (split contraction words)
176 // treated as word characters, the split word becomes equal to the dummy word.
177 // Otherwise, the split word does not include ASCII numbers.
  /external/chromium_org/chrome/test/chromedriver/client/
command_executor.py 146 port = int(server_url.split(':')[2].split('/')[0])
150 url_parts = command[1].split('/')
  /external/chromium_org/components/autofill/content/browser/wallet/
full_wallet.cc 305 size_t split = kPanSize - kBinSize; local
306 cvn_ = card_info.substr(split);
307 pan_ = iin_ + card_info.substr(0, split);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
BreakBlockquoteCommand.cpp 102 // Adjust the position so we don't split at the beginning of a quote.
109 // Split at pos if in the middle of a text node.
163 // Split the tree up the ancestor chain until the topBlockquote
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
logutils.py 103 _webkitpy_dir = os.path.split(webkitpy_path)[0]
104 _scripts_dir = os.path.split(_webkitpy_dir)[0]
113 (path, tail) = os.path.split(path)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_finder.py 72 file_contents = fs.read_text_file(filename).split('\n')
115 """split into a list to run and a set to skip, based on --run-chunk and --run-part."""
123 (chunk_num, chunk_len) = chunk_value.split(":")
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/
commitannouncer.py 151 commit, email, subject, body = commit_detail.split('\n', 3)
159 for line in body.split('\n'):
163 tokens = line[len(svn_string):].split()
  /external/chromium_org/third_party/mesa/src/scons/
crossmingw.py 45 prefixes32 = SCons.Util.Split("""
59 prefixes64 = SCons.Util.Split("""
178 path = string.split(path, os.pathsep)
  /external/chromium_org/third_party/re2/re2/testing/
regexp_generator.cc 228 // Split s into an vector of strings, one for each UTF-8 character.
242 // Split string everywhere a substring is found, returning
244 vector<string> Split(const StringPiece& sep, const StringPiece& s) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
value.h 95 * \return Nonzero if value could not be split.
107 * \param value value to store split portions into
111 * \return Nonzero if the expr could not be split into a value for some
  /external/chromium_org/tools/metrics/histograms/
find_unmapped_histograms.py 78 Useful to re-combine strings that were split across multiple lines to satisfy
144 locations = commands.getoutput('git gs UMA_HISTOGRAM').split('\n')
145 filenames = set([location.split(':')[0] for location in locations])
  /external/chromium_org/tools/oopif/
iframe_server.py 100 no_port = urlpath.netloc.split(':')[0]
101 host_parts = no_port.split('.')
165 netloc_paths = urlpath.netloc.split(':')
  /external/chromium_org/tools/site_compare/
site_compare.py 63 save_path = os.path.join(os.path.split(__file__)[0], "Scrapes")
97 root_path = os.path.join(os.path.split(__file__)[0], "Scrapes")
100 out_path = os.path.join(os.path.split(__file__)[0], "Compares")
  /external/chromium_org/tools/valgrind/
test_suppressions.py 57 demangled = stdout.split("\n")
59 # Each line ends with a newline, so the final entry of the split output
140 if s.Match(r.split("\n")):
  /external/guava/guava/src/com/google/common/cache/
Cache.java 147 * @deprecated This method has been split out into the {@link LoadingCache} interface, and will be
167 * @deprecated This method has been split out into the {@link LoadingCache} interface, and will be
182 * @deprecated This method has been split out into the {@link LoadingCache} interface, and will be

Completed in 1774 milliseconds

<<31323334353637383940>>