HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 151 - 175 of 507) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 170 int encoding = android.telephony.SmsMessage.ENCODING_UNKNOWN; local
174 if (encoding != details.codeUnitSize
175 && (encoding == android.telephony.SmsMessage.ENCODING_UNKNOWN
176 || encoding == android.telephony.SmsMessage.ENCODING_7BIT)) {
177 encoding = details.codeUnitSize;
208 encoding);
259 int encoding = android.telephony.SmsMessage.ENCODING_UNKNOWN; local
263 if (encoding != details.codeUnitSize
264 && (encoding == android.telephony.SmsMessage.ENCODING_UNKNOWN
265 || encoding == android.telephony.SmsMessage.ENCODING_7BIT))
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
URIEncoderDecoder.java 28 * methods used by the URI class, and performs encoding and decoding in a
35 static final String encoding = "UTF8"; //$NON-NLS-1$ field in class:URIEncoderDecoder
126 byte[] bytes = new String(new char[] { ch }).getBytes(encoding);
157 byte[] bytes = new String(new char[] { ch }).getBytes(encoding);
170 * x-www-form-urlencoded} MIME content type using the UTF-8 encoding scheme.
207 result.append(out.toString(encoding));
  /dalvik/libcore/security/src/main/java/java/security/cert/
CertificateFactorySpi.java 96 * default encoding scheme is applied.
112 * InputStream} in the specified encoding.
116 * encoding.
117 * @param encoding
118 * the encoding of the data in the input stream.
125 public CertPath engineGenerateCertPath(InputStream inStream, String encoding)
133 * encoding is the default encoding.
152 * (as Strings). The first element is the default encoding.
  /dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 49 String encoding)
53 setEncoding(encoding);
55 public ToSAXHandler(ContentHandler handler, String encoding)
58 setEncoding(encoding);
XSLOutputAttributes.java 36 * encoding
73 * @return the character encoding to be used in the output document.
146 * Sets the character encoding coming from the xsl:output encoding stylesheet attribute.
147 * @param encoding the character encoding
149 public void setEncoding(String encoding);
190 * <li> "encoding"
213 * <li> "encoding"
228 * <li> "encoding"
    [all...]
  /external/bluetooth/bluez/common/
sdp-xml.h 37 sdp_data_t *sdp_xml_parse_text(const char *data, char encoding);
  /external/bluetooth/bluez/sbc/
formats.h 52 uint32_t encoding; /* see to AU_FMT_XXXX */ member in struct:au_header
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 28 public HTMLDocument (final String title, final String encoding)
35 // specify encoding META before anything else:
36 if ((encoding != null) && (encoding.length () != 0))
42 .set (Attribute.CONTENT, "text/html; charset=" + encoding);
  /external/expat/amiga/
expat_vectors.c 33 extern XML_Parser _Expat_XML_ParserCreate_MM(struct ExpatIFace *, const XML_Char * encoding, const XML_Memory_Handling_Suite * memsuite, const XML_Char * namespaceSeparator);
34 extern XML_Parser _Expat_XML_ExternalEntityParserCreate(struct ExpatIFace *, XML_Parser parser, const XML_Char * context, const XML_Char * encoding);
80 extern enum XML_Status _Expat_XML_SetEncoding(struct ExpatIFace *, XML_Parser parser, const XML_Char * encoding);
85 extern XML_Bool _Expat_XML_ParserReset(struct ExpatIFace *, XML_Parser parser, const XML_Char * encoding);
182 XML_Parser _Expat_XML_ParserCreate(struct ExpatIFace * Self, const XML_Char *encoding)
184 return XML_ParserCreate(encoding);
187 XML_Parser _Expat_XML_ParserCreateNS(struct ExpatIFace * Self, const XML_Char *encoding, XML_Char nsSep)
189 return XML_ParserCreateNS(encoding, nsSep);
192 XML_Parser _Expat_XML_ParserCreate_MM(struct ExpatIFace * Self, const XML_Char *encoding, const XML_Memory_Handling_Suite *memsuite, const XML_Char *namespaceSeparator)
194 return XML_ParserCreate_MM(encoding, memsuite, namespaceSeparator)
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebDataSource.idl 125 @result Returns either the override encoding, as set on the WebView for this
126 dataSource or the encoding from the response.
214 HRESULT overrideEncoding([out, retval] BSTR* encoding);
215 HRESULT setOverrideEncoding([in] BSTR encoding);
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ps3.c 78 iwr.u.encoding.flags = i + 1;
80 iwr.u.encoding.pointer = (caddr_t) params->wep_key[i];
81 iwr.u.encoding.length = params->wep_key_len[i];
83 iwr.u.encoding.flags = IW_ENCODE_NOKEY |
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
Util.java 40 String encoding = System.getProperty("file.encoding"); typedefs
42 if (encoding != null) {
44 "".getBytes(encoding); typedefs
46 encoding = null;
49 defaultEncoding = encoding;
53 * Get bytes from String using default encoding; default encoding can
54 * be changed via "os.encoding" property
69 * Get bytes from String with UTF8 encoding
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/
X509CRLImpl.java 84 private byte[] encoding; field in class:X509CRLImpl
132 public X509CRLImpl(byte[] encoding) throws IOException {
133 this((CertificateList) CertificateList.ASN1.decode(encoding));
145 if (encoding == null) {
146 encoding = crl.getEncoded();
148 byte[] result = new byte[encoding.length];
149 System.arraycopy(encoding, 0, result, 0, encoding.length);
X509CertImpl.java 97 // encoding of the certificate
99 private volatile byte[] encoding; field in class:X509CertImpl
138 * @param encoding byte array containing ASN.1 encoded form of certificate.
141 public X509CertImpl(byte[] encoding) throws IOException {
142 this((Certificate) Certificate.ASN1.decode(encoding));
473 if (encoding == null) {
474 encoding = certificate.getEncoded();
476 byte[] result = new byte[encoding.length];
477 System.arraycopy(encoding, 0, result, 0, encoding.length)
    [all...]
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 111 public CertPath engineGenerateCertPath(InputStream inStream, String encoding)
116 if (encoding.length() == 0) {
118 throw new IllegalArgumentException("Encoding is empty");
  /dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 92 * Set to use binary output stream with given encoding.
94 void setOutput (OutputStream os, String encoding)
99 * <p><b>WARNING</b> no information about encoding is available!
105 * Write &lt;&#63;xml declaration with encoding (if encoding not null)
109 void startDocument (String encoding, Boolean standalone)
  /external/icu4c/test/letest/
PortableFontInstance.h 75 virtual const char *getNameString(le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language) const;
77 virtual const LEUnicode16 *getUnicodeNameString(le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language) const;
  /external/webkit/WebKit/win/
WebDataSource.h 105 /* [retval][out] */ BSTR *encoding);
108 /* [in] */ BSTR encoding);
  /external/webkit/WebCore/platform/mac/
WebCoreNSStringExtras.mm 105 TextEncoding encoding;
106 error = UpgradeScriptInfoToTextEncoding(kTextScriptDontCare, lang, region, NULL, &encoding);
110 return encoding;
  /external/webkit/WebCore/platform/network/
FormDataBuilder.cpp 81 TextEncoding encoding; local
85 if ((encoding = TextEncoding(*it)).isValid())
86 return encoding;
90 return frame->loader()->encoding();
115 // so we should test popular servers to find out if there is an encoding form they can handle.
199 void FormDataBuilder::addFilenameToMultiPartHeader(Vector<char>& buffer, const TextEncoding& encoding, const String& filename)
204 appendQuotedString(buffer, encoding.encode(filename.characters(), filename.length(), QuestionMarksForUnencodables));
  /external/webkit/WebCore/platform/network/cf/
ResourceRequestCFNet.cpp 130 CFStringEncoding encoding = CFStringConvertIANACharSetNameToEncoding(encodingName.get()); local
131 if (encoding != kCFStringEncodingInvalidId)
132 CFArrayAppendValue(encodingFallbacks.get(), reinterpret_cast<const void*>(encoding));
176 CFStringEncoding encoding = reinterpret_cast<CFIndex>(CFArrayGetValueAtIndex(encodingFallbacks.get(), i)); local
177 if (encoding != kCFStringEncodingInvalidId)
178 m_responseContentDispositionEncodingFallbackArray.append(CFStringConvertEncodingToIANACharSetName(encoding));
  /external/webkit/WebKit/mac/WebView/
WebPDFDocumentExtras.mm 124 NSStringEncoding encoding = (length > 1 && bytes[0] == 0xFE && bytes[1] == 0xFF) ? NSUnicodeStringEncoding : NSUTF8StringEncoding;
125 NSString *script = [[NSString alloc] initWithBytes:bytes length:length encoding:encoding];
  /external/bluetooth/glib/glib/
giochannel.c 55 /* This needs to be as wide as the largest character in any possible encoding */
62 #define USE_BUF(channel) ((channel)->encoding ? (channel)->encoded_read_buf \
90 channel->encoding = g_strdup ("UTF-8");
144 g_free (channel->encoding);
478 if (channel->encoding)
598 if (channel->encoding)
937 " channel's encoding.\n");
946 /* If there's anything here, it's because the encoding is UTF-8,
1046 * The buffering state can only be set if the channel's encoding
1047 * is %NULL. For any other encoding, the channel must be buffered
    [all...]
  /external/libxml2/include/libxml/
parser.h 73 const xmlChar *encoding; /* the encoding string for entity */ member in struct:_xmlParserInput
191 const xmlChar *encoding; /* the declared encoding, if any */ member in struct:_xmlParserCtxt
248 int charset; /* encoding of the in-memory content
799 #include <libxml/encoding.h>
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
Extension.java 38 * The class encapsulates the ASN.1 DER encoding/decoding work
98 private byte[] encoding; field in class:Extension
170 // @param encoding: byte[]
173 byte[] rawExtnValue, byte[] encoding,
177 this.encoding = encoding;
226 if (encoding == null) {
227 encoding = Extension.ASN1.encode(this);
229 return encoding;
419 // second - raw encoding of octet strin
    [all...]

Completed in 1254 milliseconds

1 2 3 4 5 67 8 91011>>