Searched refs:others (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/ets_frontend/es2panda/test/compiler/js/language/destructuring/ |
H A D | test-obj-destructuring-with-rest-element.js | 25 const {_times: times, _values: values, ...others} = obj; 27 for (let prop in others) { 29 print("value: ", others[prop])
|
/arkcompiler/runtime_core/compiler/optimizer/analysis/ |
H A D | loop_analyzer.h | 175 static inline bool IsEqualBlocks(const ArenaVector<T> &blocks, const ArenaVector<T> &others) in IsEqualBlocks() argument 177 return blocks.size() == others.size() && std::is_permutation(blocks.begin(), blocks.end(), others.begin()); in IsEqualBlocks()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/ |
H A D | loop_analyzer.h | 181 static inline bool IsEqualBlocks(const ArenaVector<T> &blocks, const ArenaVector<T> &others) in IsEqualBlocks() argument 183 return blocks.size() == others.size() && std::is_permutation(blocks.begin(), blocks.end(), others.begin()); in IsEqualBlocks()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 1362 size_t &methodNums, size_t &others) in DeserializePandaMethod() 1364 for (size_t i = 0; i < others; i++) { in DeserializePandaMethod() 1373 others = others - i - 1; in DeserializePandaMethod() 1519 size_t others = 0; in RelocateSpaceObject() local 1523 space->EnumerateRegions([jsPandaFile, stringTable, &others, &objIndex, &rootObjSize, &constSpecialIndex, in RelocateSpaceObject() 1533 if (others != 0) { in RelocateSpaceObject() 1534 DeserializePandaMethod(begin, end, methods, methodNums, others); in RelocateSpaceObject() 1541 others = encodeBit.GetNativePointerOrObjectIndex(); in RelocateSpaceObject() 1542 DeserializePandaMethod(begin, end, methods, methodNums, others); in RelocateSpaceObject() 1361 DeserializePandaMethod(uintptr_t begin, uintptr_t end, MethodLiteral *methods, size_t &methodNums, size_t &others) DeserializePandaMethod() argument [all...] |
H A D | snapshot_processor.h | 130 size_t &methodNums, size_t &others);
|
Completed in 5 milliseconds