/external/apache-http/src/org/apache/commons/codec/net/ |
D | QuotedPrintableCodec.java | 255 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 …]
|
D | URLCodec.java | 225 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 …]
|
D | QCodec.java | 190 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/ |
D | ucase.cpp | 1152 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 …]
|
D | ucase.h | 282 const UChar **pString, 288 const UChar **pString, 294 const UChar **pString, 299 const UChar **pString, 314 const UChar **pString,
|
/external/icu/icu4c/source/common/ |
D | ucase.cpp | 1152 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 …]
|
D | ucase.h | 282 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/ |
D | ucase.cpp | 1152 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 …]
|
D | ucase.h | 282 const UChar **pString, 288 const UChar **pString, 294 const UChar **pString, 299 const UChar **pString, 314 const UChar **pString,
|
/external/pdfium/core/fpdfapi/font/ |
D | cpdf_font.cpp | 110 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()
|
D | cpdf_cmap.cpp | 320 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()
|
D | cpdf_font.h | 87 virtual uint32_t GetNextChar(ByteStringView pString, size_t* pOffset) const; 88 virtual size_t CountChar(ByteStringView pString) const; 114 int GetStringWidth(ByteStringView pString);
|
D | cpdf_cmap.h | 67 uint32_t GetNextChar(ByteStringView pString, size_t* pOffset) const; 68 size_t CountChar(ByteStringView pString) const;
|
D | cpdf_cidfont.h | 61 uint32_t GetNextChar(ByteStringView pString, size_t* pOffset) const override; 62 size_t CountChar(ByteStringView pString) const override;
|
D | cpdf_cidfont.cpp | 789 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/ |
D | cpdf_bookmark.cpp | 30 RetainPtr<const CPDF_String> pString = in GetTitle() local 32 if (!pString) { in GetTitle() 35 WideString title = pString->GetUnicodeText(); in GetTitle()
|
D | cpdf_filespec.cpp | 128 } else if (const CPDF_String* pString = m_pObj->AsString()) { in GetFileName() local 129 csFileName = WideString::FromDefANSI(pString->GetString().AsStringView()); in GetFileName()
|
D | cpdf_formfield.cpp | 618 const CPDF_String* pString = pOption->AsString(); in GetOptionText() local 619 return pString ? pString->GetUnicodeText() : WideString(); in GetOptionText()
|
/external/icu/libicu/cts_headers/ |
D | ucase.h | 282 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/ |
D | ComplianceClientTest.golden | 241 .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/ |
D | RefinedSoundex.java | 134 public String encode(String pString) { in encode() argument 135 return soundex(pString); in encode()
|
D | Soundex.java | 155 public String encode(String pString) { in encode() argument 156 return soundex(pString); in encode()
|
D | Metaphone.java | 376 public String encode(String pString) { in encode() argument 377 return metaphone(pString); in encode()
|
/external/apache-http/src/org/apache/commons/codec/ |
D | StringEncoder.java | 42 String encode(String pString) throws EncoderException; in encode() argument
|
D | StringDecoder.java | 42 String decode(String pString) throws DecoderException; in decode() argument
|