/external/libnfc-nxp/Linux_x86/ |
D | phOsalNfc.c | 77 void phOsalNfc_DbgString(const char *pString) in phOsalNfc_DbgString() argument 80 if(pString != NULL) in phOsalNfc_DbgString() 82 printf(pString); in phOsalNfc_DbgString() 84 LOGD("%s", pString); in phOsalNfc_DbgString() 161 void phOsalNfc_PrintData(const char *pString, uint32_t length, uint8_t *pBuffer, in phOsalNfc_PrintData() argument 167 if (pString == NULL) { in phOsalNfc_PrintData() 168 pString = ""; in phOsalNfc_PrintData() 179 if (!strcmp(pString, "SEND") && length >= 2) { in phOsalNfc_PrintData() 181 } else if (!strcmp(pString, "RECV") && length >= 2) { in phOsalNfc_PrintData() 211 LOGD("> %s:%s\t%s", pString, print_buffer, llc); in phOsalNfc_PrintData()
|
/external/apache-http/src/org/apache/commons/codec/net/ |
D | QuotedPrintableCodec.java | 250 public String encode(String pString) throws EncoderException { in encode() argument 251 if (pString == null) { in encode() 255 return encode(pString, getDefaultCharset()); in encode() 275 …public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingE… in decode() argument 276 if (pString == null) { in decode() 279 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); in decode() 295 public String decode(String pString) throws DecoderException { in decode() argument 296 if (pString == null) { in decode() 300 return decode(pString, getDefaultCharset()); in decode() 381 public String encode(String pString, String charset) throws UnsupportedEncodingException { in encode() argument [all …]
|
D | URLCodec.java | 220 public String encode(String pString, String charset) in encode() argument 223 if (pString == null) { in encode() 226 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII); in encode() 240 public String encode(String pString) throws EncoderException { in encode() argument 241 if (pString == null) { in encode() 245 return encode(pString, getDefaultCharset()); in encode() 264 public String decode(String pString, String charset) in decode() argument 267 if (pString == null) { in decode() 270 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset); in decode() 285 public String decode(String pString) throws DecoderException { in decode() argument [all …]
|
D | QCodec.java | 185 public String encode(final String pString, final String charset) throws EncoderException { in encode() argument 186 if (pString == null) { in encode() 190 return encodeText(pString, charset); in encode() 206 public String encode(String pString) throws EncoderException { in encode() argument 207 if (pString == null) { in encode() 210 return encode(pString, getDefaultCharset()); in encode() 225 public String decode(String pString) throws DecoderException { in decode() argument 226 if (pString == null) { in decode() 230 return decodeText(pString); in decode()
|
/external/icu4c/common/ |
D | ucase.c | 777 const UChar **pString, in ucase_toFullLower() argument 828 *pString=iDot; in ucase_toFullLower() 831 *pString=jDot; in ucase_toFullLower() 834 *pString=iOgonekDot; in ucase_toFullLower() 837 *pString=iDotGrave; in ucase_toFullLower() 840 *pString=iDotAcute; in ucase_toFullLower() 843 *pString=iDotTilde; in ucase_toFullLower() 881 *pString=iDot; in ucase_toFullLower() 902 *pString=pe+1; in ucase_toFullLower() 921 const UChar **pString, in toUpperOrTitle() argument [all …]
|
D | ucase.h | 211 const UChar **pString, 217 const UChar **pString, 223 const UChar **pString, 228 const UChar **pString, 243 const UChar **pString,
|
/external/libnfc-nxp/src/ |
D | phOsalNfc.h | 155 void phOsalNfc_DbgString(const char *pString); 169 void phOsalNfc_PrintData(const char *pString, uint32_t length, uint8_t *pBuffer,
|
/external/apache-http/src/org/apache/commons/codec/language/ |
D | RefinedSoundex.java | 129 public String encode(String pString) { in encode() argument 130 return soundex(pString); in encode()
|
D | Soundex.java | 150 public String encode(String pString) { in encode() argument 151 return soundex(pString); in encode()
|
D | Metaphone.java | 371 public String encode(String pString) { in encode() argument 372 return metaphone(pString); in encode()
|
/external/apache-http/src/org/apache/commons/codec/ |
D | StringEncoder.java | 37 String encode(String pString) throws EncoderException; in encode() argument
|
D | StringDecoder.java | 37 String decode(String pString) throws DecoderException; in decode() argument
|