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

1 2 3

  /external/apache-http/src/org/apache/commons/codec/
StringDecoder.java 35 * @param pString a String to encode
42 String decode(String pString) throws DecoderException;
StringEncoder.java 35 * @param pString a String to encode
42 String encode(String pString) throws EncoderException;
  /frameworks/compile/mclinker/lib/Script/
StrToken.cpp 26 StrToken::StrToken(Kind pKind, const std::string& pString)
27 : m_Kind(pKind), m_Name(pString) {
33 StrToken* StrToken::create(const std::string& pString) {
35 new (result) StrToken(String, pString);
  /external/apache-http/src/org/apache/commons/codec/net/
QuotedPrintableCodec.java 246 * @param pString
255 public String encode(String pString) throws EncoderException {
256 if (pString == null) {
260 return encode(pString, getDefaultCharset());
270 * @param pString
280 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException {
281 if (pString == null) {
284 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
291 * @param pString
300 public String decode(String pString) throws DecoderException
    [all...]
URLCodec.java 219 * @param pString string to convert to a URL safe form
220 * @param charset the charset for pString
225 public String encode(String pString, String charset)
228 if (pString == null) {
231 return new String(encode(pString.getBytes(charset)), StringEncodings.US_ASCII);
239 * @param pString string to convert to a URL safe form
245 public String encode(String pString) throws EncoderException {
246 if (pString == null) {
250 return encode(pString, getDefaultCharset());
262 * @param pString URL safe string to convert into its original for
    [all...]
  /frameworks/compile/mclinker/include/mcld/Script/
StrToken.h 33 StrToken(Kind pKind, const std::string& pString);
47 static StrToken* create(const std::string& pString);
  /frameworks/compile/mclinker/lib/LD/
MergedStringTable.cpp 13 bool MergedStringTable::insertString(llvm::StringRef pString) {
14 return m_StringMap.insert(std::make_pair(pString, 0)).second;
NamePool.cpp 115 llvm::StringRef NamePool::insertString(const llvm::StringRef& pString) {
117 ResolveInfo* resolve_info = m_Table.insert(pString, exist);
  /frameworks/compile/mclinker/include/mcld/LD/
MergedStringTable.h 33 bool insertString(llvm::StringRef pString);
  /external/pdfium/core/fpdfdoc/
cpdf_bookmark.cpp 38 CPDF_String* pString = ToString(m_pDict->GetDirectObjectFor("Title"));
39 if (!pString)
42 CFX_WideString title = pString->GetUnicodeText();
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 130 * @param pString
134 public String encode(String pString) {
135 return soundex(pString);
Soundex.java 149 * @param pString
155 public String encode(String pString) {
156 return soundex(pString);
  /external/pdfium/core/fpdfapi/font/
cpdf_font.h 53 virtual uint32_t GetNextChar(const FX_CHAR* pString,
56 virtual int CountChar(const FX_CHAR* pString, int size) const;
74 int GetStringWidth(const FX_CHAR* pString, int size);
cpdf_cidfont.h 48 uint32_t GetNextChar(const FX_CHAR* pString,
51 int CountChar(const FX_CHAR* pString, int size) const override;
fpdf_font_cid.cpp 613 uint32_t CPDF_CMap::GetNextChar(const FX_CHAR* pString,
618 return ((uint8_t*)pString)[offset++];
621 return ((uint8_t*)pString)[offset - 2] * 256 +
622 ((uint8_t*)pString)[offset - 1];
624 uint8_t byte1 = ((uint8_t*)pString)[offset++];
628 uint8_t byte2 = ((uint8_t*)pString)[offset++];
634 codes[0] = ((uint8_t*)pString)[offset++];
651 codes[char_size++] = ((uint8_t*)pString)[offset++];
679 int CPDF_CMap::CountChar(const FX_CHAR* pString, int size) const {
689 if (m_pLeadingBytes[((uint8_t*)pString)[i]])
    [all...]
cpdf_font.cpp 121 int CPDF_Font::CountChar(const FX_CHAR* pString, int size) const {
284 int CPDF_Font::GetStringWidth(const FX_CHAR* pString, int size) {
288 uint32_t charcode = GetNextChar(pString, size, offset);
344 uint32_t CPDF_Font::GetNextChar(const FX_CHAR* pString,
350 uint8_t ch = offset < nStrLen ? pString[offset++] : pString[nStrLen - 1];
font_int.h 151 uint32_t GetNextChar(const FX_CHAR* pString, int nStrLen, int& offset) const;
152 int CountChar(const FX_CHAR* pString, int size) const;
  /external/icu/icu4c/source/common/
ucase.h 241 * @param pString If the mapping result is a string, then the pointer is
242 * written to *pString.
256 const UChar **pString,
262 const UChar **pString,
268 const UChar **pString,
273 const UChar **pString,
288 const UChar **pString,
ucase.cpp 817 const UChar **pString,
869 *pString=iDot;
872 *pString=jDot;
875 *pString=iOgonekDot;
878 *pString=iDotGrave;
881 *pString=iDotAcute;
884 *pString=iDotTilde;
922 *pString=iDot;
943 *pString=reinterpret_cast<const UChar *>(pe+1);
962 const UChar **pString,
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTString.cpp 142 char* pString = m_pString;
148 pString = (char*)malloc(newCapacity);
150 memmove(pString, m_pString, m_Size);
151 pString[m_Capacity-1]='\0';
155 memmove(pString + m_Size, _Ptr, _Count);
157 pString[m_Size] = 0;
160 if (pString != m_pString)
167 m_pString = pString;
217 char* pString = m_pString;
222 pString = (char*)malloc(newCapacity)
    [all...]
  /system/nfc/halimpl/pn54x/utils/
phNxpNciHal_utils.h 87 void phNxpNciHal_print_packet(const char* pString, const uint8_t* p_data,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /prebuilts/misc/common/robolectric/lib/
commons-codec-1.3.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/
commons-codec-1.3.jar 
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_decode.h 26 CFX_ByteString PDF_EncodeText(const FX_WCHAR* pString, int len = -1);

Completed in 591 milliseconds

1 2 3