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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLScriptElement.idl 24 [Reflect] attribute DOMString charset;
  /external/chromium_org/third_party/icu/source/common/
uinvchar.h 63 # error Unknown charset family!
83 # error Unknown charset family!
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestGetMessage.java 41 public BluetoothMasRequestGetMessage(String handle, CharsetType charset, boolean attachment) {
49 oap.add(OAP_TAGID_CHARSET, CharsetType.UTF_8.equals(charset) ? CHARSET_UTF8
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
IllegalCharsetNameExceptionTest.java 17 package org.apache.harmony.tests.java.nio.charset;
20 import java.nio.charset.IllegalCharsetNameException;
UnsupportedCharsetExceptionTest.java 17 package org.apache.harmony.tests.java.nio.charset;
20 import java.nio.charset.UnsupportedCharsetException;
  /libcore/luni/src/main/java/java/nio/charset/
Charset.java 18 package java.nio.charset;
23 import java.nio.charset.spi.CharsetProvider;
36 * A charset is a named mapping between Unicode characters and byte sequences. Every
37 * {@code Charset} can <i>decode</i>, converting a byte sequence into a sequence of characters,
39 * Use the method {@link #canEncode} to find out whether a charset supports both.
45 * all characters can necessarily be represented by a given charset. The method {@link #contains}
46 * can be used to determine whether every character representable by one charset can also be
92 * <tr> <th>Charset</th> <th>Encoder writes</th> </tr>
107 * <tr> <th>Charset</th> <th>BE BOM</th> <th>LE BOM</th> <th>No BOM</th> </tr>
113 * <h4>Charset names</h4
225 Charset charset = NativeConverter.charsetForName(charsetName); local
226 charsets.put(charset.name(), charset); local
    [all...]
CharsetDecoder.java 17 package java.nio.charset;
25 * A converter that can convert a byte sequence from a charset into a 16-bit
56 * charset, the other is named unmappable character and it is returned when a
72 * decoding process for all charsets. Decoders for a specific charset should
81 * @see java.nio.charset.Charset
82 * @see java.nio.charset.CharsetEncoder
90 private final Charset charset; field in class:CharsetDecoder
104 * <code>Charset</code>, average number and maximum number of character
142 public final Charset charset() { method in class:CharsetDecoder
    [all...]
  /prebuilts/devtools/tools/lib/
httpmime-4.1.jar 
  /prebuilts/tools/common/http-client/
httpmime-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.1/
httpmime-4.1.jar 
  /external/chromium_org/content/browser/net/
view_http_cache_job_factory.cc 42 virtual bool GetCharset(std::string* charset) OVERRIDE{
43 return core_->GetCharset(charset);
66 bool GetCharset(std::string* charset);
160 bool ViewHttpCacheJob::Core::GetCharset(std::string* charset) {
161 charset->assign("UTF-8");
  /external/chromium_org/ppapi/cpp/dev/
truetype_font_dev.h 81 PP_TrueTypeFontCharset_Dev charset() const { return desc_.charset; } function in class:pp::TrueTypeFontDesc_Dev
82 void set_charset(PP_TrueTypeFontCharset_Dev charset) {
83 desc_.charset = charset;
  /external/chromium_org/ppapi/proxy/
serialized_structs.cc 97 charset() {
111 charset = desc.charset;
122 desc->charset = charset;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertyResourceBundleTest.java 28 import java.nio.charset.Charset;
50 assertEquals("iso-8859-1", prb.getString("charset"));
56 assertEquals("UTF-8", prb.getString("charset"));
73 Charset charset = Charset.forName("ISO-8859-1"); local
75 CharBuffer cbuffer = charset.decode(ByteBuffer.wrap(content
85 charset = Charset.forName("UTF-8")
    [all...]
  /external/chromium_org/net/http/
http_content_disposition.cc 63 const std::string& charset,
76 return net::ConvertToUtf8(decoded, charset.c_str(), output);
90 // Try UTF-8, referrer_charset and the native OS default charset in turn.
110 // =?charset?<E>?<encoded string>?= where '<E>' is either 'B' or 'Q'.
116 std::string charset; local
130 // Do we need charset validity check here?
131 charset = part;
146 *is_rfc2047 = DecodeBQEncoding(part, enc_type, charset, &decoded_word);
197 // We can try either the OS default charset or 'origin charset' here
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
convtest.cpp 27 * is for a Unicode charset, so it would be difficult to only exclude those.
89 char charset[100], cbopt[4]; local
116 s=testCase->getString("charset", errorCode);
117 s.extract(0, 0x7fffffff, charset, sizeof(charset), "");
118 cc.charset=charset;
185 logln("TestToUnicode[%d] %s", i, charset);
201 char charset[100], cbopt[4]; local
229 s=testCase->getString("charset", errorCode)
355 char charset[100]; local
    [all...]
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 33 import java.nio.charset.Charset;
81 * @param charset the character set used to decode the input stream
85 final InputSupplier<? extends InputStream> in, final Charset charset) {
87 Preconditions.checkNotNull(charset);
91 return new InputStreamReader(in.getInput(), charset);
101 * @param charset the character set used to encode the output stream
105 final OutputSupplier<? extends OutputStream> out, final Charset charset) {
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
CharsetEncoderTest.java 17 package libcore.java.nio.charset;
21 import java.nio.charset.Charset;
22 import java.nio.charset.CharsetEncoder;
23 import java.nio.charset.CoderResult;
24 import java.nio.charset.CodingErrorAction;
30 Charset ascii = Charset.forName("US-ASCII");
40 private void assertReplacementBytesForEncoder(String charset, byte[] bytes) {
41 byte[] result = Charset.forName(charset).newEncoder().replacement()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
utils.py 119 (?P<charset>[^?]*?) # non-greedy up to the next ? is the charset
251 def encode_rfc2231(s, charset=None, language=None):
254 If neither charset nor language is given, then s is returned as-is. If
255 charset is given but not language, the string is encoded using the empty
260 if charset is None and language is None:
264 return "%s'%s'%s" % (charset, language, s)
307 # decoding segments and concatenating, must have the charset and
316 charset, language, value = decode_rfc2231(value)
317 new_params.append((name, (charset, language, '"%s"' % value))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
utils.py 119 (?P<charset>[^?]*?) # non-greedy up to the next ? is the charset
251 def encode_rfc2231(s, charset=None, language=None):
254 If neither charset nor language is given, then s is returned as-is. If
255 charset is given but not language, the string is encoded using the empty
260 if charset is None and language is None:
264 return "%s'%s'%s" % (charset, language, s)
307 # decoding segments and concatenating, must have the charset and
316 charset, language, value = decode_rfc2231(value)
317 new_params.append((name, (charset, language, '"%s"' % value))
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 60 * Credential charset is configured via the
62 * credential charset} parameter.
64 * Authentication header, the charset of the username must be compatible
67 * http element charset}.
233 String charset = getParameter("charset"); local
234 if (charset == null) {
235 charset = AuthParams.getCredentialCharset(request.getParams());
236 getParameters().put("charset", charset);
281 String charset = getParameter("charset"); local
    [all...]
  /external/chromium_org/chrome/utility/importer/
bookmark_html_reader_unittest.cc 27 // Tests charset.
28 std::string charset; local
31 "CONTENT=\"text/html; charset=UTF-8\">",
32 &charset);
34 EXPECT_EQ("UTF-8", charset);
43 charset, &folder_name, &is_toolbar_folder, &folder_add_date);
52 charset, &folder_name, &is_toolbar_folder, &folder_add_date);
66 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
77 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data);
87 charset, &title, &url, &favicon, &shortcut, &add_date, &post_data)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRuleImport.cpp 70 void StyleRuleImport::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* cachedStyleSheet)
76 context.setCharset(charset);
130 FetchRequest request(ResourceRequest(absURL), FetchInitiatorTypeNames::css, m_parentStyleSheet->charset());
  /external/guava/guava/src/com/google/common/hash/
AbstractCompositeHashFunction.java 5 import java.nio.charset.Charset;
113 @Override public Hasher putString(CharSequence chars, Charset charset) {
115 hasher.putString(chars, charset);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
CountedDataInputStream.java 25 import java.nio.charset.Charset;
131 public String readString(int n, Charset charset) throws IOException {
134 return new String(buf, charset);

Completed in 364 milliseconds

1 2 3 4 5 6 7 891011>>