Home
last modified time | relevance | path

Searched refs:SkPDFInt (Results 1 – 6 of 6) sorted by relevance

/external/skia/tests/
DPDFPrimitivesTest.cpp105 stream->insert("Attribute", new SkPDFInt(42))->unref(); in TestPDFStream()
148 SkAutoTUnref<SkPDFInt> int1(new SkPDFInt(1)); in TestCatalog()
149 SkAutoTUnref<SkPDFInt> int2(new SkPDFInt(2)); in TestCatalog()
150 SkAutoTUnref<SkPDFInt> int3(new SkPDFInt(3)); in TestCatalog()
152 SkAutoTUnref<SkPDFInt> int1Again(int1.get()); in TestCatalog()
173 SkAutoTUnref<SkPDFInt> int1(new SkPDFInt(1)); in TestObjectRef()
174 SkAutoTUnref<SkPDFInt> int2(new SkPDFInt(2)); in TestObjectRef()
194 SkAutoTUnref<SkPDFInt> int33(new SkPDFInt(33)); in TestSubstitute()
196 SkAutoTUnref<SkPDFInt> int44(new SkPDFInt(44)); in TestSubstitute()
245 SkAutoTUnref<SkPDFInt> int42(new SkPDFInt(42)); in TestPDFPrimitives()
[all …]
/external/skia/src/pdf/
DSkPDFTypes.cpp23 SK_DEFINE_INST_COUNT(SkPDFInt) in SK_DEFINE_INST_COUNT()
94 SkPDFInt::SkPDFInt(int32_t value) : fValue(value) {} in SkPDFInt() function in SkPDFInt
95 SkPDFInt::~SkPDFInt() {} in ~SkPDFInt()
97 void SkPDFInt::emitObject(SkWStream* stream, SkPDFCatalog* catalog, in emitObject()
382 fValue.push(new SkPDFInt(value)); in appendInt()
456 newEntry->value = new SkPDFInt(value); in insertInt()
DSkPDFTypes.h124 class SkPDFInt : public SkPDFObject {
126 SK_DECLARE_INST_COUNT(SkPDFInt)
131 explicit SkPDFInt(int32_t value);
132 virtual ~SkPDFInt();
DSkPDFImage.cpp308 SkAutoTUnref<SkPDFInt> one(new SkPDFInt(1)); in SkPDFImage()
337 SkAutoTUnref<SkPDFInt> zeroVal(new SkPDFInt(0)); in SkPDFImage()
DSkPDFPage.cpp126 newNode->insert(countName.get(), new SkPDFInt(pageCount))->unref(); in GeneratePageTree()
DSkPDFDevice.cpp1154 SkAutoTUnref<SkPDFInt> zero(SkNEW_ARGS(SkPDFInt, (0))); in copyMediaBox()