Searched refs:byteLen (Results 1 - 8 of 8) sorted by relevance
/third_party/skia/modules/skplaintexteditor/src/ |
H A D | word_boundaries.h | 10 std::vector<bool> GetUtf8WordBoundaries(const char* begin, std::size_t byteLen, const char* locale);
|
H A D | editor.cpp | 146 Editor::TextPosition Editor::insert(TextPosition pos, const char* utf8Text, size_t byteLen) { in insert() argument 147 if (!valid_utf8(utf8Text, byteLen) || 0 == byteLen) { in insert() 153 fLines[pos.fParagraphIndex].fText.insert(pos.fTextByteIndex, utf8Text, byteLen); in insert() 158 fLines.push_back(Editor::TextLine(StringSlice(utf8Text, byteLen))); in insert() 160 pos = Editor::TextPosition{pos.fTextByteIndex + byteLen, pos.fParagraphIndex}; in insert()
|
/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/ |
H A D | BitReader.java | 270 static void bytesToNibbles(State s, int byteLen) { in bytesToNibbles() argument 272 int halfLen = byteLen >> LOG_HALF_SIZE; in bytesToNibbles()
|
/third_party/skia/modules/canvaskit/ |
H A D | memory.js | 27 var byteLen = len * typedArray.BYTES_PER_ELEMENT; 28 var ptr = CanvasKit._malloc(byteLen);
|
H A D | canvaskit_bindings.cpp | 1919 size_t byteLen, in EMSCRIPTEN_BINDINGS() 1925 return SkTextBlob::MakeFromRSXform(glyphs, byteLen, xforms, font, SkTextEncoding::kGlyphID); in EMSCRIPTEN_BINDINGS() 1933 size_t byteLen, const SkFont& font)->sk_sp<SkTextBlob> { in EMSCRIPTEN_BINDINGS() 1935 return SkTextBlob::MakeFromText(glyphs, byteLen, font, SkTextEncoding::kGlyphID); in EMSCRIPTEN_BINDINGS()
|
/third_party/skia/modules/skplaintexteditor/include/ |
H A D | editor.h | 77 TextPosition insert(TextPosition, const char* utf8Text, size_t byteLen);
|
/third_party/node/lib/ |
H A D | buffer.js | 1078 const byteLen = TypedArrayPrototypeGetByteLength(buf); 1080 if (offset > end || fillLength + offset > byteLen)
|
/third_party/skia/third_party/externals/brotli/js/ |
H A D | decode.js | 1712 * @param {number} byteLen 1715 function bytesToNibbles(s, byteLen) { 1717 var /** number */ halfLen = byteLen >> 1;
|
Completed in 13 milliseconds