OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xrefpos
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/core/fpdfapi/parser/
cpdf_cross_ref_avail.cpp
153
const int32_t
xrefpos
=
local
155
if (
xrefpos
&&
156
pdfium::base::IsValueInRangeForNumericType<FX_FILESIZE>(
xrefpos
))
157
AddCrossRefForCheck(static_cast<FX_FILESIZE>(
xrefpos
));
191
const int32_t
xrefpos
= trailer->GetIntegerFor(kPrevCrossRefFieldKey);
local
192
if (
xrefpos
&&
193
pdfium::base::IsValueInRangeForNumericType<FX_FILESIZE>(
xrefpos
))
194
AddCrossRefForCheck(static_cast<FX_FILESIZE>(
xrefpos
));
cpdf_parser.cpp
403
bool CPDF_Parser::LoadAllCrossRefV4(FX_FILESIZE
xrefpos
) {
404
if (!LoadCrossRefV4(
xrefpos
, true))
420
CrossRefList.push_back(
xrefpos
);
422
seen_xrefpos.insert(
xrefpos
);
426
xrefpos
= GetDirectInteger(GetTrailer(), "Prev");
427
while (
xrefpos
) {
429
if (pdfium::ContainsKey(seen_xrefpos,
xrefpos
))
432
seen_xrefpos.insert(
xrefpos
);
435
CrossRefList.insert(CrossRefList.begin(),
xrefpos
);
436
LoadCrossRefV4(
xrefpos
, true)
[
all
...]
Completed in 119 milliseconds