HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 1 - 25 of 1566) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bison/lib/uniwidth/
cjk.h 1 /* Test for CJK encoding.
21 is_cjk_encoding (const char *encoding)
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, "JOHAB", 'J', 'O', 'H', 'A', 'B', 0, 0, 0, 0)
    [all...]
  /art/runtime/verifier/
instruction_flags.cc 25 char encoding[7]; local
27 strncpy(encoding, "XXXXXX", sizeof(encoding));
29 strncpy(encoding, "------", sizeof(encoding));
30 if (IsVisited()) encoding[kVisited] = 'V';
31 if (IsChanged()) encoding[kChanged] = 'C';
32 if (IsInTry()) encoding[kInTry] = 'T';
33 if (IsBranchTarget()) encoding[kBranchTarget] = 'B';
34 if (IsCompileTimeInfoPoint()) encoding[kCompileTimeInfoPoint] = 'G'
    [all...]
  /external/chromium_org/tools/grit/grit/node/
variant.py 23 '''If not specified, 'encoding' will actually default to the parent node's
24 encoding.
26 return {'encoding' : ''}
35 if self.attrs['encoding'] == '':
36 return self.parent.attrs['encoding']
38 return self.attrs['encoding']
  /libcore/luni/src/main/java/org/apache/harmony/security/
PrivateKeyImpl.java 35 private byte[] encoding; field in class:PrivateKeyImpl
51 byte[] toReturn = new byte[encoding.length];
52 System.arraycopy(encoding, 0, toReturn, 0, encoding.length);
61 public void setEncoding(byte[] encoding) {
62 this.encoding = new byte[encoding.length];
63 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length)
    [all...]
PublicKeyImpl.java 35 private byte[] encoding; field in class:PublicKeyImpl
56 byte[] result = new byte[encoding.length];
57 System.arraycopy(encoding, 0, result, 0, encoding.length);
67 public void setEncoding(byte[] encoding) {
68 this.encoding = new byte[encoding.length];
69 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ExtensionValue.java 28 protected byte[] encoding; field in class:ExtensionValue
34 public ExtensionValue(byte[] encoding) {
35 this.encoding = encoding;
40 return encoding;
45 if (encoding == null) {
46 encoding = getEncoded();
48 if (encoding == null) {
51 sb.append(Array.toString(encoding, prefix));
InhibitAnyPolicy.java 44 public InhibitAnyPolicy(byte[] encoding) throws IOException {
45 super(encoding);
47 ASN1Integer.getInstance().decode(encoding)).intValue();
54 if (encoding == null) {
55 encoding = ASN1Integer.getInstance()
58 return encoding;
  /external/bison/darwin-lib/
uniwidth.h 37 /* These functions are locale dependent. The encoding argument identifies
38 the encoding (e.g. "ISO-8859-2" for Polish). */
42 uc_width (ucs4_t uc, const char *encoding)
48 u8_width (const uint8_t *s, size_t n, const char *encoding)
51 u16_width (const uint16_t *s, size_t n, const char *encoding)
54 u32_width (const uint32_t *s, size_t n, const char *encoding)
59 u8_strwidth (const uint8_t *s, const char *encoding)
62 u16_strwidth (const uint16_t *s, const char *encoding)
65 u32_strwidth (const uint32_t *s, const char *encoding)
  /external/bison/lib/
uniwidth.in.h 36 /* These functions are locale dependent. The encoding argument identifies
37 the encoding (e.g. "ISO-8859-2" for Polish). */
41 uc_width (ucs4_t uc, const char *encoding)
47 u8_width (const uint8_t *s, size_t n, const char *encoding)
50 u16_width (const uint16_t *s, size_t n, const char *encoding)
53 u32_width (const uint32_t *s, size_t n, const char *encoding)
58 u8_strwidth (const uint8_t *s, const char *encoding)
61 u16_strwidth (const uint16_t *s, const char *encoding)
64 u32_strwidth (const uint32_t *s, const char *encoding)
  /external/bison/linux-lib/
uniwidth.h 37 /* These functions are locale dependent. The encoding argument identifies
38 the encoding (e.g. "ISO-8859-2" for Polish). */
42 uc_width (ucs4_t uc, const char *encoding)
48 u8_width (const uint8_t *s, size_t n, const char *encoding)
51 u16_width (const uint16_t *s, size_t n, const char *encoding)
54 u32_width (const uint32_t *s, size_t n, const char *encoding)
59 u8_strwidth (const uint8_t *s, const char *encoding)
62 u16_strwidth (const uint16_t *s, const char *encoding)
65 u32_strwidth (const uint32_t *s, const char *encoding)
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertPath.java 46 * my cert path the only encoding
48 private final byte[] encoding; field in class:MyCertPath
54 * @param encoding
56 public MyCertPath(byte[] encoding) {
58 this.encoding = encoding;
60 certificates.add(new MyCertificate("MyEncoding", encoding));
78 return encoding.clone();
83 * <code>encoding</code> parameter
84 * @throws CertificateEncodingException if <code>encoding</code
    [all...]
  /external/llvm/test/MC/Mips/
mips-alu-instructions.s 1 # RUN: llvm-mc %s -triple=mipsel-unknown-linux -show-encoding -mcpu=mips32r2 | FileCheck %s
7 # CHECK: and $9, $6, $7 # encoding: [0x24,0x48,0xc7,0x00]
8 # CHECK: andi $9, $6, 17767 # encoding: [0x67,0x45,0xc9,0x30]
9 # CHECK: andi $9, $6, 17767 # encoding: [0x67,0x45,0xc9,0x30]
10 # CHECK: andi $9, $9, 17767 # encoding: [0x67,0x45,0x29,0x31]
11 # CHECK: clo $6, $7 # encoding: [0x21,0x30,0xe6,0x70]
12 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70]
13 # CHECK: ins $19, $9, 6, 7 # encoding: [0x84,0x61,0x33,0x7d]
14 # CHECK: nor $9, $6, $7 # encoding: [0x27,0x48,0xc7,0x00]
15 # CHECK: or $3, $3, $5 # encoding: [0x25,0x18,0x65,0x00
    [all...]
mips-coprocessor-encodings.s 1 # RUN: llvm-mc %s -triple=mips64-unknown-freebsd -show-encoding \
4 # MIPS64: dmtc0 $12, $16, 2 # encoding: [0x40,0xac,0x80,0x02]
5 # MIPS64: dmtc0 $12, $16, 0 # encoding: [0x40,0xac,0x80,0x00]
6 # MIPS64: mtc0 $12, $16, 2 # encoding: [0x40,0x8c,0x80,0x02]
7 # MIPS64: mtc0 $12, $16, 0 # encoding: [0x40,0x8c,0x80,0x00]
8 # MIPS64: dmfc0 $12, $16, 2 # encoding: [0x40,0x2c,0x80,0x02]
9 # MIPS64: dmfc0 $12, $16, 0 # encoding: [0x40,0x2c,0x80,0x00]
10 # MIPS64: mfc0 $12, $16, 2 # encoding: [0x40,0x0c,0x80,0x02]
11 # MIPS64: mfc0 $12, $16, 0 # encoding: [0x40,0x0c,0x80,0x00]
22 # MIPS64: dmtc2 $12, $16, 2 # encoding: [0x48,0xac,0x80,0x02
    [all...]
mips64-alu-instructions.s 1 # RUN: llvm-mc %s -triple=mipsel-unknown-linux -show-encoding -mcpu=mips64r2 | FileCheck %s
7 # CHECK: and $9, $6, $7 # encoding: [0x24,0x48,0xc7,0x00]
8 # CHECK: andi $9, $6, 17767 # encoding: [0x67,0x45,0xc9,0x30]
9 # CHECK: andi $9, $6, 17767 # encoding: [0x67,0x45,0xc9,0x30]
10 # CHECK: clo $6, $7 # encoding: [0x21,0x30,0xe6,0x70]
11 # CHECK: clz $6, $7 # encoding: [0x20,0x30,0xe6,0x70]
12 # CHECK: ins $19, $9, 6, 7 # encoding: [0x84,0x61,0x33,0x7d]
13 # CHECK: nor $9, $6, $7 # encoding: [0x27,0x48,0xc7,0x00]
14 # CHECK: or $3, $3, $5 # encoding: [0x25,0x18,0x65,0x00]
15 # CHECK: ori $4, $5, 17767 # encoding: [0x67,0x45,0xa4,0x34
    [all...]
mips64-register-names.s 1 # RUN: llvm-mc %s -triple=mips64-unknown-freebsd -show-encoding | FileCheck %s
7 # CHECK: encoding: [0x64,0x00,0x00,0x00]
8 # CHECK: encoding: [0x64,0x01,0x00,0x00]
9 # CHECK: encoding: [0x64,0x02,0x00,0x00]
10 # CHECK: encoding: [0x64,0x03,0x00,0x00]
11 # CHECK: encoding: [0x64,0x04,0x00,0x00]
12 # CHECK: encoding: [0x64,0x05,0x00,0x00]
13 # CHECK: encoding: [0x64,0x06,0x00,0x00]
14 # CHECK: encoding: [0x64,0x07,0x00,0x00]
15 # CHECK: encoding: [0x64,0x08,0x00,0x00
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRInputStream.cs 34 using Encoding = System.Text.Encoding;
53 public ANTLRInputStream(Stream input, Encoding encoding)
54 : this(input, InitialBufferSize, encoding) {
57 public ANTLRInputStream(Stream input, int size, Encoding encoding)
58 : this(input, size, ReadBufferSize, encoding) {
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRInputStream.cs 35 using Encoding = System.Text.Encoding;
57 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 )
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRFileStream.h 42 + (id) newANTLRFileStream:(NSString *)aFileName encoding:(NSStringEncoding)encoding;
44 - (id) init:(NSString *) aFileName encoding:(NSStringEncoding)encoding;
45 - (void) load:(NSString *)fileName encoding:(NSStringEncoding)encoding;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCharsetRule.h 33 static PassRefPtr<CSSCharsetRule> create(CSSStyleSheet* parent, const String& encoding)
35 return adoptRef(new CSSCharsetRule(parent, encoding));
44 const String& encoding() const { return m_encoding; } function in class:WebCore::CSSCharsetRule
45 void setEncoding(const String& encoding, ExceptionState&) { m_encoding = encoding; }
48 CSSCharsetRule(CSSStyleSheet* parent, const String& encoding);
CSSCharsetRule.cpp 26 CSSCharsetRule::CSSCharsetRule(CSSStyleSheet* parent, const String& encoding)
28 , m_encoding(encoding)
CSSCharsetRule.idl 22 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString, SetterRaisesException] attribute DOMString encoding;
  /libcore/luni/src/main/java/org/xml/sax/ext/
Locator2Impl.java 29 private String encoding; field in class:Locator2Impl
43 * <em>encoding</em> and <em>version</em>strings are copied,
55 encoding = l2.getEncoding ();
74 * Returns the current value of the encoding property.
76 * @return the current value of the encoding property.
81 { return encoding; }
98 * Assigns the current value of the encoding property.
100 * @param encoding the new "encoding" value
103 public void setEncoding (String encoding)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
PolicyQualifierInfoTest.java 82 // get valid encoding
83 byte[] encoding = getDerEncoding();
85 encoding[1] = (byte)0x27;
89 new PolicyQualifierInfo(encoding);
95 // get valid encoding
96 encoding = getDerEncoding();
99 encoding[2] = (byte)13;
102 new PolicyQualifierInfo(encoding);
116 // get valid encoding
117 byte[] encoding = getDerEncoding()
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
PolicyQualifierInfoTest.java 76 // get valid encoding
77 byte[] encoding = getDerEncoding();
79 encoding[1] = (byte)0x27;
83 new PolicyQualifierInfo(encoding);
89 // get valid encoding
90 encoding = getDerEncoding();
93 encoding[2] = (byte)13;
96 new PolicyQualifierInfo(encoding);
110 // get valid encoding
111 byte[] encoding = getDerEncoding()
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-encoding-fp.s 2 # RUN: llvm-mc -triple powerpc64-unknown-unknown --show-encoding %s | FileCheck %s
8 # CHECK: lfs 2, 128(4) # encoding: [0xc0,0x44,0x00,0x80]
10 # CHECK: lfsx 2, 3, 4 # encoding: [0x7c,0x43,0x24,0x2e]
12 # CHECK: lfsu 2, 128(4) # encoding: [0xc4,0x44,0x00,0x80]
14 # CHECK: lfsux 2, 3, 4 # encoding: [0x7c,0x43,0x24,0x6e]
16 # CHECK: lfd 2, 128(4) # encoding: [0xc8,0x44,0x00,0x80]
18 # CHECK: lfdx 2, 3, 4 # encoding: [0x7c,0x43,0x24,0xae]
20 # CHECK: lfdu 2, 128(4) # encoding: [0xcc,0x44,0x00,0x80]
22 # CHECK: lfdux 2, 3, 4 # encoding: [0x7c,0x43,0x24,0xee]
24 # CHECK: lfiwax 2, 3, 4 # encoding: [0x7c,0x43,0x26,0xae
    [all...]

Completed in 889 milliseconds

1 2 3 4 5 6 7 8 91011>>