Home
last modified time | relevance | path

Searched refs:ContentEntry (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/pdf/
DSkPDFDevice.h38 struct ContentEntry;
221 SkAutoTDelete<ContentEntry> fContentEntries;
222 ContentEntry* fLastContentEntry;
223 SkAutoTDelete<ContentEntry> fMarginContentEntries;
224 ContentEntry* fLastMarginContentEntry;
230 SkAutoTDelete<ContentEntry>* getContentEntries();
247 ContentEntry* getLastContentEntry();
248 void setLastContentEntry(ContentEntry* contentEntry);
267 ContentEntry* setUpContentEntry(const SkClipStack* clipStack,
287 void updateFont(const SkPaint& paint, uint16_t glyphID, ContentEntry* contentEntry);
[all …]
DSkPDFDevice.cpp591 struct ContentEntry { struct
594 SkAutoTDelete<ContentEntry> fNext; argument
598 ~ContentEntry() { in ~ContentEntry() argument
599 ContentEntry* val = fNext.detach(); in ~ContentEntry()
601 ContentEntry* valNext = val->fNext.detach(); in ~ContentEntry()
642 ContentEntry* entry() { return fContentEntry; } in entry()
680 ContentEntry* fContentEntry;
770 ContentEntry* contentEntry) { in internalDrawPaint()
1509 ContentEntry* SkPDFDevice::getLastContentEntry() { in getLastContentEntry()
1517 SkAutoTDelete<ContentEntry>* SkPDFDevice::getContentEntries() { in getContentEntries()
[all …]
/external/skia/site/dev/design/
Dpdftheory.md217 internal structure (ContentEntry) and only when the content stream is
307 transform, clip region, and clip stack are stored in a ContentEntry
308 structure. Later, when the ContentEntry structures are flattened into
320 For each draw call on an SkPDFDevice, a new ContentEntry is created,
324 explicitly stored in the ContentEntry. After populating the
325 ContentEntry with all the relevant context, it is compared to the the
326 most recently used ContentEntry. If the context matches, then the
328 case, with the context populated into the ContentEntry, the
330 snippet in the ContentEntry to affect the core of the drawing call,
342 inside the margins) of the page. Then, each ContentEntry is applied to
[all …]
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliClassTest.java37 import com.intellij.openapi.roots.ContentEntry;
163 … public void configureModule(Module module, ModifiableRootModel model, ContentEntry contentEntry) { in getProjectDescriptor()