HomeSort by relevance Sort by last modified time
    Searched full:encoding (Results 876 - 900 of 15931) sorted by null

<<31323334353637383940>>

  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSOutput.java 19 * stream (possibly with a specified encoding), a base URI, and/or a
88 * The character encoding to use for the output. The encoding must be a
89 * string acceptable for an XML encoding declaration ([<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>] section
90 * 4.3.3 "Character Encoding in Entities"), it is recommended that
97 * The character encoding to use for the output. The encoding must be a
98 * string acceptable for an XML encoding declaration ([<a href='http://www.w3.org/TR/2004/REC-xml-20040204'>XML 1.0</a>] section
99 * 4.3.3 "Character Encoding in Entities"), it is recommended that
104 public void setEncoding(String encoding);
    [all...]
  /external/expat/lib/
xmltok.c 125 isNever(const ENCODING *enc, const char *p)
131 utf8_isName2(const ENCODING *enc, const char *p)
137 utf8_isName3(const ENCODING *enc, const char *p)
145 utf8_isNmstrt2(const ENCODING *enc, const char *p)
151 utf8_isNmstrt3(const ENCODING *enc, const char *p)
159 utf8_isInvalid2(const ENCODING *enc, const char *p)
165 utf8_isInvalid3(const ENCODING *enc, const char *p)
171 utf8_isInvalid4(const ENCODING *enc, const char *p)
177 ENCODING enc;
180 int (PTRFASTCALL *byteType)(const ENCODING *, const char *)
1093 const ENCODING **encoding, variable
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebSearchableFormData.cpp 54 // Gets the encoding for the form.
55 void GetFormEncoding(const HTMLFormElement* form, TextEncoding* encoding)
62 *encoding = TextEncoding(*i);
63 if (encoding->isValid())
66 *encoding = TextEncoding(form->document()->loader()->writer()->encoding());
146 // elements is added to enc_string and the encoding used is set in
150 TextEncoding encoding; local
151 GetFormEncoding(form, &encoding);
152 if (!encoding.isValid())
245 String encoding; local
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
KeyStoreTestSupport.java 119 private final byte[] encoding; field in class:KeyStoreTestSupport.MCertificate
123 public MCertificate(String type, byte[] encoding) {
125 this.encoding = encoding;
130 return encoding.clone();
155 return encoding;
  /external/chromium/base/i18n/
icu_encoding_detection.cc 14 bool DetectEncoding(const std::string& text, std::string* encoding) {
16 *encoding = std::string();
33 *encoding = detected_encoding;
52 // ICU has some heuristics for encoding detection, such that the more likely
64 // If we failed to get the encoding's name, ignore the error.
74 // A confidence level >= 10 means that the encoding is expected to properly
  /external/chromium/webkit/glue/
ftp_directory_listing_response_delegate.cc 37 // Try detecting the encoding. The sample is rather small though, so it may
39 std::string encoding;
40 if (base::DetectEncoding(path, &encoding) && !encoding.empty()) {
42 if (base::CodepageToUTF16(path, encoding.c_str(),
49 // Use system native encoding as the last resort.
  /external/clang/test/Analysis/
uninit-vals-ps.c 75 extern CFStringRef CFStringConvertEncodingToIANACharSetName(CFStringEncoding encoding);
78 CFStringEncoding encoding; local
79 // &encoding is casted to void*. This test case tests whether or not
80 // we properly invalidate the value of 'encoding'.
81 CFNumberGetValue(nr, 9, &encoding);
82 return CFStringConvertEncodingToIANACharSetName(encoding); // no-warning
  /external/markdown/markdown/
commandline.py 40 'encoding': None }, CRITICAL
49 parser.add_option("-e", "--encoding", dest="encoding",
50 help="encoding for input and output files",)
84 'encoding': options.encoding,
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
BasicConstraints.java 52 public BasicConstraints(byte[] encoding) throws IOException {
53 super(encoding);
54 Object[] values = (Object[]) ASN1.decode(encoding);
69 if (encoding == null) {
70 encoding = ASN1.encode(new Object[]{ca, BigInteger.valueOf(pathLenConstraint) });
72 return encoding;
ExtendedKeyUsage.java 51 public ExtendedKeyUsage(byte[] encoding) {
52 super(encoding);
67 if (encoding == null) {
68 encoding = ASN1.encode(keys);
70 return encoding;
79 // incorrect extension value encoding
ReasonCode.java 62 public ReasonCode(byte[] encoding) throws IOException {
63 super(encoding);
64 this.code = ((byte[]) ASN1.decode(encoding))[0];
68 if (encoding == null) {
69 encoding = ASN1.encode(new byte[] { code });
71 return encoding;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
KeyStoreTestSupport.java 119 private final byte[] encoding; field in class:KeyStoreTestSupport.MCertificate
123 public MCertificate(String type, byte[] encoding) {
125 this.encoding = encoding;
130 return encoding.clone();
155 return encoding;
  /ndk/sources/host-tools/sed-4.2.1/m4/
locale-zh.m4 9 dnl Determine the name of a chinese locale with GB18030 encoding.
46 /* On Cygwin, avoid locale names without encoding suffix, because the
47 locale_charset() function relies on the encoding suffix. Note that
52 This excludes the UTF-8 encoding. */
71 # Test for the locale name without encoding suffix.
75 # Test for the locale name with explicit encoding suffix.
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
MiscPEMGenerator.java 101 byte[] encoding;
116 encoding = ((X509Certificate)o).getEncoded();
128 encoding = ((X509CRL)o).getEncoded();
148 encoding = info.getPrivateKey().getEncoded();
168 encoding = new DERSequence(v).getEncoded();
174 encoding = info.getPrivateKey().getEncoded();
185 encoding = ((PublicKey)o).getEncoded();
190 encoding = ((X509V2AttributeCertificate)o).getEncoded();
195 encoding = ((PKCS10CertificationRequest)o).getEncoded();
200 encoding = ((ContentInfo)o).getEncoded()
    [all...]
  /external/chromium/net/base/
data_url.h 26 // using ASCII encoding for octets inside the range of safe URL characters and
27 // using the standard %xx hex encoding of URLs for octets outside that range.
36 // decoded data (e.g.., if the data URL specifies base64 encoding, then the
  /external/llvm/lib/Target/X86/
X86TargetObjectFile.cpp 24 MachineModuleInfo *MMI, unsigned Encoding,
29 if (Encoding & (DW_EH_PE_indirect | DW_EH_PE_pcrel)) {
38 getExprForDwarfGlobalReference(GV, Mang, MMI, Encoding, Streamer);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptEncodingParser.java 33 * Accept-Encoding SIP (HTTP) Header parser.
43 * The Accept-Encoding request-header field is similar to Accept, but
48 * Accept-Encoding = "Accept-Encoding" ":"
49 * ( encoding *( "," encoding) )
50 * encoding = ( codings *[ ";" "q" "=" qvalue ] )
55 * Accept-Encoding: compress, gzip
56 * Accept-Encoding:
57 * Accept-Encoding:
    [all...]
  /external/webkit/Source/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
  /frameworks/base/core/java/android/webkit/
CacheLoader.java 26 * and encoding is added to the HTTP response headers.
57 if (!TextUtils.isEmpty(mCacheResult.encoding)) {
59 sb.append(mCacheResult.encoding);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ParserFactory.java 35 private final static String ENCODING = "UTF-8"; //$NON-NLS-1$
42 parser.setInput(new FileInputStream(f), ENCODING);
49 parser.setInput(stream, ENCODING);
  /libcore/luni/src/main/java/java/security/cert/
CertPath.java 33 * supported encoding scheme (i.e. PkiPath or PKCS7) when serialized.
138 * Returns an encoding of the {@code CertPath} using the default encoding.
140 * @return default encoding of the {@code CertPath}.
142 * if the encoding fails.
148 * Returns an encoding of the {@code CertPath} using the specified encoding.
150 * @param encoding
151 * encoding that should be generated.
152 * @return default encoding of the {@code CertPath}
    [all...]
  /cts/apps/CtsVerifier/res/layout/
fs_row.xml 1 <?xml version="1.0" encoding="utf-8"?>
  /cts/apps/CtsVerifier/res/menu/
test_list_menu.xml 1 <?xml version="1.0" encoding="utf-8"?>
  /cts/apps/CtsVerifier/res/values/
styles.xml 1 <?xml version="1.0" encoding="utf-8"?>
  /cts/development/ide/eclipse/
genclasspath.sh 14 echo '<?xml version="1.0" encoding="UTF-8"?>'

Completed in 1012 milliseconds

<<31323334353637383940>>