HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 126 - 150 of 567) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-http/src/org/apache/commons/codec/net/
RFC1522Codec.java 31 * describes techniques to allow the encoding of non-ASCII text in
48 * Applies an RFC 1522 compliant encoding scheme to the given string of text with the
58 * @throws EncoderException thrown if there is an error conidition during the Encoding
63 * encoding names</a>
117 throw new DecoderException("RFC 1522 violation: encoding token not found");
119 String encoding = text.substring(from, to); local
120 if (!getEncoding().equalsIgnoreCase(encoding)) {
122 encoding + " encoded content");
132 * Returns the codec name (referred to as encoding in the RFC 1522)
139 * Encodes an array of bytes using the defined encoding schem
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java 81 // supported encoding types:
85 // supported encoding names
92 // PkiPath encoding of the certification path
94 // PKCS7 encoding of the certification path
123 * @param encoding - encoded form of certification path.
125 private X509CertPathImpl(List certs, int type, byte[] encoding) {
128 this.pkiPathEncoding = encoding;
130 this.pkcs7Encoding = encoding;
153 * Generates certification path object on the base of encoding provided via
155 * parameter <code>encoding</code>
    [all...]
  /external/chromium/third_party/icu/source/i18n/
csdetect.h 42 void setDeclaredEncoding(const char *encoding, int32_t len) const;
inputext.cpp 57 void InputText::setDeclaredEncoding(const char* encoding, int32_t len)
59 if(encoding) {
61 len = uprv_strlen(encoding);
67 uprv_strncpy(fDeclaredEncoding, encoding, len);
  /external/icu4c/i18n/
csdetect.h 42 void setDeclaredEncoding(const char *encoding, int32_t len) const;
inputext.cpp 57 void InputText::setDeclaredEncoding(const char* encoding, int32_t len)
59 if(encoding) {
61 len = (int32_t)uprv_strlen(encoding);
67 uprv_strncpy(fDeclaredEncoding, encoding, len);
  /external/icu4c/samples/uresb/
resources.mak 27 $(GENRB) $(GENRBOPT) --encoding cp1251 $?
  /external/iproute2/include/linux/hdlc/
ioctl.h 51 unsigned short encoding; member in struct:__anon4366
  /external/nist-sip/java/gov/nist/javax/sip/header/
StatusLine.java 116 String encoding = SIPConstants.SIP_VERSION_STRING + SP + statusCode; local
118 encoding += SP + reasonPhrase;
119 encoding += NEWLINE;
120 return encoding;
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.h 48 Uint16 encoding; member in struct:WaveFMT
  /external/webkit/WebCore/loader/
CachedCSSStyleSheet.h 50 virtual String encoding() const;
CachedScript.h 48 virtual String encoding() const;
  /external/webkit/WebCore/platform/text/qt/
TextCodecQt.cpp 66 static PassOwnPtr<TextCodec> newTextCodecQt(const TextEncoding& encoding, const void*)
68 return new TextCodecQt(encoding);
84 TextCodecQt::TextCodecQt(const TextEncoding& encoding)
85 : m_encoding(encoding)
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralSubtree.java 32 * The class encapsulates the ASN.1 DER encoding/decoding work
62 private byte[] encoding; field in class:GeneralSubtree
122 if (encoding == null) {
123 encoding = ASN1.encode(this);
125 return encoding;
NameConstraints.java 37 * The class encapsulates the ASN.1 DER encoding/decoding work
65 private byte[] encoding; field in class:NameConstraints
105 // @param encoding: byte[]
108 GeneralSubtrees excludedSubtrees, byte[] encoding) {
110 this.encoding = encoding;
113 public static NameConstraints decode(byte[] encoding) throws IOException {
114 return (NameConstraints) ASN1.decode(encoding);
122 if (encoding == null) {
123 encoding = ASN1.encode(this)
    [all...]
TBSCertList.java 42 * The class encapsulates the ASN.1 DER encoding/decoding work
85 private byte[] encoding; field in class:TBSCertList
94 private byte[] encoding; field in class:TBSCertList.RevokedCertificate
136 if (encoding == null) {
137 encoding = ASN1.encode(this);
139 return encoding;
257 // Constructs the object with associated ASN.1 encoding
261 byte[] encoding) {
269 this.encoding = encoding;
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSInput.java 20 * encoding), a base URI, and/or a character stream.
63 * of the encoding attribute will be ignored.
71 * of the encoding attribute will be ignored.
78 * <br> If the application knows the character encoding of the byte
79 * stream, it should set the encoding attribute. Setting the encoding in
80 * this way will override any encoding specified in an XML declaration
87 * <br> If the application knows the character encoding of the byte
88 * stream, it should set the encoding attribute. Setting the encoding i
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
CopyUtils.java 47 * For byte-to-char methods, a <code>copy</code> variant allows the encoding
49 * encourage you to always specify the encoding because relying on the platform
100 * method variants to specify the encoding, each row may
148 * The platform's default encoding is used for the byte-to-char conversion.
162 * <code>Writer</code>, using the specified encoding.
165 * @param encoding The name of a supported character encoding. See the
167 * Charset Registry</a> for a list of valid encoding types.
173 String encoding)
176 copy(in, output, encoding);
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPath.java 166 String encoding)
172 if (encoding.equalsIgnoreCase("PkiPath"))
191 else if (encoding.equalsIgnoreCase("PKCS7") || encoding.equalsIgnoreCase("PEM"))
204 throw new CertificateException("unsupported encoding: " + encoding);
221 * certification path, with the default encoding
234 * the default encoding.
237 * @exception CertificateEncodingException if an encoding error occurs
256 * the specified encoding
    [all...]
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/test_utils/
VNodeBuilder.java 176 private String handleOneValue(String value, String targetCharset, String encoding) {
177 if (encoding != null) {
178 encoding = encoding.toUpperCase();
179 if (encoding.equals("BASE64") || encoding.equals("B")) {
183 } else if (encoding.equals("QUOTED-PRINTABLE")) {
187 // Unknown encoding. Fall back to default.
204 String encoding = paramMap.getAsString("ENCODING"); local
    [all...]
  /external/freetype/src/cff/
cffload.c 1053 cff_encoding_done( CFF_Encoding encoding )
1055 encoding->format = 0;
1056 encoding->offset = 0;
1057 encoding->count = 0;
1062 cff_encoding_load( CFF_Encoding encoding,
1086 encoding->sids [j] = 0;
1087 encoding->codes[j] = 0;
1090 /* Note: The encoding table in a CFF font is indexed by glyph index; */
1094 /* encoding->codes[glyph_code] = j + 1 */
1098 /* encoding->sids[glyph_code] = charset->sids[j + 1] *
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMWriter.java 105 byte[] encoding;
112 encoding = ((X509Certificate)o).getEncoded();
124 encoding = ((X509CRL)o).getEncoded();
145 encoding = info.getPrivateKey().getEncoded();
165 encoding = new DERSequence(v).getEncoded();
171 encoding = info.getPrivateKey().getEncoded();
182 encoding = ((PublicKey)o).getEncoded();
187 encoding = ((X509V2AttributeCertificate)o).getEncoded();
192 encoding = ((PKCS10CertificationRequest)o).getEncoded();
197 encoding = ((ContentInfo)o).getEncoded()
    [all...]
  /external/libxml2/include/libxml/
xmlreader.h 123 const char *encoding, int options);
321 const char *encoding,
325 const char *encoding,
331 const char *encoding,
336 const char *encoding,
343 const char *encoding,
353 const char *encoding,
358 const char *encoding,
365 const char *encoding,
371 const char *encoding,
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 62 private final String encoding; field in class:ExpatParser
69 /** We default to UTF-8 when the user doesn't specify an encoding. */
72 /** Encoding used for Java chars, used to parse Readers and Strings */
79 * Constructs a new parser with the specified encoding.
81 /*package*/ ExpatParser(String encoding, ExpatReader xmlReader,
89 * TODO: Let Expat try to guess the encoding instead of defaulting.
90 * Unfortunately, I don't know how to tell which encoding Expat picked,
95 this.encoding = encoding == null ? DEFAULT_ENCODING : encoding;
307 String encoding = pickEncoding(inputSource); local
329 String encoding = inputSource.getEncoding(); local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
EncryptedPrivateKeyInfo.java 31 byte[] encoding)
34 this.data = new DEROctetString(encoding);

Completed in 1922 milliseconds

1 2 3 4 56 7 8 91011>>