Searched defs:charset (Results 126 - 150 of 229) sorted by relevance

12345678910

/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/third_party/icu/source/test/perf/utfperf/
H A Dutfperf.cpp54 UOPTION_DEF("charset", '\x01', UOPT_REQUIRES_ARG),
60 "\t--charset Charset for which to test performance, e.g. windows-1251.\n"
62 "\t--chunk Length (in bytes) of charset output chunks. [4096]\n"
72 charset = options[CHARSET].value;
98 const char *charset; member in class:UtfPerformanceTest
126 cnv=ucnv_open(testcase.charset, &errorCode);
128 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode));
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dxmlparser.cpp166 const char *charset, *pb; local
193 * get the charset:
198 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode);
199 if(U_SUCCESS(errorCode) && charset!=NULL) {
201 cnv=ucnv_open(charset, &errorCode);
250 charset=charsetBuffer;
256 if(charset==NULL) {
258 charset="UTF-8";
260 cnv=ucnv_open(charset, &errorCode);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
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/icu/icu4c/source/test/perf/utfperf/
H A Dutfperf.cpp54 UOPTION_DEF("charset", '\x01', UOPT_REQUIRES_ARG),
60 "\t--charset Charset for which to test performance, e.g. windows-1251.\n"
62 "\t--chunk Length (in bytes) of charset output chunks. [4096]\n"
72 charset = options[CHARSET].value;
98 const char *charset; member in class:UtfPerformanceTest
126 cnv=ucnv_open(testcase.charset, &errorCode);
128 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode));
/external/icu/icu4c/source/tools/toolutil/
H A Dxmlparser.cpp166 const char *charset, *pb; local
193 * get the charset:
198 charset=ucnv_detectUnicodeSignature(bytes, bytesLength, NULL, &errorCode);
199 if(U_SUCCESS(errorCode) && charset!=NULL) {
201 cnv=ucnv_open(charset, &errorCode);
250 charset=charsetBuffer;
256 if(charset==NULL) {
258 charset="UTF-8";
260 cnv=ucnv_open(charset, &errorCode);
/external/chromium_org/components/omnibox/
H A Dsearch_suggestion_parser.cc294 std::string charset; local
295 if (response_headers->GetCharset(&charset)) {
298 if (base::CodepageToUTF16(json_data, charset.c_str(),
/external/chromium_org/content/renderer/pepper/
H A Dresource_creation_impl.cc86 PP_PrivateFontCharset charset) {
83 CreateFlashFontFile( PP_Instance instance, const PP_BrowserFont_Trusted_Description* description, PP_PrivateFontCharset charset) argument
/external/chromium_org/extensions/browser/api/declarative_webrequest/
H A Dwebrequest_condition_attribute.cc261 std::string charset; local
264 content_type, &mime_type, &charset, &had_charset, NULL);
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dresource_creation_impl.cc360 PP_PrivateFontCharset charset) {
357 CreateFlashFontFile( PP_Instance instance, const PP_BrowserFont_Trusted_Description* description, PP_PrivateFontCharset charset) argument
/external/chromium_org/net/url_request/
H A Durl_request_job.cc125 bool URLRequestJob::GetCharset(std::string* charset) { argument
H A Durl_request_http_job.cc955 bool URLRequestHttpJob::GetCharset(std::string* charset) { argument
961 return GetResponseHeaders()->GetCharset(charset);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLLinkElement.cpp499 void LinkStyle::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* cachedStyleSheet) argument
509 CSSParserContext parserContext(m_owner->document(), 0, baseURL, charset);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DDocumentLoader.cpp824 void DocumentLoader::setUserChosenEncoding(const String& charset) argument
827 m_writer->setUserChosenEncoding(charset);
/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/chromium_org/third_party/freetype/src/cff/
H A Dcffload.c780 cff_charset_compute_cids( CFF_Charset charset, argument
790 if ( charset->max_cid > 0 )
795 if ( charset->sids[i] > max_cid )
796 max_cid = charset->sids[i];
799 if ( FT_NEW_ARRAY( charset->cids, (FT_ULong)max_cid + 1 ) )
806 charset->cids[charset->sids[j]] = (FT_UShort)j;
808 charset->max_cid = max_cid;
809 charset->num_glyphs = num_glyphs;
817 cff_charset_cid_to_gindex( CFF_Charset charset,
831 cff_charset_free_cids( CFF_Charset charset, FT_Memory memory ) argument
840 cff_charset_done( CFF_Charset charset, FT_Stream stream ) argument
855 cff_charset_load( CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset, FT_Bool invert ) argument
1054 cff_encoding_load( CFF_Encoding encoding, CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset ) argument
[all...]
/external/freetype/src/cff/
H A Dcffload.c787 cff_charset_compute_cids( CFF_Charset charset, argument
797 if ( charset->max_cid > 0 )
802 if ( charset->sids[i] > max_cid )
803 max_cid = charset->sids[i];
806 if ( FT_NEW_ARRAY( charset->cids, (FT_ULong)max_cid + 1 ) )
813 charset->cids[charset->sids[j]] = (FT_UShort)j;
815 charset->max_cid = max_cid;
816 charset->num_glyphs = num_glyphs;
824 cff_charset_cid_to_gindex( CFF_Charset charset,
838 cff_charset_free_cids( CFF_Charset charset, FT_Memory memory ) argument
847 cff_charset_done( CFF_Charset charset, FT_Stream stream ) argument
862 cff_charset_load( CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset, FT_Bool invert ) argument
1061 cff_encoding_load( CFF_Encoding encoding, CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset ) argument
[all...]
/external/owasp/sanitizer/lib/commons-codec-1.4/
H A Dcommons-codec-1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/codec/ ...
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffload.c780 cff_charset_compute_cids( CFF_Charset charset, argument
790 if ( charset->max_cid > 0 )
795 if ( charset->sids[i] > max_cid )
796 max_cid = charset->sids[i];
799 if ( FT_NEW_ARRAY( charset->cids, (FT_ULong)max_cid + 1 ) )
806 charset->cids[charset->sids[j]] = (FT_UShort)j;
808 charset->max_cid = max_cid;
809 charset->num_glyphs = num_glyphs;
817 cff_charset_cid_to_gindex( CFF_Charset charset,
831 cff_charset_free_cids( CFF_Charset charset, FT_Memory memory ) argument
840 cff_charset_done( CFF_Charset charset, FT_Stream stream ) argument
855 cff_charset_load( CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset, FT_Bool invert ) argument
1054 cff_encoding_load( CFF_Encoding encoding, CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset ) 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 Dweb_url_loader_impl.cc184 std::string charset; local
188 url, &mime_type, &charset, data, headers.get());
194 info->charset.swap(charset);
567 std::string charset; local
570 net::HttpUtil::ParseContentType(content_type, &mime_type, &charset,
752 response->setTextEncodingName(WebString::fromUTF8(info.charset));
837 // TODO(jungshik): Figure out the actual value of the referrer charset and
/external/chromium_org/net/http/
H A Dhttp_response_headers_unittest.cc121 "Content-TYPE : text/html; charset=utf-8 \n"
126 "Content-TYPE: text/html; charset=utf-8\n"
138 " Content-TYPE : text/html; charset=utf-8 \n"
173 "Content-TYPE: text/html; charset=utf-8\n",
176 "Content-TYPE: text/html; charset=utf-8\n",
199 "Content-TYPE: text/html; charset=utf-8\n",
202 "Content-TYPE: text/html; charset=utf-8\n",
212 "Content-TYPE: text/html; charset=utf-8\n",
215 "Content-TYPE: text/html; charset=utf-8\n",
617 const std::string charset; member in struct:__anon9308::ContentTypeTestData
[all...]
H A Dhttp_util.cc82 std::string* charset,
121 if (LowerCaseEqualsASCII(param_name_begin, param_name_end, "charset")) {
154 // charset. however, if charset is empty and mime_type hasn't
155 // changed, then don't wipe-out an existing charset. We
157 // some servers give junk after the charset parameter, which may
172 charset->assign(begin + charset_val, begin + charset_end);
173 base::StringToLowerASCII(charset);
305 "accept-charset",
80 ParseContentType(const std::string& content_type_str, std::string* mime_type, std::string* charset, bool* had_charset, std::string* boundary) argument
/external/chromium_org/ppapi/proxy/
H A Dresource_creation_proxy.cc435 PP_PrivateFontCharset charset) {
437 GetConnection(), instance, description, charset))->GetReference();
432 CreateFlashFontFile( PP_Instance instance, const PP_BrowserFont_Trusted_Description* description, PP_PrivateFontCharset charset) argument

Completed in 916 milliseconds

12345678910