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

  /external/skia/include/pdf/
SkPDFTypes.h 218 /** \class SkPDFName
222 class SkPDFName : public SkPDFObject {
227 explicit SkPDFName(const char name[]);
228 explicit SkPDFName(const SkString& name);
229 virtual ~SkPDFName();
231 bool operator==(const SkPDFName& b) const;
299 /** Creates a SkPDFName object and appends it to the array.
340 SkPDFObject* insert(SkPDFName* key, SkPDFObject* value);
343 * method will create the SkPDFName object.
382 SkPDFName* key
    [all...]
  /external/skia/src/pdf/
SkPDFTypes.cpp 273 SkPDFName::SkPDFName(const char name[]) : fValue(FormatName(SkString(name))) {}
274 SkPDFName::SkPDFName(const SkString& name) : fValue(FormatName(name)) {}
275 SkPDFName::~SkPDFName() {}
277 bool SkPDFName::operator==(const SkPDFName& b) const {
281 void SkPDFName::emitObject(SkWStream* stream, SkPDFCatalog* catalog,
287 size_t SkPDFName::getOutputSize(SkPDFCatalog* catalog, bool indirect)
    [all...]

Completed in 1507 milliseconds