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

1 2

  /external/apache-http/src/org/apache/commons/codec/
StringDecoder.java 30 * @param pString a String to encode
37 String decode(String pString) throws DecoderException;
StringEncoder.java 30 * @param pString a String to encode
37 String encode(String pString) throws EncoderException;
  /external/libnfc-nxp/Linux_x86/
phOsalNfc.c 79 void phOsalNfc_DbgString(const char *pString)
82 if(pString != NULL)
84 printf(pString);
86 ALOGD("%s", pString);
158 * \param[in] pString pointer to string to be displayed.
163 void phOsalNfc_PrintData(const char *pString, uint32_t length, uint8_t *pBuffer,
169 if (pString == NULL) {
170 pString = "";
181 if (!strcmp(pString, "SEND") && length >= 2) {
183 } else if (!strcmp(pString, "RECV") && length >= 2)
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
QuotedPrintableCodec.java 241 * @param pString
250 public String encode(String pString) throws EncoderException {
251 if (pString == null) {
255 return encode(pString, getDefaultCharset());
265 * @param pString
275 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException {
276 if (pString == null) {
279 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
286 * @param pString
295 public String decode(String pString) throws DecoderException
    [all...]
URLCodec.java 214 * @param pString string to convert to a URL safe form
215 * @param charset the charset for pString
220 public String encode(String pString, String charset)
223 if (pString == null) {
226 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII);
234 * @param pString string to convert to a URL safe form
240 public String encode(String pString) throws EncoderException {
241 if (pString == null) {
245 return encode(pString, getDefaultCharset());
257 * @param pString URL safe string to convert into its original for
    [all...]
  /external/libnfc-nxp/src/
phOsalNfc.h 151 * \param[in] pString pointer to buffer content to be displayed.
155 void phOsalNfc_DbgString(const char *pString);
163 * \param[in] pString pointer to string to be displayed.
169 void phOsalNfc_PrintData(const char *pString, uint32_t length, uint8_t *pBuffer,
  /frameworks/base/media/jni/mediaeditor/
VideoEditorThumbnailMain.h 31 * @param pString (IN) File path from which thumbnail will be
37 const M4OSA_Char *pString,
VideoEditorJava.cpp 317 void* pString = M4OSA_NULL;
356 pString = videoEditOsal_alloc(pResult, pEnv, length, "String");
360 result = M4OSA_chrNCopy((M4OSA_Char*)pString, pLocal, length);
370 videoEditOsal_free(pString);
371 pString = M4OSA_NULL;
396 return(pString);
536 const char* pString = M4OSA_NULL;
541 ((M4OSA_NULL == pString) && (index < pClass->count));
548 pString = pClass->pConstants[index].pDescription;
553 if (M4OSA_NULL == pString)
    [all...]
VideoEditorOsal.cpp 227 const char* pString = M4OSA_NULL;
232 ((M4OSA_NULL == pString) && (index < gkRESULTS_COUNT));
239 pString = gkRESULTS[index].pName;
244 if (M4OSA_NULL == pString)
249 pString = string;
253 return(pString);
VideoEditorThumbnailMain.cpp 157 const M4OSA_Char *pString,
165 CHECK_PTR(ThumbnailOpen, pString, err, M4ERR_BAD_CONTEXT);
180 &pContext->m_pVideoBrowser, pString) ;
193 err = videoBrowserCreate(&pContext->m_pVideoBrowser, (M4OSA_Char*)pString,
VideoEditorMain.cpp     [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 125 * @param pString
129 public String encode(String pString) {
130 return soundex(pString);
Soundex.java 144 * @param pString
150 public String encode(String pString) {
151 return soundex(pString);
Metaphone.java 368 * @param pString String object to encode
371 public String encode(String pString) {
372 return metaphone(pString);
  /frameworks/compile/libbcc/lib/Renderscript/
RSInfoExtractor.cpp 56 inline llvm::StringRef getStringFromOperand(const llvm::Value *pString) {
57 if ((pString != NULL) && (pString->getValueID() == llvm::Value::MDStringVal)) {
58 return static_cast<const llvm::MDString *>(pString)->getString();
89 // Write a string pString to the string pool pStringPool at offset pWriteStart.
90 // Return the pointer the pString resides within the string pool.
91 const char *writeString(const llvm::StringRef &pString, char *pStringPool,
93 if (pString.empty()) {
99 ::memcpy(pStringWriteStart, pString.data(), pString.size())
    [all...]
  /hardware/ti/wlan/wl1271/TWD/MacServices/
PowerSrvSM.c 488 char *pString;
499 pString = "POWER_SRV_STATE_ACTIVE";
503 pString = "POWER_SRV_STATE_PEND_PS";
507 pString = "POWER_SRV_STATE_PS";
511 pString = "POWER_SRV_STATE_PEND_ACTIVE";
515 pString = "POWER_SRV_STATE_ERROR_ACTIVE";
520 pString = "UNKWON PARAMETER";
524 pString,
    [all...]
  /external/icu4c/common/
ucase.h 191 * @param pString If the mapping result is a string, then the pointer is
192 * written to *pString.
206 const UChar **pString,
212 const UChar **pString,
218 const UChar **pString,
223 const UChar **pString,
238 const UChar **pString,
ucase.c 777 const UChar **pString,
828 *pString=iDot;
831 *pString=jDot;
834 *pString=iOgonekDot;
837 *pString=iDotGrave;
840 *pString=iDotAcute;
843 *pString=iDotTilde;
881 *pString=iDot;
902 *pString=pe+1;
921 const UChar **pString,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /frameworks/compile/mclinker/lib/LD/
NamePool.cpp 108 llvm::StringRef NamePool::insertString(const llvm::StringRef& pString)
111 ResolveInfo* resolve_info = m_Table.insert(pString, exist);
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 84 /// if the string has existed, modify pString to the existing string
86 llvm::StringRef insertString(const llvm::StringRef& pString);
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /hardware/ti/wlan/wl1271/utils/
report.c 467 TI_STATUS report_Dump (TI_UINT8 *pBuffer, char *pString, TI_UINT32 size)
471 if( (NULL == pBuffer) || (NULL == pString))
483 pString[(index << 1) + 1] = temp_nibble + '0';
487 pString[(index << 1) + 1] = temp_nibble - 10 + 'A';
494 pString[(index << 1)] = temp_nibble + '0';
498 pString[(index << 1)] = temp_nibble - 10 + 'A';
503 pString[(size * 2)] = 0;
  /dalvik/libdex/
DexFile.cpp 241 const char* pString;
244 pString = dexStringByTypeIdx(pDexFile, pClassDef->classIdx);
247 (u1*)pString - pDexFile->baseAddr,
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c     [all...]

Completed in 1341 milliseconds

1 2