Searched refs:charset (Results 76 - 100 of 418) sorted by relevance

1234567891011>>

/external/guava/guava-tests/test/com/google/common/base/
H A DCharsetsTest.java21 import java.nio.charset.Charset;
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageFactoryExt.java41 * Set default charset used for encoding String content. Note that this
46 * @param charset -- charset to set.
48 * @throws IllegalArgumentException if Charset is not a known charset.
51 public void setDefaultContentEncodingCharset(String charset) argument
/external/icu/icu4c/source/test/intltest/
H A Dconvtest.cpp27 * 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;
123 if (strlen(charset) >= 8 &&
124 strncmp(charset+4, "2022-CN", 4) == 0) {
194 logln("TestToUnicode[%d] %s", i, charset);
210 char charset[100], cbopt[4]; local
373 char charset[100]; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_flash_font_file_host.cc25 PP_PrivateFontCharset charset)
34 charset,
20 PepperFlashFontFileHost( content::RendererPpapiHost* host, PP_Instance instance, PP_Resource resource, const ppapi::proxy::SerializedFontDescription& description, PP_PrivateFontCharset charset) argument
/external/chromium_org/components/dom_distiller/core/css/
H A Ddistilledpage.css4 @charset "utf-8";
/external/chromium_org/content/browser/
H A Dhistogram_internals_request_job.cc59 std::string* charset,
63 charset->assign("UTF8");
57 GetData( std::string* mime_type, std::string* charset, std::string* data, const net::CompletionCallback& callback) const argument
/external/chromium_org/ppapi/proxy/
H A Dflash_font_file_resource.cc20 PP_PrivateFontCharset charset)
22 charset_(charset) {
16 FlashFontFileResource( Connection connection, PP_Instance instance, const PP_BrowserFont_Trusted_Description* description, PP_PrivateFontCharset charset) argument
H A Dserialized_structs.cc97 charset() {
111 charset = desc.charset;
122 desc->charset = charset;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAnchorElement.idl22 [Reflect] attribute DOMString charset;
H A DHTMLScriptElement.idl24 [Reflect] attribute DOMString charset;
/external/chromium_org/third_party/icu/source/common/
H A Duinvchar.h63 # error Unknown charset family!
83 # error Unknown charset family!
/external/chromium_org/content/browser/net/
H A Dview_http_cache_job_factory.cc42 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) { argument
161 charset->assign("UTF-8");
/external/chromium_org/ppapi/cpp/dev/
H A Dtruetype_font_dev.h81 PP_TrueTypeFontCharset_Dev charset() const { return desc_.charset; } function in class:pp::TrueTypeFontDesc_Dev
82 void set_charset(PP_TrueTypeFontCharset_Dev charset) { argument
83 desc_.charset = charset;
/external/chromium_org/net/http/
H A Dhttp_content_disposition.cc63 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' her
61 DecodeBQEncoding(const std::string& part, RFC2047EncodingType enc_type, const std::string& charset, std::string* output) argument
252 ParseExtValueComponents(const std::string& input, std::string* charset, std::string* value_chars) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dconvtest.cpp27 * 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", errorCod
355 char charset[100]; local
[all...]
/external/fonttools/Lib/fontTools/
H A DcffLib.py68 if not hasattr(topDict, "charset") or topDict.charset is None:
69 charset = otFont.getGlyphOrder()
70 topDict.charset = charset
105 topDict.charset = None # gets filled in later
499 def __init__(self, file, charset, globalSubrs, private, fdSelect, fdArray):
503 for i in range(len(charset)):
504 charStrings[charset[i]] = i
757 charset
[all...]
/external/fonttools/Tools/fontTools/
H A DcffLib.py68 if not hasattr(topDict, "charset") or topDict.charset is None:
69 charset = otFont.getGlyphOrder()
70 topDict.charset = charset
105 topDict.charset = None # gets filled in later
499 def __init__(self, file, charset, globalSubrs, private, fdSelect, fdArray):
503 for i in range(len(charset)):
504 charStrings[charset[i]] = i
757 charset
[all...]
/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java33 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) {
107 Preconditions.checkNotNull(charset);
111 return new OutputStreamWriter(out.getOutput(), charset);
84 newReaderSupplier( final InputSupplier<? extends InputStream> in, final Charset charset) argument
104 newWriterSupplier( final OutputSupplier<? extends OutputStream> out, final Charset charset) argument
/external/apache-http/src/org/apache/http/impl/auth/
H A DDigestScheme.java60 * 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");
234 if (charset == null) {
235 charset = AuthParams.getCredentialCharset(request.getParams());
236 getParameters().put("charset", charset);
[all...]
/external/chromium_org/chrome/utility/importer/
H A Dbookmark_html_reader_unittest.cc27 // 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,
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleRuleImport.cpp70 void StyleRuleImport::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* cachedStyleSheet) argument
76 context.setCharset(charset);
130 FetchRequest request(ResourceRequest(absURL), FetchInitiatorTypeNames::css, m_parentStyleSheet->charset());
/external/guava/guava/src/com/google/common/hash/
H A DAbstractCompositeHashFunction.java5 import java.nio.charset.Charset;
113 @Override public Hasher putString(CharSequence chars, Charset charset) {
115 hasher.putString(chars, charset);
/external/apache-http/src/org/apache/commons/codec/net/
H A DQCodec.java49 * The default charset used for string decoding and encoding.
51 private String charset = StringEncodings.UTF8; field in class:QCodec
115 * Constructor which allows for the selection of a default charset
117 * @param charset
118 * the default string charset to use.
123 public QCodec(final String charset) { argument
125 this.charset = charset;
174 * Encodes a string into its quoted-printable form using the specified charset. Unsafe characters are escaped.
178 * @param charset
185 encode(final String pString, final String charset) argument
[all...]
/external/chromium_org/android_webview/browser/
H A Daw_web_resource_response.h32 virtual bool GetCharset(JNIEnv* env, std::string* charset) const = 0;

Completed in 728 milliseconds

1234567891011>>