Lines Matching refs:infoLength
29 int32_t infoLength = 2; // 2: len
30 JSHandle<LayoutInfo> layoutInfoHandle = factory->CreateLayoutInfo(infoLength);
40 int32_t infoLength = 3;
42 defaultAttr.SetNormalAttr(infoLength);
44 JSHandle<LayoutInfo> layoutInfoHandle = factory->CreateLayoutInfo(infoLength);
49 EXPECT_EQ(layoutInfoHandle->GetAttr(0).GetNormalAttr(), static_cast<uint32_t>(infoLength));
55 int32_t infoLength = 5;
57 defaultAttr.SetNormalAttr(infoLength);
60 JSHandle<LayoutInfo> layoutInfoHandle = factory->CreateLayoutInfo(infoLength);
65 layoutInfoHandle->SetSortedIndex(thread, 0, infoLength - 4);
72 int infoLength = 5;
81 JSHandle<LayoutInfo> layoutInfoHandle = factory->CreateLayoutInfo(infoLength);
83 for (int i = 0; i < infoLength; i++) {
115 int infoLength = 5;
121 JSHandle<TaggedArray> keyArray = factory->NewTaggedArray(infoLength);
122 JSHandle<LayoutInfo> layoutInfoHandle = factory->CreateLayoutInfo(infoLength);
126 for (int i = 0; i < infoLength; i++) {
141 layoutInfoHandle->GetAllEnumKeys(thread, infoLength, 0, keyArray, &keys, objectHandle); // 0: offset
145 layoutInfoHandle->GetAllKeys(thread, infoLength, 0, *keyArray, objectHandle); // 0: offset
146 layoutInfoHandle->GetAllKeysForSerialization(infoLength, keyVector);
149 for (int i = 0;i < infoLength; i++) {