Lines Matching defs:JSAPIHashMap
25 class JSAPIHashMap : public JSObject {
27 static JSAPIHashMap *Cast(TaggedObject *object)
30 return static_cast<JSAPIHashMap *>(object);
33 static void Set(JSThread *thread, JSHandle<JSAPIHashMap> hashMap,
35 static JSTaggedValue HasValue(JSThread *thread, JSHandle<JSAPIHashMap> hashMap,
37 static void SetAll(JSThread *thread, JSHandle<JSAPIHashMap> dst, JSHandle<JSAPIHashMap> src);
38 static JSTaggedValue Remove(JSThread *thread, JSHandle<JSAPIHashMap> hashMap, JSTaggedValue key);
58 static void SetAllLinkedNode(JSThread *thread, JSHandle<JSAPIHashMap> hashMap, JSMutableHandle<LinkedNode> node);
59 static void SetAllRBTreeNode(JSThread *thread, JSHandle<JSAPIHashMap> hashMap, JSHandle<RBTreeNode> node);