Home | History | Annotate | Download | only in pdfapi

Lines Matching refs:ret

12   SkPdfNativeObject* ret = get("S", "");
13 if (doc) {ret = doc->resolveReference(ret);}
14 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
24 SkPdfNativeObject* ret = get("JS", "");
25 if (doc) {ret = doc->resolveReference(ret);}
26 return ret != NULL && ret->isAnyString();
30 SkPdfNativeObject* ret = get("JS", "");
31 if (doc) {ret = doc->resolveReference(ret);}
32 if ((ret != NULL && ret->isAnyString()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
38 SkPdfNativeObject* ret = get("JS", "");
39 if (doc) {ret = doc->resolveReference(ret);}
40 return ret != NULL && ret->hasStream();
44 SkPdfNativeObject* ret = get("JS", "");
45 if (doc) {ret = doc->resolveReference(ret);}
46 if ((ret != NULL && ret->hasStream()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->getStream();