Searched defs:encoding (Results 1 - 25 of 486) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRInputStream.h13 NSStringEncoding encoding; variable
16 @property (assign) NSStringEncoding encoding; variable
21 + (id) newANTLRInputStream:(NSFileHandle *)anInput encoding:(NSStringEncoding)theEncoding;
25 encoding:(NSStringEncoding)theEncoding;
30 encoding:(NSStringEncoding)theEncoding;
/external/bison/lib/uniwidth/
H A Dcjk.h1 /* Test for CJK encoding.
21 is_cjk_encoding (const char *encoding) argument
25 || STREQ_OPT (encoding, "EUC-JP", 'E', 'U', 'C', '-', 'J', 'P', 0, 0, 0)
27 || STREQ_OPT (encoding, "GB2312", 'G', 'B', '2', '3', '1', '2', 0, 0, 0)
28 || STREQ_OPT (encoding, "GBK", 'G', 'B', 'K', 0, 0, 0, 0, 0, 0)
29 || STREQ_OPT (encoding, "EUC-TW", 'E', 'U', 'C', '-', 'T', 'W', 0, 0, 0)
30 || STREQ_OPT (encoding, "BIG5", 'B', 'I', 'G', '5', 0, 0, 0, 0, 0)
32 || STREQ_OPT (encoding, "EUC-KR", 'E', 'U', 'C', '-', 'K', 'R', 0, 0, 0)
33 || STREQ_OPT (encoding, "CP949", 'C', 'P', '9', '4', '9', 0, 0, 0, 0)
34 || STREQ_OPT (encoding, "JOHA
[all...]
H A Dwidth.c315 uc_width (ucs4_t uc, const char *encoding) argument
365 && is_cjk_encoding (encoding))
/external/bison/lib/
H A Dwcwidth.c34 const char *encoding = locale_charset (); local
35 if (STREQ_OPT (encoding, "UTF-8", 'U', 'T', 'F', '-', '8', 0, 0, 0 ,0))
39 return uc_width (wc, encoding);
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dlist_pager.py4 from apitools.base.py import encoding namespace
44 request = encoding.CopyProtoMessage(request)
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/
H A Dhexadecimalencoder.h21 #include "polo/encoding/secretencoder.h"
24 namespace encoding { namespace in namespace:polo
41 // Hex encoding has 2 symbols per byte since each hex character uses 4 bits.
46 } // namespace encoding
H A Dsecretencoder.h23 namespace encoding { namespace in namespace:polo
46 // hexadecimal encoding has 4 bytes per symbol and therefore 2 symbols per
51 } // namespace encoding
H A Dencodingoption.cc15 #include "polo/encoding/encodingoption.h"
20 namespace encoding { namespace in namespace:polo
47 } // namespace encoding
H A Dhexadecimalencoder.cc15 // A SecretEncoder implementation that uses hexadecimal encoding. This encoding
18 #include "polo/encoding/hexadecimalencoder.h"
25 namespace encoding { namespace in namespace:polo
46 } // namespace encoding
/external/google-tv-pairing-protocol/cpp/tests/polo/encoding/
H A Dhexadecimalencodertest.cc16 #include <polo/encoding/hexadecimalencoder.h>
19 namespace encoding { namespace in namespace:polo
49 } // namespace encoding
/external/pdfium/third_party/freetype/src/base/
H A Dftbdf.c34 const char* encoding = NULL; local
46 error = service->get_charset_id( face, &encoding, &registry );
51 *acharset_encoding = encoding;
/external/nist-sip/java/javax/sip/header/
H A DEncoding.java7 void setEncoding(String encoding) throws ParseException; argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRFileStream.cs74 /// specified file name and encoding
76 public ANTLRFileStream(string fileName, Encoding encoding) argument
79 Load(fileName, encoding);
100 /// <param name="encoding">Encoding to apply to file</param>
101 public virtual void Load(string fileName, Encoding encoding) argument
112 if (encoding != null)
113 fr = new StreamReader(fileName, encoding);
H A DANTLRInputStream.cs53 public ANTLRInputStream(Stream input, Encoding encoding) argument
54 : this(input, InitialBufferSize, encoding) {
57 public ANTLRInputStream(Stream input, int size, Encoding encoding) argument
58 : this(input, size, ReadBufferSize, encoding) {
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding) argument
62 : base(GetStreamReader(input, encoding), size, readBufferSize) {
65 private static StreamReader GetStreamReader(Stream input, Encoding encoding) { argument
66 if (encoding != null)
67 return new StreamReader(input, encoding);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRInputStream.cs57 public ANTLRInputStream( Stream input, Encoding encoding )
58 : this( input, InitialBufferSize, encoding )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding )
63 : this( input, size, ReadBufferSize, encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding )
68 : base(GetStreamReader(input, encoding), size, readBufferSize)
72 private static StreamReader GetStreamReader(Stream input, Encoding encoding) argument
74 if (encoding != null)
75 return new StreamReader(input, encoding);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRFileStream.java45 public ANTLRFileStream(String fileName, String encoding) throws IOException { argument
47 load(fileName, encoding);
50 public void load(String fileName, String encoding) argument
60 if ( encoding!=null ) {
61 isr = new InputStreamReader(fis, encoding);
H A DANTLRInputStream.java47 public ANTLRInputStream(InputStream input, String encoding) throws IOException { argument
48 this(input, INITIAL_BUFFER_SIZE, encoding);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { argument
52 this(input, size, READ_BUFFER_SIZE, encoding);
58 String encoding)
62 if ( encoding!=null ) {
63 isr = new InputStreamReader(input, encoding);
55 ANTLRInputStream(InputStream input, int size, int readBufferSize, String encoding) argument
/external/apache-http/src/org/apache/http/client/entity/
H A DUrlEncodedFormEntity.java53 * of parameters in the specified encoding.
56 * @param encoding encoding the name/value pairs be encoded with
57 * @throws UnsupportedEncodingException if the encoding isn't supported
61 final String encoding) throws UnsupportedEncodingException {
62 super(URLEncodedUtils.format(parameters, encoding),
63 encoding);
69 * of parameters with the default encoding of {@link HTTP#DEFAULT_CONTENT_CHARSET}
72 * @throws UnsupportedEncodingException if the default encoding isn't supported
59 UrlEncodedFormEntity( final List <? extends NameValuePair> parameters, final String encoding) argument
/external/clang/test/CodeGenCXX/
H A D2007-04-05-PackedBitFieldsOverlap-2.cpp13 unsigned long encoding : 8; member in struct:M_Packed
/external/google-tv-pairing-protocol/java/src/com/google/polo/encoding/
H A DSecretEncoder.java17 package com.google.polo.encoding;
20 * Methods that must be implemented by a secret encoding scheme.
26 * value in this encoding.
/external/icu/icu4c/source/test/intltest/
H A Dtextfile.h24 * Open a file with the given name, in the given encoding, in the
26 * 'name' and 'encoding' parameters are aliased or copied.
28 TextFile(const char* name, const char* encoding, UErrorCode& ec);
34 * this file's encoding to Unicode. The EOL character(s) are not
62 char* encoding; member in class:TextFile
/external/jacoco/org.jacoco.report/src/org/jacoco/report/
H A DDirectorySourceFileLocator.java33 * @param encoding
34 * encoding of the source files, <code>null</code> for platform
35 * default encoding
41 final String encoding, final int tabWidth) {
42 super(encoding, tabWidth);
40 DirectorySourceFileLocator(final File directory, final String encoding, final int tabWidth) argument
/external/libunwind/src/dwarf/
H A DGpe.c33 unw_word_t *addr, unsigned char encoding,
37 return dwarf_read_encoded_pointer_inlined (as, a, addr, encoding,
32 dwarf_read_encoded_pointer(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unsigned char encoding, const unw_proc_info_t *pi, unw_word_t *valp, void *arg) argument
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DTimestampTest.java41 private static final byte[] encoding = { 1, 2, 3 }; field in class:TimestampTest
43 private CertPath cpath = new MyCertPath(encoding);
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DTimestamp_ImplTest.java41 private static final byte[] encoding = { 1, 2, 3 }; field in class:Timestamp_ImplTest
43 private CertPath cpath = new MyCertPath(encoding);

Completed in 1315 milliseconds

1234567891011>>