HomeSort by relevance Sort by last modified time
    Searched refs:charset (Results 451 - 475 of 933) sorted by null

<<11121314151617181920>>

  /external/chromium_org/base/i18n/
icu_string_conversions.cc 269 const std::string& charset,
274 text, charset.c_str(), OnStringConversionError::FAIL, &utf16))
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint_browsertest.cc 36 const std::string& charset,
142 EXPECT_EQ(kCharset, machine.charset());
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_truetype_font_win.cc 87 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/
service_worker_read_from_cache_job.cc 80 bool ServiceWorkerReadFromCacheJob::GetCharset(std::string* charset) {
83 return http_info()->headers->GetCharset(charset);
  /external/chromium_org/content/common/
child_process_sandbox_support_impl_linux.cc 118 int charset,
127 request.WriteUInt32(charset);
  /external/chromium_org/net/http/
http_response_headers.h 183 // 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/
url_request_mock_http_job.cc 204 bool URLRequestMockHTTPJob::GetCharset(std::string* charset) {
207 return info.headers.get() && info.headers->GetCharset(charset);
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_pdf.idl 92 [in] PP_PrivateFontCharset charset);
  /external/chromium_org/storage/browser/blob/
view_blob_internals_job.cc 131 std::string* charset,
135 charset->assign("UTF-8");
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializer.cpp 250 WebString WebPageSerializer::generateMetaCharsetDeclaration(const WebString& charset)
252 String charsetString = "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=" + static_cast<const String&>(charset) + "\">";
  /external/chromium_org/third_party/libxml/src/
HTMLtree.c 128 encoding = xmlStrstr(content, BAD_CAST"charset=");
130 encoding = xmlStrstr(content, BAD_CAST"Charset=");
132 encoding = xmlStrstr(content, BAD_CAST"CHARSET=");
136 encoding = xmlStrstr(content, BAD_CAST"charset =");
138 encoding = xmlStrstr(content, BAD_CAST"Charset =");
140 encoding = xmlStrstr(content, BAD_CAST"CHARSET =");
176 snprintf(newcontent, sizeof(newcontent), "text/html; charset=%s",
554 if (enc != cur->charset) {
555 if (cur->charset != XML_CHAR_ENCODING_UTF8) {
1054 if (enc != cur->charset) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 15 import java.nio.charset.Charset;
240 public HashCode hashString(CharSequence input, Charset charset) {
  /external/libxml2/
HTMLtree.c 130 encoding = xmlStrstr(content, BAD_CAST"charset=");
132 encoding = xmlStrstr(content, BAD_CAST"Charset=");
134 encoding = xmlStrstr(content, BAD_CAST"CHARSET=");
138 encoding = xmlStrstr(content, BAD_CAST"charset =");
140 encoding = xmlStrstr(content, BAD_CAST"Charset =");
142 encoding = xmlStrstr(content, BAD_CAST"CHARSET =");
179 snprintf(newcontent, sizeof(newcontent), "text/html; charset=%s",
573 if (enc != cur->charset) {
574 if (cur->charset != XML_CHAR_ENCODING_UTF8) {
1076 if (enc != cur->charset) {
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Request.java 165 * contentType} lacks a charset, this will use UTF-8.
168 contentType = contentType.charset() != null
170 : MediaType.parse(contentType + "; charset=utf-8");
172 byte[] bytes = content.getBytes(contentType.charset().name());
  /external/robolectric/lib/main/
commons-codec-1.6.jar 
  /libcore/luni/src/main/java/java/io/
PrintStream.java 20 import java.nio.charset.Charset;
21 import java.nio.charset.IllegalCharsetNameException;
116 if (!Charset.isSupported(charsetName)) {
161 if (!Charset.isSupported(charsetName)) {
  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 24 import java.nio.charset.ModifiedUtf8;
25 import java.nio.charset.StandardCharsets;
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java     [all...]
  /packages/apps/Tag/canon/src/com/android/apps/tagcanon/
TagCanon.java 39 import java.nio.charset.Charset;
40 import java.nio.charset.StandardCharsets;
58 Charset utfEncoding = encodeInUtf8 ? StandardCharsets.UTF_8 : StandardCharsets.UTF_16;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py     [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduComposer.java 327 int charset = enStr.getCharacterSet(); local
334 * In the implementation of EncodedStringValue, the charset field will
341 appendShortInteger(charset);
947 // content-type parameter : charset
948 int charset = part.getCharset(); local
949 if (charset != 0) {
951 appendShortInteger(charset);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java 68 private static final int CHARSET = 0x14;
322 case CHARSET:
324 Log.w(TAG, "CHARSET: Wrong length received: " + tagLength + " expected: "
505 appParamBuf.put((byte) CHARSET);
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_device.cpp 26 virtual void* MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR face, FX_BOOL& bExact);
34 virtual FX_BOOL GetFontCharset(void* hFont, int& charset);
292 void* CWin32FontInfo::MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR cstr_face, FX_BOOL& bExact)
304 if (charset == ANSI_CHARSET || charset == SYMBOL_CHARSET) {
305 charset = DEFAULT_CHARSET;
308 switch (charset) {
318 HFONT hFont = ::CreateFontA(-10, 0, 0, 0, weight, bItalic, 0, 0, charset, OUT_TT_ONLY_PRECIS,
338 if (charset == DEFAULT_CHARSET) {
341 switch (charset) {
    [all...]
  /external/chromium_org/content/child/
web_url_loader_impl.cc 184 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
    [all...]
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_edit.cpp 184 FX_INT32 CFX_Edit_Provider::GetWordFontIndex(FX_WORD word, FX_INT32 charset, FX_INT32 nFontIndex)
186 return m_pFontMap->GetWordFontIndex(word,charset,nFontIndex);
569 FX_WORD word, FX_INT32 charset, const CPVT_WordProps * pWordProps)
570 : m_pEdit(pEdit), m_wpOld(wpOldPlace), m_wpNew(wpNewPlace), m_Word(word), m_nCharset(charset), m_WordProps()
644 FX_WORD word, FX_INT32 charset,
650 m_nCharset(charset),
691 FX_WORD word, FX_INT32 charset,
697 m_nCharset(charset),
774 const CPVT_WordRange & wrSel, FX_WORD word, FX_INT32 charset,
781 m_nCharset(charset),
    [all...]

Completed in 4420 milliseconds

<<11121314151617181920>>