Lines Matching full:int
31 static constexpr int MIN_PROPERTIES_LENGTH = JSObject::MIN_PROPERTIES_LENGTH;
32 static constexpr int MAX_PROPERTIES_LENGTH = PropertyAttributes::MAX_CAPACITY_OF_PROPERTIES;
42 int GetPropertiesCapacity() const;
43 int NumberOfElements() const;
44 void SetNumberOfElements(const JSThread *thread, int properties);
45 uint32_t GetKeyIndex(int index) const;
46 uint32_t GetAttrIndex(int index) const;
47 …void SetPropertyInit(const JSThread *thread, int index, const JSTaggedValue &key, const PropertyAt…
48 void SetKey(const JSThread *thread, int index, const JSTaggedValue &key);
49 void SetNormalAttr(const JSThread *thread, int index, const PropertyAttributes &attr);
50 JSTaggedValue GetKey(int index) const;
51 PropertyAttributes GetAttr(int index) const;
52 JSTaggedValue GetSortedKey(int index) const;
53 uint32_t GetSortedIndex(int index) const;
54 void SetSortedIndex(const JSThread *thread, int index, int sortedIndex);
55 …void AddKey(const JSThread *thread, int index, const JSTaggedValue &key, const PropertyAttributes …
78 …int FindElementWithCache(JSThread *thread, JSHClass *cls, JSTaggedValue key, int propertiesNumber);
79 int BinarySearch(JSTaggedValue key, int propertiesNumber);
80 void GetAllKeys(const JSThread *thread, int end, int offset, TaggedArray *keyArray,
82 … void GetAllKeys(int end, std::vector<JSTaggedValue> &keyVector, const JSHandle<JSObject> object);
83 …void GetAllEnumKeys(const JSThread *thread, int end, int offset, TaggedArray *keyArray, uint32_t *…