Home
last modified time | relevance | path

Searched refs:endCluster (Results 1 – 11 of 11) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skparagraph/src/
H A DTextWrapper.cpp25 for (auto cluster = fEndLine.endCluster(); cluster < endOfClusters; ++cluster) { in lookAhead()
112 for (auto cluster = fEndLine.endCluster(); in trimEndSpaces()
123 auto cluster = fClusters.endCluster(); in getClustersTrimmedWidth()
143 auto cluster = fEndLine.endCluster() + 1; in trimStartSpaces()
153 if (fEndLine.endCluster() != fEndLine.startCluster() || in trimStartSpaces()
192 while (fEndLine.endCluster() != end) { in breakTextIntoLines()
200 needEllipsis &= fEndLine.endCluster() < end - 1; // Only if we have some text to ellipsize in breakTextIntoLines()
253 ClusterRange clusters(fEndLine.startCluster() - start, fEndLine.endCluster() - start + 1); in breakTextIntoLines()
294 if (fEndLine.endCluster() != nullptr) { in breakTextIntoLines()
296 auto cluster = fEndLine.endCluster(); in breakTextIntoLines()
[all …]
H A DTextWrapper.h50 inline Cluster* endCluster() const { return fEnd.cluster(); } in endCluster() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skparagraph/src/
H A DTextWrapper.cpp32 for (auto cluster = fEndLine.endCluster(); cluster < endOfClusters; ++cluster) { in lookAhead()
155 for (auto cluster = fEndLine.endCluster(); in trimEndSpaces()
167 for (auto cluster = fClusters.endCluster(); cluster >= fClusters.startCluster(); --cluster) { in getClustersTrimmedWidth()
189 auto cluster = fEndLine.endCluster() + 1; in trimStartSpaces()
199 if (fEndLine.endCluster() != fEndLine.startCluster() || in trimStartSpaces()
237 while (fEndLine.endCluster() != end) { in breakTextIntoLines()
245 needEllipsis &= fEndLine.endCluster() < end - 1; // Only if we have some text to ellipsize in breakTextIntoLines()
298 ClusterRange clusters(fEndLine.startCluster() - start, fEndLine.endCluster() - start + 1); in breakTextIntoLines()
339 if (fEndLine.endCluster() != nullptr) { in breakTextIntoLines()
341 auto cluster = fEndLine.endCluster(); in breakTextIntoLines()
[all …]
H A DTextWrapper.h50 inline Cluster* endCluster() const { return fEnd.cluster(); } in endCluster() function
/dports/math/R-cran-raster/raster/man/
H A Dcluster.Rd4 \alias{endCluster}
10 \code{beginCluster} creates, and \code{endCluster} deletes a 'snow' cluster object. This object can…
16 endCluster closes the cluster and removes the object.
29 endCluster()
53 beginCluster and endCluster: None. The side effect is to create or delete a cluster object.
109 endCluster()
/dports/math/R-cran-raster/raster/R/
H A DmultiCore.R16 endCluster()
51 endCluster <- function() { function
/dports/games/libretro-desmume2015/desmume2015-d6128e6/desmume/src/utils/
H A Demufat.cpp743 u32 endCluster = bgnCluster; in allocContiguous() local
749 for (u32 n = 0;; n++, endCluster++) { in allocContiguous()
754 if (endCluster > fatEnd) { in allocContiguous()
755 bgnCluster = endCluster = 2; in allocContiguous()
758 if (!fatGet(endCluster, &f)) return false; in allocContiguous()
762 bgnCluster = endCluster + 1; in allocContiguous()
763 } else if ((endCluster - bgnCluster + 1) == count) { in allocContiguous()
769 if (!fatPutEOC(endCluster)) return false; in allocContiguous()
772 while (endCluster > bgnCluster) { in allocContiguous()
773 if (!fatPut(endCluster - 1, endCluster)) return false; in allocContiguous()
[all …]
/dports/graphics/gegl/gegl-0.4.34/subprojects/poly2tri-c/poly2tri-c/refine/
H A Ddelaunay-terminator.c370 P2trCluster *endCluster = p2tr_cluster_get_for (s->end, s); in SplitPermitted() local
378 || ((startCluster != NULL) ^ (endCluster == NULL))) in SplitPermitted()
385 S_NOREF = (startCluster != NULL) ? startCluster : endCluster; in SplitPermitted()
403 if (endCluster) p2tr_cluster_free (endCluster); in SplitPermitted()
/dports/multimedia/mxflib/mxflib-1.0.1/mxf2dot/
H A DDotFile.h52 void endCluster(void);
H A DDotFile.cpp118 void DotFile::endCluster(void) in endCluster() function in DotFile
607 testFile.endCluster(); in test()
H A Dmxf2dot.cpp282 dotFile->endCluster(); in outputObject()