• Home
  • Raw
  • Download

Lines Matching refs:SetFrozenFunction

192 void ContainersPrivate::SetFrozenFunction(JSThread *thread, const JSHandle<JSObject> &obj, const ch…  in SetFrozenFunction()  function in panda::ecmascript::containers::ContainersPrivate
294 SetFrozenFunction(thread, prototype, "add", ContainersArrayList::Add, FuncLength::ONE); in InitializeArrayList()
295 SetFrozenFunction(thread, prototype, "insert", ContainersArrayList::Insert, FuncLength::TWO); in InitializeArrayList()
296 SetFrozenFunction(thread, prototype, "clear", ContainersArrayList::Clear, FuncLength::ZERO); in InitializeArrayList()
297 SetFrozenFunction(thread, prototype, "clone", ContainersArrayList::Clone, FuncLength::ZERO); in InitializeArrayList()
298 SetFrozenFunction(thread, prototype, "has", ContainersArrayList::Has, FuncLength::ONE); in InitializeArrayList()
299SetFrozenFunction(thread, prototype, "getCapacity", ContainersArrayList::GetCapacity, FuncLength::… in InitializeArrayList()
300 SetFrozenFunction(thread, prototype, "increaseCapacityTo", in InitializeArrayList()
302 SetFrozenFunction(thread, prototype, "trimToCurrentLength", in InitializeArrayList()
304SetFrozenFunction(thread, prototype, "getIndexOf", ContainersArrayList::GetIndexOf, FuncLength::ON… in InitializeArrayList()
305 SetFrozenFunction(thread, prototype, "isEmpty", ContainersArrayList::IsEmpty, FuncLength::ZERO); in InitializeArrayList()
306SetFrozenFunction(thread, prototype, "getLastIndexOf", ContainersArrayList::GetLastIndexOf, FuncLe… in InitializeArrayList()
307SetFrozenFunction(thread, prototype, "removeByIndex", ContainersArrayList::RemoveByIndex, FuncLeng… in InitializeArrayList()
308 SetFrozenFunction(thread, prototype, "remove", ContainersArrayList::Remove, FuncLength::ONE); in InitializeArrayList()
309SetFrozenFunction(thread, prototype, "removeByRange", ContainersArrayList::RemoveByRange, FuncLeng… in InitializeArrayList()
310SetFrozenFunction(thread, prototype, "replaceAllElements", ContainersArrayList::ReplaceAllElements, in InitializeArrayList()
312 SetFrozenFunction(thread, prototype, "sort", ContainersArrayList::Sort, FuncLength::ONE); in InitializeArrayList()
313SetFrozenFunction(thread, prototype, "subArrayList", ContainersArrayList::SubArrayList, FuncLength… in InitializeArrayList()
314SetFrozenFunction(thread, prototype, "convertToArray", ContainersArrayList::ConvertToArray, FuncLe… in InitializeArrayList()
315 SetFrozenFunction(thread, prototype, "forEach", ContainersArrayList::ForEach, FuncLength::TWO, in InitializeArrayList()
343SetFrozenFunction(thread, arrayListIteratorPrototype, "next", JSAPIArrayListIterator::Next, FuncLe… in InitializeArrayListIterator()
368SetFrozenFunction(thread, funcPrototype, "hasAll", ContainersLightWeightMap::HasAll, FuncLength::O… in InitializeLightWeightMap()
369SetFrozenFunction(thread, funcPrototype, "hasKey", ContainersLightWeightMap::HasKey, FuncLength::O… in InitializeLightWeightMap()
370SetFrozenFunction(thread, funcPrototype, "hasValue", ContainersLightWeightMap::HasValue, FuncLengt… in InitializeLightWeightMap()
371SetFrozenFunction(thread, funcPrototype, "increaseCapacityTo", ContainersLightWeightMap::IncreaseC… in InitializeLightWeightMap()
373SetFrozenFunction(thread, funcPrototype, "entries", ContainersLightWeightMap::Entries, FuncLength:… in InitializeLightWeightMap()
374 SetFrozenFunction(thread, funcPrototype, "get", ContainersLightWeightMap::Get, FuncLength::ONE); in InitializeLightWeightMap()
375SetFrozenFunction(thread, funcPrototype, "getIndexOfKey", ContainersLightWeightMap::GetIndexOfKey,… in InitializeLightWeightMap()
376SetFrozenFunction(thread, funcPrototype, "getIndexOfValue", ContainersLightWeightMap::GetIndexOfVa… in InitializeLightWeightMap()
378SetFrozenFunction(thread, funcPrototype, "isEmpty", ContainersLightWeightMap::IsEmpty, FuncLength:… in InitializeLightWeightMap()
379SetFrozenFunction(thread, funcPrototype, "getKeyAt", ContainersLightWeightMap::GetKeyAt, FuncLengt… in InitializeLightWeightMap()
380SetFrozenFunction(thread, funcPrototype, "keys", ContainersLightWeightMap::Keys, FuncLength::ONE); in InitializeLightWeightMap()
381SetFrozenFunction(thread, funcPrototype, "setAll", ContainersLightWeightMap::SetAll, FuncLength::O… in InitializeLightWeightMap()
382 SetFrozenFunction(thread, funcPrototype, "set", ContainersLightWeightMap::Set, FuncLength::ONE); in InitializeLightWeightMap()
383SetFrozenFunction(thread, funcPrototype, "remove", ContainersLightWeightMap::Remove, FuncLength::O… in InitializeLightWeightMap()
384SetFrozenFunction(thread, funcPrototype, "removeAt", ContainersLightWeightMap::RemoveAt, FuncLengt… in InitializeLightWeightMap()
385SetFrozenFunction(thread, funcPrototype, "clear", ContainersLightWeightMap::Clear, FuncLength::ONE… in InitializeLightWeightMap()
386SetFrozenFunction(thread, funcPrototype, "setValueAt", ContainersLightWeightMap::SetValueAt, FuncL… in InitializeLightWeightMap()
387SetFrozenFunction(thread, funcPrototype, "forEach", ContainersLightWeightMap::ForEach, FuncLength:… in InitializeLightWeightMap()
389SetFrozenFunction(thread, funcPrototype, "toString", ContainersLightWeightMap::ToString, FuncLengt… in InitializeLightWeightMap()
390SetFrozenFunction(thread, funcPrototype, "getValueAt", ContainersLightWeightMap::GetValueAt, FuncL… in InitializeLightWeightMap()
391SetFrozenFunction(thread, funcPrototype, "values", ContainersLightWeightMap::Values, FuncLength::O… in InitializeLightWeightMap()
413SetFrozenFunction(thread, lightWeightMapIteratorPrototype, "next", JSAPILightWeightMapIterator::Ne… in InitializeLightWeightMapIterator()
439 SetFrozenFunction(thread, funcPrototype, "add", ContainersLightWeightSet::Add, FuncLength::ONE); in InitializeLightWeightSet()
440SetFrozenFunction(thread, funcPrototype, "addAll", ContainersLightWeightSet::AddAll, FuncLength::O… in InitializeLightWeightSet()
441SetFrozenFunction(thread, funcPrototype, "isEmpty", ContainersLightWeightSet::IsEmpty, FuncLength:… in InitializeLightWeightSet()
442SetFrozenFunction(thread, funcPrototype, "getValueAt", ContainersLightWeightSet::GetValueAt, FuncL… in InitializeLightWeightSet()
443SetFrozenFunction(thread, funcPrototype, "hasAll", ContainersLightWeightSet::HasAll, FuncLength::O… in InitializeLightWeightSet()
444 SetFrozenFunction(thread, funcPrototype, "has", ContainersLightWeightSet::Has, FuncLength::ONE); in InitializeLightWeightSet()
445SetFrozenFunction(thread, funcPrototype, "equal", ContainersLightWeightSet::Equal, FuncLength::ONE… in InitializeLightWeightSet()
446 SetFrozenFunction(thread, funcPrototype, "increaseCapacityTo", in InitializeLightWeightSet()
448SetFrozenFunction(thread, funcPrototype, "forEach", ContainersLightWeightSet::ForEach, FuncLength:… in InitializeLightWeightSet()
450SetFrozenFunction(thread, funcPrototype, "getIndexOf", ContainersLightWeightSet::GetIndexOf, FuncL… in InitializeLightWeightSet()
451SetFrozenFunction(thread, funcPrototype, "remove", ContainersLightWeightSet::Remove, FuncLength::Z… in InitializeLightWeightSet()
452SetFrozenFunction(thread, funcPrototype, "removeAt", ContainersLightWeightSet::RemoveAt, FuncLengt… in InitializeLightWeightSet()
453SetFrozenFunction(thread, funcPrototype, "clear", ContainersLightWeightSet::Clear, FuncLength::ONE… in InitializeLightWeightSet()
454SetFrozenFunction(thread, funcPrototype, "toString", ContainersLightWeightSet::ToString, FuncLengt… in InitializeLightWeightSet()
455SetFrozenFunction(thread, funcPrototype, "toArray", ContainersLightWeightSet::ToArray, FuncLength:… in InitializeLightWeightSet()
456SetFrozenFunction(thread, funcPrototype, "values", ContainersLightWeightSet::Values, FuncLength::O… in InitializeLightWeightSet()
457SetFrozenFunction(thread, funcPrototype, "entries", ContainersLightWeightSet::Entries, FuncLength:… in InitializeLightWeightSet()
479 SetFrozenFunction( in InitializeLightWeightSetIterator()
507 SetFrozenFunction(thread, mapFuncPrototype, "set", ContainersTreeMap::Set, FuncLength::TWO); in InitializeTreeMap()
508 SetFrozenFunction(thread, mapFuncPrototype, "get", ContainersTreeMap::Get, FuncLength::ONE); in InitializeTreeMap()
509SetFrozenFunction(thread, mapFuncPrototype, "remove", ContainersTreeMap::Remove, FuncLength::ONE); in InitializeTreeMap()
510SetFrozenFunction(thread, mapFuncPrototype, "hasKey", ContainersTreeMap::HasKey, FuncLength::ONE); in InitializeTreeMap()
511SetFrozenFunction(thread, mapFuncPrototype, "hasValue", ContainersTreeMap::HasValue, FuncLength::O… in InitializeTreeMap()
512SetFrozenFunction(thread, mapFuncPrototype, "getFirstKey", ContainersTreeMap::GetFirstKey, FuncLen… in InitializeTreeMap()
513SetFrozenFunction(thread, mapFuncPrototype, "getLastKey", ContainersTreeMap::GetLastKey, FuncLengt… in InitializeTreeMap()
514SetFrozenFunction(thread, mapFuncPrototype, "setAll", ContainersTreeMap::SetAll, FuncLength::ONE); in InitializeTreeMap()
515SetFrozenFunction(thread, mapFuncPrototype, "clear", ContainersTreeMap::Clear, FuncLength::ZERO); in InitializeTreeMap()
516SetFrozenFunction(thread, mapFuncPrototype, "getLowerKey", ContainersTreeMap::GetLowerKey, FuncLen… in InitializeTreeMap()
517SetFrozenFunction(thread, mapFuncPrototype, "getHigherKey", ContainersTreeMap::GetHigherKey, FuncL… in InitializeTreeMap()
518 SetFrozenFunction(thread, mapFuncPrototype, "keys", ContainersTreeMap::Keys, FuncLength::ZERO); in InitializeTreeMap()
519SetFrozenFunction(thread, mapFuncPrototype, "values", ContainersTreeMap::Values, FuncLength::ZERO); in InitializeTreeMap()
520SetFrozenFunction(thread, mapFuncPrototype, "replace", ContainersTreeMap::Replace, FuncLength::TWO… in InitializeTreeMap()
521SetFrozenFunction(thread, mapFuncPrototype, "forEach", ContainersTreeMap::ForEach, FuncLength::ONE… in InitializeTreeMap()
522SetFrozenFunction(thread, mapFuncPrototype, "entries", ContainersTreeMap::Entries, FuncLength::ZER… in InitializeTreeMap()
523SetFrozenFunction(thread, mapFuncPrototype, "isEmpty", ContainersTreeMap::IsEmpty, FuncLength::ZER… in InitializeTreeMap()
557SetFrozenFunction(thread, mapIteratorPrototype, "next", JSAPITreeMapIterator::Next, FuncLength::ZE… in InitializeTreeMapIterator()
584 SetFrozenFunction(thread, setFuncPrototype, "add", ContainersTreeSet::Add, FuncLength::TWO); in InitializeTreeSet()
585SetFrozenFunction(thread, setFuncPrototype, "remove", ContainersTreeSet::Remove, FuncLength::ONE); in InitializeTreeSet()
586 SetFrozenFunction(thread, setFuncPrototype, "has", ContainersTreeSet::Has, FuncLength::ONE); in InitializeTreeSet()
587SetFrozenFunction(thread, setFuncPrototype, "getFirstValue", ContainersTreeSet::GetFirstValue, Fun… in InitializeTreeSet()
588SetFrozenFunction(thread, setFuncPrototype, "getLastValue", ContainersTreeSet::GetLastValue, FuncL… in InitializeTreeSet()
589SetFrozenFunction(thread, setFuncPrototype, "clear", ContainersTreeSet::Clear, FuncLength::ZERO); in InitializeTreeSet()
590SetFrozenFunction(thread, setFuncPrototype, "getLowerValue", ContainersTreeSet::GetLowerValue, Fun… in InitializeTreeSet()
591SetFrozenFunction(thread, setFuncPrototype, "getHigherValue", ContainersTreeSet::GetHigherValue, F… in InitializeTreeSet()
592SetFrozenFunction(thread, setFuncPrototype, "popFirst", ContainersTreeSet::PopFirst, FuncLength::Z… in InitializeTreeSet()
593SetFrozenFunction(thread, setFuncPrototype, "popLast", ContainersTreeSet::PopLast, FuncLength::ZER… in InitializeTreeSet()
594SetFrozenFunction(thread, setFuncPrototype, "isEmpty", ContainersTreeSet::IsEmpty, FuncLength::TWO… in InitializeTreeSet()
595SetFrozenFunction(thread, setFuncPrototype, "values", ContainersTreeSet::Values, FuncLength::ZERO); in InitializeTreeSet()
596SetFrozenFunction(thread, setFuncPrototype, "forEach", ContainersTreeSet::ForEach, FuncLength::ONE… in InitializeTreeSet()
597SetFrozenFunction(thread, setFuncPrototype, "entries", ContainersTreeSet::Entries, FuncLength::ZER… in InitializeTreeSet()
631SetFrozenFunction(thread, setIteratorPrototype, "next", JSAPITreeSetIterator::Next, FuncLength::ZE… in InitializeTreeSetIterator()
658SetFrozenFunction(thread, plainArrayFuncPrototype, "add", ContainersPlainArray::Add, FuncLength::O… in InitializePlainArray()
659SetFrozenFunction(thread, plainArrayFuncPrototype, "clear", ContainersPlainArray::Clear, FuncLengt… in InitializePlainArray()
660SetFrozenFunction(thread, plainArrayFuncPrototype, "clone", ContainersPlainArray::Clone, FuncLengt… in InitializePlainArray()
661SetFrozenFunction(thread, plainArrayFuncPrototype, "has", ContainersPlainArray::Has, FuncLength::O… in InitializePlainArray()
662SetFrozenFunction(thread, plainArrayFuncPrototype, "get", ContainersPlainArray::Get, FuncLength::O… in InitializePlainArray()
663SetFrozenFunction(thread, plainArrayFuncPrototype, "forEach", ContainersPlainArray::ForEach, FuncL… in InitializePlainArray()
665 SetFrozenFunction(thread, plainArrayFuncPrototype, "toString", ContainersPlainArray::ToString, in InitializePlainArray()
667SetFrozenFunction(thread, plainArrayFuncPrototype, "getIndexOfKey", ContainersPlainArray::GetIndex… in InitializePlainArray()
669SetFrozenFunction(thread, plainArrayFuncPrototype, "getIndexOfValue", ContainersPlainArray::GetInd… in InitializePlainArray()
671SetFrozenFunction(thread, plainArrayFuncPrototype, "isEmpty", ContainersPlainArray::IsEmpty, FuncL… in InitializePlainArray()
672 SetFrozenFunction(thread, plainArrayFuncPrototype, "getKeyAt", in InitializePlainArray()
674SetFrozenFunction(thread, plainArrayFuncPrototype, "remove", ContainersPlainArray::Remove, FuncLen… in InitializePlainArray()
675 SetFrozenFunction(thread, plainArrayFuncPrototype, "removeAt", ContainersPlainArray::RemoveAt, in InitializePlainArray()
677SetFrozenFunction(thread, plainArrayFuncPrototype, "removeRangeFrom", ContainersPlainArray::Remove… in InitializePlainArray()
679SetFrozenFunction(thread, plainArrayFuncPrototype, "setValueAt", ContainersPlainArray::SetValueAt, in InitializePlainArray()
681SetFrozenFunction(thread, plainArrayFuncPrototype, "getValueAt", ContainersPlainArray::GetValueAt, in InitializePlainArray()
705SetFrozenFunction(thread, plainarrayIteratorPrototype, "next", JSAPIPlainArrayIterator::Next, Func… in InitializePlainArrayIterator()
732 SetFrozenFunction(thread, stackFuncPrototype, "push", ContainersStack::Push, FuncLength::ONE); in InitializeStack()
734SetFrozenFunction(thread, stackFuncPrototype, "isEmpty", ContainersStack::IsEmpty, FuncLength::ONE… in InitializeStack()
736 SetFrozenFunction(thread, stackFuncPrototype, "peek", ContainersStack::Peek, FuncLength::ONE); in InitializeStack()
738 SetFrozenFunction(thread, stackFuncPrototype, "pop", ContainersStack::Pop, FuncLength::ONE); in InitializeStack()
740SetFrozenFunction(thread, stackFuncPrototype, "locate", ContainersStack::Locate, FuncLength::ONE); in InitializeStack()
742SetFrozenFunction(thread, stackFuncPrototype, "forEach", ContainersStack::ForEach, FuncLength::ONE, in InitializeStack()
766SetFrozenFunction(thread, stackIteratorPrototype, "next", JSAPIStackIterator::Next, FuncLength::ON… in InitializeStackIterator()
791 SetFrozenFunction(thread, prototype, "add", ContainersVector::Add, FuncLength::ONE); in InitializeVector()
792 SetFrozenFunction(thread, prototype, "insert", ContainersVector::Insert, FuncLength::TWO); in InitializeVector()
793 SetFrozenFunction(thread, prototype, "setLength", ContainersVector::SetLength, FuncLength::ONE); in InitializeVector()
794SetFrozenFunction(thread, prototype, "getCapacity", ContainersVector::GetCapacity, FuncLength::ZER… in InitializeVector()
795SetFrozenFunction(thread, prototype, "increaseCapacityTo", ContainersVector::IncreaseCapacityTo, F… in InitializeVector()
796 SetFrozenFunction(thread, prototype, "get", ContainersVector::Get, FuncLength::ONE); in InitializeVector()
797SetFrozenFunction(thread, prototype, "getIndexOf", ContainersVector::GetIndexOf, FuncLength::ONE); in InitializeVector()
798SetFrozenFunction(thread, prototype, "getIndexFrom", ContainersVector::GetIndexFrom, FuncLength::T… in InitializeVector()
799 SetFrozenFunction(thread, prototype, "isEmpty", ContainersVector::IsEmpty, FuncLength::ZERO); in InitializeVector()
800SetFrozenFunction(thread, prototype, "getLastElement", ContainersVector::GetLastElement, FuncLengt… in InitializeVector()
801SetFrozenFunction(thread, prototype, "getLastIndexOf", ContainersVector::GetLastIndexOf, FuncLengt… in InitializeVector()
802SetFrozenFunction(thread, prototype, "getLastIndexFrom", ContainersVector::GetLastIndexFrom, FuncL… in InitializeVector()
803 SetFrozenFunction(thread, prototype, "remove", ContainersVector::Remove, FuncLength::ONE); in InitializeVector()
804SetFrozenFunction(thread, prototype, "removeByIndex", ContainersVector::RemoveByIndex, FuncLength:… in InitializeVector()
805SetFrozenFunction(thread, prototype, "removeByRange", ContainersVector::RemoveByRange, FuncLength:… in InitializeVector()
806 SetFrozenFunction(thread, prototype, "set", ContainersVector::Set, FuncLength::TWO); in InitializeVector()
807 SetFrozenFunction(thread, prototype, "subVector", ContainersVector::SubVector, FuncLength::TWO); in InitializeVector()
808 SetFrozenFunction(thread, prototype, "toString", ContainersVector::ToString, FuncLength::ZERO); in InitializeVector()
809 SetFrozenFunction(thread, prototype, "forEach", ContainersVector::ForEach, FuncLength::TWO, in InitializeVector()
811SetFrozenFunction(thread, prototype, "replaceAllElements", ContainersVector::ReplaceAllElements, F… in InitializeVector()
813 SetFrozenFunction(thread, prototype, "has", ContainersVector::Has, FuncLength::ONE); in InitializeVector()
814 SetFrozenFunction(thread, prototype, "sort", ContainersVector::Sort, FuncLength::ZERO); in InitializeVector()
815 SetFrozenFunction(thread, prototype, "clear", ContainersVector::Clear, FuncLength::ZERO); in InitializeVector()
816 SetFrozenFunction(thread, prototype, "clone", ContainersVector::Clone, FuncLength::ZERO); in InitializeVector()
817SetFrozenFunction(thread, prototype, "copyToArray", ContainersVector::CopyToArray, FuncLength::ONE… in InitializeVector()
818SetFrozenFunction(thread, prototype, "convertToArray", ContainersVector::ConvertToArray, FuncLengt… in InitializeVector()
819SetFrozenFunction(thread, prototype, "getFirstElement", ContainersVector::GetFirstElement, FuncLen… in InitializeVector()
820 SetFrozenFunction(thread, prototype, "trimToCurrentLength", in InitializeVector()
847SetFrozenFunction(thread, vectorIteratorPrototype, "next", JSAPIVectorIterator::Next, FuncLength::… in InitializeVectorIterator()
873 SetFrozenFunction(thread, queueFuncPrototype, "add", ContainersQueue::Add, FuncLength::ONE); in InitializeQueue()
874SetFrozenFunction(thread, queueFuncPrototype, "getFirst", ContainersQueue::GetFirst, FuncLength::Z… in InitializeQueue()
875 SetFrozenFunction(thread, queueFuncPrototype, "pop", ContainersQueue::Pop, FuncLength::ZERO); in InitializeQueue()
876SetFrozenFunction(thread, queueFuncPrototype, "forEach", ContainersQueue::ForEach, FuncLength::TWO, in InitializeQueue()
902SetFrozenFunction(thread, queueIteratorPrototype, "next", JSAPIQueueIterator::Next, FuncLength::ON… in InitializeQueueIterator()
927SetFrozenFunction(thread, dequeFuncPrototype, "insertFront", ContainersDeque::InsertFront, FuncLen… in InitializeDeque()
928SetFrozenFunction(thread, dequeFuncPrototype, "insertEnd", ContainersDeque::InsertEnd, FuncLength:… in InitializeDeque()
929SetFrozenFunction(thread, dequeFuncPrototype, "getFirst", ContainersDeque::GetFirst, FuncLength::Z… in InitializeDeque()
930SetFrozenFunction(thread, dequeFuncPrototype, "getLast", ContainersDeque::GetLast, FuncLength::ZER… in InitializeDeque()
931 SetFrozenFunction(thread, dequeFuncPrototype, "has", ContainersDeque::Has, FuncLength::ONE); in InitializeDeque()
932SetFrozenFunction(thread, dequeFuncPrototype, "popFirst", ContainersDeque::PopFirst, FuncLength::Z… in InitializeDeque()
933SetFrozenFunction(thread, dequeFuncPrototype, "popLast", ContainersDeque::PopLast, FuncLength::ZER… in InitializeDeque()
934SetFrozenFunction(thread, dequeFuncPrototype, "forEach", ContainersDeque::ForEach, FuncLength::TWO, in InitializeDeque()
959SetFrozenFunction(thread, dequeIteratorPrototype, "next", JSAPIDequeIterator::Next, FuncLength::ON… in InitializeDequeIterator()
980 SetFrozenFunction(thread, listFuncPrototype, "add", ContainersList::Add, FuncLength::ONE); in InitializeList()
981SetFrozenFunction(thread, listFuncPrototype, "getFirst", ContainersList::GetFirst, FuncLength::ONE… in InitializeList()
982SetFrozenFunction(thread, listFuncPrototype, "getLast", ContainersList::GetLast, FuncLength::ONE); in InitializeList()
983 SetFrozenFunction(thread, listFuncPrototype, "insert", ContainersList::Insert, FuncLength::ONE); in InitializeList()
984 SetFrozenFunction(thread, listFuncPrototype, "clear", ContainersList::Clear, FuncLength::ONE); in InitializeList()
985SetFrozenFunction(thread, listFuncPrototype, "removeByIndex", ContainersList::RemoveByIndex, FuncL… in InitializeList()
986 SetFrozenFunction(thread, listFuncPrototype, "remove", ContainersList::Remove, FuncLength::ONE); in InitializeList()
987 SetFrozenFunction(thread, listFuncPrototype, "has", ContainersList::Has, FuncLength::ONE); in InitializeList()
988SetFrozenFunction(thread, listFuncPrototype, "isEmpty", ContainersList::IsEmpty, FuncLength::ONE); in InitializeList()
989 SetFrozenFunction(thread, listFuncPrototype, "get", ContainersList::Get, FuncLength::ONE); in InitializeList()
990SetFrozenFunction(thread, listFuncPrototype, "getIndexOf", ContainersList::GetIndexOf, FuncLength:… in InitializeList()
991SetFrozenFunction(thread, listFuncPrototype, "getLastIndexOf", ContainersList::GetLastIndexOf, Fun… in InitializeList()
992 SetFrozenFunction(thread, listFuncPrototype, "set", ContainersList::Set, FuncLength::ONE); in InitializeList()
993SetFrozenFunction(thread, listFuncPrototype, "forEach", ContainersList::ForEach, FuncLength::ONE, in InitializeList()
995SetFrozenFunction(thread, listFuncPrototype, "replaceAllElements", ContainersList::ReplaceAllEleme… in InitializeList()
997 SetFrozenFunction(thread, listFuncPrototype, "equal", ContainersList::Equal, FuncLength::ONE); in InitializeList()
998 SetFrozenFunction(thread, listFuncPrototype, "sort", ContainersList::Sort, FuncLength::ONE); in InitializeList()
999SetFrozenFunction(thread, listFuncPrototype, "convertToArray", ContainersList::ConvertToArray, Fun… in InitializeList()
1000SetFrozenFunction(thread, listFuncPrototype, "getSubList", ContainersList::GetSubList, FuncLength:… in InitializeList()
1031SetFrozenFunction(thread, linkedListFuncPrototype, "add", ContainersLinkedList::Add, FuncLength::O… in InitializeLinkedList()
1032SetFrozenFunction(thread, linkedListFuncPrototype, "insert", ContainersLinkedList::Insert, FuncLen… in InitializeLinkedList()
1033SetFrozenFunction(thread, linkedListFuncPrototype, "clear", ContainersLinkedList::Clear, FuncLengt… in InitializeLinkedList()
1034SetFrozenFunction(thread, linkedListFuncPrototype, "clone", ContainersLinkedList::Clone, FuncLengt… in InitializeLinkedList()
1035SetFrozenFunction(thread, linkedListFuncPrototype, "removeFirst", ContainersLinkedList::RemoveFirs… in InitializeLinkedList()
1037SetFrozenFunction(thread, linkedListFuncPrototype, "removeLast", ContainersLinkedList::RemoveLast,… in InitializeLinkedList()
1038SetFrozenFunction(thread, linkedListFuncPrototype, "removeFirstFound", ContainersLinkedList::Remov… in InitializeLinkedList()
1040SetFrozenFunction(thread, linkedListFuncPrototype, "removeByIndex", ContainersLinkedList::RemoveBy… in InitializeLinkedList()
1042SetFrozenFunction(thread, linkedListFuncPrototype, "remove", ContainersLinkedList::Remove, FuncLen… in InitializeLinkedList()
1043SetFrozenFunction(thread, linkedListFuncPrototype, "removeLastFound", ContainersLinkedList::Remove… in InitializeLinkedList()
1045SetFrozenFunction(thread, linkedListFuncPrototype, "has", ContainersLinkedList::Has, FuncLength::O… in InitializeLinkedList()
1046SetFrozenFunction(thread, linkedListFuncPrototype, "get", ContainersLinkedList::Get, FuncLength::O… in InitializeLinkedList()
1047SetFrozenFunction(thread, linkedListFuncPrototype, "addFirst", ContainersLinkedList::AddFirst, Fun… in InitializeLinkedList()
1048SetFrozenFunction(thread, linkedListFuncPrototype, "getFirst", ContainersLinkedList::GetFirst, Fun… in InitializeLinkedList()
1049SetFrozenFunction(thread, linkedListFuncPrototype, "getLast", ContainersLinkedList::GetLast, FuncL… in InitializeLinkedList()
1050SetFrozenFunction(thread, linkedListFuncPrototype, "getIndexOf", ContainersLinkedList::GetIndexOf,… in InitializeLinkedList()
1051SetFrozenFunction(thread, linkedListFuncPrototype, "getLastIndexOf", ContainersLinkedList::GetLast… in InitializeLinkedList()
1053SetFrozenFunction(thread, linkedListFuncPrototype, "convertToArray", ContainersLinkedList::Convert… in InitializeLinkedList()
1055SetFrozenFunction(thread, linkedListFuncPrototype, "set", ContainersLinkedList::Set, FuncLength::O… in InitializeLinkedList()
1056SetFrozenFunction(thread, linkedListFuncPrototype, "forEach", ContainersLinkedList::ForEach, FuncL… in InitializeLinkedList()
1080SetFrozenFunction(thread, setIteratorPrototype, "next", JSAPILinkedListIterator::Next, FuncLength:… in InitializeLinkedListIterator()
1093SetFrozenFunction(thread, setIteratorPrototype, "next", JSAPIListIterator::Next, FuncLength::ONE); in InitializeListIterator()
1118 SetFrozenFunction(thread, hashMapFuncPrototype, "set", ContainersHashMap::Set, FuncLength::TWO); in InitializeHashMap()
1120SetFrozenFunction(thread, hashMapFuncPrototype, "setAll", ContainersHashMap::SetAll, FuncLength::O… in InitializeHashMap()
1122SetFrozenFunction(thread, hashMapFuncPrototype, "isEmpty", ContainersHashMap::IsEmpty, FuncLength:… in InitializeHashMap()
1124SetFrozenFunction(thread, hashMapFuncPrototype, "remove", ContainersHashMap::Remove, FuncLength::O… in InitializeHashMap()
1126SetFrozenFunction(thread, hashMapFuncPrototype, "clear", ContainersHashMap::Clear, FuncLength::ZER… in InitializeHashMap()
1128 SetFrozenFunction(thread, hashMapFuncPrototype, "get", ContainersHashMap::Get, FuncLength::ONE); in InitializeHashMap()
1130SetFrozenFunction(thread, hashMapFuncPrototype, "forEach", ContainersHashMap::ForEach, FuncLength:… in InitializeHashMap()
1133SetFrozenFunction(thread, hashMapFuncPrototype, "hasKey", ContainersHashMap::HasKey, FuncLength::O… in InitializeHashMap()
1135SetFrozenFunction(thread, hashMapFuncPrototype, "hasValue", ContainersHashMap::HasValue, FuncLengt… in InitializeHashMap()
1137SetFrozenFunction(thread, hashMapFuncPrototype, "replace", ContainersHashMap::Replace, FuncLength:… in InitializeHashMap()
1139SetFrozenFunction(thread, hashMapFuncPrototype, "keys", ContainersHashMap::Keys, FuncLength::ZERO); in InitializeHashMap()
1141SetFrozenFunction(thread, hashMapFuncPrototype, "values", ContainersHashMap::Values, FuncLength::Z… in InitializeHashMap()
1143SetFrozenFunction(thread, hashMapFuncPrototype, "entries", ContainersHashMap::Entries, FuncLength:… in InitializeHashMap()
1174SetFrozenFunction(thread, hashMapIteratorPrototype, "next", JSAPIHashMapIterator::Next, FuncLength… in InitializeHashMapIterator()
1201SetFrozenFunction(thread, hashSetFuncPrototype, "isEmpty", ContainersHashSet::IsEmpty, FuncLength:… in InitializeHashSet()
1202 SetFrozenFunction(thread, hashSetFuncPrototype, "has", ContainersHashSet::Has, FuncLength::ONE); in InitializeHashSet()
1203 SetFrozenFunction(thread, hashSetFuncPrototype, "add", ContainersHashSet::Add, FuncLength::ONE); in InitializeHashSet()
1204 SetFrozenFunction(thread, hashSetFuncPrototype, "has", ContainersHashSet::Has, FuncLength::ONE); in InitializeHashSet()
1205SetFrozenFunction(thread, hashSetFuncPrototype, "remove", ContainersHashSet::Remove, FuncLength::O… in InitializeHashSet()
1206SetFrozenFunction(thread, hashSetFuncPrototype, "clear", ContainersHashSet::Clear, FuncLength::ZER… in InitializeHashSet()
1207SetFrozenFunction(thread, hashSetFuncPrototype, "values", ContainersHashSet::Values, FuncLength::Z… in InitializeHashSet()
1208SetFrozenFunction(thread, hashSetFuncPrototype, "entries", ContainersHashSet::Entries, FuncLength:… in InitializeHashSet()
1209SetFrozenFunction(thread, hashSetFuncPrototype, "forEach", ContainersHashSet::ForEach, FuncLength:… in InitializeHashSet()
1243SetFrozenFunction(thread, hashSetIteratorPrototype, "next", JSAPIHashSetIterator::Next, FuncLength… in InitializeHashSetIterator()