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

1 2

  /external/skia/tools/
win_lcid.cpp 5 BOOL CALLBACK MyFuncLocaleEx(LPWSTR pStr, DWORD dwFlags, LPARAM lparam) {
9 bufferSize = GetLocaleInfoEx(pStr, LOCALE_SENGLANGUAGE, wcBuffer, BUFFER_SIZE);
11 wprintf(L"Locale %s had error %d\n", pStr, GetLastError());
15 LCID lcid = LocaleNameToLCID(pStr, NULL);
24 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;
GNUArchiveReader.cpp 61 bool GNUArchiveReader::isArchive(const char* pStr) const {
62 return (memcmp(pStr, Archive::MAGIC, Archive::MAGIC_LEN) == 0);
66 bool GNUArchiveReader::isThinArchive(const char* pStr) const {
67 return (memcmp(pStr, Archive::THIN_MAGIC, Archive::MAGIC_LEN) == 0);
  /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;
  /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 231 FX_DWORD FX_HashCode_String_GetA(FX_LPCSTR pStr, FX_INT32 iLength, FX_BOOL bIgnoreCase)
233 FXSYS_assert(pStr != NULL);
235 iLength = (FX_INT32)FXSYS_strlen(pStr);
237 FX_LPCSTR pStrEnd = pStr + iLength;
240 while (pStr < pStrEnd) {
241 dwHashCode = 31 * dwHashCode + FXSYS_tolower(*pStr++);
244 while (pStr < pStrEnd) {
245 dwHashCode = 31 * dwHashCode + *pStr ++;
250 FX_DWORD FX_HashCode_String_GetW(FX_LPCWSTR pStr, FX_INT32 iLength, FX_BOOL bIgnoreCase)
252 FXSYS_assert(pStr != NULL)
    [all...]
fx_basic_maps.cpp 392 static FX_BOOL _CompactStringSame(_CompactString* pCompact, FX_LPCBYTE pStr, int len)
398 return FXSYS_memcmp32(&pCompact->m_LenHigh, pStr, len) == 0;
403 return FXSYS_memcmp32(pCompact->m_pBuffer, pStr, len) == 0;
405 static void _CompactStringStore(_CompactString* pCompact, FX_LPCBYTE pStr, int len)
409 FXSYS_memcpy32(&pCompact->m_LenHigh, pStr, len);
416 FXSYS_memcpy32(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...]
  /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/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/include/javascript/
PublicMethods.h 80 static CFX_WideString StrLTrim(FX_LPCWSTR pStr);
81 static CFX_WideString StrRTrim(FX_LPCWSTR pStr);
82 static CFX_WideString StrTrim(FX_LPCWSTR pStr);
84 static CFX_ByteString StrLTrim(FX_LPCSTR pStr);
85 static CFX_ByteString StrRTrim(FX_LPCSTR pStr);
86 static CFX_ByteString StrTrim(FX_LPCSTR pStr);
JS_Value.h 30 CJS_Value(v8::Isolate* isolate, FX_LPCSTR pStr);
63 void operator = (FX_LPCSTR pStr);
  /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)
  /external/pdfium/core/include/fxcrt/
fx_ext.h 45 FX_DWORD FX_HashCode_String_GetA(FX_LPCSTR pStr, FX_INT32 iLength, FX_BOOL bIgnoreCase = FALSE);
46 FX_DWORD FX_HashCode_String_GetW(FX_LPCWSTR pStr, FX_INT32 iLength, FX_BOOL bIgnoreCase = FALSE);
  /external/pdfium/core/src/fxge/android/
fpf_skiafontmgr.cpp 106 static FX_UINT32 FPF_GetHashCode_StringA(FX_LPCSTR pStr, FX_INT32 iLength, FX_BOOL bIgnoreCase = FALSE)
108 if (!pStr) {
112 iLength = FXSYS_strlen(pStr);
114 FX_LPCSTR pStrEnd = pStr + iLength;
117 while (pStr < pStrEnd) {
118 uHashCode = 31 * uHashCode + FXSYS_tolower(*pStr++);
121 while (pStr < pStrEnd) {
122 uHashCode = 31 * uHashCode + *pStr ++;
  /external/pdfium/fpdfsdk/src/javascript/
PublicMethods.cpp 216 CFX_WideString CJS_PublicMethods::StrLTrim(FX_LPCWSTR pStr)
218 while (*pStr && *pStr == L' ') pStr++;
220 return pStr;
223 CFX_WideString CJS_PublicMethods::StrRTrim(FX_LPCWSTR pStr)
225 FX_LPCWSTR p = pStr;
227 while (p > pStr && *(p - 1) == L' ') p--;
229 return CFX_WideString(pStr, p - pStr);
    [all...]
JS_Value.cpp 65 CJS_Value::CJS_Value(v8::Isolate* isolate, FX_LPCSTR pStr):m_isolate(isolate)
67 operator = (pStr);
217 void CJS_Value::operator = (FX_LPCSTR pStr)
219 operator = (CFX_WideString::FromLocal(pStr).c_str());
  /external/opencv/cvaux/include/
cvvidsurv.hpp 73 char** pStr;
172 pP->pStr = pAddr?pAddr:&(pP->Str);
176 pP->pStr[0] = pP->Str;
260 if(p->pStr)
265 p->pStr[0] = p->Str;
360 void SetNickName(const char* pStr)
367 if(pStr)
368 m_pNickName = strdup(pStr);
    [all...]
  /external/pdfium/core/src/fxge/apple/
apple_int.h 242 FX_UINT32 FX_GetHashCode( FX_LPCSTR pStr);

Completed in 1649 milliseconds

1 2