Searched defs:charset (Results 76 - 100 of 204) sorted by relevance

123456789

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene.analysis_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.codec_1.3.0.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DTransformerFactoryImpl.java249 * @param charset The value of the charset attribute to match. May be null.
256 Source source, String media, String title, String charset)
282 title, charset);
255 getAssociatedStylesheet( Source source, String media, String title, String charset) argument
/external/curl/lib/
H A Dcurl_fnmatch.c70 static int parsekeyword(unsigned char **pattern, unsigned char *charset) argument
102 charset[CURLFNM_DIGIT] = 1;
104 charset[CURLFNM_ALNUM] = 1;
106 charset[CURLFNM_ALPHA] = 1;
108 charset[CURLFNM_XDIGIT] = 1;
110 charset[CURLFNM_PRINT] = 1;
112 charset[CURLFNM_GRAPH] = 1;
114 charset[CURLFNM_SPACE] = 1;
116 charset[CURLFNM_BLANK] = 1;
118 charset[CURLFNM_UPPE
127 setcharset(unsigned char **p, unsigned char *charset) argument
316 unsigned char charset[CURLFNM_CHSET_SIZE] = { 0 }; local
[all...]
/external/freetype/include/freetype/
H A Dftwinfnt.h59 * A list of valid values for the `charset' byte in
84 * is used for the charset of vector fonts, like `modern.fon',
200 FT_Byte charset; member in struct:FT_WinFNT_HeaderRec_
/external/guava/guava/src/com/google/common/hash/
H A DAbstractStreamingHashFunction.java23 import java.nio.charset.Charset;
44 @Override public HashCode hashString(CharSequence input, Charset charset) { argument
45 return newHasher().putString(input, charset).hash();
/external/guava/guava/src/com/google/common/io/
H A DByteSource.java37 import java.nio.charset.Charset;
72 public CharSource asCharSource(Charset charset) { argument
73 return new AsCharSource(charset);
408 * charset.
412 private final Charset charset; field in class:ByteSource.AsCharSource
414 private AsCharSource(Charset charset) { argument
415 this.charset = checkNotNull(charset);
420 return new InputStreamReader(ByteSource.this.openStream(), charset);
425 return ByteSource.this.toString() + ".asCharSource(" + charset
558 asCharSource(Charset charset) argument
[all...]
H A DFiles.java49 import java.nio.charset.Charset;
77 * @param charset the charset used to decode the input stream; see {@link
81 public static BufferedReader newReader(File file, Charset charset) argument
84 checkNotNull(charset);
86 new InputStreamReader(new FileInputStream(file), charset));
94 * @param charset the charset used to encode the output stream; see {@link
98 public static BufferedWriter newWriter(File file, Charset charset) argument
101 checkNotNull(charset);
215 asCharSource(File file, Charset charset) argument
229 asCharSink(File file, Charset charset, FileWriteMode... modes) argument
263 toString(File file, Charset charset) argument
318 write(CharSequence from, File to, Charset charset) argument
333 append(CharSequence from, File to, Charset charset) argument
349 write(CharSequence from, File to, Charset charset, boolean append) argument
364 copy(File from, Charset charset, Appendable to) argument
511 readFirstLine(File file, Charset charset) argument
531 readLines(File file, Charset charset) argument
562 readLines(File file, Charset charset, LineProcessor<T> callback) argument
[all...]
/external/guava/guava-tests/test/com/google/common/hash/
H A DAbstractStreamingHasherTest.java31 import java.nio.charset.Charset;
267 public HashCode hashString(CharSequence input, Charset charset) { argument
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetCallback.java10 package com.ibm.icu.charset;
15 import java.nio.charset.CoderResult;
238 CharsetICU cs = (CharsetICU) decoder.charset();
H A DCharsetDecoderICU.java12 package com.ibm.icu.charset;
17 import java.nio.charset.CharsetDecoder;
18 import java.nio.charset.CoderResult;
19 import java.nio.charset.CodingErrorAction;
81 * @param cs The CharsetICU object containing information about how to charset to decode.
720 CharsetICU cs = (CharsetICU) decoder.charset();
738 return ((CharsetICU)(this.charset())).maxBytesPerChar;
H A DCharsetUTF16.java9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
H A DCharsetUTF32.java9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
H A DCharsetUTF7.java9 package com.ibm.icu.charset;
14 import java.nio.charset.CharsetDecoder;
15 import java.nio.charset.CharsetEncoder;
16 import java.nio.charset.CoderResult;
H A DCharsetUTF8.java12 package com.ibm.icu.charset;
17 import java.nio.charset.CharsetDecoder;
18 import java.nio.charset.CharsetEncoder;
19 import java.nio.charset.CoderResult;
H A DUConverterConstants.java9 package com.ibm.icu.charset;
H A DUConverterSharedData.java9 package com.ibm.icu.charset;
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageFactoryImpl.java816 * Set default charset used for encoding String content.
817 * @param charset
819 public void setDefaultContentEncodingCharset(String charset) throws NullPointerException, argument
821 if (charset == null ) throw new NullPointerException ("Null argument!");
822 MessageFactoryImpl.defaultContentEncodingCharset = charset;
/external/okhttp/okio/okio/src/main/java/okio/
H A DRealBufferedSource.java21 import java.nio.charset.Charset;
172 @Override public String readString(Charset charset) throws IOException { argument
173 if (charset == null) throw new IllegalArgumentException("charset == null");
176 return buffer.readString(charset);
179 @Override public String readString(long byteCount, Charset charset) throws IOException { argument
181 if (charset == null) throw new IllegalArgumentException("charset == null");
182 return buffer.readString(byteCount, charset);
/external/pdfium/third_party/freetype/include/freetype/
H A Dftwinfnt.h59 * A list of valid values for the `charset' byte in
84 * is used for the charset of vector fonts, like `modern.fon',
200 FT_Byte charset; member in struct:FT_WinFNT_HeaderRec_
/external/pdfium/third_party/freetype/src/cff/
H A Dcffdrivr.c304 /* first, locate the sid in the charset table */
305 sid = font->charset.sids[glyph_index];
325 CFF_Charset charset; local
333 charset = &cff->charset;
341 sid = charset->sids[i];
631 c = cff->charset.sids[glyph_index];
/external/pdfium/xfa/fgas/crt/
H A Dfgas_codepage.cpp19 uint16_t charset; member in struct:__anon16048::FX_CHARSET_MAP
292 uint16_t FX_GetCodePageFromCharset(uint8_t charset) { argument
299 if (charset == cp.charset) {
301 } else if (charset < cp.charset) {
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DNioByteString.java41 import java.nio.charset.Charset;
158 protected String toStringInternal(Charset charset) { argument
172 return new String(bytes, offset, length, charset);
/external/freetype/src/cff/
H A Dcffdrivr.c352 /* first, locate the sid in the charset table */
353 sid = font->charset.sids[glyph_index];
373 CFF_Charset charset; local
381 charset = &cff->charset;
414 sid = charset->sids[i];
711 c = cff->charset.sids[glyph_index];
/external/icu/icu4c/source/test/perf/utfperf/
H A Dutfperf.cpp57 UOPTION_DEF("charset", '\x01', UOPT_REQUIRES_ARG),
63 "\t--charset Charset for which to test performance, e.g. windows-1251.\n"
65 "\t--chunk Length (in bytes) of charset output chunks. [4096]\n"
75 charset = options[CHARSET].value;
101 const char *charset; member in class:UtfPerformanceTest
129 cnv=ucnv_open(testcase.charset, &errorCode);
131 fprintf(stderr, "error opening converter for \"%s\" - %s\n", testcase.charset, u_errorName(errorCode));

Completed in 635 milliseconds

123456789