Searched refs:iterValue (Results 1 – 5 of 5) sorted by relevance
/arkcompiler/ets_frontend/ts2panda/src/base/ |
D | iterator.ts | 31 private iterValue: VReg; property in Iterator 37 constructor(iterRecord: {iterator: VReg, nextMethod: VReg}, iterDone: VReg, iterValue: VReg, 41 this.iterValue = iterValue; 97 this.pandaGen.storeAccumulator(this.node, this.iterValue); 168 return this.iterValue;
|
/arkcompiler/ets_frontend/es2panda/compiler/function/ |
D | functionBuilder.cpp | 193 VReg iterValue = pg_->AllocReg(); in YieldStar() local 290 pg_->StoreAccumulator(node, iterValue); in YieldStar() 291 AsyncYield(node, iterValue, receivedType, receivedValue); in YieldStar()
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | compilerUtils.ts | 59 let iterValue = pandaGen.getTemp(); 66 …let iterator = new Iterator({iterator: iter, nextMethod: nextMethod}, iterDone, iterValue, pandaGe… 71 pandaGen.freeTemps(iter, nextMethod, iterDone, iterValue, nextResult, exception); 196 pandaGen.freeTemps(iter, nextMethod, iterDone, iterValue, nextResult, exception);
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
D | containers_hashset_test.cpp | 350 JSHandle<JSTaggedValue> iterValue = JSIterator::IteratorValue(thread, result); in HWTEST_F_L0() local 351 JSTaggedValue valueFlag = tSet->Has(thread, iterValue.GetTaggedValue()); in HWTEST_F_L0() 407 … JSHandle<JSTaggedValue> iterValue = JSObject::GetProperty(thread, entries, second).GetValue(); in HWTEST_F_L0() local 408 JSTaggedValue valueFlag = tSet->Has(thread, iterValue.GetTaggedValue()); in HWTEST_F_L0()
|
D | containers_hashmap_test.cpp | 337 JSHandle<JSTaggedValue> iterValue = JSIterator::IteratorValue(thread, result); in HWTEST_F_L0() local 338 JSTaggedValue valueFlag = JSAPIHashMap::HasValue(thread, tMap, iterValue); in HWTEST_F_L0() 407 … JSHandle<JSTaggedValue> iterValue = JSObject::GetProperty(thread, entries, second).GetValue(); in HWTEST_F_L0() local 408 JSTaggedValue valueFlag = JSAPIHashMap::HasValue(thread, tMap, iterValue); in HWTEST_F_L0()
|