Home
last modified time | relevance | path

Searched refs:split (Results 26 - 50 of 2986) sorted by relevance

12345678910>>...120

/third_party/node/deps/npm/test/fixtures/
H A Dsandbox.js138 .split(normalize(this[_proxy].execPath)).join('{EXECPATH}')
139 .split(normalize(_process.execPath)).join('{REALEXECPATH}')
140 .split(normalize(this.global)).join('{GLOBALPREFIX}')
141 .split(normalize(realGlobalPrefix)).join('{REALGLOBALREFIX}')
142 .split(normalize(this.project)).join('{LOCALPREFIX}')
143 .split(normalize(this.home)).join('{HOME}')
145 .split(normalize(dirname(dirname(__dirname)))).join('{NPMDIR}')
146 .split(normalize(tmpdir())).join('{TMP}')
147 .split(normalize(homedir())).join('{REALHOME}')
148 .split(thi
[all...]
/third_party/mesa3d/src/vulkan/util/
H A Dvk_extensions.py36 split = string.split('.')
37 self.major = int(split[0])
38 self.minor = int(split[1])
39 if len(split) > 2:
40 assert len(split) == 3
41 self.patch = int(split[2])
79 for substring in re.split('(KHR|EXT|[0-9]+)', ext.name):
/test/testfwk/developer_test/local_coverage/resident_service/
H A Dpublic_method.py56 for line in strout.split("\n"):
66 root_path = current_path.split("/test/testfwk/developer_test")[0]
98 _, testsuite = command.split(" -ts ")
115 component_name = command.split(" -tp ")[-1].split(" ")[0]
131 system_name = command.split(" -ss ")[-1].split(" ")[0]
/test/xts/tools/lite/reliability/
H A DNativePressTest.py52 splitlines = cmdRet.strip('\n\t\r').split("\n")
55 if len(line.split()) >= 1:
57 testPID.append(line.split()[1])
86 splitlines = cmdRet.strip('\n\t\r').split("\n")
89 splitlines = line.split()
109 print("abs path is %s" % (os.path.split(os.path.realpath(__file__))[0]))
110 testScriptPath = os.path.split(os.path.realpath(__file__))[0]
/third_party/node/tools/gyp/tools/
H A Dpretty_gyp.py56 split = len(m.group(1))
57 line = line[:split] + r"\n" + line[split:]
58 masked_line = masked_line[:split] + r"\n" + masked_line[split:]
60 output.extend(line.split(r"\n"))
61 mask_output.extend(masked_line.split(r"\n"))
70 These are used to split lines which have multiple braces on them, so
/third_party/mesa3d/src/util/
H A Du_vector.c60 uint32_t offset, size, split, src_tail, dst_tail; in u_vector_add() local
76 /* In this case, the vector is split into two pieces and we have in u_vector_add()
81 split = u_align_u32(vector->tail, vector->size); in u_vector_add()
82 assert(vector->tail <= split && split < vector->head); in u_vector_add()
84 split - vector->tail); in u_vector_add()
85 memcpy((char *)data + (split & (size - 1)), vector->data, in u_vector_add()
86 vector->head - split); in u_vector_add()
/third_party/node/tools/
H A Djs2c.py133 split = filename.split('/')
134 if split[0] == 'deps':
135 split = ['internal'] + split
137 split = split[1:]
138 if len(split):
139 filename = '/'.join(split)
/third_party/node/deps/brotli/c/enc/
H A Dmetablock.c338 size_t num_symbols, BlockSplit* split, HistogramLiteral** histograms, in InitContextBlockSplitter()
350 self->split_ = split; in InitContextBlockSplitter()
362 split->types, split->types_alloc_size, max_num_blocks); in InitContextBlockSplitter()
364 split->lengths, split->lengths_alloc_size, max_num_blocks); in InitContextBlockSplitter()
366 split->num_blocks = max_num_blocks; in InitContextBlockSplitter()
384 BlockSplit* split = self->split_; in ContextBlockSplitterFinishBlock() local
395 split->lengths[0] = (uint32_t)self->block_size_; in ContextBlockSplitterFinishBlock()
396 split in ContextBlockSplitterFinishBlock()
335 InitContextBlockSplitter( MemoryManager* m, ContextBlockSplitter* self, size_t alphabet_size, size_t num_contexts, size_t min_block_size, double split_threshold, size_t num_symbols, BlockSplit* split, HistogramLiteral** histograms, size_t* histograms_size) InitContextBlockSplitter() argument
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dmetablock.c338 size_t num_symbols, BlockSplit* split, HistogramLiteral** histograms, in InitContextBlockSplitter()
350 self->split_ = split; in InitContextBlockSplitter()
362 split->types, split->types_alloc_size, max_num_blocks); in InitContextBlockSplitter()
364 split->lengths, split->lengths_alloc_size, max_num_blocks); in InitContextBlockSplitter()
366 split->num_blocks = max_num_blocks; in InitContextBlockSplitter()
384 BlockSplit* split = self->split_; in ContextBlockSplitterFinishBlock() local
395 split->lengths[0] = (uint32_t)self->block_size_; in ContextBlockSplitterFinishBlock()
396 split in ContextBlockSplitterFinishBlock()
335 InitContextBlockSplitter( MemoryManager* m, ContextBlockSplitter* self, size_t alphabet_size, size_t num_contexts, size_t min_block_size, double split_threshold, size_t num_symbols, BlockSplit* split, HistogramLiteral** histograms, size_t* histograms_size) InitContextBlockSplitter() argument
[all...]
/third_party/ltp/testcases/kernel/power_management/lib/
H A Dpm_sched_mc.py87 siblings = line.split(":")
89 cpu_cores = line.split(":")
108 siblings = line.split(":")
110 cpu_cores = line.split(":")
139 siblings = line.split(":")
141 cpu_cores = line.split(":")
196 thread_ids = threads_sibs.split("-")
229 data = line.split()
243 data = line.split()
572 sep_comma = range_val.split(",")
[all...]
/third_party/cJSON/tests/unity/auto/
H A Dparse_output.rb50 test_name = test_suite_name.split('/')
52 base_name = test_name[test_name.size - 1].split('.')
90 array2 = test_name.split(' ')
112 array2 = test_name.split(' ')
128 os = RUBY_PLATFORM.split('-')
162 line_array = line.split(':')
164 # If we were able to split the line then we can look to see if any of our target words
179 line_array = line.split(' ')
/third_party/mesa3d/src/amd/registers/
H A Dparseheader.py102 split = line.split(None, 1)
103 name = split[0]
114 value = int(split[1], 0)
137 m = RE_set_value.match(split[1])
142 m = RE_set_value_no_shift.match(split[1])
168 address = int(split[1], 0)
/third_party/skia/src/core/
H A DSkImageInfo.cpp79 std::string split(depth, '\t'); in dump()
80 desc += split + "\n SkImageInfo:{ \n"; in dump()
81 desc += split + "\t fColorSpace: Omit\n"; in dump()
82 desc += split + "\t fDimensions:{fWidth:" + std::to_string(fDimensions.fWidth) + in dump()
84 desc += split + "\t fColorType: " + std::to_string(static_cast<int>(fColorInfo.colorType())) + "\n"; in dump()
85 desc += split + "\t fAlphaType: " + std::to_string(static_cast<int>(fColorInfo.alphaType())) + "\n"; in dump()
86 desc += split + "}\n"; in dump()
H A DSkVertices.cpp230 std::string split(depth, '\t'); in dump()
231 desc += split + "\n SkVertices:{ \n"; in dump()
232 desc += split + "\t fUniqueID: " + std::to_string(fUniqueID) + "\n"; in dump()
236 desc += split + "\t fPositions: nullptr\n"; in dump()
242 desc += split + "\t fTexs: nullptr\n"; in dump()
246 desc += split + "\t fColors: " + std::to_string(*fColors) + "\n"; in dump()
248 desc += split + "\t fColors: nullptr\n"; in dump()
252 desc += split + "\t fIndices: " + std::to_string(*fIndices) + "\n"; in dump()
254 desc += split + "\t fIndices: nullptr\n"; in dump()
258 desc += split in dump()
[all...]
/third_party/skia/third_party/externals/spirv-tools/test/fuzz/
H A Dtransformation_split_block_test.cpp97 // No split before OpVariable in TEST()
105 // No split before OpLabel in TEST()
110 // No split if base instruction is outside a function in TEST()
118 // No split if block is loop header in TEST()
126 // No split if base instruction does not exist in TEST()
134 // No split if too many instructions with the desired opcode are skipped in TEST()
140 // No split if id in use in TEST()
425 // Illegal to split between the merge and the conditional branch. in TEST()
435 auto split = TransformationSplitBlock( in TEST() local
437 ASSERT_TRUE(split in TEST()
564 auto split = TransformationSplitBlock( TEST() local
749 auto split = TEST() local
828 auto split = TransformationSplitBlock( TEST() local
914 auto split = TransformationSplitBlock( TEST() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzz/
H A Dtransformation_split_block_test.cpp97 // No split before OpVariable in TEST()
105 // No split before OpLabel in TEST()
110 // No split if base instruction is outside a function in TEST()
118 // No split if block is loop header in TEST()
126 // No split if base instruction does not exist in TEST()
134 // No split if too many instructions with the desired opcode are skipped in TEST()
140 // No split if id in use in TEST()
425 // Illegal to split between the merge and the conditional branch. in TEST()
435 auto split = TransformationSplitBlock( in TEST() local
437 ASSERT_TRUE(split in TEST()
564 auto split = TransformationSplitBlock( TEST() local
749 auto split = TEST() local
828 auto split = TransformationSplitBlock( TEST() local
914 auto split = TransformationSplitBlock( TEST() local
[all...]
/third_party/skia/infra/bots/recipes/
H A Dcompute_buildstats.py153 sections = step_data.stdout.decode('utf-8').split(MAGIC_SEPERATOR)
156 logs['perf_json'] = sections[1].split('\n')
181 sections = step_data.stdout.decode('utf-8').split(MAGIC_SEPERATOR)
184 logs['perf_json'] = sections[2].split('\n')
214 sections = step_data.stdout.decode('utf-8').split(MAGIC_SEPERATOR)
219 logs['bloaty_file_symbol_short'] = sections[1].split('\n')
220 logs['bloaty_file_symbol_full'] = sections[2].split('\n')
221 logs['bloaty_symbol_file_short'] = sections[3].split('\n')
222 logs['bloaty_symbol_file_full'] = sections[4].split('\n')
223 logs['perf_json'] = sections[5].split('\
[all...]
/third_party/spirv-tools/test/fuzz/
H A Dtransformation_split_block_test.cpp97 // No split before OpVariable in TEST()
105 // No split before OpLabel in TEST()
110 // No split if base instruction is outside a function in TEST()
119 // No split if block is loop header in TEST()
127 // No split if base instruction does not exist in TEST()
135 // No split if too many instructions with the desired opcode are skipped in TEST()
141 // No split if id in use in TEST()
426 // Illegal to split between the merge and the conditional branch. in TEST()
436 auto split = TransformationSplitBlock( in TEST() local
438 ASSERT_TRUE(split in TEST()
565 auto split = TransformationSplitBlock( TEST() local
750 auto split = TransformationSplitBlock( TEST() local
829 auto split = TransformationSplitBlock( TEST() local
915 auto split = TransformationSplitBlock( TEST() local
[all...]
/third_party/skia/infra/bots/buildstats/
H A Dbuildstats_flutter.py37 props = propstr.split(' ')
41 keys = keystr.split(' ')
102 lines = lines.split('\n')
110 parts = line.split('\t')
140 lines = lines.split('\n')
145 parts = line.split('\t')
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DBuddyAllocator.cpp46 return ComputeNumOfFreeBlocks(block->split.pLeft) + in ComputeNumOfFreeBlocks()
47 ComputeNumOfFreeBlocks(block->split.pLeft->pBuddy); in ComputeNumOfFreeBlocks()
75 // 1 16 | S | F2 | S - split in GetNextFreeAlignedBlock()
97 // level was split, there were no smaller free blocks at a higher level to allocate.
164 // Remove curr block (about to be split). in Allocate()
187 // Curr block is now split. in Allocate()
189 currBlock->split.pLeft = leftChildBlock; in Allocate()
212 if (offset < curr->split.pLeft->pBuddy->mOffset) {
213 curr = curr->split.pLeft;
215 curr = curr->split
[all...]
/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/
H A DCommandLineMainTest.java36 String[] args = ("--countryCode=" + TEST_COUNTRY_CODE).split(" "); in createMigrationJob_noNumberInputSpecified_expectException()
48 " --file=" + TEST_FILE_INPUT).split(" "); in createMigrationJob_numberAndFile_expectException()
60 .split(" "); in createFromNumberString_expectSufficientArguments()
70 .split(" "); in createFromPath_expectSufficientArguments()
80 + " --exportInvalidMigrations --customRecipe=" + TEST_FILE_INPUT).split(" "); in createMigrationJob_exportInvalidMigrationsAndCustomRecipe_expectException()
/test/xts/acts/arkui/libuv/
H A Dgenlocal.py60 subprocess.run(commond.split(" "), shell=False, capture_output=True)
89 linelist = line.split(",")
226 timelist = latestpath.split("/")
238 suitelist = tasklogline.split("[Start test suite [")
239 suiteitem = suitelist[1].split("]")
242 freslist = tasklogline.split("ok")
246 caseline = numcase.split("-")
251 freslist = tasklogline.split("not ok")
255 caseline = numcase.split("-")
269 loccasename = casename.split("
[all...]
/third_party/mesa3d/bin/
H A Dgen_release_notes.py187 for commit in commits.split('\n'):
188 sha, message = commit.split(maxsplit=1)
193 out = _out.decode().split('\n')
202 issues.extend([b.strip().lstrip('#') for b in bug.split(',')])
244 for l in log.split('\n'):
254 version = version.split('-')[0]
256 base = version.split('.')
271 version = version.split('-')[0]
274 base = version.split('.')
304 version = raw_version.split('
[all...]
/third_party/node/deps/npm/node_modules/is-core-module/
H A Dindex.js6 var nodeParts = current.split('.');
7 var parts = specifier.split(' ');
9 var versionParts = (parts.length > 1 ? parts[1] : parts[0]).split('.');
29 var specifiers = range.split(/ ?&& ?/);
/third_party/mesa3d/src/panfrost/bifrost/valhall/
H A Dva_lower_split_64bit.c28 * Bifrost uses split 64-bit addresses, specified as two consecutive sources.
30 * an aligned register pair. This simple pass inserts moves to lower split
37 /* Skip sources that are already split properly */ in lower_split_src()
53 bi_instr *split = bi_split_i32_to(&b, bi_null(), vec); in lower_split_src() local
54 split->nr_dests = 2; in lower_split_src()
60 split->dest[w] = bi_temp(ctx); in lower_split_src()
61 I->src[s + w] = split->dest[w]; in lower_split_src()

Completed in 13 milliseconds

12345678910>>...120