Home | History | Annotate | Download | only in fpdfdoc

Lines Matching defs:pAttr

349         CPDF_Object* pAttr = GetAttr(owner, name, FALSE);
350 if (pAttr) {
351 return pAttr;
362 CPDF_Object* pAttr = pAttrDict->GetElementValue(name);
363 if (pAttr) {
364 return pAttr;
396 CPDF_Object* pAttr = GetAttr(owner, name, bInheritable);
397 if (pAttr == NULL || subindex == -1 || pAttr->GetType() != PDFOBJ_ARRAY) {
398 return pAttr;
400 CPDF_Array* pArray = (CPDF_Array*)pAttr;
402 return pAttr;
408 CPDF_Object* pAttr = GetAttr(owner, name, bInheritable, subindex);
409 if (pAttr == NULL || pAttr->GetType() != PDFOBJ_NAME) {
412 return pAttr->GetString();
416 CPDF_Object* pAttr = GetAttr(owner, name, bInheritable, subindex);
417 if (pAttr == NULL || pAttr->GetType() != PDFOBJ_ARRAY) {
420 CPDF_Array* pArray = (CPDF_Array*)pAttr;
425 CPDF_Object* pAttr = GetAttr(owner, name, bInheritable, subindex);
426 if (pAttr == NULL || pAttr->GetType() != PDFOBJ_NUMBER) {
429 return pAttr->GetNumber();
433 CPDF_Object* pAttr = GetAttr(owner, name, bInheritable, subindex);
434 if (pAttr == NULL || pAttr->GetType() != PDFOBJ_NUMBER) {
437 return pAttr->GetInteger();