Searched refs:charset (Results 201 - 225 of 429) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceFetcher.cpp83 static Resource* createResource(Resource::Type type, const ResourceRequest& request, const String& charset) argument
89 return new CSSStyleSheetResource(request, charset);
91 return new ScriptResource(request, charset);
102 return new XSLStyleSheetResource(request, charset);
164 blink::WebString charset; local
165 RefPtr<SharedBuffer> data = PassRefPtr<SharedBuffer>(blink::Platform::current()->parseDataURL(url, mimetype, charset));
168 ResourceResponse response(url, mimetype, data->size(), charset, String());
170 Resource* resource = createResource(Resource::Image, request, charset);
660 WTF_LOG(ResourceLoading, "ResourceFetcher::requestResource '%s', charset '%s', priority=%d, forPreload=%u, type=%s", url.elidedString().latin1().data(), request.charset()
869 createResourceForLoading(Resource::Type type, FetchRequest& request, const String& charset) argument
1191 preload(Resource::Type type, FetchRequest& request, const String& charset) argument
1196 requestPreload(Resource::Type type, FetchRequest& request, const String& charset) argument
[all...]
/external/glide/third_party/disklrucache/
H A Ddisklrucache-2.0.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/jakewharton/ com/jakewharton/disklrucache/ com/jakewharton/disklrucache/DiskLruCache ...
/external/chromium_org/content/child/
H A Dmultipart_response_delegate.cc248 std::string charset; local
250 net::HttpUtil::ParseContentType(content_type, &mime_type, &charset,
254 response.setTextEncodingName(WebString::fromUTF8(charset));
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
H A DMHTMLParser.cpp71 String charset() const { return m_charset; } function in class:blink::MIMEHeader
143 mimeHeader->m_charset = parsedContentType.charset().stripWhiteSpace();
372 return ArchiveResource::create(contentBuffer, location, AtomicString(mimeHeader.contentType()), AtomicString(mimeHeader.charset()), String());
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_truetype_font_linux.cc75 desc->charset,
H A Dpepper_truetype_font_list_win.cc52 desc.charset = static_cast<PP_TrueTypeFontCharset_Dev>(lf.lfCharSet);
H A Dpepper_truetype_font_win.cc87 desc->charset, // our charset enum matches Windows.
122 desc->charset = static_cast<PP_TrueTypeFontCharset_Dev>(font_desc.lfCharSet);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_write_to_cache_job.h58 virtual bool GetCharset(std::string* charset) OVERRIDE;
H A Dservice_worker_read_from_cache_job.cc80 bool ServiceWorkerReadFromCacheJob::GetCharset(std::string* charset) { argument
83 return http_info()->headers->GetCharset(charset);
/external/chromium_org/mojo/services/html_viewer/
H A Dblink_platform_impl.h50 blink::WebString& charset);
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocketFrame.java9 import java.nio.charset.CharacterCodingException;
10 import java.nio.charset.Charset;
11 import java.nio.charset.CharsetDecoder;
12 import java.nio.charset.CharsetEncoder;
/external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
H A DMainTest.java47 assertEquals("application/x-form-urlencoded; charset=utf-8", body.contentType().toString());
56 assertEquals("application/x-form-urlencoded; charset=utf-8", body.contentType().toString());
66 assertEquals("application/json; charset=utf-8", body.contentType().toString());
91 body.contentType().charset());
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_ap.h60 FX_INT32 GetWordFontIndex(FX_WORD word, FX_INT32 charset, FX_INT32 nFontIndex);
H A Dfpdf_vt.h285 virtual FX_INT32 GetWordFontIndex(FX_WORD word, FX_INT32 charset, FX_INT32 nFontIndex) = 0;
374 virtual void SetText(FX_LPCWSTR text, FX_INT32 charset = 1, const CPVT_SecProps * pSecProps = NULL,
377 virtual CPVT_WordPlace InsertWord(const CPVT_WordPlace & place, FX_WORD word, FX_INT32 charset = 1,
383 virtual CPVT_WordPlace InsertText(const CPVT_WordPlace & place, FX_LPCWSTR text, FX_INT32 charset = 1,
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DInspectorFileSystemAgent.cpp379 static PassRefPtr<FileContentRequest> create(PassRefPtrWillBeRawPtr<RequestFileContentCallback> requestCallback, const String& url, bool readAsText, long long start, long long end, const String& charset) argument
381 return adoptRef(new FileContentRequest(requestCallback, url, readAsText, start, end, charset));
415 void reportResult(FileError::ErrorCode errorCode, const String* result = 0, const String* charset = 0)
417 m_requestCallback->sendSuccess(static_cast<int>(errorCode), result, charset); local
420 FileContentRequest(PassRefPtrWillBeRawPtr<RequestFileContentCallback> requestCallback, const String& url, bool readAsText, long long start, long long end, const String& charset) argument
427 , m_charset(charset) { }
661 void InspectorFileSystemAgent::requestFileContent(ErrorString* error, const String& url, bool readAsText, const int* start, const int* end, const String* charset, PassRefPtrWillBeRawPtr<RequestFileContentCallback> requestCallback) argument
672 FileContentRequest::create(requestCallback, url, readAsText, startPosition, endPosition, charset ? *charset : "")->start(executionContext);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jar ... private void parseTrailerHeaders () throws java.io.IOException String charset java.io.IOException ioe org.apache. ...
/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp521 const FX_LANG2CS &charset = gs_FXLang2CharsetTable[iMid]; local
522 if (uCode == charset.uLang) {
523 return charset.uCharset;
524 } else if (uCode < charset.uLang) {
871 CPDF_Font* CPDF_Document::AddFont(CFX_Font* pFont, int charset, FX_BOOL bVert) argument
876 FX_BOOL bCJK = charset == FXFONT_CHINESEBIG5_CHARSET || charset == FXFONT_GB2312_CHARSET ||
877 charset == FXFONT_HANGEUL_CHARSET || charset == FXFONT_SHIFTJIS_CHARSET;
902 if (charset
[all...]
/external/chromium_org/android_webview/native/
H A Dandroid_protocol_handler.cc78 std::string* charset) OVERRIDE;
200 std::string* charset) {
196 GetCharset( JNIEnv* env, net::URLRequest* request, android_webview::InputStream* stream, std::string* charset) argument
/external/chromium_org/base/i18n/
H A Dicu_string_conversions.cc269 const std::string& charset,
274 text, charset.c_str(), OnStringConversionError::FAIL, &utf16))
268 ConvertToUtf8AndNormalize(const std::string& text, const std::string& charset, std::string* result) argument
/external/chromium_org/components/autofill/content/browser/risk/
H A Dfingerprint_browsertest.cc36 const std::string& charset,
142 EXPECT_EQ(kCharset, machine.charset());
/external/chromium_org/components/translate/core/browser/resources/
H A Dtranslate.js283 element.charset = 'UTF-8';
/external/chromium_org/content/common/
H A Dchild_process_sandbox_support_impl_linux.cc118 int charset,
127 request.WriteUInt32(charset);
115 MatchFontWithFallback(const std::string& face, bool bold, bool italic, int charset, PP_BrowserFont_Trusted_Family fallback_family) argument
/external/chromium_org/net/http/
H A Dhttp_response_headers.h183 // Get the mime type and charset values in lower case form from the headers.
186 std::string* charset) const;
192 // Get the charset in lower case from the headers. If there's no charset,
194 bool GetCharset(std::string* charset) const;
/external/chromium_org/net/test/url_request/
H A Durl_request_mock_http_job.cc204 bool URLRequestMockHTTPJob::GetCharset(std::string* charset) { argument
207 return info.headers.get() && info.headers->GetCharset(charset);
/external/chromium_org/ppapi/api/private/finish_writing_these/
H A Dppb_pdf.idl92 [in] PP_PrivateFontCharset charset);

Completed in 642 milliseconds

1234567891011>>