HomeSort by relevance Sort by last modified time
    Searched refs:charset (Results 176 - 200 of 417) sorted by null

1 2 3 4 5 6 78 91011>>

  /development/tools/idegen/src/com/android/idegen/
ModuleIndexes.java 27 import java.nio.charset.Charset;
53 Files.readLines(indexFile, Charset.forName("UTF-8"),
  /external/chromium_org/components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/
ChunkedWritableByteChannelTest.java 16 import java.nio.charset.Charset;
45 ByteBuffer.wrap(test.getBytes(Charset.forName("UTF-8"))));
47 ByteBuffer.wrap(test.getBytes(Charset.forName("UTF-8"))));
  /external/chromium_org/mojo/services/html_viewer/
blink_platform_impl.h 50 blink::WebString& charset);
blink_platform_impl.cc 184 std::string mimetype, charset, data; local
185 if (net::DataURL::Parse(url, &mimetype, &charset, &data)
188 charset_out = blink::WebString::fromUTF8(charset);
  /external/chromium_org/mojo/services/network/
url_loader_impl.cc 47 std::string charset; local
48 url_request->GetCharset(&charset);
49 response->charset = charset;
  /external/chromium_org/ppapi/c/dev/
ppb_truetype_font_dev.h 149 PP_TrueTypeFontCharset_Dev charset; member in struct:PP_TrueTypeFontDesc_Dev
  /external/chromium_org/ppapi/c/private/
ppb_pdf.h 108 PP_PrivateFontCharset charset);
  /external/chromium_org/ppapi/proxy/
serialized_structs.h 96 PP_TrueTypeFontCharset_Dev charset; member in struct:ppapi::proxy::SerializedTrueTypeFontDesc
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 233 const String& charset = response.textEncodingName(); local
234 // If we have a charset, the only allowed value is UTF-8 (case-insensitive).
235 responseIsValid = charset.isEmpty() || equalIgnoringCase(charset, "UTF-8");
238 message.appendLiteral("EventSource's response has a charset (\"");
239 message.append(charset);
  /external/chromium_org/third_party/icu/source/test/perf/utfperf/
utfperf.cpp 47 CHARSET,
54 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))
    [all...]
  /external/icu/icu4c/source/test/perf/utfperf/
utfperf.cpp 47 CHARSET,
54 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))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.h 130 void preload(Resource::Type, FetchRequest&, const String& charset);
177 ResourcePtr<Resource> createResourceForLoading(Resource::Type, FetchRequest&, const String& charset);
181 void requestPreload(Resource::Type, FetchRequest&, const String& charset);
ResourceFetcher.cpp 83 static Resource* createResource(Resource::Type type, const ResourceRequest& request, const String& charset)
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().latin1().data(), request.priority(), request.forPreload(), ResourceTypeName(type))
    [all...]
  /external/e2fsprogs/intl/
loadmsgcat.c 777 entry does not exist or if this does not contain the `charset='
778 information, we will assume the charset matches the one the
803 charsetstr = strstr (nullentry, "charset=");
807 char *charset; local
810 charsetstr += strlen ("charset=");
813 charset = (char *) alloca (len + 1);
815 *((char *) mempcpy (charset, charsetstr, len)) = '\0';
817 memcpy (charset, charsetstr, len);
818 charset[len] = '\0';
821 /* The output charset should normally be determined by th
    [all...]
  /external/chromium_org/content/browser/appcache/
view_appcache_internals_job.cc 359 std::string* charset,
363 charset->assign("UTF-8");
412 std::string* charset,
481 std::string* charset,
485 charset->assign("UTF-8");
557 std::string* charset,
561 charset->assign("UTF-8");
appcache_url_request_job.h 137 virtual bool GetCharset(std::string* charset) OVERRIDE;
  /external/chromium_org/third_party/libxml/src/
nanohttp.c 687 * - The Content-Type, Mime-Type and charset used
732 const xmlChar *charset, *last, *mime; local
746 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset=");
747 if (charset != NULL) {
748 charset += 8;
749 last = charset;
755 ctxt->encoding = (char *) xmlStrndup(charset, last - charset);
758 const xmlChar *charset, *last, *mime local
    [all...]
  /external/libxml2/
nanohttp.c 692 * - The Content-Type, Mime-Type and charset used
737 const xmlChar *charset, *last, *mime; local
751 charset = xmlStrstr(BAD_CAST ctxt->contentType, BAD_CAST "charset=");
752 if (charset != NULL) {
753 charset += 8;
754 last = charset;
760 ctxt->encoding = (char *) xmlStrndup(charset, last - charset);
763 const xmlChar *charset, *last, *mime local
    [all...]
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /external/chromium_org/content/child/
multipart_response_delegate.cc 248 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/
MHTMLParser.cpp 71 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());
  /development/samples/AndroidBeamDemo/src/com/example/android/beam/
Beam.java 39 import java.nio.charset.Charset;
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_truetype_font_list_win.cc 52 desc.charset = static_cast<PP_TrueTypeFontCharset_Dev>(lf.lfCharSet);
  /external/chromium_org/content/browser/service_worker/
service_worker_write_to_cache_job.h 58 virtual bool GetCharset(std::string* charset) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
InspectorFileSystemAgent.cpp 379 static PassRefPtr<FileContentRequest> create(PassRefPtrWillBeRawPtr<RequestFileContentCallback> requestCallback, const String& url, bool readAsText, long long start, long long end, const String& charset)
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)
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)
672 FileContentRequest::create(requestCallback, url, readAsText, startPosition, endPosition, charset ? *charset : "")->start(executionContext);

Completed in 282 milliseconds

1 2 3 4 5 6 78 91011>>