Home
last modified time | relevance | path

Searched refs:insert (Results 926 - 950 of 5258) sorted by relevance

1...<<31323334353637383940>>...211

/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
H A DConstantMultiFieldModifier.java56 int length = output.insert(leftIndex, prefixChars, prefixFields); in apply()
60 length += output.insert(rightIndex + length, suffixChars, suffixFields); in apply()
/third_party/node/deps/v8/tools/dev/
H A Dupdate-compile-commands.py29 sys.path.insert(0, PYLIB_PATH)
32 sys.path.insert(0, GM_PATH)
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/mutators/
H A Dfunction_call_mutator.js115 const insert = _liftExpressionsToStatements(path, [
125 thisMutator.insertAfterSkip(path, insert);
/third_party/ninja/src/
H A Ddyndep.cc91 edge->outputs_.insert(edge->outputs_.end(), in UpdateEdge()
109 edge->inputs_.insert(edge->inputs_.end() - edge->order_only_deps_, in UpdateEdge()
/third_party/node/deps/v8/src/ic/
H A Dic-stats.cc68 script_name_map_.insert( in GetOrCacheScriptName()
72 script_name_map_.insert( in GetOrCacheScriptName()
/third_party/node/deps/v8/src/torque/
H A Dtorque-code-generator.h47 it = location_map_.insert(std::make_pair(location, FreshNodeName())) in DefinitionToVariable()
57 location_map_.insert(std::make_pair(definition, str)); in SetDefinitionVariable()
/third_party/mesa3d/src/nouveau/codegen/
H A Dnv50_ir_from_common.cpp39 it = sub.map.insert(std::make_pair( in getSubroutine()
52 it = sub.map.insert(std::make_pair(ip, Subroutine(f))).first; in getSubroutine()
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
49 entry.insert(self.vec.len()); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
104 self.0.insert(key, value) in insert()
142 set.insert(*key); in keys()
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
49 entry.insert(self.vec.len()); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
104 self.0.insert(key, value) in insert()
142 set.insert(*key); in keys()
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
49 entry.insert(self.vec.len()); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
104 self.0.insert(key, value) in insert()
142 set.insert(*key); in keys()
/third_party/rust/crates/cxx/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
49 entry.insert(self.vec.len()); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
104 self.0.insert(key, value) in insert()
142 set.insert(*key); in keys()
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dmap.rs42 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
49 entry.insert(self.vec.len()); in insert()
103 pub fn insert(&mut self, key: K, value: V) -> Option<V> { in insert() functions
104 self.0.insert(key, value) in insert()
142 set.insert(*key); in keys()
/third_party/python/Lib/idlelib/
H A Dmacosx.py167 mainmenu.menudefs[0][1].insert(6, closeItem)
232 mainmenu.menudefs.insert(0,
H A Dhistory.py53 if self.text.compare("insert", "!=", "end-1c") or \
56 self.text.mark_set("insert", "end-1c") # != after cursor move
77 self.text.insert("iomark", prefix, "stdin")
83 self.text.insert("iomark", item, "stdin")
85 self.text.see("insert")
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DHandleAllocator.cpp149 placementIt = mUnallocatedList.insert(placementIt, HandleRange(handle + 1, end)); in reserve()
150 mUnallocatedList.insert(placementIt, HandleRange(begin, handle - 1)); in reserve()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DProcessImplicitDefs.cpp89 WorkList.insert(UserMI); in processImplicitDef()
152 WorkList.insert(&*MBBI); in runOnMachineFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossImpSubsection.cpp56 Strings.insert(Module); in addImport()
58 auto Result = Mappings.insert(std::make_pair(Module, Targets)); in addImport()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp94 AbbrDeclSets.insert(I, std::make_pair(CUAbbrOffset, std::move(AbbrDecls))); in parse()
132 AbbrDeclSets.insert(std::make_pair(CUAbbrOffset, std::move(AbbrDecls))) in getAbbreviationDeclarationSet()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DJITSymbol.cpp120 Result.insert(Symbol); in getResponsibilitySet()
126 Result.insert(Symbol); in getResponsibilitySet()
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Ddataflow.cpp75 bool pred_inserted = precedents.insert(pred).second;
80 bool inserted = precedents.insert(block).second;
/third_party/skia/src/core/
H A DSkLRUCache.h58 V* insert(const K& key, V value) { in insert() function in SkLRUCache
75 return this->insert(key, std::move(value)); in insert_or_update()
/third_party/skia/src/gpu/gl/
H A DGrGLGpuProgramCache.cpp114 entry = fMap.insert(desc, std::make_unique<Entry>(std::move(program))); in findOrCreateProgramImpl()
140 fMap.insert(desc, std::make_unique<Entry>(precompiledProgram)); in precompileShader()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DValidateSwitch.cpp139 mCasesSigned.insert(iConst); in visitCase()
152 mCasesUnsigned.insert(uConst); in visitCase()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkPipelineCache.cpp125 spirvShaders.insert(srcCache->spirvShaders.begin(), srcCache->spirvShaders.end()); in merge()
131 computePrograms.insert(srcCache->computePrograms.begin(), srcCache->computePrograms.end()); in merge()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dflatten_decoration_pass.cpp53 group_ids.insert(inst.result_id()); in Process()
115 operands.insert(operands.end(), decoration_operands_iter, in Process()

Completed in 15 milliseconds

1...<<31323334353637383940>>...211