Searched defs:charset (Results 51 - 75 of 204) sorted by relevance

123456789

/external/pdfium/public/
H A Dfpdf_sysfontinfo.h103 * charset - Character set identifier for the requested font.
120 int charset,
230 * Provides the name of a font to use for a given charset value.
233 int charset; // Character Set Enum value, see FXFONT_*_CHARSET above. member in struct:FPDF_CharsetFontMap_
234 const char* fontname; // Name of default font to use with that charset.
258 * charset - Font character set. See above defined constants.
264 int charset);
/external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
H A DTestConversion.java10 package com.ibm.icu.dev.test.charset;
14 import java.nio.charset.Charset;
15 import java.nio.charset.CharsetDecoder;
16 import java.nio.charset.CharsetEncoder;
17 import java.nio.charset.CoderResult;
18 import java.nio.charset.CodingErrorAction;
25 import com.ibm.icu.charset.CharsetCallback;
26 import com.ibm.icu.charset.CharsetDecoderICU;
27 import com.ibm.icu.charset.CharsetEncoderICU;
28 import com.ibm.icu.charset
60 String charset; // charset field in class:TestConversion.ConversionCase
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-javamail.jar ... .DataSource { private String data private String type private String charset private java.io.ByteArrayOutputStream out private final org ...
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionInputBuffer.java67 private String charset = HTTP.US_ASCII; field in class:AbstractSessionInputBuffer
88 this.charset = HttpProtocolParams.getHttpElementCharset(params);
89 this.ascii = this.charset.equalsIgnoreCase(HTTP.US_ASCII)
90 || this.charset.equalsIgnoreCase(HTTP.ASCII);
235 String s = new String(this.linebuffer.buffer(), 0, l, this.charset);
260 String s = new String(this.buffer, off, len, this.charset);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStylesheetPIHandler.java97 * @param charset The desired character set criteria.
100 String charset)
106 m_charset = charset;
150 String charset = null; // CDATA #IMPLIED
244 else if (name.equals("charset"))
250 charset = token.substring(1, token.length() - 1);
281 if (null != charset)
283 if (!charset.equals(m_charset))
99 StylesheetPIHandler(String baseID, String media, String title, String charset) argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/
H A DDesignerPlugin.java31 import java.nio.charset.Charset;
93 * @param charset the charset to use
96 public static String readFile(InputStream inputStream, Charset charset) { argument
102 final InputStreamReader isr = new InputStreamReader(inputStream, charset);
/external/guava/guava/src/com/google/common/hash/
H A DAbstractNonStreamingHashFunction.java23 import java.nio.charset.Charset;
57 @Override public HashCode hashString(CharSequence input, Charset charset) { argument
58 return hashBytes(input.toString().getBytes(charset));
H A DFunnels.java22 import java.nio.charset.Charset;
84 public static Funnel<CharSequence> stringFunnel(Charset charset) { argument
85 return new StringCharsetFunnel(charset);
89 private final Charset charset; field in class:Funnels.StringCharsetFunnel
91 StringCharsetFunnel(Charset charset) { argument
92 this.charset = Preconditions.checkNotNull(charset);
96 into.putString(from, charset);
100 return "Funnels.stringFunnel(" + charset.name() + ")";
106 return this.charset
122 SerializedForm(Charset charset) argument
[all...]
H A DHasher.java19 import java.nio.charset.Charset;
86 * Equivalent to {@code putBytes(charSequence.toString().getBytes(charset))}.
88 @Override Hasher putString(CharSequence charSequence, Charset charset); argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
H A DTestUtil.java45 public static final BufferedReader getDataReader(String name, String charset) throws IOException { argument
48 charset == null
50 : new InputStreamReader(is, charset);
/external/icu/icu4c/source/test/intltest/
H A Dconvtest.h34 const char *charset, *cbopt, *name; member in struct:ConversionCase
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetASCII.java11 package com.ibm.icu.charset;
16 import java.nio.charset.CharsetDecoder;
17 import java.nio.charset.CharsetEncoder;
18 import java.nio.charset.CoderResult;
H A DCharsetHZ.java9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
17 import java.nio.charset.UnsupportedCharsetException;
H A DCharsetICU.java10 package com.ibm.icu.charset;
14 import java.nio.charset.Charset;
15 import java.nio.charset.IllegalCharsetNameException;
16 import java.nio.charset.UnsupportedCharsetException;
22 * <p>A subclass of java.nio.Charset for providing implementation of ICU's charset converters.
31 * <p>Note that {@link #name()} cannot always return a unique charset name.
44 * It is not possible to offer variants of an IANA charset and
48 * so that it can always be used for the charset field in internet protocols.
59 * “a sorted map from canonical charset names to charset object
[all...]
H A DCharsetLMBCS.java9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
18 import com.ibm.icu.charset.CharsetMBCS.CharsetDecoderMBCS;
19 import com.ibm.icu.charset.CharsetMBCS.CharsetEncoderMBCS;
535 CharsetMBCS charset; field in class:CharsetLMBCS.UConverterDataLMBCS
538 charset = (CharsetMBCS)CharsetICU.forNameICU("ibm-850");
539 encoder = (CharsetEncoderMBCS)charset.newEncoder();
540 decoder = (CharsetDecoderMBCS)charset
[all...]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestUtil.java44 public static final BufferedReader getDataReader(String name, String charset) throws IOException { argument
47 charset == null
49 : new InputStreamReader(is, charset);
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/
H A DInputFile.java18 import java.nio.charset.CharacterCodingException;
19 import java.nio.charset.Charset;
20 import java.nio.charset.CharsetDecoder;
21 import java.nio.charset.CharsetEncoder;
22 import java.nio.charset.CodingErrorAction;
37 private Charset charset; field in class:InputFile
111 charset = Charset.forName(encoding);
112 decoder = charset.newDecoder();
113 encoder = charset.newEncoder();
124 return charset
[all...]
/external/ltp/testcases/kernel/device-drivers/nls/
H A DnlsTest.c217 char charset[20] = "David"; local
232 printk(KERN_DEBUG "Calling load_nls(\"%s\")\n", charset);
233 nls_ptr = load_nls(charset);
/external/okhttp/okio/okio/src/main/java/okio/
H A DBufferedSink.java20 import java.nio.charset.Charset;
65 /** Encodes {@code string} in {@code charset} and writes it to this sink. */
66 BufferedSink writeString(String string, Charset charset) throws IOException; argument
70 * {@code charset} and writes it to this sink.
72 BufferedSink writeString(String string, int beginIndex, int endIndex, Charset charset) argument
H A DBufferedSource.java20 import java.nio.charset.Charset;
190 * Removes all bytes from this, decodes them as {@code charset}, and returns
193 String readString(Charset charset) throws IOException; argument
196 * Removes {@code byteCount} bytes from this, decodes them as {@code charset},
199 String readString(long byteCount, Charset charset) throws IOException; argument
H A DRealBufferedSink.java21 import java.nio.charset.Charset;
74 @Override public BufferedSink writeString(String string, Charset charset) throws IOException { argument
76 buffer.writeString(string, charset);
81 Charset charset) throws IOException {
83 buffer.writeString(string, beginIndex, endIndex, charset);
80 writeString(String string, int beginIndex, int endIndex, Charset charset) argument
/external/pdfium/fpdfsdk/
H A Dcfx_systemhandler.cpp23 int CharSet2CP(int charset) { argument
24 if (charset == FXFONT_SHIFTJIS_CHARSET)
26 if (charset == FXFONT_GB2312_CHARSET)
28 if (charset == FXFONT_HANGUL_CHARSET)
30 if (charset == FXFONT_CHINESEBIG5_CHARSET)
H A Dfpdf_sysfontinfo.cpp36 int charset,
42 return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family,
74 bool GetFontCharset(void* hFont, int& charset) override {
78 charset = m_pInfo->GetFontCharset(m_pInfo, hFont);
93 int charset) {
95 pMapper->AddInstalledFont(name, charset);
129 int charset,
134 return pDefault->m_pFontInfo->MapFont(weight, !!bItalic, charset,
167 int charset; local
169 if (!pDefault->m_pFontInfo->GetFontCharset(hFont, charset))
91 FPDF_AddInstalledFont(void* mapper, const char* name, int charset) argument
126 DefaultMapFont(struct _FPDF_SYSFONTINFO* pThis, int weight, int bItalic, int charset, int pitch_family, const char* family, int* bExact) argument
[all...]
/external/sl4a/ScriptingLayerForAndroid/src/org/apache/harmony/niochar/charset/additional/
H A DIBM437.java18 package org.apache.harmony.niochar.charset.additional;
22 import java.nio.charset.Charset;
23 import java.nio.charset.CharsetDecoder;
24 import java.nio.charset.CharsetEncoder;
25 import java.nio.charset.CoderResult;
/external/spirv-llvm/lib/SPIRV/Mangler/
H A DMangler.cpp44 std::string charset = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; local
48 bstr += charset.substr(SeqID % 36, 1);

Completed in 2530 milliseconds

123456789