Searched refs:pString (Results 1 - 25 of 32) sorted by relevance

12

/external/apache-http/src/org/apache/commons/codec/
H A DStringDecoder.java35 * @param pString a String to encode
42 String decode(String pString) throws DecoderException; argument
H A DStringEncoder.java35 * @param pString a String to encode
42 String encode(String pString) throws EncoderException; argument
/external/apache-http/src/org/apache/commons/codec/net/
H A DQuotedPrintableCodec.java246 * @param pString
255 public String encode(String pString) throws EncoderException { argument
256 if (pString == null) {
260 return encode(pString, getDefaultCharset());
270 * @param pString
280 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException { argument
281 if (pString == null) {
284 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
291 * @param pString
300 public String decode(String pString) throw argument
386 encode(String pString, String charset) argument
[all...]
H A DURLCodec.java219 * @param pString string to convert to a URL safe form
220 * @param charset the charset for pString
225 public String encode(String pString, String charset) argument
228 if (pString == null) {
231 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII);
239 * @param pString string to convert to a URL safe form
245 public String encode(String pString) throws EncoderException { argument
246 if (pString == null) {
250 return encode(pString, getDefaultCharset());
262 * @param pString UR
269 decode(String pString, String charset) argument
290 decode(String pString) argument
[all...]
/external/pdfium/core/fpdfdoc/
H A Dcpdf_bookmark.cpp47 CPDF_String* pString = ToString(m_pDict->GetDirectObjectFor("Title"));
48 if (!pString)
51 WideString title = pString->GetUnicodeText();
H A Dcpdf_formfield.cpp628 CPDF_String* pString = ToString(pOption); local
629 return pString ? pString->GetUnicodeText() : WideString();
/external/apache-http/src/org/apache/commons/codec/language/
H A DRefinedSoundex.java130 * @param pString
134 public String encode(String pString) { argument
135 return soundex(pString);
H A DSoundex.java149 * @param pString
155 public String encode(String pString) { argument
156 return soundex(pString);
H A DMetaphone.java373 * @param pString String object to encode
376 public String encode(String pString) { argument
377 return metaphone(pString);
/external/pdfium/core/fpdfapi/font/
H A Dcpdf_cidfont.h49 uint32_t GetNextChar(const char* pString,
52 int CountChar(const char* pString, int size) const override;
H A Dcpdf_cmap.h64 uint32_t GetNextChar(const char* pString, int nStrLen, int& offset) const;
65 int CountChar(const char* pString, int size) const;
H A Dcpdf_font.h56 virtual uint32_t GetNextChar(const char* pString,
59 virtual int CountChar(const char* pString, int size) const;
78 int GetStringWidth(const char* pString, int size);
H A Dcpdf_font.cpp125 int CPDF_Font::CountChar(const char* pString, int size) const { argument
288 int CPDF_Font::GetStringWidth(const char* pString, int size) { argument
292 uint32_t charcode = GetNextChar(pString, size, offset);
349 uint32_t CPDF_Font::GetNextChar(const char* pString, argument
355 uint8_t ch = offset < nStrLen ? pString[offset++] : pString[nStrLen - 1];
H A Dcpdf_cmap.cpp340 uint32_t CPDF_CMap::GetNextChar(const char* pString, argument
343 auto* pBytes = reinterpret_cast<const uint8_t*>(pString);
405 int CPDF_CMap::CountChar(const char* pString, int size) const { argument
416 pString)[i]]) {
425 GetNextChar(pString, size, offset);
H A Dcpdf_cidfont.cpp754 uint32_t CPDF_CIDFont::GetNextChar(const char* pString, argument
757 return m_pCMap->GetNextChar(pString, nStrLen, offset);
764 int CPDF_CIDFont::CountChar(const char* pString, int size) const { argument
765 return m_pCMap->CountChar(pString, size);
/external/icu/icu4c/source/common/
H A Ducase.cpp875 const UChar **pString,
926 *pString=iDot;
929 *pString=jDot;
932 *pString=iOgonekDot;
935 *pString=iDotGrave;
938 *pString=iDotAcute;
941 *pString=iDotTilde;
964 *pString=nullptr;
980 *pString=iDot;
1001 *pString
873 ucase_toFullLower(UChar32 c, UCaseContextIterator *iter, void *context, const UChar **pString, int32_t loc) argument
1018 toUpperOrTitle(UChar32 c, UCaseContextIterator *iter, void *context, const UChar **pString, int32_t loc, UBool upperNotTitle) argument
1112 ucase_toFullUpper(UChar32 c, UCaseContextIterator *iter, void *context, const UChar **pString, int32_t caseLocale) argument
1120 ucase_toFullTitle(UChar32 c, UCaseContextIterator *iter, void *context, const UChar **pString, int32_t caseLocale) argument
1230 ucase_toFullFolding(UChar32 c, const UChar **pString, uint32_t options) argument
[all...]
H A Ducase.h237 * @param pString If the mapping result is a string, then the pointer is
238 * written to *pString.
249 const UChar **pString,
255 const UChar **pString,
261 const UChar **pString,
266 const UChar **pString,
281 const UChar **pString,
/external/swiftshader/third_party/PowerVR_SDK/Tools/
H A DPVRTString.cpp142 char* pString = m_pString; local
148 pString = (char*)malloc(newCapacity);
150 memmove(pString, m_pString, m_Size);
151 pString[m_Capacity-1]='\0';
155 memmove(pString + m_Size, _Ptr, _Count);
157 pString[m_Size] = 0;
160 if (pString != m_pString)
167 m_pString = pString;
217 char* pString = m_pString; local
222 pString
1581 char* pString = _Str.m_pString; local
[all...]
/external/pdfium/core/fpdfapi/parser/
H A Dfpdf_parser_decode.h26 ByteString PDF_EncodeText(const wchar_t* pString, int len);
H A Dfpdf_parser_decode.cpp469 ByteString PDF_EncodeText(const wchar_t* pString, int len) { argument
471 len = wcslen(pString);
479 if (PDFDocEncoding[code] == pString[i])
504 *dest_buf2++ = pString[j] >> 8;
505 *dest_buf2++ = static_cast<uint8_t>(pString[j]);
/external/owasp/sanitizer/lib/commons-codec-1.4/
H A Dcommons-codec-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/swiftshader/third_party/PowerVR_SDK/Shell/
H A DPVRShell.cpp1524 char *pString = new char[nSize]; local
1526 if(pString)
1528 snprintf(pString, nSize, "%s%s", pPath, pCL);
1530 if(!m_CommandLine.PrefixFromFile(pString))
1532 delete[] pString;
1535 pString = new char[nSize];
1537 snprintf(pString, nSize, "%s%s", pPath, pCL);
1539 if(m_CommandLine.PrefixFromFile(pString))
1540 m_pShell->PVRShellOutputDebug("Loaded command-line options from %s.\n", pString);
1543 m_pShell->PVRShellOutputDebug("Loaded command-line options from %s.\n", pString);
[all...]
/external/robolectric/v1/lib/main/
H A Dcommons-codec-1.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/annotation-tools/asmx/test/lib/
H A Dccl.jarMETA-INF/ META-INF/MANIFEST.MF ccl/ ccl/Main.class Main.java package ccl ...
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_colorspace.cpp1054 if (CPDF_String* pString = pTableObj->AsString()) {
1055 m_Table = pString->GetString();

Completed in 1575 milliseconds

12