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

<<11121314151617

  /external/chromium_org/net/http/
http_response_headers.cc 888 std::string* charset) const {
890 charset->clear();
899 HttpUtil::ParseContentType(value, mime_type, charset, &had_charset, NULL);
908 bool HttpResponseHeaders::GetCharset(std::string* charset) const {
910 GetMimeTypeAndCharset(&unused, charset);
911 return !charset->empty();
    [all...]
http_util.h 44 // charset values are normalized to lowercase. The mime_type and charset
46 // type and charset value, respectively. The boundary output value is
51 std::string* charset,
  /external/chromium_org/third_party/icu/source/tools/toolutil/
package.cpp 81 makeTypeEnum(uint8_t charset, UBool isBigEndian) {
82 return 2*(int32_t)charset+isBigEndian;
95 makeTypeLetter(uint8_t charset, UBool isBigEndian) {
96 return types[makeTypeEnum(charset, isBigEndian)];
105 makeTypeProps(char type, uint8_t &charset, UBool &isBigEndian) {
107 charset=(uint8_t)(typeEnum>>1);
674 // sort the item names for the local charset
791 // swap and sort the item names (sorting needs to be done in the output charset)
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
package.cpp 81 makeTypeEnum(uint8_t charset, UBool isBigEndian) {
82 return 2*(int32_t)charset+isBigEndian;
95 makeTypeLetter(uint8_t charset, UBool isBigEndian) {
96 return types[makeTypeEnum(charset, isBigEndian)];
105 makeTypeProps(char type, uint8_t &charset, UBool &isBigEndian) {
107 charset=(uint8_t)(typeEnum>>1);
675 // sort the item names for the local charset
792 // swap and sort the item names (sorting needs to be done in the output charset)
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwTestBase.java 202 final boolean isBase64Encoded, final String charset)
209 data, mimeType, isBase64Encoded, charset));
  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api_helpers.cc 54 std::string charset; local
55 return net::DataURL::Parse(url, &mime_type, &charset, pac_script);
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
change_picture_options_handler.cc 240 std::string mime_type, charset, raw_data; local
241 if (!net::DataURL::Parse(GURL(image_url), &mime_type, &charset, &raw_data))
  /external/chromium_org/content/browser/service_worker/
service_worker_url_request_job.cc 77 bool ServiceWorkerURLRequestJob::GetCharset(std::string* charset) {
80 return http_info()->headers->GetCharset(charset);
  /external/chromium_org/extensions/browser/
extension_protocols.cc 87 std::string* charset,
91 *charset = "utf-8";
  /external/chromium_org/ppapi/proxy/
resource_creation_proxy.cc 435 PP_PrivateFontCharset charset) {
437 GetConnection(), instance, description, charset))->GetReference();
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLPreloadScanner.cpp 173 request->setCharset(charset());
296 const String& charset() const function in class:blink::TokenPreloadScanner::StartTagScanner
298 // FIXME: Its not clear that this if is needed, the loader probably ignores charset for image requests anyway.
  /external/chromium_org/third_party/jinja2/
utils.py 279 def unicode_urlencode(obj, charset='utf-8'):
281 given charset if applicable to URL safe quoting under all rules
290 obj = obj.encode(charset)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsUtils.java 38 import java.nio.charset.Charset;
46 return ByteBuffer.wrap(jsonObj.toString().getBytes(Charset.defaultCharset()));
  /development/samples/Vault/tests/src/com/example/android/vault/
EncryptedDocumentTest.java 31 import java.nio.charset.StandardCharsets;
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 25 import java.nio.charset.Charset;
36 public static final Charset CHARSET = Charset.forName("UTF-8");
116 "idea" + File.separator + MODULES_TEMPLATE_FILE_NAME), CHARSET);
127 Files.write(modulesContent, out, CHARSET);
132 "idea" + File.separator + VCS_TEMPLATE_FILE_NAME), CHARSET);
144 Files.write(vcsTemplate, new File(ideaDir, "vcs.xml"), CHARSET);
149 Files.write(name, out, CHARSET);
    [all...]
MakeFileParser.java 31 import java.nio.charset.Charset;
78 Files.readLines(makeFile, Charset.forName("UTF-8"), new MakeFileLineProcessor());
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/jsdoc-template/
publish.js 162 var src = {path: path, name:name, charset: IO.encoding, hilited: ""};
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 164 <meta charset="utf-8" />
  /external/chromium_org/content/common/
resource_messages.h 105 IPC_STRUCT_TRAITS_MEMBER(charset)
  /external/chromium_org/content/renderer/pepper/
resource_creation_impl.cc 86 PP_PrivateFontCharset charset) {
resource_creation_impl.h 47 PP_PrivateFontCharset charset) OVERRIDE;
  /external/chromium_org/mojo/examples/pepper_container_app/
resource_creation_impl.cc 360 PP_PrivateFontCharset charset) {
resource_creation_impl.h 156 PP_PrivateFontCharset charset) OVERRIDE;
  /external/chromium_org/mojo/services/html_viewer/
weburlloader_impl.cc 42 result.setTextEncodingName(blink::WebString::fromUTF8(url_response->charset));

Completed in 1449 milliseconds

<<11121314151617