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

1 2 3 4

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
cons.s 23 .global string, pstring
27 pstring .pstring "abcd" label
28 .pstring "abc","defg"
  /external/mdnsresponder/mDNSWindows/DLL.NET/
PString.h 25 __gc class PString
29 PString(String* string)
48 ~PString()
dnssd_NET.cpp 24 #include "PString.h"
697 PString * pName = new PString(name);
698 PString * pType = new PString(regtype);
699 PString * pDomain = new PString(domain);
700 PString * pHost = new PString(host);
845 PString * pType = new PString(regtype)
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
QCodec.java 181 * @param pString
184 * the charset for pString
190 public String encode(final String pString, final String charset) throws EncoderException {
191 if (pString == null) {
195 return encodeText(pString, charset);
204 * @param pString
211 public String encode(String pString) throws EncoderException {
212 if (pString == null) {
215 return encode(pString, getDefaultCharset());
222 * @param pString
    [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...]
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...]
  /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();
  /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/
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;
  /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;
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;
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...]
  /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;
  /prebuilts/go/darwin-x86/src/syscall/
dir_plan9.go 85 b = pstring(b, d.Name)
86 b = pstring(b, d.Uid)
87 b = pstring(b, d.Gid)
88 b = pstring(b, d.Muid)
173 // pstring copies the string s to b, prepending it with a 16-bit length in little-endian order, and
175 func pstring(b []byte, s string) []byte { func
  /prebuilts/go/linux-x86/src/syscall/
dir_plan9.go 85 b = pstring(b, d.Name)
86 b = pstring(b, d.Uid)
87 b = pstring(b, d.Gid)
88 b = pstring(b, d.Muid)
173 // pstring copies the string s to b, prepending it with a 16-bit length in little-endian order, and
175 func pstring(b []byte, s string) []byte { func
  /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/ltp/testcases/kernel/syscalls/fork/
fork04.c 166 static int cmp_env_strings(char *pstring, char *cstring)
171 * Break pstring into env and value
173 penv = pstring;
174 pvalue = strchr(pstring, ':');
178 pstring);
  /external/apache-http/src/org/apache/commons/codec/language/
RefinedSoundex.java 130 * @param pString
134 public String encode(String pString) {
135 return soundex(pString);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
HTTP.c 176 @param [in] pString A zero terminated Unicode string
186 IN UINT16 * pString,
199 Character1 = *pString++;
700 @param [in] pString A zero terminated Unicode string
709 IN CONST char * pString
723 pData = pString;
733 pData - pString,
734 (CONST UINT8 *)pString );
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
FwdLockConv.c 444 * @param[in,out] pString A reference to a dynamically growing string.
449 static FwdLockConv_Status_t FwdLockConv_StringAppend(FwdLockConv_String_t *pString, int ch) {
450 if (pString->length == pString->maxLength) {
451 size_t newMaxLength = pString->maxLength + pString->lengthIncrement;
452 char *newPtr = realloc(pString->ptr, newMaxLength + 1);
456 pString->ptr = newPtr;
457 pString->maxLength = newMaxLength;
459 pString->ptr[pString->length++] = ch
    [all...]

Completed in 727 milliseconds

1 2 3 4