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

1 2

  /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);
  /external/skqp/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/core/fxcrt/
cfx_seekablestreamproxy.cpp 105 void SwapByteOrder(wchar_t* pStr, size_t iLength) {
106 ASSERT(pStr);
111 wch = static_cast<uint16_t>(*pStr);
114 *pStr = wch;
115 ++pStr;
121 wch = static_cast<uint16_t>(*pStr);
123 *pStr = wch;
124 ++pStr;
226 size_t CFX_SeekableStreamProxy::ReadString(wchar_t* pStr,
229 if (!pStr || iMaxLength == 0
    [all...]
string_data_template.h 50 static StringDataTemplate* Create(const CharType* pStr, size_t nLen) {
52 result->CopyContents(pStr, nLen);
73 void CopyContents(const CharType* pStr, size_t nLen) {
75 memcpy(m_String, pStr, nLen * sizeof(CharType));
79 void CopyContentsAt(size_t offset, const CharType* pStr, size_t nLen) {
81 memcpy(m_String + offset, pStr, nLen * sizeof(CharType));
widestring.cpp 63 for (const wchar_t* pStr = pFormat; *pStr != 0; pStr++) {
64 if (*pStr != '%' || *(pStr = pStr + 1) == '%') {
70 for (; *pStr != 0; pStr++) {
71 if (*pStr == '#') {
73 } else if (*pStr == '*')
    [all...]
cfx_seekablestreamproxy.h 32 size_t ReadString(wchar_t* pStr, size_t iMaxLength, bool* bEOS);
bytestring.cpp 149 ByteString::ByteString(const char* pStr, size_t nLen) {
151 m_pData.Reset(StringData::Create(pStr, nLen));
154 ByteString::ByteString(const uint8_t* pStr, size_t nLen) {
157 StringData::Create(reinterpret_cast<const char*>(pStr), nLen));
223 const ByteString& ByteString::operator=(const char* pStr) {
224 if (!pStr || !pStr[0])
227 AssignCopy(pStr, strlen(pStr));
248 const ByteString& ByteString::operator+=(const char* pStr) {
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
sfunc.c 101 OFF_T my_strtofft(const char *pStr)
108 for (;; pStr++) {
109 switch (*pStr) {
123 pStr++;
128 while (*pStr >= '0' && *pStr <= '9') {
129 value = (value * 10) + (*pStr++ - '0');
132 while ((*pStr >= '0' && *pStr <= '9') ||
133 (*pStr >= 'A' && *pStr <= 'F') |
    [all...]
sfunc.h 120 OFF_T my_strtofft(const char *pStr);
  /system/bt/embdrv/sbc/decoder/include/
oi_string.h 108 * Copies the Null terminated string from pStr to pDest, and
112 OI_CHAR* OI_Strcpy(OI_CHAR* pDest, OI_CHAR const* pStr);
117 * Concatonates the pStr string to the end of pDest, and
121 OI_CHAR* OI_Strcat(OI_CHAR* pDest, OI_CHAR const* pStr);
126 * Calculates the number of OI_CHARs in pStr (not including
129 OI_UINT OI_StrLen(OI_CHAR const* pStr);
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 70 int32_t ParseTimeZone(const wchar_t* pStr, int32_t iLen, FX_TIMEZONE* tz) {
79 tz->tzHour = tz->tzHour * 10 + FXSYS_DecimalCharToInt(pStr[iStart++]);
81 if (iStart < iLen && pStr[iStart] == ':')
86 tz->tzMinute = tz->tzMinute * 10 + FXSYS_DecimalCharToInt(pStr[iStart++]);
88 if (pStr[0] == '-')
181 const wchar_t* pStr = wsNum.c_str();
184 if (pStr[ccf] == '\'') {
185 GetLiteralText(pStr, &ccf, iLenf);
187 !wcsncmp(pStr + ccf, wsDotSymbol.c_str(), iLenDot)) {
843 const wchar_t* pStr = wsFormatString.c_str()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adshlp.h 28 LPWSTR WINAPI AllocADsStr (LPCWSTR pStr);
29 WINBOOL WINAPI FreeADsStr (LPWSTR pStr);
30 WINBOOL WINAPI ReallocADsStr (LPWSTR *ppStr, LPWSTR pStr);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
DHPrivateKeyTest.java 55 String pStr = "FFFFFFFFFFFFFFFFADF85458A2BB4A9AAFDC5620273D3CF1" +
66 BigInteger p = new BigInteger(new BigInteger(pStr, 16).toByteArray());
DHPublicKeyTest.java 55 String pStr = "FFFFFFFFFFFFFFFFADF85458A2BB4A9AAFDC5620273D3CF1" +
66 BigInteger p = new BigInteger(new BigInteger(pStr, 16).toByteArray());
  /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/swiftshader/third_party/PowerVR_SDK/Shell/
PVRShellImpl.h 110 @brief Set command-line options to pStr
111 @param[in] pStr Input string
113 void Set(const char *pStr);
117 @param[in] pStr Input string
119 void Prefix(const char *pStr);
  /external/pdfium/fxjs/
cjs_object.cpp 19 : pEngine->NewString(consts[i].pStr).As<v8::Value>());
cjs_object.h 23 const char* pStr;

Completed in 430 milliseconds

1 2