Lines Matching refs:attr_two
271 Attribute attr_two(TYPE_STRING); in TEST() local
276 EXPECT_TRUE(attr_one.IsCompatibleWith(attr_two)); in TEST()
280 EXPECT_TRUE(attr_two.IsCompatibleWith(attr_one)); in TEST()
281 EXPECT_TRUE(attr_two.IsCompatibleWith(attr_two)); in TEST()
282 EXPECT_FALSE(attr_two.IsCompatibleWith(attr_three)); in TEST()
283 EXPECT_FALSE(attr_two.IsCompatibleWith(attr_four)); in TEST()
286 EXPECT_FALSE(attr_three.IsCompatibleWith(attr_two)); in TEST()
291 EXPECT_FALSE(attr_four.IsCompatibleWith(attr_two)); in TEST()
303 Attribute attr_two(TYPE_ENUM); in TEST() local
304 attr_two.symbols.push_back( in TEST()
306 attr_two.symbols.push_back( in TEST()
308 EXPECT_TRUE(attr_one.IsCompatibleWith(attr_two)); in TEST()
318 Attribute attr_two(TYPE_ENUM); in TEST() local
319 attr_two.symbols.push_back( in TEST()
323 EXPECT_FALSE(attr_one.IsCompatibleWith(attr_two)); in TEST()
333 Attribute attr_two(TYPE_ENUM); in TEST() local
334 attr_two.symbols.push_back( in TEST()
336 attr_two.symbols.push_back( in TEST()
338 EXPECT_FALSE(attr_one.IsCompatibleWith(attr_two)); in TEST()