Searched refs:prop_str (Results 1 – 3 of 3) sorted by relevance
94 PROP_STR(test_tree1, prop_str, TEST_STRING_1)141 STRING(test_tree1, prop_str, "prop-str")
290 static void parse_prop(const string& prop_str, vector<PropInfo> &props) in parse_prop() argument294 size_t split = prop_str.find("="); in parse_prop()297 EXIT("Equal sign ('=') not found in %s", prop_str.c_str()); in parse_prop()299 name = prop_str.substr(0, split); in parse_prop()300 val = prop_str.substr(split+1); in parse_prop()
229 string prop_str; in TEST_F() local230 ::tensorflow::protobuf::TextFormat::PrintToString(prop, &prop_str); in TEST_F()234 EXPECT_EQ(prop_str, out_prop_str); in TEST_F()