| /external/autotest/server/site_tests/platform_LabFirmwareUpdate/ |
| platform_LabFirmwareUpdate.py | 52 logging.info('Output: %s', output.split('\n')) 65 parts = line.split(':') 68 parts = line.split(':') 122 parts = line.split(':') 126 parts = line.split(':') 130 parts = line.split(':')
|
| /external/brotli/enc/ |
| block_splitter_inc.h | 193 BlockSplit* split) { 332 m, uint8_t, split->types, split->types_alloc_size, num_blocks); 334 m, uint32_t, split->lengths, split->lengths_alloc_size, num_blocks); 345 split->types[block_idx] = id; 346 split->lengths[block_idx] = cur_length; 352 split->num_blocks = block_idx; 353 split->num_types = (size_t)max_type + 1; 367 BlockSplit* split) { [all...] |
| metablock.c | 199 size_t num_symbols, BlockSplit* split, HistogramLiteral** histograms, 211 self->split_ = split; 223 split->types, split->types_alloc_size, max_num_blocks); 225 split->lengths, split->lengths_alloc_size, max_num_blocks); 227 split->num_blocks = max_num_blocks; 245 BlockSplit* split = self->split_; local 256 split->lengths[0] = (uint32_t)self->block_size_; 257 split->types[0] = 0 [all...] |
| /external/python/cpython2/Lib/ |
| macpath.py | 10 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 59 def split(s): function 60 """Split a pathname into two parts: the directory leading up to the final 79 """Split a pathname into a drive specification and the rest of the 88 # Short interfaces to split() 90 def dirname(s): return split(s)[0] 91 def basename(s): return split(s)[1] 96 components = split(s) 139 comps = s.split(":") 206 components = path.split(':' [all...] |
| /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/ |
| Volume.java | 77 String[] colorSplit = color_string.split("\\}\\s*\\,\\s*\\{");
78 String[] opacitySplit = opacity_string.split("\\}\\s*\\,\\s*\\{");
101 String[] split = numList.split(",");
local 102 int[] ret = new int[split.length];
104 ret[i] = Integer.decode(split[i].trim());
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| macpath.py | 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 58 def split(s): function 59 """Split a pathname into two parts: the directory leading up to the final 78 """Split a pathname into a drive specification and the rest of the 87 # Short interfaces to split() 89 def dirname(s): return split(s)[0] 90 def basename(s): return split(s)[1] 95 components = split(s) 138 comps = s.split(":") 205 components = path.split(':' [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| macpath.py | 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 58 def split(s): function 59 """Split a pathname into two parts: the directory leading up to the final 78 """Split a pathname into a drive specification and the rest of the 87 # Short interfaces to split() 89 def dirname(s): return split(s)[0] 90 def basename(s): return split(s)[1] 95 components = split(s) 138 comps = s.split(":") 205 components = path.split(':' [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| macpath.py | 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 58 def split(s): function 59 """Split a pathname into two parts: the directory leading up to the final 78 """Split a pathname into a drive specification and the rest of the 87 # Short interfaces to split() 89 def dirname(s): return split(s)[0] 90 def basename(s): return split(s)[1] 95 components = split(s) 138 comps = s.split(":") 205 components = path.split(':' [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| macpath.py | 9 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 58 def split(s): function 59 """Split a pathname into two parts: the directory leading up to the final 78 """Split a pathname into a drive specification and the rest of the 87 # Short interfaces to split() 89 def dirname(s): return split(s)[0] 90 def basename(s): return split(s)[1] 95 components = split(s) 138 comps = s.split(":") 205 components = path.split(':' [all...] |
| /external/autotest/client/bin/ |
| kernel_versions.py | 24 bits = encode_sep.split(version) 46 bits = encode_sep.split(version) 51 return len(encode_sep.split(version))
|
| /external/autotest/client/common_lib/ |
| kernel_versions.py | 24 bits = encode_sep.split(version) 46 bits = encode_sep.split(version) 51 return len(encode_sep.split(version))
|
| /external/autotest/client/site_tests/hardware_Interrupt/ |
| hardware_Interrupt.py | 34 num_cpus = len(lines.pop(0).split()) 37 fields = line.split() 39 interrupt = fields[0].strip().split(':')[0]
|
| /external/autotest/client/site_tests/platform_Crouton/ |
| platform_Crouton.py | 59 for env_pair in self._env.split(";"): 60 keyval = env_pair.split("=") 66 args = ['test/run.sh', '-l', self.resultsdir] + self._runargs.split()
|
| /external/autotest/client/site_tests/platform_LibCBench/ |
| platform_LibCBench.py | 54 for line in output.split('\n'): 58 time = float(line.strip().split(',')[0].split(' ')[1])
|
| /external/autotest/client/tests/aiostress/ |
| aiostress.py | 52 line = line.split(')')[0] 53 key, value = line.split('(') 55 value = value.split()[0]
|
| /external/autotest/contrib/ |
| dhcp_failed_machines.py | 29 if line.split() and line.split()[0] == 'host': 31 d = dict([h.strip().split()[-2:] for h in hostconf])
|
| /external/autotest/server/ |
| site_host_attributes.py | 98 splitnames = attribute.split(',') 103 attribute.split('netbook_')[1]).hexdigest()[:8], 'True'] 105 splitnames = attribute.split(':')
|
| /external/jcommander/src/test/java/com/beust/jcommander/ |
| VariableArityTest.java | 47 String[] split = input.split("\\s+"); local 53 com.parse(split);
|
| /external/swiftshader/third_party/LLVM/lib/CodeGen/ |
| Splitter.h | 88 void processHeader(LoopSplit &split); 89 void processLoopExits(LoopSplit &split); 90 void processLoopUses(LoopSplit &split);
|
| /external/v8/tools/clang/scripts/ |
| build_file.py | 48 raw_args = shlex.split(record['command']) 62 args.extend(shlex.split(prefix)) 67 args.extend(shlex.split(suffix))
|
| /external/zlib/src/ |
| zlib2ansi | 59 split /\s*,\s*/, $param_list; 62 my @params = split /\s*;\s*/, $params; 68 my @bits = split /\s*,\s*/, $p;
|
| /system/core/init/ |
| compare-bootcharts.py | 86 blocks = f.read().split('\n\n') 88 lines = b.split('\n') 115 segs = line.split(' ')
|
| /art/compiler/optimizing/ |
| live_interval_test.cc | 198 LiveInterval* split = interval->SplitAt(1); local 202 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split))); 209 LiveInterval* split = interval->SplitAt(3); local 213 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split))); 220 LiveInterval* split = interval->SplitAt(1); local 224 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split))); 231 LiveInterval* split = interval->SplitAt(5); local 235 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split))); 242 LiveInterval* split = interval->SplitAt(9); local 246 ASSERT_TRUE(RangesEquals(split, expected_split, arraysize(expected_split))) 253 LiveInterval* split = interval->SplitAt(6); local 264 LiveInterval* split = interval->SplitAt(4); local 275 LiveInterval* split = interval->SplitAt(5); local [all...] |
| /build/make/tools/ |
| parsedeps.py | 103 (tgt,prereq) = line.split(':', 1) 114 split = line.split() 115 cmd = split[0] 116 if len(split) == 2 and cmd == "dep": 117 tgt = split[1] 122 elif len(split) == 3 and cmd == "trace": 123 tgt = split[1] 124 prereq = split[2]
|
| /cts/apps/CameraITS/tests/inprog/ |
| test_test_patterns.py | 23 NAME = os.path.basename(__file__).split(".")[0]
|