Lines Matching refs:int_value
379 PythonInteger int_value(1); in TEST_F() local
383 tuple.SetItemAtIndex(0, int_value); in TEST_F()
387 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
393 PythonInteger int_value(1); in TEST_F() local
396 PythonTuple tuple{int_value, string_value, none_value}; in TEST_F()
399 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
405 PythonInteger int_value(1); in TEST_F() local
409 PythonTuple tuple{int_value.get(), string_value.get(), none_value.get()}; in TEST_F()
412 EXPECT_EQ(tuple.GetItemAtIndex(0).get(), int_value.get()); in TEST_F()
418 PythonInteger int_value(1); in TEST_F() local
421 PythonTuple tuple{int_value.get(), string_value.get()}; in TEST_F()