| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| 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('\\')
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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:"),
|
| /external/ltp/testcases/kernel/fs/fs_maim/ |
| backbeat | 28 ($junk,$junk,$part1)=split(/\//,$ARGV[0]); 29 ($junk,$junk,$part2)=split(/\//,$ARGV[1]); 30 ($junk,$junk,$part3)=split(/\//,$ARGV[2]);
|
| maimparts | 36 # target is device to split into partions 39 # part is the number of partitions to split the drive into (max is 4) 53 ($Junk,$Temp1) = split(/\: /,$Geom,2); 54 ($Cyl,$Heads,$Sec) = split(/\, /,$Temp1,3); 55 ($Cyl,$Junk) = split(/ /,$Cyl,2); 56 ($Heads,$Junk) = split(/ /,$Heads,2); 57 ($Sec,$Junk) = split(/ /,$Sec,2);
|
| /external/python/cpython2/Lib/ |
| nturl2path.py | 22 components = url.split('/') 25 comp = url.split('|') 31 components = comp[1].split('/') 55 components = p.split('\\') 57 comp = p.split(':') 63 components = comp[1].split('\\')
|
| /external/python/cpython3/Lib/ |
| nturl2path.py | 22 components = url.split('/') 25 comp = url.split('|') 30 components = comp[1].split('/') 55 components = p.split('\\') 57 comp = p.split(':') 63 components = comp[1].split('\\')
|
| /prebuilts/gdb/darwin-x86/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/gdb/darwin-x86/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/gdb/linux-x86/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/gdb/linux-x86/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/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:"),
|
| /external/ltp/tools/ |
| genhtml.pl | 125 @variable_value_pair = split(/\ /, $line); 126 @tag_value = split(/=/,$variable_value_pair[0]); 127 @stime_value = split(/=/,$variable_value_pair[1]); 136 @variable_value_pair = split(/=/, $line); 140 @variable_value_pair = split(/=/, $line); 144 @variable_value_pair = split(/=/, $line); 149 @variable_value_pair = split(/=/, $line); 153 @variable_value_pair = split(/\ /, $line); 154 @duration_value = split(/=/, $variable_value_pair[0]); 155 @termination_type_value = split(/=/, $variable_value_pair[1]) [all...] |
| /external/guava/guava-tests/test/com/google/common/base/ |
| SplitterTest.java | 45 COMMA_SPLITTER.split(null); 53 Iterable<String> letters = COMMA_SPLITTER.split(simple); 58 * All of the infrastructure of split and splitToString is identical, so we 60 * of split. 63 * both split and splitToString automatically. 72 assertEquals("[]", Splitter.on(',').split("").toString()); 73 assertEquals("[a, b, c]", Splitter.on(',').split("a,b,c").toString()); 74 assertEquals("[yam, bam, jam, ham]", Splitter.on(", ").split("yam, bam, jam, ham").toString()); 79 Iterable<String> letters = Splitter.on('.').split(simple); 85 Iterable<String> letters = COMMA_SPLITTER.split(doubled) 366 Iterable<String> split = Splitter.onPattern(regexPattern).split(toSplit); local [all...] |
| /external/brotli/c/enc/ |
| metablock_inc.h | 48 BlockSplit* split, HistogramType** histograms, size_t* histograms_size) { 58 self->split_ = split; 65 split->types, split->types_alloc_size, max_num_blocks); 67 split->lengths, split->lengths_alloc_size, max_num_blocks); 86 BlockSplit* split = self->split_; variable 93 split->lengths[0] = (uint32_t)self->block_size_; 94 split->types[0] = 0; 99 ++split->num_types [all...] |
| /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/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/ |
| grow_stats.h | 33 // Base class for tracking stats necessary to split a leaf. 34 // Holds and tracks stats for every candidate split. 45 // Fill in the best split, return false if none were valid. 52 const decision_trees::BinaryNode& Split(int split_num) const { 67 // Add split to the list of candidate splits. 68 void AddSplit(const decision_trees::BinaryNode& split, 89 // Function called by AddSplit for subclasses to initialize stats for a split. 113 // Don't track anything, useful for systems that want to track split 141 // Tracks the sum and square of one side of a split for each Gini calculation. 144 float sum(int split) const { return sum_[split]; 232 ClassificationRemoveSplitStats(split); variable [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/mesa3d/src/util/ |
| u_vector.c | 43 uint32_t offset, size, split, src_tail, dst_tail; local 59 /* In this case, the vector is split into two pieces and we have 64 split = u_align_u32(vector->tail, vector->size); 65 assert(vector->tail <= split && split < vector->head); 67 split - vector->tail); 68 memcpy((char *)data + (split & (size - 1)), vector->data, 69 vector->head - split);
|
| /external/python/cpython2/Lib/sqlite3/ |
| dbapi2.py | 51 version_info = tuple([int(x) for x in version.split(".")]) 52 sqlite_version_info = tuple([int(x) for x in sqlite_version.split(".")]) 65 return datetime.date(*map(int, val.split("-"))) 68 datepart, timepart = val.split(" ") 69 year, month, day = map(int, datepart.split("-")) 70 timepart_full = timepart.split(".") 71 hours, minutes, seconds = map(int, timepart_full[0].split(":"))
|
| /external/python/cpython3/Lib/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(".")]) 64 return datetime.date(*map(int, val.split(b"-"))) 67 datepart, timepart = val.split(b" ") 68 year, month, day = map(int, datepart.split(b"-")) 69 timepart_full = timepart.split(b".") 70 hours, minutes, seconds = map(int, timepart_full[0].split(b":"))
|
| /external/swiftshader/third_party/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(",")]
|