HomeSort by relevance Sort by last modified time
    Searched refs:charset (Results 101 - 125 of 913) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/fetch/
FetchRequest.h 44 explicit FetchRequest(const ResourceRequest&, const AtomicString& initiator, const String& charset = String(), ResourceLoadPriority = ResourceLoadPriorityUnresolved);
52 const String& charset() const { return m_charset; } function in class:WebCore::FetchRequest
53 void setCharset(const String& charset) { m_charset = charset; }
ScriptResource.h 37 ScriptResource(const ResourceRequest&, const String& charset);
TextResource.h 25 TextResource(const ResourceRequest&, Type, const String& mimeType, const String& charset);
XSLStyleSheetResource.h 39 XSLStyleSheetResource(const ResourceRequest&, const String& charset);
  /external/pdfium/core/src/fxge/android/
fx_android_font.cpp 26 void* CFX_AndroidFontInfo::MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR face, FX_BOOL& bExact)
47 return m_pFontMgr->CreateFont(face, charset, dwStyle, FPF_MATCHFONT_REPLACEANSI);
68 FX_BOOL CFX_AndroidFontInfo::GetFontCharset(void* hFont, int& charset)
73 charset = ((IFPF_Font*)hFont)->GetCharset();
  /libcore/benchmarks/src/benchmarks/regression/
CharsetForNameBenchmark.java 19 import java.nio.charset.Charset;
24 // canonical => canonical charset name
25 // built-in => guaranteed-present charset
26 // special-case => libcore treats this charset specially for performance
42 Charset.forName(charsetName);
DefaultCharsetBenchmark.java 19 import java.nio.charset.Charset;
26 Charset.defaultCharset();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
UTF16BECharsetTest.java 17 package org.apache.harmony.tests.java.nio.charset;
35 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testEncode_Normal()
46 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testDecode_Normal()
UTF16CharsetEncoderTest.java 17 package org.apache.harmony.tests.java.nio.charset;
21 import java.nio.charset.CharacterCodingException;
22 import java.nio.charset.Charset;
23 import java.nio.charset.CharsetDecoder;
30 // charset for utf-16
31 // charset for utf-16be
32 private static final Charset CS = Charset.forName("utf-16");
UTF16LECharsetTest.java 17 package org.apache.harmony.tests.java.nio.charset;
35 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testEncode_Normal()
46 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testDecode_Normal()
  /libcore/luni/src/main/java/java/net/
InetUnixAddress.java 19 import java.nio.charset.StandardCharsets;
  /libcore/luni/src/main/java/java/nio/charset/
CodingErrorAction.java 17 package java.nio.charset;
StandardCharsets.java 17 package java.nio.charset;
28 * The ISO-8859-1 charset.
30 public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
33 * The US-ASCII charset.
35 public static final Charset US_ASCII = Charset.forName("US-ASCII");
38 * The UTF-8 charset.
40 public static final Charset UTF_8 = Charset.forName("UTF-8")
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeConverter.java 12 import java.nio.charset.Charset;
13 import java.nio.charset.CharsetDecoder;
14 import java.nio.charset.CharsetEncoder;
15 import java.nio.charset.CodingErrorAction;
40 public static native Charset charsetForName(String charsetName);
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePart.java 62 /** Default charset of file attachments. */
88 * @param charset the charset encoding for this part, if <code>null</code> the
91 public FilePart(String name, PartSource partSource, String contentType, String charset) {
96 charset == null ? "ISO-8859-1" : charset,
137 * @param charset the charset encoding for this part, if <code>null</code> the
143 public FilePart(String name, File file, String contentType, String charset)
145 this(name, new FilePartSource(file), contentType, charset);
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
URLCodec.java 43 * 1.4 rely on the platform's default charset encoding.
53 * The default charset used for string decoding and encoding.
55 protected String charset = StringEncodings.UTF8; field in class:URLCodec
94 * Constructor which allows for the selection of a default charset
96 * @param charset the default string charset to use.
98 public URLCodec(String charset) {
100 this.charset = charset;
212 * string charset. Unsafe characters are escaped
    [all...]
QuotedPrintableCodec.java 61 * The default charset used for string decoding and encoding.
63 private String charset = StringEncodings.UTF8; field in class:QuotedPrintableCodec
96 * Constructor which allows for the selection of a default charset
98 * @param charset
99 * the default string charset to use.
101 public QuotedPrintableCodec(String charset) {
103 this.charset = charset;
234 * Encodes a string into its quoted-printable form using the default string charset. Unsafe characters are escaped.
262 * Decodes a quoted-printable string into its original form using the specified string charset. Escaped character
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
message.py 16 import email.charset namespace
43 three tuple (charset, language, value), it will be encoded according
48 # are (charset, language, value). charset is a string, not a Charset
220 def set_payload(self, payload, charset=None):
223 Optional charset sets the message's default character set. See
227 if charset is not None:
228 self.set_charset(charset)
230 def set_charset(self, charset)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
message.py 16 import email.charset namespace
43 three tuple (charset, language, value), it will be encoded according
48 # are (charset, language, value). charset is a string, not a Charset
220 def set_payload(self, payload, charset=None):
223 Optional charset sets the message's default character set. See
227 if charset is not None:
228 self.set_charset(charset)
230 def set_charset(self, charset)
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 141 String charset = AuthParams.getCredentialCharset(request.getParams()); local
142 return authenticate(credentials, charset, isProxy());
147 * {@link Credentials} and charset.
150 * @param charset The charset to use for encoding the credentials
156 final String charset,
161 if (charset == null) {
162 throw new IllegalArgumentException("charset may not be null");
171 EncodingUtils.getBytes(tmp.toString(), charset));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 16 charset = "iso8859-1" # Full 8 bit variable
28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
93 k = bytes(k, charset)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 16 charset = "iso8859-1" # Full 8 bit variable
28 v = (v[0], v[1].decode(charset))
36 v = (v[0], v[1].decode(charset))
42 v = (v[0], v[1].decode(charset))
48 v = (v[0], v[1].decode(charset))
54 v = (v[0], v[1].decode(charset))
60 v = (v[0], v[1].decode(charset))
74 key = key.decode(charset)
75 return (key, value.decode(charset))
93 k = bytes(k, charset)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ProcessingInstruction.cpp 97 String charset; local
98 if (!checkStyleSheet(href, charset))
100 process(href, charset);
103 bool ProcessingInstruction::checkStyleSheet(String& href, String& charset)
126 charset = attrs.get("charset");
135 void ProcessingInstruction::process(const String& href, const String& charset)
159 request.setCharset(charset.isEmpty() ? document().charset() : charset);
196 CSSParserContext parserContext(document(), 0, baseURL, charset); local
257 String charset; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_AbstractTest.java 17 package libcore.java.nio.charset;
21 import java.nio.charset.CharacterCodingException;
22 import java.nio.charset.Charset;
23 import java.nio.charset.CharsetDecoder;
24 import java.nio.charset.CharsetEncoder;
25 import java.nio.charset.CodingErrorAction;
29 * Super class for concrete charset test suites.
34 static private Charset charset; field in class:OldCharset_AbstractTest
    [all...]
  /external/chromium_org/net/base/
data_url.cc 23 std::string* charset, std::string* data) {
25 DCHECK(charset->empty());
50 static const char kCharsetTag[] = "charset=";
57 } else if (charset->empty() &&
59 charset->assign(iter->substr(kCharsetTagLength));
69 if (charset->empty())
70 charset->assign("US-ASCII");

Completed in 673 milliseconds

1 2 3 45 6 7 8 91011>>