Searched defs:SkData (Results 1 - 2 of 2) sorted by relevance

/external/skia/src/core/
H A DSkData.cpp8 #include "SkData.h"
15 SkData::SkData(const void* ptr, size_t size, ReleaseProc proc, void* context) { function in class:SkData
26 SkData::SkData(size_t size) { function in class:SkData
33 SkData::~SkData() {
39 bool SkData::equals(const SkData* other) const {
47 size_t SkData
[all...]
/external/skia/include/core/
H A DSkData.h18 * SkData holds an immutable data buffer. Not only is the data immutable,
22 class SK_API SkData : public SkRefCnt { class in inherits:SkRefCnt
69 bool equals(const SkData* other) const;
72 * Function that, if provided, will be called when the SkData goes out
80 static SkData* NewWithCopy(const void* data, size_t length);
86 static SkData* NewUninitialized(size_t length);
90 * (a null-terminated array of bytes). The returned SkData will have size()
94 static SkData* NewWithCString(const char cstr[]);
100 static SkData* NewWithProc(const void* ptr, size_t length, ReleaseProc proc, void* context);
104 * SkData
[all...]

Completed in 6790 milliseconds