| /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/ |
| MyFailingCertificate.java | 7 public MyFailingCertificate(String type, byte[] encoding) { 8 super(type, encoding);
|
| /dalvik/libcore/xml/src/main/java/org/xml/sax/ |
| InputSource.java | 24 * with a specified encoding), and/or a character stream.</p> 34 * encoding declaration found in that stream. 37 * encoding specified in the InputSource or else (if no encoding is 38 * specified) autodetecting the character encoding using an algorithm 81 * the character encoding, if known.</p> 105 * character encoding.</p> 181 * <p>If the application knows the character encoding of the 183 * the encoding using the setEncoding method.</p> 203 * <p>The getEncoding method will return the character encoding 332 private String encoding; field in class:InputSource [all...] |
| /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
| Encodings.java | 54 * Returns a writer for the specified encoding based on 59 * @param encoding The encoding MIME name, not a Java name for the encoding. 62 * to support this encoding 65 static Writer getWriter(OutputStream output, String encoding) 71 if (_encodings[i].name.equalsIgnoreCase(encoding)) 93 return new OutputStreamWriter(output, encoding); 97 throw new UnsupportedEncodingException(encoding); 103 * encoding, never null, although the encoding name [all...] |
| /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
| EDIPartyName.java | 32 * The class encapsulates the ASN.1 DER encoding/decoding work 60 private byte[] encoding; field in class:EDIPartyName 76 // @param encoding: byte[] 79 byte[] encoding) { 82 this.encoding = encoding; 106 if (encoding == null) { 107 encoding = ASN1.encode(this); 109 return encoding;
|
| OtherName.java | 34 * The class encapsulates the ASN.1 DER encoding/decoding work 54 private byte[] encoding; field in class:OtherName 69 // @param encoding: byte[] 71 private OtherName(String typeID, byte[] value, byte[] encoding) { 74 this.encoding = encoding; 98 if (encoding == null) { 99 encoding = ASN1.encode(this); 101 return encoding;
|
| PrivateKeyUsagePeriod.java | 34 * The class encapsulates the ASN.1 DER encoding/decoding work 55 private byte[] encoding; field in class:PrivateKeyUsagePeriod 70 // @param encoding: byte[] 73 Date notAfterDate, byte[] encoding) { 76 this.encoding = encoding; 100 if (encoding == null) { 101 encoding = ASN1.encode(this); 103 return encoding;
|
| CRLDistributionPoints.java | 36 * The class encapsulates the ASN.1 DER encoding/decoding work 73 private byte[] encoding; field in class:CRLDistributionPoints 83 public CRLDistributionPoints(List distributionPoints, byte[] encoding) { 89 this.encoding = encoding; 93 if (encoding == null) { 94 encoding = ASN1.encode(this); 96 return encoding; 99 public static CRLDistributionPoints decode(byte[] encoding) 101 CRLDistributionPoints cdp = (CRLDistributionPoints) ASN1.decode(encoding); [all...] |
| ORAddress.java | 30 * The class encapsulates the ASN.1 DER encoding/decoding work 51 private byte[] encoding; field in class:ORAddress 63 if (encoding == null) { 64 encoding = ASN1.encode(this); 66 return encoding;
|
| GeneralNames.java | 36 * The class encapsulates the ASN.1 DER encoding/decoding work 56 private byte[] encoding; field in class:GeneralNames 76 // @param encoding: byte[] 78 private GeneralNames(List generalNames, byte[] encoding) { 80 this.encoding = encoding; 116 encoding = null; 129 encoding = null; 146 if (encoding == null) { 147 encoding = ASN1.encode(this) [all...] |
| InfoAccessSyntax.java | 32 * The class encapsulates the ASN.1 DER encoding/decoding work 59 private InfoAccessSyntax(List accessDescriptions, byte[] encoding) 66 this.encoding = encoding; 78 if (encoding == null) { 79 encoding = ASN1.encode(this); 81 return encoding; 84 public static InfoAccessSyntax decode(byte[] encoding) throws IOException { 85 return ((InfoAccessSyntax) ASN1.decode(encoding));
|
| ReasonCode.java | 67 public ReasonCode(byte[] encoding) throws IOException { 68 super(encoding); 69 this.code = ((byte[]) ASN1.decode(encoding))[0]; 81 if (encoding == null) { 82 encoding = ASN1.encode(new byte[] {(byte) code}); 84 return encoding;
|
| PolicyConstraints.java | 35 * The class encapsulates the ASN.1 DER encoding/decoding work 64 private byte[] encoding; field in class:PolicyConstraints 95 public PolicyConstraints(byte[] encoding) throws IOException { 96 super(encoding); 97 PolicyConstraints pc = (PolicyConstraints) ASN1.decode(encoding); 106 // @param encoding: byte[] 109 BigInteger inhibitPolicyMapping, byte[] encoding) { 111 this.encoding = encoding; 119 if (encoding == null) [all...] |
| AccessDescription.java | 27 * The class encapsulates the ASN.1 DER encoding/decoding work 47 private byte [] encoding; field in class:AccessDescription 55 byte[] encoding) { 58 this.encoding = encoding; 66 if (encoding == null) { 67 encoding = ASN1.encode(this); 69 return encoding;
|
| ExtendedKeyUsage.java | 59 public ExtendedKeyUsage(byte[] encoding) { 60 super(encoding); 78 if (encoding == null) { 79 encoding = ASN1.encode(keys); 81 return encoding; 94 // incorrect extension value encoding
|
| GeneralSubtrees.java | 34 * The class encapsulates the ASN.1 DER encoding/decoding work 54 private byte[] encoding; field in class:GeneralSubtrees 84 encoding = null; 97 if (encoding == null) { 98 encoding = ASN1.encode(this); 100 return encoding;
|
| /external/apache-http/src/org/apache/http/client/utils/ |
| URLEncodedUtils.java | 50 * A collection of utilities for encoding URLs. 68 * @param encoding 69 * encoding to use while parsing the query 71 public static List <NameValuePair> parse (final URI uri, final String encoding) { 76 parse(result, new Scanner(query), encoding); 83 * {@link HttpEntity}. The encoding is taken from the entity's 84 * Content-Encoding header. 98 final Header encoding = entity.getContentEncoding(); local 102 encoding != null ? encoding.getValue() : null) [all...] |
| /external/webkit/WebKit/chromium/public/ |
| WebSearchableFormData.h | 40 // SearchableFormData encapsulates a URL and encoding of an INPUT field that 56 // Encoding used to encode the form parameters; never empty. 57 const WebString& encoding() const function in class:WebKit::WebSearchableFormData
|
| /external/tinyxml/ |
| tinyxmlparser.cpp | 120 /*static*/ int TiXmlBase::IsAlpha( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) 124 // to figure out alhabetical vs. not across encoding. So take a very 127 // if ( encoding == TIXML_ENCODING_UTF8 ) 141 /*static*/ int TiXmlBase::IsAlphaNum( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) 145 // to figure out alhabetical vs. not across encoding. So take a very 148 // if ( encoding == TIXML_ENCODING_UTF8 ) 166 void Stamp( const char* now, TiXmlEncoding encoding ); 187 void TiXmlParsingData::Stamp( const char* now, TiXmlEncoding encoding ) 253 if ( encoding == TIXML_ENCODING_UTF8 ) 277 if ( encoding == TIXML_ENCODING_UTF8 [all...] |
| /packages/apps/Email/src/org/apache/commons/io/ |
| IOUtils.java | 54 * encoding and the other which allows you to specify an encoding. You are
55 * encouraged to always specify an encoding because relying on the platform
224 * using the default character encoding of the platform.
242 * using the specified character encoding.
244 * Character encoding names can be found at
251 * @param encoding the encoding to use, null means platform default
257 public static byte[] toByteArray(Reader input, String encoding)
260 copy(input, output, encoding);
[all...] |
| /dalvik/libcore/security/src/main/java/org/apache/harmony/security/pkcs10/ |
| CertificationRequest.java | 28 * The class implements the ASN.1 DER encoding and decoding of the PKCS#10 53 private byte[] encoding; field in class:CertificationRequest 63 // private constructor with encoding given 65 AlgorithmIdentifier algId, byte[] signature, byte[] encoding) { 67 this.encoding = encoding; 98 if (encoding == null) { 99 encoding = CertificationRequest.ASN1.encode(this); 101 return encoding;
|
| /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/crypto/ |
| ThreeIntegerSequence.java | 35 private byte[] encoding; field in class:ThreeIntegerSequence 42 encoding = null; 46 if (encoding == null) { 47 encoding = ASN1.encode(this); 49 return encoding;
|
| /dalvik/libcore/xml/src/main/java/org/kxml2/kdom/ |
| Document.java | 34 String encoding; field in class:Document 40 return encoding; 44 this.encoding = enc; 87 encoding = parser.getInputEncoding(); 123 writer.startDocument(encoding, standalone);
|
| /external/libxml2/include/libxml/ |
| DOCBparser.h | 52 const char *encoding, 57 const char *encoding); 60 const char *encoding, 65 const char *encoding); 86 const char *encoding);
|
| xmlsave.h | 15 #include <libxml/encoding.h> 45 const char *encoding, 49 const char *encoding, 54 const char *encoding, 61 const char *encoding,
|
| /external/webkit/WebCore/platform/text/ |
| TextEncodingDetectorICU.cpp | 50 // Tiger came with ICU 3.2 and does not have the encoding detector. 69 // "the context" (parent-encoding, referrer encoding, etc). 72 // encoding with a highest confidence among the detector-specific 82 const char* encoding = 0; 86 // allocation in a given encoding. The size of a chunk passed to 108 encoding = hintEncodingName; 115 // a child frame in Shift_JIS and both frames do NOT specify the encoding 117 if (!encoding && matchesCount > 0) 118 encoding = ucsdet_getName(matches[0], &status) [all...] |