Home
last modified time | relevance | path

Searched refs:Insert (Results 1 - 25 of 89) sorted by relevance

1234

/arkcompiler/ets_runtime/ecmascript/tests/
H A Dtemplate_map_test.cpp57 * @tc.name: Insert
58 * @tc.desc: Create a TemplateMap, call Insert function with the TemplateMap, a key(JSArray) and a value. Check whether
65 HWTEST_F_L0(TemplateMapTest, Insert) in HWTEST_F_L0()
75 TemplateMap::Insert(thread, templateMap, tempMapKey, templateArrVal); in HWTEST_F_L0()
80 TemplateMap::Insert(thread, templateMap, tempMapKey, templateArrVal1); in HWTEST_F_L0()
86 TemplateMap::Insert(thread, templateMap, tempMapKey1, templateArrVal1); in HWTEST_F_L0()
259 * @tc.desc: Create a source TemplateMap, change the source TemplateMap through calling Insert function some times.
275 templateMap = TemplateMap::Insert(thread, templateMap, tempMapKey, tempMapValue); in HWTEST_F_L0()
289 * @tc.desc: Create a source TemplateMap, change the source TemplateMap through calling Insert function some times.
304 templateMap = TemplateMap::Insert(threa in HWTEST_F_L0()
[all...]
H A Djs_api_vector_test.cpp279 * @tc.name: Insert
284 HWTEST_F_L0(JSAPIVectorTest, Insert) in HWTEST_F_L0()
290 JSAPIVector::Insert(thread, toor, value, 0); in HWTEST_F_L0()
300 // test Insert exception in HWTEST_F_L0()
302 JSAPIVector::Insert(thread, toor, value, -1); in HWTEST_F_L0()
305 JSAPIVector::Insert(thread, toor, value, static_cast<int32_t>(elementsNums + 1)); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/regexp/
H A Dregexp_parser.cpp195 buffer_.Insert(start, sparseLen - splitsLen); in ParseDisjunction()
395 rangeResult.Insert(curRange); in ParseAlternative()
1375 result->Insert(s1); in ParseClassRanges()
1390 result->Insert(s2); in ParseClassRanges()
1400 result->Insert(c1, c2); in ParseClassRanges()
1405 result->Insert(s1); in ParseClassRanges()
1410 result->Insert(RangeSet(c1 - 'a' + 'A')); in ParseClassRanges()
1412 result->Insert(RangeSet(c1 - 'A' + 'a')); in ParseClassRanges()
1449 atom->Insert(RangeSet(value)); in ParseClassAtom()
1468 atom->Insert(RangeSe in ParseClassEscape()
[all...]
H A Dregexp_opcode.cpp203 buf->Insert(offset, GetSize()); in InsertOpCode()
225 buf->Insert(offset, GetSize()); in InsertOpCode()
283 buf->Insert(offset, GetSize()); in InsertOpCode()
297 buf->Insert(offset, GetSize()); in InsertOpCode()
340 buf->Insert(offset, GetSize()); in InsertOpCode()
539 buf->Insert(offset, GetSize()); in InsertOpCode()
554 buf->Insert(offset, GetSize()); in InsertOpCode()
603 void RangeSet::Insert(uint32_t start, uint32_t end) in Insert() function in panda::ecmascript::RangeSet
657 cr.Insert(firstMax + 'A' - 'a', secondMin + 'A' - 'a'); in Inter()
660 cr.Insert(firstMa in Inter()
665 void RangeSet::Insert(const RangeSet &s1) Insert() function in panda::ecmascript::RangeSet
[all...]
H A Dregexp_parser.h237 cr.Insert(MINLOWERCHAR, MAXLOWERCHAR); in ProcessIntersection()
239 cr.Insert(MINUPPERCHAR, MAXUPPERCHAR); in ProcessIntersection()
241 result->Insert(cr1); in ProcessIntersection()
H A Dregexp_opcode.h316 Insert(value, value); in RangeSet()
320 Insert(start, end); in RangeSet()
363 void Insert(uint32_t start, uint32_t end);
364 void Insert(const RangeSet &s1);
/arkcompiler/runtime_core/static_core/verification/util/
H A Dobj_pool.h36 Insert();
40 Insert();
56 Insert(); in operator =()
101 void Insert() in Insert() function in ark::verifier::ObjPool::Accessor
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/
H A Dregexp_opcode.cpp197 buf->Insert(offset, GetSize()); in InsertOpCode()
212 buf->Insert(offset, GetSize()); in InsertOpCode()
263 buf->Insert(offset, GetSize()); in InsertOpCode()
277 buf->Insert(offset, GetSize()); in InsertOpCode()
320 buf->Insert(offset, GetSize()); in InsertOpCode()
503 buf->Insert(offset, GetSize()); in InsertOpCode()
518 buf->Insert(offset, GetSize()); in InsertOpCode()
567 void RangeSet::Insert(uint32_t start, uint32_t end) in Insert() function in ark::RangeSet
592 void RangeSet::Insert(const RangeSet &s1) in Insert() function in ark::RangeSet
601 Insert(rang in Insert()
[all...]
H A Dregexp_parser.cpp364 rangeResult.Insert(curRange); in ParseAlternative()
1300 result->Insert(s1); in ParseClassRanges()
1315 result->Insert(s2); in ParseClassRanges()
1329 result->Insert(c1, c2); in ParseClassRanges()
1331 result->Insert(s1); in ParseClassRanges()
1370 atom->Insert(RangeSet(value)); in ParseClassAtom()
1389 atom->Insert(RangeSet(static_cast<uint32_t>('\b'))); in ParseClassEscape()
1396 atom->Insert(RangeSet(static_cast<uint32_t>('-'))); in ParseClassEscape()
1402 atom->Insert(g_gRangeD); in ParseClassEscape()
1411 atom->Insert(g_gRange in ParseClassEscape()
[all...]
H A Dregexp_opcode.h311 Insert(value, value); in RangeSet()
315 Insert(start, end); in RangeSet()
358 void Insert(uint32_t start, uint32_t end);
359 void Insert(const RangeSet &s1);
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dcondition_chain_cache.h28 void Insert(ConditionChain *chain, Inst *phiInst);
H A Dcondition_chain_cache.cpp23 void ConditionChainCache::Insert(ConditionChain *chain, Inst *phiInst) in Insert() function in ark::compiler::ConditionChainCache
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/mem/
H A Dmpsc_set.h50 void Insert(ValueType val);
84 void MPSCSet<StoredSetType>::Insert(ValueType val) in Insert() function in ark::mem::MPSCSet
H A Dets_reference_processor.cpp77 weakReferences_.Insert(const_cast<ObjectHeader *>(object)); in HandleReference()
90 weakReferences_.Insert(const_cast<ObjectHeader *>(object)); in HandleReference()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/
H A Dwrappers_cache.h43 Wrapper *Insert(Key key, std::unique_ptr<Wrapper> &&wrapper) in Insert() function in ark::ets::interop::js::ets_proxy::WrappersCache
/arkcompiler/ets_runtime/ecmascript/containers/
H A Dcontainers_arraylist.h31 static JSTaggedValue Insert(EcmaRuntimeCallInfo *argv);
H A Dcontainers_linked_list.h30 static JSTaggedValue Insert(EcmaRuntimeCallInfo *argv);
H A Dcontainers_list.h29 static JSTaggedValue Insert(EcmaRuntimeCallInfo *argv);
H A Dcontainers_vector.h28 static JSTaggedValue Insert(EcmaRuntimeCallInfo *argv);
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dregion-inl.h240 set->Insert(ToUintPtr(this), addr); in InsertCrossRegionRSet()
264 set->Insert(ToUintPtr(this), addr); in InsertLocalToShareRSet()
364 set->Insert(ToUintPtr(this), addr); in InsertNewToEdenRSet()
382 set->Insert(ToUintPtr(this), addr); in InsertOldToNewRSet()
H A Ddyn_chunk.cpp54 int DynChunk::Insert(uint32_t position, size_t len) in Insert() function in panda::ecmascript::DynChunk
/arkcompiler/runtime_core/static_core/runtime/mem/
H A Dhumongous_obj_allocator-inl.h89 occupiedPoolsList_.Insert(memHeader); in Alloc()
209 // Insert it into free_pools in InsertPool()
210 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Couldn't insert into Reserved memory. Insert in free pools"; in InsertPool()
211 freePoolsList_.Insert(memHeader); in InsertPool()
361 void HumongousObjAllocator<AllocConfigT, LockConfigT>::MemoryPoolList::Insert(MemoryPoolHeader *pool) in Insert() function in ark::mem::HumongousObjAllocator::MemoryPoolList
363 LOG_HUMONGOUS_OBJ_ALLOCATOR(DEBUG) << "Insert a pool with addr " << std::hex << pool << " into the pool list"; in Insert()
464 this->Insert(pool); in SortedInsert()
469 this->Insert(pool); in SortedInsert()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
H A Djs_refconvert.cpp71 return ctx->GetRefConvertCache()->Insert(klass, std::move(conv)); in JSRefConvertCreate()
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/mem/
H A Ddyn_chunk.cpp53 int DynChunk::Insert(uint32_t position, size_t len) in Insert() function in ark::DynChunk
/arkcompiler/ets_frontend/es2panda/compiler/base/
H A Dliterals.h74 void Insert(LiteralBuffer *other) in Insert() function in panda::es2panda::panda::es2panda::panda::es2panda::compiler::LiteralBuffer

Completed in 17 milliseconds

1234