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

<<11121314151617181920>>

  /external/webkit/LayoutTests/fast/encoding/
css-charset-dom.html 21 document.getElementById("result").innerHTML = "cssText: " + charsetRule.cssText + "<br>encoding: " + charsetRule.encoding;
22 document.getElementById("result").innerHTML += "<br>Resetting encoding...";
23 charsetRule.encoding = "koi8-r";
24 document.getElementById("result").innerHTML += "<br>cssText: " + charsetRule.cssText + "<br>encoding: " + charsetRule.encoding;
parser-tests-10-expected.txt 1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html
6 56, 57, 58, 59 - we do not run scripts during encoding detection phase and parser treats meta inside a script as text, not a tag.
8 97, 99, 102 - we do not run scripts during encoding detection.
parser-tests-100-expected.txt 1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html
6 56, 57, 58, 59 - we do not run scripts during encoding detection phase and parser treats meta inside a script as text, not a tag.
8 97, 99, 102 - we do not run scripts during encoding detection.
parser-tests-110-expected.txt 1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html
6 56, 57, 58, 59 - we do not run scripts during encoding detection phase and parser treats meta inside a script as text, not a tag.
8 97, 99, 102 - we do not run scripts during encoding detection.
parser-tests-120-expected.txt 1 This test suite was converted from http://www.hixie.ch/tests/adhoc/html/parsing/encoding/all.html
6 56, 57, 58, 59 - we do not run scripts during encoding detection phase and parser treats meta inside a script as text, not a tag.
8 97, 99, 102 - we do not run scripts during encoding detection.
  /external/webkit/Source/WebCore/css/
CSSCharsetRule.h 32 static PassRefPtr<CSSCharsetRule> create(CSSStyleSheet* parent, const String& encoding)
34 return adoptRef(new CSSCharsetRule(parent, encoding));
39 const String& encoding() const { return m_encoding; } function in class:WebCore::CSSCharsetRule
40 void setEncoding(const String& encoding, ExceptionCode&) { m_encoding = encoding; }
45 CSSCharsetRule(CSSStyleSheet* parent, const String& encoding);
  /hardware/ril/mock-ril/src/cpp/
node_util.cpp 23 enum encoding ParseEncoding(v8::Handle<v8::Value> encoding_v, enum encoding _default) {
28 v8::String::Utf8Value encoding(encoding_v->ToString());
30 if (strcasecmp(*encoding, "utf8") == 0) {
32 } else if (strcasecmp(*encoding, "utf-8") == 0) {
34 } else if (strcasecmp(*encoding, "ascii") == 0) {
36 } else if (strcasecmp(*encoding, "binary") == 0) {
38 } else if (strcasecmp(*encoding, "raw") == 0) {
42 } else if (strcasecmp(*encoding, "raws") == 0) {
43 fprintf(stderr, "'raws' encoding has been renamed to 'binary'.
    [all...]
node_util.h 22 enum encoding {ASCII, UTF8, BINARY}; enum
24 enum encoding ParseEncoding(v8::Handle<v8::Value> encoding_v,
25 enum encoding _default = BINARY);
30 enum encoding encoding = BINARY);
36 enum encoding encoding = BINARY);
  /external/expat/lib/
xmltok.h 125 struct encoding;
126 typedef struct encoding ENCODING;
128 typedef int (PTRCALL *SCANNER)(const ENCODING *,
133 struct encoding { struct
136 int (PTRCALL *sameName)(const ENCODING *,
139 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
144 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
145 int (PTRCALL *getAtts)(const ENCODING *enc
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
encoding_menu_controller.cc 87 std::string encoding = current_tab_encoding;
88 if (encoding.empty())
89 encoding = browser_profile->GetPrefs()->GetString(prefs::kDefaultCharset);
96 if (!encoding.empty()) {
97 return encoding ==
116 // Create current display encoding list.
119 // Build the list of encoding ids : It is made of the
133 string16 encoding = it->encoding_display_name; local
134 base::i18n::AdjustStringForLocaleDirection(&encoding);
135 menu_items->push_back(EncodingMenuItem(it->encoding_id, encoding));
    [all...]
  /external/stlport/doc/
README.utf8 2 utf8 is a way of encoding wide characters. As so, management of encoding in
4 of the ctype category. However utf8 only describe how encoding must be
22 The only solution to get a locale instance that will handle utf8 encoding
24 encoding:
35 You can also access the facet directly to perform utf8 encoding/decoding operations:
38 const codecvt_t& encoding = use_facet<codecvt_t>(loc);
44 language[_country[.encoding]]
50 2. utf8 encoding is only supported for the moment under Windows. The less common
51 utf7 encoding is also supported
    [all...]
  /external/chromium/chrome/browser/
character_encoding.h 17 // Enumeration of the types of Browser encoding name we
21 // Structure to save encoding information.
25 // l10n_util::SortVectorWithStringKey to sort the encoding menu items
27 // encoding category name, that's why we use category name as key.
30 // Encoding command id.
32 // Encoding display name.
34 // Encoding category name.
38 // Return canonical encoding name according to the command ID.
43 // Return display name of canonical encoding according to the command
48 // Return count number of all supported canonical encoding
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertPath.java 50 * my cert path the only encoding
52 private final byte[] encoding; field in class:MyCertPath
58 public MyCertPath(byte[] encoding) {
60 this.encoding = encoding;
62 certificates.add(new MyCertificate("MyEncoding", encoding));
81 return encoding.clone();
86 * <code>encoding</code> parameter
88 * if <code>encoding</code> not equals "MyEncoding"
91 public byte[] getEncoded(String encoding)
    [all...]
  /external/libxml2/
HTMLtree.c 35 * Getting/Setting encoding meta tags *
43 * Encoding definition lookup in the Meta tags
45 * Returns the current encoding as flagged in the HTML source
51 const xmlChar *encoding; local
128 encoding = xmlStrstr(content, BAD_CAST"charset=");
129 if (encoding == NULL)
130 encoding = xmlStrstr(content, BAD_CAST"Charset=");
131 if (encoding == NULL)
132 encoding = xmlStrstr(content, BAD_CAST"CHARSET=");
133 if (encoding != NULL)
527 const char *encoding; local
1030 const char *encoding; local
1090 const char *encoding; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs7/
AuthenticatedAttributes.java 35 private byte[] encoding; field in class:AuthenticatedAttributes
38 private AuthenticatedAttributes(byte[] encoding,
40 this.encoding = encoding;
52 if (encoding == null) {
53 encoding = ASN1.encode(this);
55 return encoding;
  /external/icu4c/extra/uconv/
uconv.1.in 12 \- convert data from one encoding to another
64 .BI "\-f\fP, \fB\-\-from\-code" " encoding"
67 .BI "\-t\fP, \fB\-\-to\-code" " encoding"
88 .I encoding
90 The transcoding is done using Unicode as a pivot encoding
91 (i.e. the data are first transcoded from their original encoding to
92 Unicode, and then from Unicode to the destination encoding).
95 .I encoding
98 the default encoding is used. Thus, calling
101 .I encoding
    [all...]
  /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...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
CertificatePolicies.java 34 * The class encapsulates the ASN.1 DER encoding/decoding work
49 private byte[] encoding; field in class:CertificatePolicies
56 public static CertificatePolicies decode(byte[] encoding) throws IOException {
57 CertificatePolicies cps = ((CertificatePolicies) ASN1.decode(encoding));
58 cps.encoding = encoding;
62 private CertificatePolicies(List<PolicyInformation> policyInformations, byte[] encoding) {
64 this.encoding = encoding;
75 encoding = null
    [all...]
  /frameworks/base/core/java/android/webkit/
WebResourceResponse.java 53 * Construct a response with the given mime type, encoding, and data.
55 * @param encoding The encoding of the bytes read from data.
59 public WebResourceResponse(String mimeType, String encoding,
62 mEncoding = encoding;
82 * Set the encoding of the response data (i.e. utf-8). This will be used to
84 * @param encoding
86 public void setEncoding(String encoding) {
87 mEncoding = encoding;
  /external/libxml2/include/libxml/
xmlsave.h 15 #include <libxml/encoding.h>
45 const char *encoding,
49 const char *encoding,
54 const char *encoding,
61 const char *encoding,
  /external/llvm/test/MC/ARM/
arm_fixups.s 1 @ RUN: llvm-mc -triple armv7-unknown-unknown %s --show-encoding > %t
5 @ CHECK: bl _printf @ encoding: [A,A,A,0xeb]
12 @ CHECK: movw r9, :lower16:_foo @ encoding: [A,0x90'A',0b0000AAAA,0xe3]
14 @ CHECK: movw r9, :lower16:_foo @ encoding: [A,0x90'A',0b0000AAAA,0xe3]
16 @ CHECK: movt r9, :upper16:_foo @ encoding: [A,0x90'A',0b0100AAAA,0xe3]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERExternal.java 15 private int encoding; field in class:DERExternal
84 * @param encoding The encoding to be used for the external data
87 public DERExternal(DERObjectIdentifier directReference, DERInteger indirectReference, ASN1Object dataValueDescriptor, int encoding, DERObject externalData)
92 setEncoding(encoding);
137 DERTaggedObject obj = new DERTaggedObject(encoding, externalContent);
199 * Returns the encoding of the content. Valid values are
205 * @return The encoding
209 return encoding;
249 * Sets the encoding of the content. Valid values ar
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
CHANGELOG.txt 5 * Change to encoding to fix last change to encoding of spaces
7 * Another change to encoding per
  /external/freetype/src/cff/
cffcmap.h 30 /***** TYPE1 STANDARD (AND EXPERT) ENCODING CMAPS *****/
35 /* standard (and expert) encoding cmaps */
52 /***** CFF SYNTHETIC UNICODE ENCODING CMAP *****/
  /external/llvm/test/CodeGen/X86/
andimm8.ll 1 ; RUN: llc < %s -march=x86-64 -mtriple=x86_64-pc-linux-gnu -show-mc-encoding -join-physregs | FileCheck %s
4 ; CHECK: andl $-64, %edi # encoding: [0x83,0xe7,0xc0]
12 ; CHECK: orq $2, %rdi # encoding: [0x48,0x83,0xcf,0x02]

Completed in 333 milliseconds

<<11121314151617181920>>