OLD | NEW |
(Empty) | |
| 1 #include "SkPdfFunctionCommonDictionary_autogen.h" |
| 2 |
| 3 |
| 4 #include "SkPdfNativeDoc.h" |
| 5 int64_t SkPdfFunctionCommonDictionary::FunctionType(SkPdfNativeDoc* doc) { |
| 6 SkPdfNativeObject* ret = get("FunctionType", ""); |
| 7 if (doc) {ret = doc->resolveReference(ret);} |
| 8 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->i
sReference())) return ret->intValue(); |
| 9 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 10 return 0; |
| 11 } |
| 12 |
| 13 bool SkPdfFunctionCommonDictionary::has_FunctionType() const { |
| 14 return get("FunctionType", "") != NULL; |
| 15 } |
| 16 |
| 17 SkPdfArray* SkPdfFunctionCommonDictionary::Domain(SkPdfNativeDoc* doc) { |
| 18 SkPdfNativeObject* ret = get("Domain", ""); |
| 19 if (doc) {ret = doc->resolveReference(ret);} |
| 20 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isR
eference())) return (SkPdfArray*)ret; |
| 21 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 22 return NULL; |
| 23 } |
| 24 |
| 25 bool SkPdfFunctionCommonDictionary::has_Domain() const { |
| 26 return get("Domain", "") != NULL; |
| 27 } |
| 28 |
| 29 SkPdfArray* SkPdfFunctionCommonDictionary::Range(SkPdfNativeDoc* doc) { |
| 30 SkPdfNativeObject* ret = get("Range", ""); |
| 31 if (doc) {ret = doc->resolveReference(ret);} |
| 32 if ((ret != NULL && ret->isArray()) || (doc == NULL && ret != NULL && ret->isR
eference())) return (SkPdfArray*)ret; |
| 33 // TODO(edisonn): warn about missing default value for optional fields |
| 34 return NULL; |
| 35 } |
| 36 |
| 37 bool SkPdfFunctionCommonDictionary::has_Range() const { |
| 38 return get("Range", "") != NULL; |
| 39 } |
| 40 |
OLD | NEW |