Home | History | Annotate | Download | only in parser

Lines Matching defs:pObj

88   CPDF_Number* pObj = ToNumber(pDict->GetObjectFor(key));
89 return pObj ? pObj->GetInteger() : 0;
153 std::ostream& operator<<(std::ostream& buf, const CPDF_Object* pObj) {
154 if (!pObj) {
158 switch (pObj->GetType()) {
164 buf << " " << pObj->GetString();
167 buf << PDF_EncodeString(pObj->GetString(), pObj->AsString()->IsHex());
170 ByteString str = pObj->GetString();
175 buf << " " << pObj->AsReference()->GetRefObjNum() << " 0 R ";
179 const CPDF_Array* p = pObj->AsArray();
193 const CPDF_Dictionary* p = pObj->AsDictionary();
209 const CPDF_Stream* p = pObj->AsStream();