Lines Matching defs:sortIndex
156 int sortIndex = static_cast<int>(GetSortedIndex(mid));
157 JSTaggedValue currentKey = GetKey(sortIndex);
159 return sortIndex < propertiesNumber ? sortIndex : -1;
164 sortIndex = static_cast<int>(GetSortedIndex(--midLeft));
165 currentKey = GetKey(sortIndex);
168 return sortIndex < propertiesNumber ? sortIndex : -1;
175 sortIndex = static_cast<int>(GetSortedIndex(++midRight));
176 currentKey = GetKey(sortIndex);
179 return sortIndex < propertiesNumber ? sortIndex : -1;