/external/chromium_org/ppapi/c/private/ |
ppb_flash_font_file.h | 40 PP_PrivateFontCharset charset);
|
/external/chromium_org/ppapi/cpp/private/ |
flash_font_file.h | 25 PP_PrivateFontCharset charset);
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
CSSParserMode.cpp | 43 CSSParserContext::CSSParserContext(const Document& document, UseCounter* useCounter, const KURL& baseURL, const String& charset) 45 , m_charset(charset) 84 if (charset().isEmpty()) 86 return KURL(baseURL(), url, charset());
|
CSSParserMode.h | 95 CSSParserContext(const Document&, UseCounter*, const KURL& baseURL = KURL(), const String& charset = emptyString()); 105 const String& charset() const { return m_charset; } function in class:blink::CSSParserContext 118 void setCharset(const String& charset) { m_charset = charset; }
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
FetchRequest.h | 44 explicit FetchRequest(const ResourceRequest&, const AtomicString& initiator, const String& charset = String(), ResourceLoadPriority = ResourceLoadPriorityUnresolved); 52 const String& charset() const { return m_charset; } function in class:blink::FetchRequest 53 void setCharset(const String& charset) { m_charset = charset; }
|
TextResource.h | 25 TextResource(const ResourceRequest&, Type, const String& mimeType, const String& charset);
|
XSLStyleSheetResource.h | 39 XSLStyleSheetResource(const ResourceRequest&, const String& charset);
|
/external/pdfium/core/src/fxge/android/ |
fx_android_font.cpp | 26 void* CFX_AndroidFontInfo::MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR face, FX_BOOL& bExact) 47 return m_pFontMgr->CreateFont(face, charset, dwStyle, FPF_MATCHFONT_REPLACEANSI); 68 FX_BOOL CFX_AndroidFontInfo::GetFontCharset(void* hFont, int& charset) 73 charset = ((IFPF_Font*)hFont)->GetCharset();
|
/libcore/benchmarks/src/benchmarks/regression/ |
CharsetForNameBenchmark.java | 19 import java.nio.charset.Charset; 24 // canonical => canonical charset name 25 // built-in => guaranteed-present charset 26 // special-case => libcore treats this charset specially for performance 42 Charset.forName(charsetName);
|
DefaultCharsetBenchmark.java | 19 import java.nio.charset.Charset; 26 Charset.defaultCharset();
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
UTF16BECharsetTest.java | 17 package org.apache.harmony.tests.java.nio.charset; 35 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testEncode_Normal() 46 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testDecode_Normal()
|
UTF16CharsetEncoderTest.java | 17 package org.apache.harmony.tests.java.nio.charset; 21 import java.nio.charset.CharacterCodingException; 22 import java.nio.charset.Charset; 23 import java.nio.charset.CharsetDecoder; 30 // charset for utf-16 31 // charset for utf-16be 32 private static final Charset CS = Charset.forName("utf-16");
|
UTF16LECharsetTest.java | 17 package org.apache.harmony.tests.java.nio.charset; 35 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testEncode_Normal() 46 * @see tests.api.java.nio.charset.ConcreteCharsetTest#testDecode_Normal()
|
/libcore/luni/src/main/java/java/net/ |
InetUnixAddress.java | 19 import java.nio.charset.StandardCharsets;
|
/libcore/luni/src/main/java/java/nio/charset/ |
CodingErrorAction.java | 17 package java.nio.charset;
|
StandardCharsets.java | 17 package java.nio.charset; 28 * The ISO-8859-1 charset. 30 public static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1"); 33 * The US-ASCII charset. 35 public static final Charset US_ASCII = Charset.forName("US-ASCII"); 38 * The UTF-8 charset. 40 public static final Charset UTF_8 = Charset.forName("UTF-8") [all...] |
/libcore/luni/src/main/java/libcore/icu/ |
NativeConverter.java | 12 import java.nio.charset.Charset; 13 import java.nio.charset.CharsetDecoder; 14 import java.nio.charset.CharsetEncoder; 15 import java.nio.charset.CodingErrorAction; 40 public static native Charset charsetForName(String charsetName);
|
/frameworks/base/core/java/com/android/internal/http/multipart/ |
FilePart.java | 67 /** Default charset of file attachments. */ 93 * @param charset the charset encoding for this part, if <code>null</code> the 96 public FilePart(String name, PartSource partSource, String contentType, String charset) { 101 charset == null ? "ISO-8859-1" : charset, 142 * @param charset the charset encoding for this part, if <code>null</code> the 148 public FilePart(String name, File file, String contentType, String charset) 150 this(name, new FilePartSource(file), contentType, charset); [all...] |
/external/apache-http/src/org/apache/commons/codec/net/ |
URLCodec.java | 43 * 1.4 rely on the platform's default charset encoding. 58 * The default charset used for string decoding and encoding. 60 protected String charset = StringEncodings.UTF8; field in class:URLCodec 99 * Constructor which allows for the selection of a default charset 101 * @param charset the default string charset to use. 103 public URLCodec(String charset) { 105 this.charset = charset; 217 * string charset. Unsafe characters are escaped [all...] |
QuotedPrintableCodec.java | 66 * The default charset used for string decoding and encoding. 68 private String charset = StringEncodings.UTF8; field in class:QuotedPrintableCodec 101 * Constructor which allows for the selection of a default charset 103 * @param charset 104 * the default string charset to use. 106 public QuotedPrintableCodec(String charset) { 108 this.charset = charset; 239 * Encodes a string into its quoted-printable form using the default string charset. Unsafe characters are escaped. 267 * Decodes a quoted-printable string into its original form using the specified string charset. Escaped character [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
message.py | 16 import email.charset namespace 43 three tuple (charset, language, value), it will be encoded according 48 # are (charset, language, value). charset is a string, not a Charset 220 def set_payload(self, payload, charset=None): 223 Optional charset sets the message's default character set. See 227 if charset is not None: 228 self.set_charset(charset) 230 def set_charset(self, charset) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
message.py | 16 import email.charset namespace 43 three tuple (charset, language, value), it will be encoded according 48 # are (charset, language, value). charset is a string, not a Charset 220 def set_payload(self, payload, charset=None): 223 Optional charset sets the message's default character set. See 227 if charset is not None: 228 self.set_charset(charset) 230 def set_charset(self, charset) [all...] |
/external/apache-http/src/org/apache/http/impl/auth/ |
BasicScheme.java | 146 String charset = AuthParams.getCredentialCharset(request.getParams()); local 147 return authenticate(credentials, charset, isProxy()); 152 * {@link Credentials} and charset. 155 * @param charset The charset to use for encoding the credentials 161 final String charset, 166 if (charset == null) { 167 throw new IllegalArgumentException("charset may not be null"); 176 EncodingUtils.getBytes(tmp.toString(), charset));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_all.py | 16 charset = "iso8859-1" # Full 8 bit variable 28 v = (v[0], v[1].decode(charset)) 36 v = (v[0], v[1].decode(charset)) 42 v = (v[0], v[1].decode(charset)) 48 v = (v[0], v[1].decode(charset)) 54 v = (v[0], v[1].decode(charset)) 60 v = (v[0], v[1].decode(charset)) 74 key = key.decode(charset) 75 return (key, value.decode(charset)) 93 k = bytes(k, charset) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_all.py | 16 charset = "iso8859-1" # Full 8 bit variable 28 v = (v[0], v[1].decode(charset)) 36 v = (v[0], v[1].decode(charset)) 42 v = (v[0], v[1].decode(charset)) 48 v = (v[0], v[1].decode(charset)) 54 v = (v[0], v[1].decode(charset)) 60 v = (v[0], v[1].decode(charset)) 74 key = key.decode(charset) 75 return (key, value.decode(charset)) 93 k = bytes(k, charset) [all...] |