HomeSort by relevance Sort by last modified time
    Searched defs:SkPDFName (Results 1 - 2 of 2) sorted by null

  /external/skia/src/pdf/
SkPDFTypes.h 237 /** \class SkPDFName
241 class SkPDFName : public SkPDFObject {
243 SK_DECLARE_INST_COUNT(SkPDFName)
248 explicit SkPDFName(const char name[]);
249 explicit SkPDFName(const SkString& name);
250 virtual ~SkPDFName();
252 bool operator==(const SkPDFName& b) const;
324 /** Creates a SkPDFName object and appends it to the array.
369 SkPDFObject* insert(SkPDFName* key, SkPDFObject* value);
372 * method will create the SkPDFName object
    [all...]
SkPDFTypes.cpp 24 SK_DEFINE_INST_COUNT(SkPDFName)
285 SkPDFName::SkPDFName(const char name[]) : fValue(FormatName(SkString(name))) {}
286 SkPDFName::SkPDFName(const SkString& name) : fValue(FormatName(name)) {}
287 SkPDFName::~SkPDFName() {}
289 bool SkPDFName::operator==(const SkPDFName& b) const {
293 void SkPDFName::emitObject(SkWStream* stream, SkPDFCatalog* catalog
    [all...]

Completed in 1404 milliseconds