• Home
  • Raw
  • Download

Lines Matching defs:const

59 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()
114 bool PtJson::Add(const char *key, const char *value) const in Add() argument
134 bool PtJson::Add(const char *key, const std::unique_ptr<PtJson> &value) const in Add() argument
153 bool PtJson::Push(bool value) const in Push()
169 bool PtJson::Push(int32_t value) const in Push()
174 bool PtJson::Push(int64_t value) const in Push()
179 bool PtJson::Push(uint32_t value) const in Push()
184 bool PtJson::Push(double value) const in Push()
200 bool PtJson::Push(const char *value) const in Push() argument
216 bool PtJson::Push(const std::unique_ptr<PtJson> &value) const in Push() argument
235 bool PtJson::Remove(const char *key) const in Remove() argument
245 bool PtJson::Contains(const char *key) const in Contains() argument
311 bool PtJson::GetBool(bool defaultValue) const in GetBool()
320 int32_t PtJson::GetInt(int32_t defaultValue) const in GetInt()
329 int64_t PtJson::GetInt64(int64_t defaultValue) const in GetInt64()
338 uint32_t PtJson::GetUInt(uint32_t defaultValue) const in GetUInt()
347 uint64_t PtJson::GetUInt64(uint64_t defaultValue) const in GetUInt64()
356 double PtJson::GetDouble(double defaultValue) const in GetDouble()
379 std::unique_ptr<PtJson> PtJson::Get(int32_t index) const in Get()
384 Result PtJson::GetBool(const char *key, bool *value) const in GetBool()
398 Result PtJson::GetInt(const char *key, int32_t *value) const in GetInt()
408 Result PtJson::GetInt64(const char *key, int64_t *value) const in GetInt64()
418 Result PtJson::GetUInt(const char *key, uint32_t *value) const in GetUInt()
428 Result PtJson::GetUInt64(const char *key, uint64_t *value) const in GetUInt64()
438 Result PtJson::GetDouble(const char *key, double *value) const in GetDouble()
452 Result PtJson::GetString(const char *key, std::string *value) const in GetString()
466 Result PtJson::GetObject(const char *key, std::unique_ptr<PtJson> *value) const in GetObject()
480 Result PtJson::GetArray(const char *key, std::unique_ptr<PtJson> *value) const in GetArray()
494 Result PtJson::GetAny(const char *key, std::unique_ptr<PtJson> *value) const in GetAny()