HomeSort by relevance Sort by last modified time
    Searched refs:pStr (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/skia/tools/
win_lcid.cpp 11 BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam) {
15 bufferSize = GetLocaleInfoEx(pStr, LOCALE_SENGLANGUAGE, wcBuffer, BUFFER_SIZE);
17 wprintf(L"Locale %s had error %d\n", pStr, GetLastError());
21 LCID lcid = LocaleNameToLCID(pStr, nullptr);
30 wprintf(L" { 0x%.4x, \"%s\" }, //%s\n", lcid, pStr, wcBuffer);
  /frameworks/compile/mclinker/lib/LD/
MsgHandler.cpp 28 void MsgHandler::addString(llvm::StringRef pStr) const {
32 m_Engine.state().ArgumentStrs[m_NumArgs++] = pStr.data();
35 void MsgHandler::addString(const std::string& pStr) const {
39 m_Engine.state().ArgumentStrs[m_NumArgs++] = pStr;
MergedStringTable.cpp 37 size_t MergedStringTable::getOutputOffset(llvm::StringRef pStr) {
38 assert(m_StringMap.find(pStr) != m_StringMap.end());
39 return m_StringMap[pStr];
DebugString.cpp 30 static inline size_t string_length(const char* pStr) {
31 const char* p = pStr;
  /frameworks/compile/mclinker/include/mcld/LD/
MsgHandler.h 31 void addString(llvm::StringRef pStr) const;
33 void addString(const std::string& pStr) const;
47 llvm::StringRef pStr) {
48 pHandler.addString(pStr);
53 const std::string& pStr) {
54 pHandler.addString(pStr);
65 const char* pStr) {
66 pHandler.addTaggedVal(reinterpret_cast<intptr_t>(pStr),
GNUArchiveReader.h 41 bool isArchive(const char* pStr) const;
44 bool isThinArchive(const char* pStr) const;
MergedStringTable.h 46 size_t getOutputOffset(llvm::StringRef pStr);
EhFrame.h 100 void setPersonalityName(const std::string& pStr) {
101 m_PersonalityName = pStr;
105 void setAugmentationData(const std::string& pStr) {
106 m_AugmentationData = pStr;
  /external/pdfium/xfa/src/fgas/src/crt/
fx_encode.cpp 8 void FX_SwapByteOrder(FX_WCHAR* pStr, int32_t iLength) {
9 FXSYS_assert(pStr != NULL);
11 iLength = FXSYS_wcslen(pStr);
16 wch = (FX_WORD)*pStr;
19 *pStr++ = wch;
23 wch = (FX_WORD)*pStr;
25 *pStr++ = wch;
98 inline FX_DWORD FX_DWordFromBytes(const uint8_t* pStr) {
99 return FXBSTR_ID(pStr[3], pStr[2], pStr[1], pStr[0]);
    [all...]
fx_stream.h 29 virtual int32_t ReadString(FX_WCHAR* pStr,
33 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) = 0;
52 virtual int32_t ReadString(FX_WCHAR* pStr, int32_t iMaxLength, FX_BOOL& bEOS);
54 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength);
72 virtual int32_t ReadString(FX_WCHAR* pStr, int32_t iMaxLength, FX_BOOL& bEOS);
74 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength);
95 virtual int32_t ReadString(FX_WCHAR* pStr, int32_t iMaxLength, FX_BOOL& bEOS);
99 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) {
125 virtual int32_t ReadString(FX_WCHAR* pStr, int32_t iMaxLength, FX_BOOL& bEOS);
129 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) {
    [all...]
fx_algorithm.cpp 272 int32_t FX_SeparateStringW(const FX_WCHAR* pStr,
276 if (pStr == NULL) {
280 iStrLen = FXSYS_wcslen(pStr);
282 const FX_WCHAR* pToken = pStr;
283 const FX_WCHAR* pEnd = pStr + iStrLen;
285 if (pStr >= pEnd || delimiter == *pStr) {
286 CFX_WideString sub(pToken, pStr - pToken);
288 pToken = pStr + 1;
289 if (pStr >= pEnd) {
    [all...]
fx_stream.cpp 200 int32_t CFX_FileStreamImp::ReadString(FX_WCHAR* pStr,
204 FXSYS_assert(pStr != NULL && iMaxLength > 0);
213 iLen = FXSYS_fread(pStr, 2, iLen, m_hFile);
215 while (*pStr != L'\0' && iCount < iLen) {
216 pStr++, iCount++;
238 int32_t CFX_FileStreamImp::WriteString(const FX_WCHAR* pStr, int32_t iLength) {
240 FXSYS_assert(pStr != NULL && iLength > 0);
241 int32_t iRet = FXSYS_fwrite(pStr, 2, iLength, m_hFile);
309 int32_t CFX_FileReadStreamImp::ReadString(FX_WCHAR* pStr,
313 FXSYS_assert(pStr != NULL && iMaxLength > 0);
    [all...]
  /system/bt/embdrv/sbc/decoder/include/
oi_string.h 111 * Copies the Null terminated string from pStr to pDest, and
116 OI_CHAR const *pStr);
121 * Concatonates the pStr string to the end of pDest, and
126 OI_CHAR const *pStr) ;
131 * Calculates the number of OI_CHARs in pStr (not including
134 OI_UINT OI_StrLen(OI_CHAR const *pStr) ;
  /external/pdfium/core/src/fxcrt/
fx_extension.cpp 219 FX_DWORD FX_HashCode_String_GetA(const FX_CHAR* pStr,
222 FXSYS_assert(pStr);
224 iLength = (int32_t)FXSYS_strlen(pStr);
226 const FX_CHAR* pStrEnd = pStr + iLength;
229 while (pStr < pStrEnd) {
230 dwHashCode = 31 * dwHashCode + FXSYS_tolower(*pStr++);
233 while (pStr < pStrEnd) {
234 dwHashCode = 31 * dwHashCode + *pStr++;
239 FX_DWORD FX_HashCode_String_GetW(const FX_WCHAR* pStr,
242 FXSYS_assert(pStr);
    [all...]
fx_basic_maps.cpp 180 const uint8_t* pStr,
186 return FXSYS_memcmp(&pCompact->m_LenHigh, pStr, len) == 0;
192 return FXSYS_memcmp(pCompact->m_pBuffer, pStr, len) == 0;
195 const uint8_t* pStr,
199 FXSYS_memcpy(&pCompact->m_LenHigh, pStr, len);
206 FXSYS_memcpy(pCompact->m_pBuffer, pStr, len);
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp 739 uint8 *pStrength, *pStr;
801 pStr = pStrength + 4;
803 if (*pStr == 0)
808 if (tmp >= 4) *pStr = 1;
812 if (tmp >= 4) *pStr = 1;
817 pStr = pStrength + 8;
819 if (*pStr == 0)
825 if (tmp >= 4) *pStr = 1;
829 if (tmp >= 4) *pStr = 1;
851 pStr = pStrength + 1
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_basic_imp.h 33 virtual int32_t ReadString(FX_WCHAR* pStr,
40 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adshlp.h 26 LPWSTR WINAPI AllocADsStr(LPCWSTR pStr);
27 WINBOOL WINAPI FreeADsStr(LPWSTR pStr);
28 WINBOOL WINAPI ReallocADsStr(LPWSTR *ppStr,LPWSTR pStr);
  /external/pdfium/xfa/src/fgas/include/
fx_stm.h 55 virtual int32_t ReadString(FX_WCHAR* pStr,
60 virtual int32_t WriteString(const FX_WCHAR* pStr, int32_t iLength) = 0;
fx_alg.h 17 int32_t FX_SeparateStringW(const FX_WCHAR* pStr,
  /external/icu/icu4c/source/common/
uniset_closure.cpp 253 const UnicodeString *pStr;
256 pStr = (const UnicodeString *) strings->elementAt(j);
257 (str = *pStr).toLower(root);
260 (str = *pStr).toTitle(bi, root);
263 (str = *pStr).toUpper(root);
265 (str = *pStr).foldCase();
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.h 161 static CFX_WideString StrLTrim(const FX_WCHAR* pStr);
162 static CFX_WideString StrRTrim(const FX_WCHAR* pStr);
163 static CFX_WideString StrTrim(const FX_WCHAR* pStr);
165 static CFX_ByteString StrLTrim(const FX_CHAR* pStr);
166 static CFX_ByteString StrRTrim(const FX_CHAR* pStr);
167 static CFX_ByteString StrTrim(const FX_CHAR* pStr);
PublicMethods.cpp 155 CFX_WideString CJS_PublicMethods::StrLTrim(const FX_WCHAR* pStr) {
156 while (*pStr && *pStr == L' ')
157 pStr++;
159 return pStr;
162 CFX_WideString CJS_PublicMethods::StrRTrim(const FX_WCHAR* pStr) {
163 const FX_WCHAR* p = pStr;
166 while (p > pStr && *(p - 1) == L' ')
169 return CFX_WideString(pStr, p - pStr);
    [all...]
  /hardware/ti/omap4-aah/security/tf_daemon/
smc_properties.c 311 char *pStr = SMCPropGetSystemProperty(&gConfFile, pProp);
312 if (pStr == NULL)
317 if (libString2GetStringAsInt(pStr, (uint32_t*)pVal) == S_SUCCESS)
  /hardware/ti/omap4xxx/security/tf_daemon/
smc_properties.c 311 char *pStr = SMCPropGetSystemProperty(&gConfFile, pProp);
312 if (pStr == NULL)
317 if (libString2GetStringAsInt(pStr, (uint32_t*)pVal) == S_SUCCESS)

Completed in 347 milliseconds

1 2 3