Home
last modified time | relevance | path

Searched refs:pStr (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/tools/
Dwin_lcid.cpp11 BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam) { in MyFuncLocaleEx() argument
15 bufferSize = GetLocaleInfoEx(pStr, LOCALE_SENGLANGUAGE, wcBuffer, BUFFER_SIZE); in MyFuncLocaleEx()
17 wprintf(L"Locale %s had error %d\n", pStr, GetLastError()); in MyFuncLocaleEx()
21 LCID lcid = LocaleNameToLCID(pStr, nullptr); in MyFuncLocaleEx()
30 wprintf(L" { 0x%.4x, \"%s\" }, //%s\n", lcid, pStr, wcBuffer); in MyFuncLocaleEx()
/third_party/node/deps/icu-small/source/common/
Duniset_closure.cpp280 const UnicodeString *pStr = (const UnicodeString *) strings->elementAt(j); in closeOverCaseInsensitive() local
282 if (scfString(*pStr, str)) { in closeOverCaseInsensitive()
283 foldSet.remove(*pStr).add(str); in closeOverCaseInsensitive()
286 str = *pStr; in closeOverCaseInsensitive()
338 const UnicodeString *pStr = (const UnicodeString *) strings->elementAt(j); in closeOverAddCaseMappings() local
339 (str = *pStr).toLower(root); in closeOverAddCaseMappings()
342 (str = *pStr).toTitle(bi, root); in closeOverAddCaseMappings()
345 (str = *pStr).toUpper(root); in closeOverAddCaseMappings()
347 (str = *pStr).foldCase(); in closeOverAddCaseMappings()
/third_party/icu/icu4c/source/common/
Duniset_closure.cpp223 const UnicodeString *pStr; in closeOver() local
226 pStr = (const UnicodeString *) strings->elementAt(j); in closeOver()
227 (str = *pStr).toLower(root); in closeOver()
230 (str = *pStr).toTitle(bi, root); in closeOver()
233 (str = *pStr).toUpper(root); in closeOver()
235 (str = *pStr).foldCase(); in closeOver()
/third_party/skia/third_party/externals/icu/source/common/
Duniset_closure.cpp223 const UnicodeString *pStr; in closeOver() local
226 pStr = (const UnicodeString *) strings->elementAt(j); in closeOver()
227 (str = *pStr).toLower(root); in closeOver()
230 (str = *pStr).toTitle(bi, root); in closeOver()
233 (str = *pStr).toUpper(root); in closeOver()
235 (str = *pStr).foldCase(); in closeOver()
/third_party/node/deps/openssl/openssl/crypto/bn/
Drsaz_exp_x2.c505 static ossl_inline void put_digit52(uint8_t *pStr, int strLen, uint64_t digit)
507 assert(pStr != NULL);
510 *pStr++ = (uint8_t)(digit & 0xFF);
/third_party/openssl/crypto/bn/
Drsaz_exp_x2.c505 static ossl_inline void put_digit52(uint8_t *pStr, int strLen, uint64_t digit)
507 assert(pStr != NULL);
510 *pStr++ = (uint8_t)(digit & 0xFF);
/third_party/elfio/elfio/
Delfio_symbols.hpp452 const char* pStr = in generic_get_symbol() local
454 if ( nullptr != pStr ) { in generic_get_symbol()
455 name = pStr; in generic_get_symbol()
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12MemAlloc.cpp335 static inline bool StrIsEmpty(const char* pStr) in StrIsEmpty() argument
337 return pStr == NULL || *pStr == '\0'; in StrIsEmpty()
1059 void WriteString(LPCWSTR pStr);
1060 void BeginString(LPCWSTR pStr = NULL);
1061 void ContinueString(LPCWSTR pStr);
1066 void EndString(LPCWSTR pStr = NULL);
1162 void JsonWriter::WriteString(LPCWSTR pStr) in WriteString() argument
1164 BeginString(pStr); in WriteString()
1168 void JsonWriter::BeginString(LPCWSTR pStr) in BeginString() argument
1175 if (pStr != NULL) in BeginString()
[all …]
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h4324 static inline bool VmaStrIsEmpty(const char* pStr) in VmaStrIsEmpty() argument
4326 return pStr == VMA_NULL || *pStr == '\0'; in VmaStrIsEmpty()
8027 void Add(const char* pStr);
8037 void VmaStringBuilder::Add(const char* pStr) in Add() argument
8039 const size_t strLen = strlen(pStr); in Add()
8044 memcpy(m_Data.data() + oldCount, pStr, strLen); in Add()
8103 void WriteString(const char* pStr);
8104 void BeginString(const char* pStr = VMA_NULL);
8105 void ContinueString(const char* pStr);
8109 void EndString(const char* pStr = VMA_NULL);
[all …]
/third_party/sqlite/src/
Dsqlite3.c23097 SQLITE_PRIVATE void sqlite3VdbeMemPrettyPrint(Mem *pMem, StrAccum *pStr);
32050 sqlite3_str *pStr = sqlite3_str_new(0);
32052 sqlite3_str_appendf(pStr, "IN flags=0x%x", pExpr->flags);
32053 if( pExpr->iTable ) sqlite3_str_appendf(pStr, " iTable=%d",pExpr->iTable);
32055 sqlite3_str_appendf(pStr, " subrtn(%d,%d)",
32058 z = sqlite3_str_finish(pStr);
82408 DblquoteStr *pStr = sqlite3DbMallocRawNN(db,
82409 sizeof(*pStr)+n+1-sizeof(pStr->z));
82410 if( pStr ){
82411 pStr->pNextStr = p->pDblStr;
[all …]
Dshell.c4547 sqlite3_str *pStr; in re_bytecode_func() local
4564 pStr = sqlite3_str_new(0); in re_bytecode_func()
4565 if( pStr==0 ) goto re_bytecode_func_err; in re_bytecode_func()
4567 sqlite3_str_appendf(pStr, "INIT "); in re_bytecode_func()
4569 sqlite3_str_appendf(pStr, "%02x", pRe->zInit[i]); in re_bytecode_func()
4571 sqlite3_str_appendf(pStr, "\n"); in re_bytecode_func()
4574 sqlite3_str_appendf(pStr, "%-8s %4d\n", in re_bytecode_func()
4577 n = sqlite3_str_length(pStr); in re_bytecode_func()
4578 z = sqlite3_str_finish(pStr); in re_bytecode_func()
17149 sqlite3_str *pStr = sqlite3_str_new(0); in save_err_msg() local
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dusettest.cpp1364 const UnicodeString *pStr; in TestCloseOver()
1391 pStr=&si.getString(); in TestCloseOver()
1393 s.add(*pStr); in TestCloseOver()