/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
H A D | RBImporter.java | 26 * <LI>The class should parse resources one at a time and use the importResource() method to insert them into the resource bundle.</LI> 195 String insert[] = {item.getKey(), (bundle.encoding.equals("") ? "(Base Class)" : bundle.encoding)}; in resolveResource() 196 String result = (String)JOptionPane.showInputDialog(this, Resources.getTranslation("import_resource_conflict_choose", insert) + in resolveResource()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | ConformanceTest.java | 380 buf.insert(0, UTF16.valueOf(ch)); in iterativeNorm() 409 buf.insert(0, UTF16.valueOf(ch)); in iterativeNorm()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | RBBIDataWrapper.java | 398 dest.insert(0, ' '); in intToString() 408 dest.insert(0, ' '); in intToHexString()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | TransliteratorIDParser.java | 303 // canonID. In the reverse, insert it at zero, and invert in parseGlobalFilter() 315 canonID.insert(0, pattern + ID_DELIM); in parseGlobalFilter() 722 buf.insert(0, specs.filter); in specsToID()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
H A D | CanonGSUBBuilder.java | 131 contextualTree.insert(convertArabicString(decompType, ligature, decomposition, isolClassTable)); in buildArabicLigatureTree() 136 //canonicalTree.insert(decomposition + UCharacter.toString(ligature)); in buildArabicLigatureTree() 282 ligatureTree.insert(equivalent + composed); in buildLigatureTree()
|
/third_party/mesa3d/src/amd/compiler/ |
H A D | aco_lower_phis.cpp | 131 block->instructions.insert(std::prev(block->instructions.end()), std::move(instr)); in insert_before_logical_end() 133 block->instructions.insert(std::prev(it.base()), std::move(instr)); in insert_before_logical_end() 216 /* If the loop-header has a back-edge, we need to insert a phi. in init_any_pred_defined()
|
H A D | aco_ssa_elimination.cpp | 86 /* insert the parallelcopies from logical phis before p_logical_end */ in insert_parallelcopies() 111 block.instructions.insert(it, std::move(pc)); in insert_parallelcopies() 114 /* insert parallelcopies for the linear phis at the end of blocks just before the branch */ in insert_parallelcopies() 136 block.instructions.insert(it, std::move(pc)); in insert_parallelcopies() 403 /* insert parallelcopies from SSA elimination */ in ssa_elimination()
|
/third_party/node/src/ |
H A D | blob_serializer_deserializer-inl.h | 275 sink.insert(sink.end(), data.c_str(), data.c_str() + length); in WriteString() 304 sink.insert(sink.end(), pos, pos + size); in WriteArithmetic()
|
H A D | heap_utils.cc | 89 engine_nodes_.insert(n.get()); 100 edges_[from].insert(std::make_pair(name, to));
|
/third_party/node/deps/v8/tools/unittests/ |
H A D | run_perf_test.py | 96 sys.path.insert(0, BASE_DIR) 110 sys.path.insert(0, BASE_DIR)
|
/third_party/ninja/src/ |
H A D | build_log.cc | 157 entries_.insert(Entries::value_type(log_entry->output, log_entry));
in RecordCommand() 346 entries_.insert(Entries::value_type(entry->output, entry));
in Load()
|
/third_party/node/deps/npm/node_modules/make-fetch-happen/lib/cache/ |
H A D | entry.js | 306 await cacache.index.insert(this.options.cachePath, this.key, null, cacheOpts) 446 await cacache.index.insert(options.cachePath, this.key, this.entry.integrity, {
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | specifiers.py | 697 left_split.insert(1, ["0"] * max(0, len(right_split[0]) - len(left_split[0]))) 698 right_split.insert(1, ["0"] * max(0, len(left_split[0]) - len(right_split[0])))
|
/third_party/node/deps/npm/node_modules/yallist/ |
H A D | yallist.js | 349 walker = insert(this, walker, nodes[i]) 367 function insert (self, node, value) {
|
/third_party/node/deps/v8/src/compiler/ |
H A D | load-elimination.h | 134 info_for_node_.insert(std::make_pair(object, info)); in AbstractField() 161 copy->info_for_node_.insert(this_it); in Merge()
|
/third_party/node/deps/v8/src/torque/ |
H A D | earley-parser.cc | 215 auto insert_result = processed->insert(worklist.back()); in RunEarleyAlgorithm() 243 waiting[{pos, next}].insert(&item); in RunEarleyAlgorithm()
|
H A D | instance-type-generator.cc | 188 unconstrained_children_by_size.insert( in SolveInstanceTypeConstraints() 191 constrained_children_by_start.insert( in SolveInstanceTypeConstraints()
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_ssa_builder.cpp | 392 std::pair<def_map::iterator,bool> r = m.insert(std::make_pair(v, index)); in set_index() 403 m.insert(std::make_pair(v, index)); in new_index()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
H A D | ir2.c | 101 * we want to find a slot where we can insert a scalar MOV with 105 insert(struct ir2_context *ctx, unsigned block_idx, unsigned reg_idx, in insert() function 150 * in this case, insert a mov to place the 2nd src into to same reg 174 /* TODO, insert needs logic for this */ in scalarize_case1() 189 /* find a place to insert the mov */ in scalarize_case1() 190 sched = insert(ctx, instr->block_idx, reg->idx, src1, &comp); in scalarize_case1() 324 /* TODO can still insert scalar if src_count=3, if smart about it */ in sched_next() 345 * TODO: if we are smart we can still insert if instr_v->src_count==3 in sched_next() 410 /* catch texture fetch after scheduling and insert the in schedule_instrs()
|
/third_party/rust/crates/clap/src/parser/ |
H A D | validator.rs | 174 seen.insert(c_id.clone()).then(|| { in build_conflict_err() 234 self.required.insert(req); in gather_requires() 239 self.required.insert(r.clone()); in gather_requires()
|
/third_party/rust/crates/clap/src/builder/ |
H A D | debug_asserts.rs | 324 subs.insert(sc.get_name()), 331 subs.insert(alias),
|
/third_party/python/Lib/idlelib/ |
H A D | iomenu.py | 170 self.text.insert("1.0", chars) 177 self.text.mark_set("insert", "1.0") 178 self.text.yview("insert") 263 self.text.insert("end-1c", "\n") # Changes 'end-1c' value.
|
H A D | format.py | 62 find_paragraph(text, text.index("insert")) 70 text.mark_set("insert", first) 73 text.insert(first, newdata) 76 text.mark_set("insert", last) 77 text.see("insert") 166 # re-split and re-insert the comment header. 234 head = text.index("insert linestart") 235 tail = text.index("insert lineend +1c") 248 lines: List of new lines to insert between head 257 text.mark_set("insert", hea [all...] |
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | CLContext.cpp | 105 propArray.insert(propArray.cend(), properties, propIt); in createCommandQueueWithProperties() 216 propArray.insert(propArray.cend(), properties, propIt); in createSamplerWithProperties()
|
H A D | Image.cpp | 102 mSourcesOf.insert(imageSource); in addImageSource() 329 mState.targets.insert(sibling); in addTargetSibling()
|