OLD | NEW |
(Empty) | |
| 1 #include "SkPdfWebCaptureImageSetDictionary_autogen.h" |
| 2 |
| 3 |
| 4 #include "SkPdfNativeDoc.h" |
| 5 SkString SkPdfWebCaptureImageSetDictionary::S(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("S", ""); |
| 7 if (doc) {ret = doc->resolveReference(ret);} |
| 8 if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isRe
ference())) return ret->nameValue2(); |
| 9 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 10 return SkString(); |
| 11 } |
| 12 |
| 13 bool SkPdfWebCaptureImageSetDictionary::has_S() const { |
| 14 return get("S", "") != NULL; |
| 15 } |
| 16 |
| 17 bool SkPdfWebCaptureImageSetDictionary::isRAInteger(SkPdfNativeDoc* doc) { |
| 18 SkPdfNativeObject* ret = get("R", ""); |
| 19 if (doc) {ret = doc->resolveReference(ret);} |
| 20 return ret != NULL && ret->isInteger(); |
| 21 } |
| 22 |
| 23 int64_t SkPdfWebCaptureImageSetDictionary::getRAsInteger(SkPdfNativeDoc* doc) { |
| 24 SkPdfNativeObject* ret = get("R", ""); |
| 25 if (doc) {ret = doc->resolveReference(ret);} |
| 26 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->i
sReference())) return ret->intValue(); |
| 27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 28 return 0; |
| 29 } |
| 30 |
| 31 bool SkPdfWebCaptureImageSetDictionary::isRAArray(SkPdfNativeDoc* doc) { |
| 32 SkPdfNativeObject* ret = get("R", ""); |
| 33 if (doc) {ret = doc->resolveReference(ret);} |
| 34 return ret != NULL && ret->isArray(); |
| 35 } |
| 36 |
| 37 SkPdfArray* SkPdfWebCaptureImageSetDictionary::getRAsArray(SkPdfNativeDoc* doc)
{ |
| 38 SkPdfNativeObject* ret = get("R", ""); |
| 39 if (doc) {ret = doc->resolveReference(ret);} |
| 40 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isR
eference())) return (SkPdfArray*)ret; |
| 41 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 42 return NULL; |
| 43 } |
| 44 |
| 45 bool SkPdfWebCaptureImageSetDictionary::has_R() const { |
| 46 return get("R", "") != NULL; |
| 47 } |
| 48 |
OLD | NEW |