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

<<11121314151617181920>>

  /external/okhttp/okio/src/main/java/okio/
Util.java 18 import java.nio.charset.Charset;
21 /** A cheap and type-safe constant for the UTF-8 Charset. */
22 public static final Charset UTF_8 = Charset.forName("UTF-8");
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
cffload.h 58 cff_charset_cid_to_gindex( CFF_Charset charset,
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
EncodedStringValue.java 48 * @param charset the Char-set value
52 public EncodedStringValue(int charset, byte[] data) {
53 // TODO: CharSet needs to be validated against MIBEnum.
58 mCharacterSet = charset;
94 * @param charset the Char-set value
96 public void setCharacterSet(int charset) {
97 // TODO: CharSet needs to be validated against MIBEnum.
98 mCharacterSet = charset;
  /libcore/luni/src/test/java/libcore/io/
StrictLineReaderTest.java 26 import java.nio.charset.StandardCharsets;
  /external/chromium_org/android_webview/browser/
aw_web_resource_response.cc 45 std::string* charset) OVERRIDE {
46 return aw_web_resource_response_->GetCharset(env, charset);
  /external/chromium_org/android_webview/browser/net/
android_stream_reader_url_request_job.h 68 std::string* charset) = 0;
90 virtual bool GetCharset(std::string* charset) OVERRIDE;
  /external/chromium_org/content/test/data/service_worker/
fetch_event.js 8 headers.set('Content-Type', 'text/html; charset=UTF-8');
  /external/chromium_org/net/url_request/
url_request_simple_job.cc 39 bool URLRequestSimpleJob::GetCharset(std::string* charset) {
40 *charset = charset_;
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
CSSStyleSheetResource.cpp 40 CSSStyleSheetResource::CSSStyleSheetResource(const ResourceRequest& resourceRequest, const String& charset)
41 : StyleSheetResource(resourceRequest, CSSStyleSheet, "text/css", charset)
FetchRequest.cpp 34 FetchRequest::FetchRequest(const ResourceRequest& resourceRequest, const AtomicString& initiator, const String& charset, ResourceLoadPriority priority)
36 , m_charset(charset)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.idl 24 [Reflect] attribute DOMString charset;
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentWriter.cpp 130 void DocumentWriter::setUserChosenEncoding(const String& charset)
134 decoder->setEncoding(charset, TextResourceDecoder::UserChosenEncoding);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
FileContentView.js 138 * @param {string=} charset
140 _fileContentReceived: function(callback, errorCode, content, base64Encoded, charset)
147 this._charset = charset;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileSystemModel.js 256 * @param {string=} charset
259 requestFileContent: function(file, readAsText, start, end, charset, callback)
261 this._requestFileContent(file.url, readAsText, start, end, charset, callback);
269 * @param {string=} charset
272 _requestFileContent: function(url, readAsText, start, end, charset, callback)
278 * @param {string=} charset
280 function innerCallback(error, errorCode, content, charset)
289 callback(errorCode, content, charset);
292 this._agent.requestFileContent(url, readAsText, start, end, charset, innerCallback);
544 * @param {string=} charset
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestPushMessage.java 43 public BluetoothMasRequestPushMessage(String folder, String msg, CharsetType charset,
50 oap.add(OAP_TAGID_CHARSET, charset == CharsetType.NATIVE ? CHARSET_NATIVE : CHARSET_UTF8);
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipInputStreamTest.java 23 import java.nio.charset.Charset;
24 import java.nio.charset.StandardCharsets;
  /packages/apps/Mms/src/com/android/mms/util/
AddressUtils.java 48 builder.build(), new String[] {Addr.ADDRESS, Addr.CHARSET},
58 int charset = cursor.getInt(1); local
59 return new EncodedStringValue(charset, bytes)
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 62 private String charset = HTTP.US_ASCII; field in class:AbstractSessionInputBuffer
83 this.charset = HttpProtocolParams.getHttpElementCharset(params);
84 this.ascii = this.charset.equalsIgnoreCase(HTTP.US_ASCII)
85 || this.charset.equalsIgnoreCase(HTTP.ASCII);
230 String s = new String(this.linebuffer.buffer(), 0, l, this.charset);
255 String s = new String(this.buffer, off, len, this.charset);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 97 * @param charset The desired character set criteria.
100 String charset)
106 m_charset = charset;
150 String charset = null; // CDATA #IMPLIED local
244 else if (name.equals("charset"))
250 charset = token.substring(1, token.length() - 1);
281 if (null != charset)
283 if (!charset.equals(m_charset))
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LoadUrlParams.java 94 * @param charset The character set for the data. Pass null if the mime type
95 * does not require a special charset.
98 String data, String mimeType, boolean isBase64Encoded, String charset) {
101 if (charset != null && !charset.isEmpty()) {
102 dataUrl.append(";charset=" + charset);
148 * @param charset The character set for the data. Pass null if the mime type
149 * does not require a special charset.
153 String baseUrl, String historyUrl, String charset) {
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
fpdf_cmaps.cpp 11 void FPDFAPI_FindEmbeddedCMap(const char* name, int charset, int coding, const FXCMAP_CMap*& pMap)
15 const FXCMAP_CMap* pCMaps = pFontGlobals->m_EmbeddedCharsets[charset].m_pMapList;
16 int nCMaps = pFontGlobals->m_EmbeddedCharsets[charset].m_Count;
178 void FPDFAPI_LoadCID2UnicodeMap(int charset, const FX_WORD*& pMap, FX_DWORD& count)
181 pMap = pFontGlobals->m_EmbeddedToUnicodes[charset].m_pMap;
182 count = pFontGlobals->m_EmbeddedToUnicodes[charset].m_Count;
  /libcore/luni/src/main/java/java/nio/charset/
CharsetEncoder.java 17 package java.nio.charset;
53 * signifies that the input is legal but cannot be mapped to a byte sequence (because the charset
63 * <p>The default replacement bytes depend on the charset but can be overridden using the
67 * encoding process for all charsets. Encoders for a specific charset should
75 * @see java.nio.charset.Charset
76 * @see java.nio.charset.CharsetDecoder
84 private final Charset charset; field in class:CharsetEncoder
96 // decoder instance for this encoder's charset, used for replacement value checkin
216 public final Charset charset() { method in class:CharsetEncoder
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 23 import java.nio.charset.Charset;
24 import java.nio.charset.StandardCharsets;
381 ZipEntry(byte[] cdeHdrBuf, InputStream cdStream, Charset defaultCharset) throws IOException {
401 Charset charset = defaultCharset; local
403 charset = StandardCharsets.UTF_8;
428 name = new String(nameBytes, 0, nameBytes.length, charset);
438 comment = new String(commentBytes, 0, commentBytes.length, charset);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessageMms.java 18 import java.nio.charset.Charset;
19 import java.nio.charset.IllegalCharsetNameException;
49 String charset = mCharsetName; local
50 // Figure out if we support the charset, else fall back to UTF-8, as this is what
52 if(charset == null){
53 charset = "UTF-8";
55 charset = charset.toUpperCase();
57 if(Charset.isSupported(charset) == false)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 219 * Reads the Part's body and returns a String based on any charset conversion that needed
243 String charset = getHeaderParameter(part.getContentType(), "charset"); local
244 if (charset != null) {
246 * See if there is conversion from the MIME charset to the Java one.
248 charset = CharsetUtil.toJavaCharset(charset);
253 if (charset == null) {
254 charset = "ASCII";
259 String result = out.toString(charset);
    [all...]

Completed in 883 milliseconds

<<11121314151617181920>>