Home
last modified time | relevance | path

Searched refs:getGlyphIDs (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/modules/canvaskit/tests/
Dfont.spec.js138 const ids = notoSerif.getGlyphIDs('AEGIS ægis');
285 const ids = font.getGlyphIDs('M');
326 const ids = font.getGlyphIDs('I');
343 const ids = font.getGlyphIDs('I');
/third_party/skia/modules/canvaskit/
Dfont.js38 CanvasKit.Font.prototype.getGlyphIDs = function(str, numGlyphIDs, optionalOutputArray) { method in CanvasKit.Font
145 CanvasKit.Typeface.prototype.getGlyphIDs = function(str, numGlyphIDs, optionalOutputArray) { method in CanvasKit.Typeface
195 var ids = font.getGlyphIDs(str);
Dexterns.js371 getGlyphIDs: function() {},
710 getGlyphIDs: function() {},
DCHANGELOG.md66 - `Typeface.getGlyphIDs` - provides the same functionality as `Font.getGlyphIDs`.
74 - `Font.getGlyphIDs` had the wrong type for the third argument. It is now correctly a Uint16Array.
301 - `Font.getWidths` in favor of `Font.getGlyphIDs` and `Font.getGlyphWidths`.
396 - `SkFont.getGlyphIDs`, `SkFont.getGlyphBounds`, `SkFont.getGlyphWidths` for turning code points
/third_party/skia/modules/canvaskit/npm_build/types/
Dcanvaskit-wasm-tests.ts337 const ids = font.getGlyphIDs('abcd');
338 font.getGlyphIDs('efgh', 4, ids);
904 const ids = font.getGlyphIDs('abc');
921 const ids = face!.getGlyphIDs('abcd');
922 face!.getGlyphIDs('efgh', 4, ids);
Dindex.d.ts1642 getGlyphIDs(str: string, numCodePoints?: number, method
2707 getGlyphIDs(str: string, numCodePoints?: number, method
/third_party/skia/tools/perf-canvaskit-puppeteer/
Dcanvas_perf.js704 ctx.robotoFont.getGlyphIDs(String.fromCodePoint(i), 1, output);