HomeSort by relevance Sort by last modified time
    Searched full:pstring (Results 1 - 25 of 51) sorted by null

1 2 3

  /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/
QCodec.java 176 * @param pString
179 * the charset for pString
185 public String encode(final String pString, final String charset) throws EncoderException {
186 if (pString == null) {
190 return encodeText(pString, charset);
199 * @param pString
206 public String encode(String pString) throws EncoderException {
207 if (pString == null) {
210 return encode(pString, getDefaultCharset());
217 * @param pString
    [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...]
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...]
  /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;
  /frameworks/base/media/jni/mediaeditor/
VideoEditorThumbnailMain.h 31 * @param pString (IN) File path from which thumbnail will be
37 const M4OSA_Char *pString,
VideoEditorOsal.cpp 229 const char* pString = M4OSA_NULL;
234 ((M4OSA_NULL == pString) && (index < gkRESULTS_COUNT));
241 pString = gkRESULTS[index].pName;
246 if (M4OSA_NULL == pString)
251 pString = string;
255 return(pString);
VideoEditorJava.cpp 319 void* pString = M4OSA_NULL;
358 pString = videoEditOsal_alloc(pResult, pEnv, length, "String");
362 result = M4OSA_chrNCopy((M4OSA_Char*)pString, pLocal, length);
372 videoEditOsal_free(pString);
373 pString = M4OSA_NULL;
398 return(pString);
538 const char* pString = M4OSA_NULL;
543 ((M4OSA_NULL == pString) && (index < pClass->count));
550 pString = pClass->pConstants[index].pDescription;
555 if (M4OSA_NULL == pString)
    [all...]
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,
  /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,
  /external/chromium_org/third_party/icu/source/common/
ucase.h 196 * @param pString If the mapping result is a string, then the pointer is
197 * written to *pString.
211 const UChar **pString,
217 const UChar **pString,
223 const UChar **pString,
228 const UChar **pString,
243 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/icu4c/common/
ucase.h 238 * @param pString If the mapping result is a string, then the pointer is
239 * written to *pString.
253 const UChar **pString,
259 const UChar **pString,
265 const UChar **pString,
270 const UChar **pString,
285 const UChar **pString,
ucase.cpp 804 const UChar **pString,
855 *pString=iDot;
858 *pString=jDot;
861 *pString=iOgonekDot;
864 *pString=iDotGrave;
867 *pString=iDotAcute;
870 *pString=iDotTilde;
908 *pString=iDot;
929 *pString=reinterpret_cast<const UChar *>(pe+1);
948 const UChar **pString,
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 85 /// if the string has existed, modify pString to the existing string
87 llvm::StringRef insertString(const llvm::StringRef& pString);
  /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...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c 443 * @param[in,out] pString A reference to a dynamically growing string.
448 static FwdLockConv_Status_t FwdLockConv_StringAppend(FwdLockConv_String_t *pString, int ch) {
449 if (pString->length == pString->maxLength) {
450 size_t newMaxLength = pString->maxLength + pString->lengthIncrement;
451 char *newPtr = realloc(pString->ptr, newMaxLength + 1);
455 pString->ptr = newPtr;
456 pString->maxLength = newMaxLength;
458 pString->ptr[pString->length++] = ch
    [all...]
  /external/chromium/third_party/libevent/
event_tagging.c 407 char **pstring)
416 *pstring = calloc(EVBUFFER_LENGTH(_buf) + 1, 1);
417 if (*pstring == NULL)
419 evbuffer_remove(_buf, *pstring, EVBUFFER_LENGTH(_buf));
  /external/chromium_org/third_party/libevent/
event_tagging.c 407 char **pstring)
416 *pstring = calloc(EVBUFFER_LENGTH(_buf) + 1, 1);
417 if (*pstring == NULL)
419 evbuffer_remove(_buf, *pstring, EVBUFFER_LENGTH(_buf));
  /frameworks/compile/mclinker/lib/LD/
NamePool.cpp 118 llvm::StringRef NamePool::insertString(const llvm::StringRef& pString)
121 ResolveInfo* resolve_info = m_Table.insert(pString, exist);
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 113 unsigned int SectionMap::hash(const std::string& pString)
116 return hash_func(pString);

Completed in 649 milliseconds

1 2 3