Lines Matching defs:key

108     bool DoesVariableExist(const std::string &key) {  in DoesVariableExist()
112 bool DoesVariableExist(int32_t key) { in DoesVariableExist()
116 bool DoesNumberExist(const std::string &key) { in DoesNumberExist()
120 bool DoesNumberExist(int32_t key) { in DoesNumberExist()
124 bool DoesBoolExist(const std::string &key) { in DoesBoolExist()
128 bool DoesBoolExist(int32_t key) { in DoesBoolExist()
132 bool DoesIntExist(const std::string &key) { in DoesIntExist()
136 bool DoesIntExist(int32_t key) { in DoesIntExist()
140 bool DoesUIntExist(const std::string &key) { in DoesUIntExist()
144 bool DoesUIntExist(int32_t key) { in DoesUIntExist()
148 bool DoesFloatExist(const std::string &key) { in DoesFloatExist()
152 bool DoesFloatExist(int32_t key) { in DoesFloatExist()
156 bool DoesStringExist(const std::string &key) { in DoesStringExist()
160 bool DoesStringExist(int32_t key) { in DoesStringExist()
164 bool DoesFunctionExist(const std::string &key) { in DoesFunctionExist()
168 bool DoesFunctionExist(int32_t key) { in DoesFunctionExist()
172 bool DoesTableExist(const std::string &key) { in DoesTableExist()
176 bool DoesTableExist(int32_t key) { in DoesTableExist()
254 void ReadBoolVector(const std::string &key, std::vector<bool>& vect) { in ReadBoolVector()
258 void ReadBoolVector(int32_t key, std::vector<bool>& vect) { in ReadBoolVector()
262 void ReadIntVector(const std::string &key, std::vector<int32_t>& vect) { in ReadIntVector()
266 void ReadIntVector(int32_t key, std::vector<int32_t>& vect) { in ReadIntVector()
270 void ReadUIntVector(const std::string &key, std::vector<uint32_t>& vect) { in ReadUIntVector()
274 void ReadUIntVector(int32_t key, std::vector<uint32_t>& vect) { in ReadUIntVector()
278 void ReadFloatVector(const std::string &key, std::vector<float>& vect) { in ReadFloatVector()
282 void ReadFloatVector(int32_t key, std::vector<float>& vect) { in ReadFloatVector()
286 void ReadStringVector(const std::string &key, std::vector<std::string>& vect) { in ReadStringVector()
290 void ReadStringVector(int32_t key, std::vector<std::string>& vect) { in ReadStringVector()
294 void ReadUStringVector(const std::string &key, std::vector<vt_utils::ustring>& vect) { in ReadUStringVector()
298 void ReadUStringVector(int32_t key, std::vector<vt_utils::ustring>& vect) { in ReadUStringVector()
542 template <class T> T ReadScriptDescriptor::_ReadData(const std::string &key, T default_value) in _ReadData()
583 template <class T> T ReadScriptDescriptor::_ReadData(int32_t key, T default_value) in _ReadData()
608 template <class T> void ReadScriptDescriptor::_ReadDataVector(const std::string &key, std::vector<T… in _ReadDataVector()
619 template <class T> void ReadScriptDescriptor::_ReadDataVector(int32_t key, std::vector<T>& vect) in _ReadDataVector()