Lines Matching refs:height
36 "height":165.3,"school":{"schoolName":"abc","schoolAddr":"cba"}})";
64 student.Add("height", g_height);
65 EXPECT_EQ(student["height"].AsDouble(), g_height);
136 objVal.Replace("height", g_newHeight);
137 EXPECT_EQ(objVal["height"].AsDouble(), g_newHeight);
181 EXPECT_TRUE(objVal["height"].IsDouble());
192 EXPECT_EQ(objVal.GetFloat("height"), (float)g_height);
193 EXPECT_EQ(objVal.GetDouble("height"), g_height);
373 Json2::Value height = objVal.GetValue("height");
374 float val = height.AsFloat();
405 Json2::Value height = jsonData1.GetValue("height");
406 std::string str = height.GetKey();
407 EXPECT_EQ(str, "height");