Lines Matching refs:PythonInteger
84 PythonInteger long_value(PyRefType::Owned, PyLong_FromLong(3)); in TEST_F()
88 PythonInteger borrowed_long(PyRefType::Borrowed, long_value.get()); in TEST_F()
171 EXPECT_TRUE(PythonInteger::Check(py_int)); in TEST_F()
172 PythonInteger python_int(PyRefType::Owned, py_int); in TEST_F()
181 EXPECT_TRUE(PythonInteger::Check(py_long)); in TEST_F()
182 PythonInteger python_long(PyRefType::Owned, py_long); in TEST_F()
192 PythonInteger constructed_int(7); in TEST_F()
298 PythonInteger integer(7); in TEST_F()
323 list_items[0] = PythonInteger(long_value0); in TEST_F()
335 EXPECT_TRUE(PythonInteger::Check(chk_value1.get())); in TEST_F()
338 PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get()); in TEST_F()
354 PythonInteger integer(long_value0); in TEST_F()
364 EXPECT_TRUE(PythonInteger::Check(chk_value1.get())); in TEST_F()
367 PythonInteger chk_int(PyRefType::Borrowed, chk_value1.get()); in TEST_F()
380 list.AppendItem(PythonInteger(long_value0)); in TEST_F()
407 PythonInteger int_value(1); in TEST_F()
421 PythonInteger int_value(1); in TEST_F()
433 PythonInteger int_value(1); in TEST_F()
446 PythonInteger int_value(1); in TEST_F()
472 py_keys[1] = PythonInteger(key_1); in TEST_F()
473 py_values[0] = PythonInteger(value_0); in TEST_F()
488 EXPECT_TRUE(PythonInteger::Check(chk_value1.get())); in TEST_F()
513 values[0] = PythonInteger(value_0); in TEST_F()
525 EXPECT_TRUE(PythonInteger::Check(chk_value1.get())); in TEST_F()
544 dict.SetItemForKey(PythonString(string_key1), PythonInteger(int_value1)); in TEST_F()
569 PythonInteger one(1); in TEST_F()
594 PythonInteger py_int(42); in TEST_F()
608 PythonInteger python_ull_value(PyRefType::Owned, in TEST_F()