• Home
  • Raw
  • Download

Lines Matching full:bool

46     CString SerializeObjectKey(const JSHandle<JSTaggedValue> &key, bool hasContent);
48 bool SerializeJSONObject(const JSHandle<JSTaggedValue> &value);
50 bool SerializeJSArray(const JSHandle<JSTaggedValue> &value);
51 bool SerializeJSProxy(const JSHandle<JSTaggedValue> &object);
55 bool PushValue(const JSHandle<JSTaggedValue> &value);
59 bool AppendJsonString(bool hasContent, CVector<std::pair<CString, int>> &strCache, int index);
60 bool FastAppendJsonString(bool hasContent, CString &key);
61 bool TryCacheSerializeElements(const JSHandle<JSObject> &obj, bool hasContent,
63 bool SerializeElementsWithCache(const JSHandle<JSObject> &obj, bool hasContent,
66 bool TryCacheSerializeKeys(const JSHandle<JSObject> &obj, bool hasContent,
68 bool TryCacheSerializeKeysFromPropertiesArray(const JSHandle<JSObject> &obj, bool hasContent,
70 bool TryCacheSerializeKeysFromEnumCache(const JSHandle<JSObject> &obj, bool hasContent,
72 bool TryCacheSerializeKeysFromGlobalObject(const JSHandle<JSObject> &obj, bool hasContent,
74 bool TryCacheSerializeKeysFromNameDictionary(const JSHandle<JSObject> &obj, bool hasContent,
76 bool SerializeKeysWithCache(const JSHandle<JSObject> &obj, bool hasContent,
78 bool AppendJsonString(bool hasContent);
79 bool DefaultSerializeKeys(const JSHandle<JSObject> &obj, bool hasContent);
80 bool SerializeKeysFromCache(const JSHandle<JSObject> &obj, JSTaggedValue enumCache,
81 const JSHandle<TaggedArray> &propertiesArr, bool hasContent);
82 bool SerializeKeysFromLayout(const JSHandle<JSObject> &obj, const JSHandle<JSHClass> &jsHclass,
83 const JSHandle<TaggedArray> &propertiesArr, bool hasContent);
84 bool SerializeKeysFromGlobalDictionary(const JSHandle<JSObject> &obj,
86 bool hasContent);
87 bool SerializeKeysFromNameDictionary(const JSHandle<JSObject> &obj,
89 bool hasContent);
90 bool SerializeKeyValue(const JSHandle<JSObject> &obj, JSTaggedValue key,
91 const JSHandle<TaggedArray> &propertiesArr, bool hasContent);
92 bool DefaultSerializeElements(const JSHandle<JSObject> &obj, bool hasContent);
93bool DefaultSerializeObject(const JSTaggedValue &object, uint32_t numOfKeys, uint32_t numOfElement…
95 inline void EraseKeyString(CString &keyStr, bool hasContent) in EraseKeyString()
101 inline void FastSerializeObjectKey(CString &key, bool hasContent) in FastSerializeObjectKey()
157 bool cacheable_ {true};