Lines Matching refs:FPDFText_GetCharBox
98 EXPECT_FALSE(FPDFText_GetCharBox(nullptr, 4, &left, &right, &bottom, &top)); in TEST_F()
103 EXPECT_FALSE(FPDFText_GetCharBox(textpage, -1, &left, &right, &bottom, &top)); in TEST_F()
108 EXPECT_FALSE(FPDFText_GetCharBox(textpage, 55, &left, &right, &bottom, &top)); in TEST_F()
114 FPDFText_GetCharBox(textpage, 4, nullptr, &right, &bottom, &top)); in TEST_F()
115 EXPECT_FALSE(FPDFText_GetCharBox(textpage, 4, &left, nullptr, &bottom, &top)); in TEST_F()
116 EXPECT_FALSE(FPDFText_GetCharBox(textpage, 4, &left, &right, nullptr, &top)); in TEST_F()
118 FPDFText_GetCharBox(textpage, 4, &left, &right, &bottom, nullptr)); in TEST_F()
120 FPDFText_GetCharBox(textpage, 4, nullptr, nullptr, nullptr, nullptr)); in TEST_F()
122 EXPECT_TRUE(FPDFText_GetCharBox(textpage, 4, &left, &right, &bottom, &top)); in TEST_F()
1516 ASSERT_TRUE(FPDFText_GetCharBox(text_page.get(), 0, &left, &right, in TEST_F()
1520 ASSERT_TRUE(FPDFText_GetCharBox(text_page.get(), 4, &left, &right, in TEST_F()
1524 ASSERT_TRUE(FPDFText_GetCharBox(text_page.get(), 8, &left, &right, in TEST_F()