• Home
  • Raw
  • Download

Lines Matching full:int

31     static constexpr int MIN_PROPERTIES_LENGTH = JSObject::MIN_PROPERTIES_LENGTH;
32 static constexpr int MAX_PROPERTIES_LENGTH = PropertyAttributes::MAX_FAST_PROPS_CAPACITY;
47 void Initialize(const JSThread *thread, int num = 0);
48 int GetPropertiesCapacity() const;
49 int NumberOfElements() const;
50 void SetNumberOfElements(const JSThread *thread, int properties);
51 uint32_t GetKeyIndex(int index) const;
52 uint32_t GetAttrIndex(int index) const;
53 …void SetPropertyInit(const JSThread *thread, int index, const JSTaggedValue &key, const PropertyAt…
54 void SetKey(const JSThread *thread, int index, const JSTaggedValue &key);
55 void SetNormalAttr(const JSThread *thread, int index, const PropertyAttributes &attr);
56 JSTaggedValue GetKey(int index) const;
57 PropertyAttributes GetAttr(int index) const;
58 JSTaggedValue GetSortedKey(int index) const;
59 uint32_t GetSortedIndex(int index) const;
60 void SetSortedIndex(const JSThread *thread, int index, int sortedIndex);
62 …void AddKey(const JSThread *thread, int index, const JSTaggedValue &key, const PropertyAttributes …
63 void SetIsNotHole(const JSThread *thread, int index);
86int FindElementWithCache(const JSThread *thread, JSHClass *cls, JSTaggedValue key, int propertiesN…
87 int BinarySearch(JSTaggedValue key, int propertiesNumber);
88 void GetAllKeys(const JSThread *thread, int end, int offset, TaggedArray *keyArray,
90 void GetAllKeysForSerialization(int end, std::vector<JSTaggedValue> &keyVector);
93 std::pair<uint32_t, uint32_t> GetNumOfEnumKeys(int end, const JSObject *object) const;
94 …void GetAllEnumKeys(JSThread *thread, int end, int offset, JSHandle<TaggedArray> keyArray, uint32_…
97 …void GetAllEnumKeys(JSThread *thread, int end, int offset, JSHandle<TaggedArray> keyArray, uint32_…
100 void DumpFieldIndex(int index, pgo::HClassLayoutDesc *desc);
101 bool UpdateFieldIndex(int index, pgo::HClassLayoutDesc *desc);