Home
last modified time | relevance | path

Searched refs:currentEntry (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/src/pdf/
DSkPDFGraphicStackState.cpp143 if (clipStackGenID == currentEntry()->fClipStackGenID) { in updateClip()
148 if (clipStackGenID == currentEntry()->fClipStackGenID) { in updateClip()
152 SkASSERT(currentEntry()->fClipStackGenID == SkClipStack::kWideOpenGenID); in updateClip()
157 currentEntry()->fClipStackGenID = clipStackGenID; in updateClip()
164 if (matrix == currentEntry()->fMatrix) { in updateMatrix()
168 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) { in updateMatrix()
174 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask); in updateMatrix()
182 currentEntry()->fMatrix = matrix; in updateMatrix()
188 if (state.fShaderIndex != currentEntry()->fShaderIndex) { in updateDrawingState()
190 currentEntry()->fShaderIndex = state.fShaderIndex; in updateDrawingState()
[all …]
DSkPDFGraphicStackState.h37 Entry* currentEntry() { return &fEntries[fStackDepth]; } in currentEntry() function
/third_party/flutter/skia/src/pdf/
DSkPDFGraphicStackState.cpp152 if (clipStackGenID == currentEntry()->fClipStackGenID) { in updateClip()
157 if (clipStackGenID == currentEntry()->fClipStackGenID) { in updateClip()
161 SkASSERT(currentEntry()->fClipStackGenID == SkClipStack::kWideOpenGenID); in updateClip()
166 currentEntry()->fClipStackGenID = clipStackGenID; in updateClip()
173 if (matrix == currentEntry()->fMatrix) { in updateMatrix()
177 if (currentEntry()->fMatrix.getType() != SkMatrix::kIdentity_Mask) { in updateMatrix()
183 SkASSERT(currentEntry()->fMatrix.getType() == SkMatrix::kIdentity_Mask); in updateMatrix()
191 currentEntry()->fMatrix = matrix; in updateMatrix()
197 if (state.fShaderIndex != currentEntry()->fShaderIndex) { in updateDrawingState()
199 currentEntry()->fShaderIndex = state.fShaderIndex; in updateDrawingState()
[all …]
DSkPDFGraphicStackState.h37 Entry* currentEntry() { return &fEntries[fStackDepth]; } in currentEntry() function
/third_party/typescript/src/harness/
DvirtualFileSystemWithWatch.ts490 const currentEntry = this.fs.get(path); constant
491 if (currentEntry) {
492 if (isFsFile(currentEntry)) {
495 if (currentEntry.content !== fileOrDirectory.content) {
503 else if (isFsSymLink(currentEntry)) {
513 currentEntry.modifiedTime = this.now();
514 this.invokeFsWatches(currentEntry.fullPath, "change");
526 const currentEntry = this.fs.get(path); constant
527 if (!currentEntry || !isFsFile(currentEntry)) {
532 this.removeFileOrFolder(currentEntry, returnFalse);
[all …]
/third_party/flutter/skia/src/sfnt/
DSkOTUtils.cpp110 …SkSFNTHeader::TableDirectoryEntry* currentEntry = reinterpret_cast<SkSFNTHeader::TableDirectoryEnt… in RenameFont() local
111 SkSFNTHeader::TableDirectoryEntry* endEntry = currentEntry + numTables; in RenameFont()
113 for (; currentEntry < endEntry; ++currentEntry) { in RenameFont()
114 uint32_t oldOffset = SkEndian_SwapBE32(currentEntry->offset); in RenameFont()
116 currentEntry->offset = SkEndian_SwapBE32(SkToU32(oldOffset - oldNameTablePhysicalSize)); in RenameFont()
119 if (SkOTTableHead::TAG == currentEntry->tag) { in RenameFont()
120 headTableEntry = currentEntry; in RenameFont()
/third_party/skia/src/sfnt/
DSkOTUtils.cpp112 …SkSFNTHeader::TableDirectoryEntry* currentEntry = reinterpret_cast<SkSFNTHeader::TableDirectoryEnt… in RenameFont() local
113 SkSFNTHeader::TableDirectoryEntry* endEntry = currentEntry + numTables; in RenameFont()
115 for (; currentEntry < endEntry; ++currentEntry) { in RenameFont()
116 uint32_t oldOffset = SkEndian_SwapBE32(currentEntry->offset); in RenameFont()
118 currentEntry->offset = SkEndian_SwapBE32(SkToU32(oldOffset - oldNameTablePhysicalSize)); in RenameFont()
121 if (SkOTTableHead::TAG == currentEntry->tag) { in RenameFont()
122 headTableEntry = currentEntry; in RenameFont()
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/
Dtest_embedding.dart35 String get path => ensureLeading(currentEntry.url, '/');
40 _HistoryEntry get currentEntry {
45 set currentEntry(_HistoryEntry entry) {
75 currentEntry = _HistoryEntry(state, title, url);
134 <String, dynamic>{'state': currentEntry.state},
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_helpers.cpp3281 uint32_t currentEntry = 0; in allocateSemaphore() local
3282 ANGLE_TRY(allocatePoolEntries(contextVk, 1, &currentPool, &currentEntry)); in allocateSemaphore()
3284 semaphoreOut->init(currentPool, &getPool(currentPool)[currentEntry]); in allocateSemaphore()