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

<<31323334353637383940>>

  /build/tools/
java-layers.py 72 self.parts = [(dep.lower.split('.'),dep) for dep in deps.itervalues()]
108 pkg = pkg.split(".")
128 lines = [(n,s.split("#")[0].strip()) for (n,s) in lines]
130 lines = [(n,s.split()) for (n,s) in lines]
202 statements = [s.strip() for s in text.split(";")]
  /external/chromium/chrome/browser/tab_contents/
web_drag_dest_gtk.cc 196 size_t split = netscape_url.find_first_of('\n'); local
197 if (split != std::string::npos) {
198 drop_data_->url = GURL(netscape_url.substr(0, split));
199 if (split < netscape_url.size() - 1)
200 drop_data_->url_title = UTF8ToUTF16(netscape_url.substr(split + 1));
  /external/chromium/third_party/libevent/
event_rpcgen.py 371 return code.split('\n')
395 return code.split('\n')
424 return code.split('\n')
582 return code.split('\n')
689 return code.split('\n')
895 return code.split('\n')
924 return code.split('\n')
953 return code.split('\n')
970 code.extend(tmp.split('\n'))
    [all...]
  /external/chromium_org/android_webview/tools/
webview_licenses.py 69 license = re.split(' [Ll]icenses?$', metadata['License'])[0]
70 tokens = [x.strip() for x in re.split(' and |,', license) if len(x) > 0]
129 entries = l.split('\t')
132 copyrights = entries[1].split(' / ')
261 paras = description.split('\n')
  /external/chromium_org/content/browser/web_contents/
web_drag_dest_gtk.cc 229 size_t split = netscape_url.find_first_of('\n'); local
230 if (split != std::string::npos) {
231 drop_data_->url = GURL(netscape_url.substr(0, split));
232 if (split < netscape_url.size() - 1)
233 drop_data_->url_title = UTF8ToUTF16(netscape_url.substr(split + 1));
  /external/chromium_org/third_party/icu/source/tools/
icu-svnprops-check.py 107 file_type, string_proplist = propline.split("=", 1)
117 # split on ';' into a list of properties. The negative lookahead and lookbehind
118 # in the split regexp are to prevent matching on ';;', which is an escaped ';'
120 string_proplist = re.split("(?<!;);(?!;)", string_proplist)
124 prop_name, prop_val = prop.split("=", 1)
  /external/chromium_org/third_party/libevent/
event_rpcgen.py 371 return code.split('\n')
395 return code.split('\n')
424 return code.split('\n')
582 return code.split('\n')
689 return code.split('\n')
895 return code.split('\n')
924 return code.split('\n')
953 return code.split('\n')
970 code.extend(tmp.split('\n'))
    [all...]
  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 137 path_list = value.split(';')
161 sorted_list = sorted(value.split(';'))
219 return FixFilenames(vsprops.split(';'), os.path.dirname(filename))
292 (key, value) = argv[i].split('=')
305 vsprops_list = FixFilenames(vsprops.strip().split(';'),
  /external/icu4c/tools/
icu-svnprops-check.py 107 file_type, string_proplist = propline.split("=", 1)
117 # split on ';' into a list of properties. The negative lookahead and lookbehind
118 # in the split regexp are to prevent matching on ';;', which is an escaped ';'
120 string_proplist = re.split("(?<!;);(?!;)", string_proplist)
124 prop_name, prop_val = prop.split("=", 1)
  /external/linux-tools-perf/util/
callchain.c 246 * Split the parent in two parts (a new child is created) and
260 /* split */
263 /* split the callchain and move a part to the new child */
271 /* split the hits */
361 /* we match only a part of the node. Split it and add the new chain */
  /external/v8/tools/
presubmit.py 102 """.split()
278 for file in output.stdout.read().split():
279 for dir_part in os.path.dirname(file).split(os.sep):
326 ext = base.split('.').pop()
330 parts = contents.split(' \n')
test-wrapper-gypbuild.py 116 help="Split testsuites into this number of shards",
119 help="Run this shard from the split up tests.",
141 tokens = options.arch_and_mode.split(".")
144 options.mode = options.mode.split(',')
145 options.arch = options.arch.split(',')
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
LocaleUtils.java 114 String[] referenceParams = referenceLocale.split("_", 3);
115 String[] testedParams = testedLocale.split("_", 3);
116 // By spec of String#split, [0] cannot be null and length cannot be 0.
177 String[] localeParams = localeStr.split("_", 3);
196 final String[] ss = str.split(LOCALE_AND_TIME_STR_SEPARATER);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
util.py 26 s, rest = sys.version[i:].split(" ", 1)
67 for directory in os.environ['PATH'].split(os.pathsep):
174 parts = libname.split(".")
211 paths = line.split()[4]
216 for dir in paths.split(":"):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
util.py 26 s, rest = sys.version[i:].split(" ", 1)
67 for directory in os.environ['PATH'].split(os.pathsep):
174 parts = libname.split(".")
211 paths = line.split()[4]
216 for dir in paths.split(":"):
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 67 static INLINE void split(struct bezier *bez, function
127 /* split, second half of the bezier goes lower into the stack */
128 split(b, b+1, b);
147 split(bez, &left, &right); /* split in two */
246 Split,
266 return Split;
273 return Split;
560 split(b, b+1, b);
569 /* if res isn't Ok or Split then *o is undefined *
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 67 static INLINE void split(struct bezier *bez, function
127 /* split, second half of the bezier goes lower into the stack */
128 split(b, b+1, b);
147 split(bez, &left, &right); /* split in two */
246 Split,
266 return Split;
273 return Split;
560 split(b, b+1, b);
569 /* if res isn't Ok or Split then *o is undefined *
    [all...]
  /frameworks/base/services/java/com/android/server/usb/
UsbDeviceManager.java 267 String[] split = functions.split(","); local
268 for (int i = 0; i < split.length; i++) {
269 if (function.equals(split[i])) {
270 split[i] = null;
273 if (split.length == 1 && split[0] == null) {
277 for (int i = 0; i < split.length; i++) {
278 String s = split[i];
557 String[] functions = mCurrentFunctions.split(",");
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 48 Split the argument into words using split, capitalize each
53 sep is used to split and join the words.
56 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
280 # Split a string into a list of space/tab-separated words
281 def split(s, sep=None, maxsplit=-1): function
282 """split(s [,sep [,maxsplit]]) -> list of strings
289 (split and splitfields are synonymous)
292 return s.split(sep, maxsplit)
293 splitfields = split
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 48 Split the argument into words using split, capitalize each
53 sep is used to split and join the words.
56 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
280 # Split a string into a list of space/tab-separated words
281 def split(s, sep=None, maxsplit=-1): function
282 """split(s [,sep [,maxsplit]]) -> list of strings
289 (split and splitfields are synonymous)
292 return s.split(sep, maxsplit)
293 splitfields = split
    [all...]
  /external/chromium/net/tools/flip_server/
flip_in_mem_edsm_server.cc 26 #include "net/tools/flip_server/split.h"
60 std::vector<std::string> &split(const std::string &s, function
71 std::vector<std::string> split(const std::string &s, char delim) { function
73 return split(s, delim, elems);
312 std::vector<std::string> valueArgs = split(value, ',');
336 std::vector<std::string> valueArgs = split(value, ',');
355 std::vector<std::string> valueArgs = split(value, ',');
  /external/chromium_org/net/tools/flip_server/
flip_in_mem_edsm_server.cc 25 #include "net/tools/flip_server/split.h"
60 std::vector<std::string> &split(const std::string &s, function
71 std::vector<std::string> split(const std::string &s, char delim) { function
73 return split(s, delim, elems);
309 std::vector<std::string> valueArgs = split(value, ',');
333 std::vector<std::string> valueArgs = split(value, ',');
359 std::vector<std::string> valueArgs = split(value, ',');
  /external/chromium_org/tools/deep_memory_profiler/lib/
dump.py 231 lambda n: self._lines[n].split()[0] != prefix)
232 words = self._lines[ln].split()
265 words = self._lines[ln][11:].split(',')
267 words = self._lines[ln][5:].split(',')
309 for pageframe in self._lines[ln][5:].split():
378 lambda n: not self._lines[n].split()[0].isdigit())
401 words = stacktrace_line.split()
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
qisf_ns.tab 22 * Quantization tables for split by 5 VQ of ISFs for a background noise database
45 * isf codebooks: split-by-5 VQ *
57 * 1st split: isf0 to isf1
130 * 2nd split: isf2 to isf4
201 * 3rd split: isf5 to isf7
272 * 4th split: isf8 to isf11
311 * 5th split: isf12 to isf15
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 310 * Varies from {@link String#split} in that it will always return an array
316 String[] split = pref.split(LOCALE_DELIMITER); local
317 System.arraycopy(split, 0, returnVal, 0, split.length);
407 String[] prefValues = prefValue.split(",");
450 String[] prefValues = list.split(",");

Completed in 2261 milliseconds

<<31323334353637383940>>