Lines Matching refs:jsSet
1056 JSHandle<JSSet> jsSet =
1059 jsSet->SetLinkedSet(thread, hashSet);
1060 JSHandle<JSTaggedValue> setTag = JSHandle<JSTaggedValue>::Cast(jsSet);
1064 JSSet::Add(thread, jsSet, fristValue);
1065 JSSet::Add(thread, jsSet, fristValue);
1071 JSSet::Add(thread, jsSet, secondValue);
1108 JSHandle<JSSet> jsSet(thread, CreateJSSet(thread));
1109 EXPECT_TRUE(*jsSet != nullptr);
1111 JSSetIterator::CreateSetIterator(thread, JSHandle<JSTaggedValue>(jsSet), IterationKind::KEY);
1113 EXPECT_EQ(JSTaggedValue::SameValue(jsSetIterator1->GetIteratedSet(), jsSet->GetLinkedSet()), true);