HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 26 - 50 of 2923) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 50 version_info = tuple([int(x) for x in version.split(".")])
51 sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")])
63 return datetime.date(*map(int, val.split("-")))
66 datepart, timepart = val.split(" ")
67 year, month, day = map(int, datepart.split("-"))
68 timepart_full = timepart.split(".")
69 hours, minutes, seconds = map(int, timepart_full[0].split(":"))
  /external/chromium_org/build/android/pylib/
io_stats_parser.py 31 fields = line.split()
  /external/chromium_org/build/
gyp_chromium.py 17 path = os.path.abspath(os.path.split(__file__)[0])
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_swizzle.h 51 * Determine how to split access to the masked channels of the
54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split);
  /external/chromium_org/tools/traceline/traceline/
dump_syscalls_idarub.rb 28 funcname = ida.get_func_name(curea).split('@', 2)[0].split('_', 2)[-1]
  /external/ipsec-tools/src/racoon/
stats.pl 7 ($a, $a, $a, $a, $a, $b) = split(/\s+/, $_, 6);
8 ($a, $c) = split(/:/, $b, 2);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_swizzle.h 51 * Determine how to split access to the masked channels of the
54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split);
  /external/chromium_org/third_party/openssl/openssl/crypto/lhash/
num.pl 9 @a=split;
  /external/openssl/crypto/lhash/
num.pl 9 @a=split;
  /external/tcpdump/
stime.awk 10 n = split ($1,t,":")
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java 76 String[] split = content.split("\\s"); local
79 color.r = Float.parseFloat(split[0]);
80 color.g = Float.parseFloat(split[1]);
81 color.b = Float.parseFloat(split[2]);
82 if (split.length >= 4){
83 color.a = Float.parseFloat(split[3]);
158 String[] split = statement.getLine().split(" ", 2); local
159 String keyword = split[0]
189 String[] split = statement.getLine().split(" ", 2); local
211 String[] split = statement.getLine().split(" ", 2); local
274 String[] split = statement.getLine().split(" ", 2); local
290 String[] split = statement.getLine().split(" ", 2); local
450 String[] split = statement.getLine().split(" ", 2); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nturl2path.py 20 components = url.split('/')
23 comp = url.split('|')
29 components = comp[1].split('/')
53 components = p.split('\\')
55 comp = p.split(':')
61 components = comp[1].split('\\')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_macpath.py 22 split = macpath.split
23 self.assertEqual(split("foo:bar"),
25 self.assertEqual(split("conky:mountpoint:foo:bar"),
28 self.assertEqual(split(":"), ('', ''))
29 self.assertEqual(split(":conky:mountpoint:"),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nturl2path.py 20 components = url.split('/')
23 comp = url.split('|')
29 components = comp[1].split('/')
53 components = p.split('\\')
55 comp = p.split(':')
61 components = comp[1].split('\\')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_macpath.py 22 split = macpath.split
23 self.assertEqual(split("foo:bar"),
25 self.assertEqual(split("conky:mountpoint:foo:bar"),
28 self.assertEqual(split(":"), ('', ''))
29 self.assertEqual(split(":conky:mountpoint:"),
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
SplitTest.java 33 String[] results = p.split("have/you/done/it/right");
47 tokens = p.split(input, 1);
50 tokens = p.split(input, 2);
54 tokens = p.split(input, 5);
58 tokens = p.split(input, -2);
62 tokens = p.split(input, 0);
66 tokens = p.split(input);
73 tokens = p.split(input, 1);
76 tokens = p.split(input, 2);
80 tokens = p.split(input, 5)
    [all...]
  /development/tools/axl/
chewperf.py 13 rawLines = f.split('\n')
17 line = rawLines[x].split()
20 ts = int(rawLines[x - 1].split()[-1])
29 rawLines = f.split('\r\n')
36 chewed = [int(line.split()[5]), int(line.split()[7])]
47 rawLines = f.split('\n')
50 sidx = lines[0].split().index("Pulled")
52 chewed = [[int(x.split()[sidx + 2]), int(x.split()[sidx + 4])] for x in lines
    [all...]
  /external/llvm/utils/Target/ARM/
analyze-match-table.py 8 lines = data[start:end].split("\n")[1:]
13 ln = ln.split("{", 1)[1]
15 a,bc = ln.split("{", 1)
16 b,c = bc.split("}", 1)
18 for s in a.split(",")]
19 items = [s.strip() for s in b.split(",")]
20 _,features = [s.strip() for s in c.split(",")]
  /external/guava/guava-tests/test/com/google/common/base/
SplitterTest.java 45 COMMA_SPLITTER.split(null);
53 Iterable<String> letters = COMMA_SPLITTER.split(simple);
59 Iterable<String> letters = Splitter.on('.').split(simple);
65 Iterable<String> letters = COMMA_SPLITTER.split(doubled);
71 Iterable<String> letters = COMMA_SPLITTER.split(doubled);
77 Iterable<String> letters = COMMA_SPLITTER.split(trailing);
83 Iterable<String> letters = COMMA_SPLITTER.split(leading);
88 Iterable<String> testCharacteringMotto = Splitter.on('-').split(
97 .split("Testing\nrocks\tDebugging sucks");
105 .omitEmptyStrings().split(doubled)
    [all...]
  /external/chromium_org/tools/cygprofile/
patch_orderfile.py 14 uninstrumented_shlib + ' | egrep "( t )|( W )|( T )"').split('\n')
18 if (len(nmline.split()) == 4):
27 if (len(nmlines[nm_index].split()) == 4):
28 nm_int = int (nmlines[nm_index].split()[0], 16)
29 size = int (nmlines[nm_index].split()[1], 16)
30 fnames = [nmlines[nm_index].split()[3]]
33 nmlines[nm_index].split()[0], 16):
34 fnames.append(nmlines[nm_index].split()[3])
70 functionName = line.replace('.text.', '').split('.clone.')[0].strip()
81 functionName = line.split()[3
    [all...]
  /external/libvpx/libvpx/vp8/decoder/
dboolhuff.h 62 unsigned int split; local
67 split = 1 + (((br->range - 1) * probability) >> 8);
75 bigsplit = (VP8_BD_VALUE)split << (VP8_BD_VALUE_SIZE - 8);
77 range = split;
81 range = br->range - split;
  /external/chromium_org/chrome/tools/convert_dict/
dic_reader.cc 23 // We split the line on a slash not preceded by a backslash. A slash at the
72 std::vector<std::string> split; local
73 SplitDicLine(line, &split);
74 if (split.empty() || split.size() > 2) {
85 utf8word = split[0];
86 } else if (!aff_reader->EncodingToUTF8(split[0], &utf8word)) {
94 if (split.size() == 2) {
99 size_t split1_tab_offset = split[1].find('\t');
101 split[1] = split[1].substr(0, split1_tab_offset)
    [all...]
  /external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/
parse_url.js 8 var parts = url.split("?");
14 var args = arglist.split("&");
17 var parts = args[i].split("=");
  /frameworks/support/v4/java/android/support/v4/view/
ViewGroupCompat.java 50 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split);
61 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) {
78 public void setMotionEventSplittingEnabled(ViewGroup group, boolean split) {
79 ViewGroupCompatHC.setMotionEventSplittingEnabled(group, split);
150 * <p>When this option is enabled MotionEvents may be split and dispatched to different child
156 * @param split <code>true</code> to allow MotionEvents to be split and dispatched to multiple
160 public static void setMotionEventSplittingEnabled(ViewGroup group, boolean split) {
161 IMPL.setMotionEventSplittingEnabled(group, split);
  /external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/
error.js 5 return x.split('-'); // Throws exception.

Completed in 532 milliseconds

12 3 4 5 6 7 8 91011>>