Lines Matching defs:thing
34 void testString(string &out, const string &thing) override in testString()
40 bool testBool(const bool thing) override in testBool()
46 int8_t testByte(const int8_t thing) override in testByte()
52 int32_t testI32(const int32_t thing) override in testI32()
58 int64_t testI64(const int64_t thing) override in testI64()
64 double testDouble(const double thing) override in testDouble()
70 void testBinary(std::string &_return, const std::string &thing) override in testBinary()
80 void testStruct(Xtruct &out, const Xtruct &thing) override in testStruct()
89 const Xtruct &thing = nest.struct_thing; in testNest() local
97 void testMap(map<int32_t, int32_t> &out, const map<int32_t, int32_t> &thing) override in testMap() argument
118 const map<std::string, std::string> &thing) override in testStringMap()
137 void testSet(set<int32_t> &out, const set<int32_t> &thing) override in testSet()
157 void testList(vector<int32_t> &out, const vector<int32_t> &thing) override in testList()
176 Numberz::type testEnum(const Numberz::type thing) override in testEnum()
182 UserId testTypedef(const UserId thing) override in testTypedef()
321 void secondtestString(std::string &result, const std::string &thing) override in secondtestString()