Searched refs:encoding (Results 1 - 25 of 1375) sorted by relevance

1234567891011>>

/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...]
/external/chromium_org/tools/relocation_packer/src/
H A Dleb128_unittest.cc26 std::vector<uint8_t> encoding; local
27 encoder.GetEncoding(&encoding);
29 EXPECT_EQ(23, encoding.size());
31 EXPECT_EQ(0xe5, encoding[0]);
32 EXPECT_EQ(0x8e, encoding[1]);
33 EXPECT_EQ(0x26, encoding[2]);
35 EXPECT_EQ(0x00, encoding[3]);
37 EXPECT_EQ(0x01, encoding[4]);
39 EXPECT_EQ(0x7f, encoding[5]);
41 EXPECT_EQ(0x80, encoding[
63 std::vector<uint8_t> encoding; local
[all...]
H A Dsleb128_unittest.cc31 std::vector<uint8_t> encoding; local
32 encoder.GetEncoding(&encoding);
34 EXPECT_EQ(42u, encoding.size());
36 EXPECT_EQ(0xe5, encoding[0]);
37 EXPECT_EQ(0x8e, encoding[1]);
38 EXPECT_EQ(0x26, encoding[2]);
40 EXPECT_EQ(0x00, encoding[3]);
42 EXPECT_EQ(0x01, encoding[4]);
44 EXPECT_EQ(0x3f, encoding[5]);
46 EXPECT_EQ(0xc0, encoding[
91 std::vector<uint8_t> encoding; local
[all...]
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/
H A Doptionsmessage.h20 #include "polo/encoding/encodingoption.h"
42 // Adds a supported input encoding.
43 void AddInputEncoding(const encoding::EncodingOption& encoding);
45 // Adds a supported output encoding.
46 void AddOutputEncoding(const encoding::EncodingOption& encoding);
48 // Determines whether the given input encoding is supported.
50 const encoding::EncodingOption& encoding) cons
[all...]
H A Doptionsmessage.cc41 const encoding::EncodingOption& encoding) {
42 input_encodings_.insert(encoding);
46 const encoding::EncodingOption& encoding) {
47 output_encodings_.insert(encoding);
51 const encoding::EncodingOption& encoding) const {
53 encoding::EncodingOption::EncodingOptionPredicate(encoding))
40 AddInputEncoding( const encoding::EncodingOption& encoding) argument
45 AddOutputEncoding( const encoding::EncodingOption& encoding) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCharsetRule.idl22 [MeasureAs=CSSCharsetRuleEncoding] attribute DOMString encoding;
/external/chromium_org/tools/grit/grit/extern/
H A DBogoFP.py17 def UnsignedFingerPrint(str, encoding='utf-8'):
22 grit.extern.FP._UnsignedFingerPrintImpl(str, encoding))
/external/bison/darwin-lib/
H A Duniwidth.h37 /* 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/
H A Duniwidth.in.h36 /* 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/
H A Duniwidth.h37 /* 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/
H A DMyCertPath.java45 * my cert path the only encoding
47 private final byte[] encoding; field in class:MyCertPath
53 * @param encoding
55 public MyCertPath(byte[] encoding) { argument
57 this.encoding = encoding;
59 certificates.add(new MyCertificate("MyEncoding", encoding));
77 return encoding.clone();
82 * <code>encoding</code> parameter
83 * @throws CertificateEncodingException if <code>encoding</cod
87 getEncoded(String encoding) argument
[all...]
/external/llvm/test/MC/Mips/
H A Dmips64-expansions.s1 # RUN: llvm-mc %s -triple=mips64el-unknown-linux -show-encoding -mcpu=mips64r2 | FileCheck %s
9 # CHECK: ori $12, $zero, 1 # encoding: [0x01,0x00,0x0c,0x34]
10 # CHECK: ori $12, $zero, 10 # encoding: [0x0a,0x00,0x0c,0x34]
11 # CHECK: ori $12, $zero, 100 # encoding: [0x64,0x00,0x0c,0x34]
12 # CHECK: ori $12, $zero, 1000 # encoding: [0xe8,0x03,0x0c,0x34]
13 # CHECK: ori $12, $zero, 10000 # encoding: [0x10,0x27,0x0c,0x34]
14 # CHECK: lui $12, 1 # encoding: [0x01,0x00,0x0c,0x3c]
15 # CHECK: ori $12, $12, 34464 # encoding: [0xa0,0x86,0x8c,0x35]
16 # CHECK: lui $12, 15 # encoding: [0x0f,0x00,0x0c,0x3c]
17 # CHECK: ori $12, $12, 16960 # encoding
[all...]
H A Dmips-coprocessor-encodings.s1 # 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
[all...]
H A Dmicromips-trap-instructions.s1 # RUN: llvm-mc %s -triple=mipsel -show-encoding -mattr=micromips \
3 # RUN: llvm-mc %s -triple=mips -show-encoding -mattr=micromips \
12 # CHECK-EL: teq $8, $9 # encoding: [0x28,0x01,0x3c,0x00]
13 # CHECK-EL: tge $8, $9 # encoding: [0x28,0x01,0x3c,0x02]
14 # CHECK-EL: tgeu $8, $9 # encoding: [0x28,0x01,0x3c,0x04]
15 # CHECK-EL: tlt $8, $9 # encoding: [0x28,0x01,0x3c,0x08]
16 # CHECK-EL: tltu $8, $9 # encoding: [0x28,0x01,0x3c,0x0a]
17 # CHECK-EL: tne $8, $9 # encoding: [0x28,0x01,0x3c,0x0c]
18 # CHECK-EL: teqi $9, 17767 # encoding: [0xc9,0x41,0x67,0x45]
19 # CHECK-EL: tgei $9, 17767 # encoding
[all...]
H A Dmips-alu-instructions.s1 # 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
[all...]
H A Dmips-control-instructions.s1 # RUN: llvm-mc %s -triple=mips-unknown-unknown -show-encoding -mcpu=mips32r2 | \
3 # RUN: llvm-mc %s -triple=mips64-unknown-unknown -show-encoding -mcpu=mips64r2 \
6 # CHECK32: break # encoding: [0x00,0x00,0x00,0x0d]
7 # CHECK32: break 7 # encoding: [0x00,0x07,0x00,0x0d]
8 # CHECK32: break 7, 5 # encoding: [0x00,0x07,0x01,0x4d]
9 # CHECK32: syscall # encoding: [0x00,0x00,0x00,0x0c]
10 # CHECK32: syscall 13396 # encoding: [0x00,0x0d,0x15,0x0c]
11 # CHECK32: eret # encoding: [0x42,0x00,0x00,0x18]
12 # CHECK32: deret # encoding: [0x42,0x00,0x00,0x1f]
13 # CHECK32: di # encoding
[all...]
H A Dmips64-alu-instructions.s1 # RUN: llvm-mc %s -triple=mips64el-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
[all...]
/external/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.h347 // Pass along (ARMEncoding)encoding as the callback data.
359 EmulateInstructionARM::ARMEncoding encoding; member in struct:lldb_private::EmulateInstructionARM::__anon25284
362 bool (EmulateInstructionARM::*callback) (const uint32_t opcode, const EmulateInstructionARM::ARMEncoding encoding);
380 EmulatePUSH (const uint32_t opcode, const ARMEncoding encoding);
384 EmulatePOP (const uint32_t opcode, const ARMEncoding encoding);
388 EmulateADDRdSPImm (const uint32_t opcode, const ARMEncoding encoding);
392 EmulateMOVRdSP (const uint32_t opcode, const ARMEncoding encoding);
396 EmulateMOVLowHigh (const uint32_t opcode, const ARMEncoding encoding);
400 EmulateLDRRtPCRelative (const uint32_t opcode, const ARMEncoding encoding);
404 EmulateADDSPImm (const uint32_t opcode, const ARMEncoding encoding);
[all...]
/external/llvm/test/MC/PowerPC/
H A Dvsx.s1 # RUN: llvm-mc -triple powerpc64-unknown-linux-gnu --show-encoding %s | FileCheck -check-prefix=CHECK-BE %s
2 # RUN: llvm-mc -triple powerpc64le-unknown-linux-gnu --show-encoding %s | FileCheck -check-prefix=CHECK-LE %s
4 # CHECK-BE: lxsdx 7, 5, 31 # encoding: [0x7c,0xe5,0xfc,0x98]
5 # CHECK-LE: lxsdx 7, 5, 31 # encoding: [0x98,0xfc,0xe5,0x7c]
7 # CHECK-BE: lxvd2x 7, 5, 31 # encoding: [0x7c,0xe5,0xfe,0x98]
8 # CHECK-LE: lxvd2x 7, 5, 31 # encoding: [0x98,0xfe,0xe5,0x7c]
10 # CHECK-BE: lxvdsx 7, 5, 31 # encoding: [0x7c,0xe5,0xfa,0x98]
11 # CHECK-LE: lxvdsx 7, 5, 31 # encoding: [0x98,0xfa,0xe5,0x7c]
13 # CHECK-BE: lxvw4x 7, 5, 31 # encoding: [0x7c,0xe5,0xfe,0x18]
14 # CHECK-LE: lxvw4x 7, 5, 31 # encoding
[all...]
H A Dppc64-encoding.s2 # RUN: llvm-mc -triple powerpc64-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHECK-BE %s
3 # RUN: llvm-mc -triple powerpc64le-unknown-unknown --show-encoding %s | FileCheck -check-prefix=CHECK-LE %s
9 # CHECK-BE: b target # encoding: [0b010010AA,A,A,0bAAAAAA00]
10 # CHECK-LE: b target # encoding: [0bAAAAAA00,A,A,0b010010AA]
14 # CHECK-BE: ba target # encoding: [0b010010AA,A,A,0bAAAAAA10]
15 # CHECK-LE: ba target # encoding: [0bAAAAAA10,A,A,0b010010AA]
19 # CHECK-BE: bl target # encoding: [0b010010AA,A,A,0bAAAAAA01]
20 # CHECK-LE: bl target # encoding: [0bAAAAAA01,A,A,0b010010AA]
24 # CHECK-BE: bla target # encoding: [0b010010AA,A,A,0bAAAAAA11]
25 # CHECK-LE: bla target # encoding
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
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/ObjC/Framework/
H A DANTLRFileStream.h42 + (id) newANTLRFileStream:(NSString *)aFileName encoding:(NSStringEncoding)encoding;
44 - (id) init:(NSString *) aFileName encoding:(NSStringEncoding)encoding;
45 - (void) load:(NSString *)fileName encoding:(NSStringEncoding)encoding;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DPolicyQualifierInfoTest.java82 // 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
[all...]
/external/llvm/test/MC/Mips/msa/
H A Dtest_ctrlregs.s1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32r2 -mattr=+msa -show-encoding | FileCheck %s
3 #CHECK: cfcmsa $1, $0 # encoding: [0x78,0x7e,0x00,0x59]
4 #CHECK: cfcmsa $1, $0 # encoding: [0x78,0x7e,0x00,0x59]
5 #CHECK: cfcmsa $2, $1 # encoding: [0x78,0x7e,0x08,0x99]
6 #CHECK: cfcmsa $2, $1 # encoding: [0x78,0x7e,0x08,0x99]
7 #CHECK: cfcmsa $3, $2 # encoding: [0x78,0x7e,0x10,0xd9]
8 #CHECK: cfcmsa $3, $2 # encoding: [0x78,0x7e,0x10,0xd9]
9 #CHECK: cfcmsa $4, $3 # encoding: [0x78,0x7e,0x19,0x19]
10 #CHECK: cfcmsa $4, $3 # encoding: [0x78,0x7e,0x19,0x19]
11 #CHECK: cfcmsa $5, $4 # encoding
[all...]

Completed in 661 milliseconds

1234567891011>>