/third_party/skia/third_party/externals/expat/expat/gennmtab/ |
D | gennmtab.c | 403 unsigned char pageIndex[512]; in printTabs() local 418 pageIndex[i] = pageIndex[i - 256]; in printTabs() 420 pageIndex[i] = nBitmaps++; in printTabs() 431 pageIndex[i] = kind; in printTabs() 438 printf("0x%02X,", pageIndex[i]); in printTabs()
|
/third_party/skia/src/gpu/ |
D | GrDrawOpAtlas.cpp | 89 GrDrawOpAtlas::Plot::Plot(int pageIndex, int plotIndex, GenerationCounter* generationCounter, in Plot() argument 94 , fPageIndex(pageIndex) in Plot() 260 int pageIdx = plot->pageIndex(); in updatePlot() 391 int pageIdx = plot->pageIndex(); in addToAtlas() 429 for (uint32_t pageIndex = 0; pageIndex < fNumActivePages; ++pageIndex) { in compactRadicals() local 430 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compactRadicals() 433 usedAtlasLastFlush |= (1 << pageIndex); in compactRadicals() 469 for (uint32_t pageIndex = 0; pageIndex < fNumActivePages; ++pageIndex) { in compact() local 470 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact() 498 for (uint32_t pageIndex = 0; pageIndex < lastPageIndex; ++pageIndex) { in compact() local [all …]
|
D | GrDrawOpAtlas.h | 105 uint32_t pageIndex() const { return fPageIndex; } in pageIndex() function 133 uint32_t pageIndex() const { return fPlotLocator.pageIndex(); } in pageIndex() function 168 SkASSERT(fPlotLocator.pageIndex() <= 15); in updatePlotLocator() 171 uint16_t page = fPlotLocator.pageIndex() << 12; in updatePlotLocator() 177 SkASSERT(fPlotLocator.pageIndex() <= 3); in updatePlotLocator() 178 uint16_t page = fPlotLocator.pageIndex() << 13; in updatePlotLocator() 300 uint32_t page = plotLocator.pageIndex(); in hasID() 311 uint32_t pageIdx = atlasLocator.pageIndex(); in setLastUseToken() 337 int pageIdx = atlasLocator.pageIndex(); in add() 424 uint32_t pageIndex() const { return fPageIndex; } in pageIndex() function [all …]
|
/third_party/flutter/skia/src/gpu/ |
D | GrDrawOpAtlas.cpp | 64 GrDrawOpAtlas::Plot::Plot(int pageIndex, int plotIndex, uint64_t genID, int offX, int offY, in Plot() argument 69 , fPageIndex(pageIndex) in Plot() 392 for (uint32_t pageIndex = 0; pageIndex < fNumActivePages; ++pageIndex) { in compactRadicals() local 393 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compactRadicals() 396 usedAtlasLastFlush |= (1 << pageIndex); in compactRadicals() 423 for (uint32_t pageIndex = 0; pageIndex < fNumActivePages; ++pageIndex) { in compact() local 424 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact() 446 for (uint32_t pageIndex = 0; pageIndex < lastPageIndex; ++pageIndex) { in compact() local 449 SkDebugf("page %d: ", pageIndex); in compact() 452 plotIter.init(fPages[pageIndex].fPlotList, PlotList::Iter::kHead_IterStart); in compact()
|
D | GrGlyph.h | 83 uint32_t pageIndex() const { return GrDrawOpAtlas::GetPageIndexFromID(fID); } in pageIndex() function
|
D | GrDrawOpAtlas.h | 301 Plot(int pageIndex, int plotIndex, uint64_t genID, int offX, int offY,
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_memory_stream.cpp | 95 uint32 pageIndex = (uint32) (offset / fPageSize); in DoRead() local 100 const uint8 *sPtr = fPageList [pageIndex]->Buffer_uint8 () + in DoRead() 199 uint32 pageIndex = (uint32) (offset / fPageSize); in DoWrite() local 206 uint8 *dPtr = fPageList [pageIndex]->Buffer_uint8 () + in DoWrite() 248 uint32 pageIndex = (uint32) (offset / fPageSize); in CopyToStream() local 253 const uint8 *sPtr = fPageList [pageIndex]->Buffer_uint8 () + in CopyToStream()
|
/third_party/flutter/skia/src/gpu/text/ |
D | GrTextBlobVertexRegenerator.cpp | 67 uint32_t pageIndex = glyph->pageIndex(); in regen_texcoords() local 68 SkASSERT(pageIndex < 16); in regen_texcoords() 70 uint16_t uBit = (pageIndex >> 2) & 0x3; in regen_texcoords() 71 uint16_t vBit = pageIndex & 0x3; in regen_texcoords() 81 uint16_t uBit = (pageIndex >> 1) & 0x1; in regen_texcoords() 82 uint16_t vBit = pageIndex & 0x1; in regen_texcoords() 110 switch (pageIndex) { in regen_texcoords()
|
/third_party/skia/src/pdf/ |
D | SkPDFTag.h | 28 int createMarkIdForNodeId(int nodeId, unsigned pageIndex); 32 int createStructParentKeyForNodeId(int nodeId, unsigned pageIndex); 34 void addNodeAnnotation(int nodeId, SkPDFIndirectReference annotationRef, unsigned pageIndex);
|
D | SkPDFTag.cpp | 190 int SkPDFTagTree::createMarkIdForNodeId(int nodeId, unsigned pageIndex) { in createMarkIdForNodeId() argument 200 while (fMarksPerPage.size() < pageIndex + 1) { in createMarkIdForNodeId() 203 SkTArray<SkPDFTagNode*>& pageMarks = fMarksPerPage[pageIndex]; in createMarkIdForNodeId() 205 tag->fMarkedContent.push_back({pageIndex, markId}); in createMarkIdForNodeId() 210 int SkPDFTagTree::createStructParentKeyForNodeId(int nodeId, unsigned pageIndex) { in createStructParentKeyForNodeId() argument 301 …FTagTree::addNodeAnnotation(int nodeId, SkPDFIndirectReference annotationRef, unsigned pageIndex) { in addNodeAnnotation() argument 312 SkPDFTagNode::AnnotationInfo annotationInfo = {pageIndex, annotationRef}; in addNodeAnnotation()
|
D | SkPDFDocument.cpp | 520 SkPDFIndirectReference SkPDFDocument::getPage(size_t pageIndex) const { in getPage() 521 SkASSERT(pageIndex < fPageRefs.size()); in getPage() 522 return fPageRefs[pageIndex]; in getPage()
|
D | SkPDFDocumentPriv.h | 115 SkPDFIndirectReference getPage(size_t pageIndex) const;
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrSmallPathRenderer.cpp | 632 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(id); in addDFPathToAtlas() local 634 SkASSERT(pageIndex < 16); in addDFPathToAtlas() 635 uint16_t uBit = (pageIndex >> 2) & 0x3; in addDFPathToAtlas() 636 uint16_t vBit = pageIndex & 0x3; in addDFPathToAtlas() 644 SkASSERT(pageIndex < 4); in addDFPathToAtlas() 645 uint16_t uBit = (pageIndex >> 1) & 0x1; in addDFPathToAtlas() 646 uint16_t vBit = pageIndex & 0x1; in addDFPathToAtlas() 743 uint16_t pageIndex = GrDrawOpAtlas::GetPageIndexFromID(id); in addBMPathToAtlas() local 745 SkASSERT(pageIndex < 16); in addBMPathToAtlas() 746 uint16_t uBit = (pageIndex >> 2) & 0x3; in addBMPathToAtlas() [all …]
|
/third_party/flutter/skia/src/pdf/ |
D | SkPDFTag.cpp | 121 int SkPDFTagTree::getMarkIdForNodeId(int nodeId, unsigned pageIndex) { in getMarkIdForNodeId() argument 131 while (fMarksPerPage.size() < pageIndex + 1) { in getMarkIdForNodeId() 134 SkTArray<SkPDFTagNode*>& pageMarks = fMarksPerPage[pageIndex]; in getMarkIdForNodeId() 136 tag->fMarkedContent.push_back({pageIndex, markId}); in getMarkIdForNodeId()
|
D | SkPDFTag.h | 26 int getMarkIdForNodeId(int nodeId, unsigned pageIndex);
|
D | SkPDFDocument.cpp | 496 SkPDFIndirectReference SkPDFDocument::getPage(size_t pageIndex) const { in getPage() 497 SkASSERT(pageIndex < fPageRefs.size()); in getPage() 498 return fPageRefs[pageIndex]; in getPage()
|
D | SkPDFDocumentPriv.h | 94 SkPDFIndirectReference getPage(size_t pageIndex) const;
|
/third_party/flutter/skia/tools/flags/ |
D | CommonFlagsConfig.cpp | 515 int pageIndex) in SkCommandLineConfigSvg() argument 516 : SkCommandLineConfig(tag, SkString("svg"), viaParts), fPageIndex(pageIndex) {} in SkCommandLineConfigSvg() 522 int pageIndex = 0; in parse_command_line_config_svg() local 530 bool validOptions = extendedOptions.get_option_int("page", &pageIndex); in parse_command_line_config_svg() 536 return new SkCommandLineConfigSvg(tag, vias, pageIndex); in parse_command_line_config_svg()
|
D | CommonFlagsConfig.h | 97 SkCommandLineConfigSvg(const SkString& tag, const SkTArray<SkString>& viaParts, int pageIndex);
|
/third_party/skia/tools/flags/ |
D | CommonFlagsConfig.cpp | 666 int pageIndex) in SkCommandLineConfigSvg() argument 667 : SkCommandLineConfig(tag, SkString("svg"), viaParts), fPageIndex(pageIndex) {} in SkCommandLineConfigSvg() 673 int pageIndex = 0; in parse_command_line_config_svg() local 681 bool validOptions = extendedOptions.get_option_int("page", &pageIndex); in parse_command_line_config_svg() 687 return new SkCommandLineConfigSvg(tag, vias, pageIndex); in parse_command_line_config_svg()
|
D | CommonFlagsConfig.h | 147 SkCommandLineConfigSvg(const SkString& tag, const SkTArray<SkString>& viaParts, int pageIndex);
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/animation/ |
D | home.dart | 471 void _maybeScroll(double midScrollOffset, int pageIndex, double xOffset) { 474 // At the same time scroll the PageViews to the page at pageIndex. 475 … _headingPageController.animateToPage(pageIndex, curve: _kScrollCurve, duration: _kScrollDuration); 480 final int newPageIndex = xOffset > centerX ? pageIndex + 1 : pageIndex - 1;
|
/third_party/flutter/skia/dm/ |
D | DMSrcSink.h | 471 SVGSink(int pageIndex = 0);
|
D | DM.cpp | 956 int pageIndex = svgConfig->getPageIndex(); in create_sink() local 957 return new SVGSink(pageIndex); in create_sink()
|
/third_party/skia/dm/ |
D | DM.cpp | 972 int pageIndex = svgConfig->getPageIndex(); in create_sink() local 973 return new SVGSink(pageIndex); in create_sink()
|