• Home
  • Raw
  • Download

Lines Matching defs:const

61 bool PtJson::Add(const char *key, bool value) const  in Add()
79 bool PtJson::Add(const char *key, int32_t value) const in Add()
84 bool PtJson::Add(const char *key, int64_t value) const in Add()
89 bool PtJson::Add(const char *key, uint32_t value) const in Add()
94 bool PtJson::Add(const char *key, double value) const in Add()
112 bool PtJson::Add(const char *key, const char *value) const in Add() argument
130 bool PtJson::Add(const char *key, const std::unique_ptr<PtJson> &value) const in Add() argument
147 bool PtJson::Push(bool value) const in Push()
163 bool PtJson::Push(int32_t value) const in Push()
168 bool PtJson::Push(int64_t value) const in Push()
173 bool PtJson::Push(uint32_t value) const in Push()
178 bool PtJson::Push(double value) const in Push()
194 bool PtJson::Push(const char *value) const in Push() argument
210 bool PtJson::Push(const std::unique_ptr<PtJson> &value) const in Push() argument
229 bool PtJson::Remove(const char *key) const in Remove() argument
237 bool PtJson::Contains(const char *key) const in Contains() argument
303 bool PtJson::GetBool(bool defaultValue) const in GetBool()
312 int32_t PtJson::GetInt(int32_t defaultValue) const in GetInt()
321 int64_t PtJson::GetInt64(int64_t defaultValue) const in GetInt64()
330 uint32_t PtJson::GetUInt(uint32_t defaultValue) const in GetUInt()
339 uint64_t PtJson::GetUInt64(uint64_t defaultValue) const in GetUInt64()
348 double PtJson::GetDouble(double defaultValue) const in GetDouble()
371 std::unique_ptr<PtJson> PtJson::Get(int32_t index) const in Get()
376 Result PtJson::GetBool(const char *key, bool *value) const in GetBool()
390 Result PtJson::GetInt(const char *key, int32_t *value) const in GetInt()
400 Result PtJson::GetInt64(const char *key, int64_t *value) const in GetInt64()
410 Result PtJson::GetUInt(const char *key, uint32_t *value) const in GetUInt()
420 Result PtJson::GetUInt64(const char *key, uint64_t *value) const in GetUInt64()
430 Result PtJson::GetDouble(const char *key, double *value) const in GetDouble()
444 Result PtJson::GetString(const char *key, std::string *value) const in GetString()
458 Result PtJson::GetObject(const char *key, std::unique_ptr<PtJson> *value) const in GetObject()
472 Result PtJson::GetArray(const char *key, std::unique_ptr<PtJson> *value) const in GetArray()
486 Result PtJson::GetAny(const char *key, std::unique_ptr<PtJson> *value) const in GetAny()