Home
last modified time | relevance | path

Searched refs:pString (Results 1 – 25 of 26) sorted by relevance

12

/external/apache-http/src/org/apache/commons/codec/net/
DQuotedPrintableCodec.java255 public String encode(String pString) throws EncoderException { in encode() argument
256 if (pString == null) { in encode()
260 return encode(pString, getDefaultCharset()); in encode()
280 …public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingE… in decode() argument
281 if (pString == null) { in decode()
284 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); in decode()
300 public String decode(String pString) throws DecoderException { in decode() argument
301 if (pString == null) { in decode()
305 return decode(pString, getDefaultCharset()); in decode()
386 public String encode(String pString, String charset) throws UnsupportedEncodingException { in encode() argument
[all …]
DURLCodec.java225 public String encode(String pString, String charset) in encode() argument
228 if (pString == null) { in encode()
231 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII); in encode()
245 public String encode(String pString) throws EncoderException { in encode() argument
246 if (pString == null) { in encode()
250 return encode(pString, getDefaultCharset()); in encode()
269 public String decode(String pString, String charset) in decode() argument
272 if (pString == null) { in decode()
275 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); in decode()
290 public String decode(String pString) throws DecoderException { in decode() argument
[all …]
DQCodec.java190 public String encode(final String pString, final String charset) throws EncoderException { in encode() argument
191 if (pString == null) { in encode()
195 return encodeText(pString, charset); in encode()
211 public String encode(String pString) throws EncoderException { in encode() argument
212 if (pString == null) { in encode()
215 return encode(pString, getDefaultCharset()); in encode()
230 public String decode(String pString) throws DecoderException { in decode() argument
231 if (pString == null) { in decode()
235 return decodeText(pString); in decode()
/external/cronet/stable/third_party/icu/source/common/
Ducase.cpp1152 const char16_t **pString, in ucase_toFullLower() argument
1158 *pString=nullptr; in ucase_toFullLower()
1205 *pString=iDot; in ucase_toFullLower()
1208 *pString=jDot; in ucase_toFullLower()
1211 *pString=iOgonekDot; in ucase_toFullLower()
1214 *pString=iDotGrave; in ucase_toFullLower()
1217 *pString=iDotAcute; in ucase_toFullLower()
1220 *pString=iDotTilde; in ucase_toFullLower()
1258 *pString=iDot; in ucase_toFullLower()
1279 *pString=reinterpret_cast<const char16_t *>(pe+1); in ucase_toFullLower()
[all …]
Ducase.h282 const UChar **pString,
288 const UChar **pString,
294 const UChar **pString,
299 const UChar **pString,
314 const UChar **pString,
/external/icu/icu4c/source/common/
Ducase.cpp1152 const char16_t **pString, in ucase_toFullLower() argument
1158 *pString=nullptr; in ucase_toFullLower()
1205 *pString=iDot; in ucase_toFullLower()
1208 *pString=jDot; in ucase_toFullLower()
1211 *pString=iOgonekDot; in ucase_toFullLower()
1214 *pString=iDotGrave; in ucase_toFullLower()
1217 *pString=iDotAcute; in ucase_toFullLower()
1220 *pString=iDotTilde; in ucase_toFullLower()
1258 *pString=iDot; in ucase_toFullLower()
1279 *pString=reinterpret_cast<const char16_t *>(pe+1); in ucase_toFullLower()
[all …]
Ducase.h282 const UChar **pString,
288 const UChar **pString,
294 const UChar **pString,
299 const UChar **pString,
314 const UChar **pString,
/external/cronet/tot/third_party/icu/source/common/
Ducase.cpp1152 const char16_t **pString, in ucase_toFullLower() argument
1158 *pString=nullptr; in ucase_toFullLower()
1205 *pString=iDot; in ucase_toFullLower()
1208 *pString=jDot; in ucase_toFullLower()
1211 *pString=iOgonekDot; in ucase_toFullLower()
1214 *pString=iDotGrave; in ucase_toFullLower()
1217 *pString=iDotAcute; in ucase_toFullLower()
1220 *pString=iDotTilde; in ucase_toFullLower()
1258 *pString=iDot; in ucase_toFullLower()
1279 *pString=reinterpret_cast<const char16_t *>(pe+1); in ucase_toFullLower()
[all …]
Ducase.h282 const UChar **pString,
288 const UChar **pString,
294 const UChar **pString,
299 const UChar **pString,
314 const UChar **pString,
/external/pdfium/core/fpdfapi/font/
Dcpdf_font.cpp110 size_t CPDF_Font::CountChar(ByteStringView pString) const { in CountChar()
111 return pString.GetLength(); in CountChar()
262 int CPDF_Font::GetStringWidth(ByteStringView pString) { in GetStringWidth() argument
265 while (offset < pString.GetLength()) in GetStringWidth()
266 width += GetCharWidthF(GetNextChar(pString, &offset)); in GetStringWidth()
328 uint32_t CPDF_Font::GetNextChar(ByteStringView pString, size_t* pOffset) const { in GetNextChar() argument
329 if (pString.IsEmpty()) in GetNextChar()
333 return offset < pString.GetLength() ? pString[offset++] : pString.Back(); in GetNextChar()
Dcpdf_cmap.cpp320 uint32_t CPDF_CMap::GetNextChar(ByteStringView pString, size_t* pOffset) const { in GetNextChar() argument
322 auto pBytes = pString.unsigned_span(); in GetNextChar()
386 size_t CPDF_CMap::CountChar(ByteStringView pString) const { in CountChar()
389 return pString.GetLength(); in CountChar()
391 return (pString.GetLength() + 1) / 2; in CountChar()
394 for (size_t i = 0; i < pString.GetLength(); i++) { in CountChar()
396 if (m_MixedTwoByteLeadingBytes[pString[i]]) in CountChar()
404 while (offset < pString.GetLength()) { in CountChar()
405 GetNextChar(pString, &offset); in CountChar()
Dcpdf_font.h87 virtual uint32_t GetNextChar(ByteStringView pString, size_t* pOffset) const;
88 virtual size_t CountChar(ByteStringView pString) const;
114 int GetStringWidth(ByteStringView pString);
Dcpdf_cmap.h67 uint32_t GetNextChar(ByteStringView pString, size_t* pOffset) const;
68 size_t CountChar(ByteStringView pString) const;
Dcpdf_cidfont.h61 uint32_t GetNextChar(ByteStringView pString, size_t* pOffset) const override;
62 size_t CountChar(ByteStringView pString) const override;
Dcpdf_cidfont.cpp789 uint32_t CPDF_CIDFont::GetNextChar(ByteStringView pString, in GetNextChar() argument
791 return m_pCMap->GetNextChar(pString, pOffset); in GetNextChar()
798 size_t CPDF_CIDFont::CountChar(ByteStringView pString) const { in CountChar()
799 return m_pCMap->CountChar(pString); in CountChar()
/external/pdfium/core/fpdfdoc/
Dcpdf_bookmark.cpp30 RetainPtr<const CPDF_String> pString = in GetTitle() local
32 if (!pString) { in GetTitle()
35 WideString title = pString->GetUnicodeText(); in GetTitle()
Dcpdf_filespec.cpp128 } else if (const CPDF_String* pString = m_pObj->AsString()) { in GetFileName() local
129 csFileName = WideString::FromDefANSI(pString->GetString().AsStringView()); in GetFileName()
Dcpdf_formfield.cpp618 const CPDF_String* pString = pOption->AsString(); in GetOptionText() local
619 return pString ? pString->GetUnicodeText() : WideString(); in GetOptionText()
/external/icu/libicu/cts_headers/
Ducase.h282 const UChar **pString,
288 const UChar **pString,
294 const UChar **pString,
299 const UChar **pString,
314 const UChar **pString,
/external/sdk-platform-java/gapic-generator-java/src/test/java/com/google/api/generator/gapic/composer/rest/goldens/
DComplianceClientTest.golden241 .setPString("pString-1191954271")
297 .setPString("pString-1191954271")
346 .setPString("pString-1191954271")
353 .setPString("pString-1191954271")
416 .setPString("pString-1191954271")
423 .setPString("pString-1191954271")
472 .setPString("pString-1191954271")
479 .setPString("pString-1191954271")
542 .setPString("pString-1191954271")
549 .setPString("pString-1191954271")
/external/apache-http/src/org/apache/commons/codec/language/
DRefinedSoundex.java134 public String encode(String pString) { in encode() argument
135 return soundex(pString); in encode()
DSoundex.java155 public String encode(String pString) { in encode() argument
156 return soundex(pString); in encode()
DMetaphone.java376 public String encode(String pString) { in encode() argument
377 return metaphone(pString); in encode()
/external/apache-http/src/org/apache/commons/codec/
DStringEncoder.java42 String encode(String pString) throws EncoderException; in encode() argument
DStringDecoder.java42 String decode(String pString) throws DecoderException; in decode() argument

12