Home
last modified time | relevance | path

Searched refs:strPtr (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/modules/canvaskit/
Dfont.js10 var strPtr = CanvasKit._malloc(strLen + 1);
11 stringToUTF8(str, strPtr, strLen + 1);
12 this._drawSimpleText(strPtr, strLen, x, y, font, paint);
13 CanvasKit._free(strPtr);
46 var strPtr = CanvasKit._malloc(strBytes);
47 stringToUTF8(str, strPtr, strBytes); // This includes the null terminator
52 var actualIDs = this._getGlyphIDs(strPtr, strBytes - 1, numGlyphIDs, glyphPtr);
53 CanvasKit._free(strPtr);
153 var strPtr = CanvasKit._malloc(strBytes);
154 stringToUTF8(str, strPtr, strBytes); // This includes the null terminator
[all …]
Dparticles.js33 var strPtr = CanvasKit._malloc(strLen);
35 stringToUTF8(key, strPtr, strLen);
36 assetNamePtrs.push(strPtr);
Dparagraph.js146 var strPtr = cacheOrCopyString(strings[i]);
147 sPtrs.push(strPtr);
166 var strPtr = CanvasKit._malloc(strLen);
167 stringToUTF8(str, strPtr, strLen);
168 stringCache[str] = strPtr;
169 return strPtr;
Dskottie.js47 var strPtr = CanvasKit._malloc(strLen);
49 stringToUTF8(key, strPtr, strLen);
50 assetNamePtrs.push(strPtr);
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
Ddcfmtsym.h509 const UnicodeString *strPtr; in getSymbol() local
511 strPtr = &fSymbols[symbol]; in getSymbol()
513 strPtr = &fNoSymbol; in getSymbol()
515 return *strPtr; in getSymbol()
521 const UnicodeString *strPtr; in getConstSymbol() local
523 strPtr = &fSymbols[symbol]; in getConstSymbol()
525 strPtr = &fNoSymbol; in getConstSymbol()
527 return *strPtr; in getConstSymbol()
/third_party/icu/icu4c/source/i18n/unicode/
Ddcfmtsym.h515 const UnicodeString *strPtr; in getSymbol() local
517 strPtr = &fSymbols[symbol]; in getSymbol()
519 strPtr = &fNoSymbol; in getSymbol()
521 return *strPtr; in getSymbol()
527 const UnicodeString *strPtr; in getConstSymbol() local
529 strPtr = &fSymbols[symbol]; in getConstSymbol()
531 strPtr = &fNoSymbol; in getConstSymbol()
533 return *strPtr; in getConstSymbol()
/third_party/node/deps/icu-small/source/i18n/unicode/
Ddcfmtsym.h522 const UnicodeString *strPtr; in getSymbol() local
524 strPtr = &fSymbols[symbol]; in getSymbol()
526 strPtr = &fNoSymbol; in getSymbol()
528 return *strPtr; in getSymbol()
534 const UnicodeString *strPtr; in getConstSymbol() local
536 strPtr = &fSymbols[symbol]; in getConstSymbol()
538 strPtr = &fNoSymbol; in getConstSymbol()
540 return *strPtr; in getConstSymbol()
/third_party/skia/experimental/skottiekit/
Dinterface.js92 var strPtr = SkottieKit._malloc(strLen);
94 stringToUTF8(key, strPtr, strLen);
95 assetNamePtrs.push(strPtr);
/third_party/icu/icu4c/source/test/intltest/
Dnumberformattesttuple.cpp107 const UnicodeString &str, void *strPtr, UErrorCode & /*status*/) { in identVal() argument
108 *static_cast<UnicodeString *>(strPtr) = str; in identVal()
112 const void *strPtr, UnicodeString &appendTo) { in identStr() argument
113 appendTo.append(*static_cast<const UnicodeString *>(strPtr)); in identStr()
Dnumbertest_affixutils.cpp186 for (const char16_t *strPtr : invalidExamples) { in testInvalid() local
187 UnicodeString str(strPtr); in testInvalid()
Dformatted_string_builder_test.cpp62 for (const char16_t* strPtr : EXAMPLE_STRINGS) { in testInsertAppendUnicodeString() local
63 UnicodeString str(strPtr); in testInsertAppendUnicodeString()
/third_party/cef/tests/cefclient/browser/
Droot_window_win.cc437 wchar_t strPtr[MAX_URL_LENGTH + 1] = {0}; in EditWndProc() local
438 *((LPWORD)strPtr) = MAX_URL_LENGTH; in EditWndProc()
439 LRESULT strLen = SendMessage(hWnd, EM_GETLINE, 0, (LPARAM)strPtr); in EditWndProc()
441 strPtr[strLen] = 0; in EditWndProc()
442 browser->GetMainFrame()->LoadURL(strPtr); in EditWndProc()
/third_party/skia/tests/
DPDFPrimitivesTest.cpp51 static bool eq(const SkString& str, const char* strPtr, size_t len) { in eq() argument
52 return len == str.size() && 0 == memcmp(str.c_str(), strPtr, len); in eq()
/third_party/icu/icu4c/source/test/cintltst/
Dcdattst.c465 UChar * strPtr; in TestRelativeDateFormat() local
566 strPtr = u_strstr(strDateTime, minutesStr); in TestRelativeDateFormat()
567 if ( strPtr != NULL ) { in TestRelativeDateFormat()
568 int32_t beginIndex = (int32_t)(strPtr - strDateTime); in TestRelativeDateFormat()