Home
last modified time | relevance | path

Searched refs:currentEntry (Results 1 – 5 of 5) 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/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/typescript/src/harness/
DvirtualFileSystemWithWatch.ts476 const currentEntry = this.fs.get(path); constant
477 if (!currentEntry || !isFsFile(currentEntry)) {
482 this.removeFileOrFolder(currentEntry, /*isRenaming*/ false, options);
486 currentEntry.content = content;
487 currentEntry.modifiedTime = this.now();
488 this.fs.get(getDirectoryPath(currentEntry.path))!.modifiedTime = this.now();
490 const directoryFullPath = getDirectoryPath(currentEntry.fullPath);
491 …this.invokeFileWatcher(directoryFullPath, FileWatcherEventKind.Changed, currentEntry.modifiedTime);
492 …is.invokeFsWatchesCallbacks(directoryFullPath, "rename", currentEntry.modifiedTime, currentEntry.f…
493 …is.invokeRecursiveFsWatches(directoryFullPath, "rename", currentEntry.modifiedTime, currentEntry.f…
[all …]
/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()