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

1 2 3 4 5 6 7 8 91011>>

  /bionic/linker/tests/
linker_sleb128_test.cpp 38 std::vector<uint8_t> encoding; local
40 encoding.push_back(0xe5);
41 encoding.push_back(0x8e);
42 encoding.push_back(0x26);
44 encoding.push_back(0x00);
46 encoding.push_back(0x01);
48 encoding.push_back(0x3f);
50 encoding.push_back(0xc0);
51 encoding.push_back(0x00);
53 encoding.push_back(0x7f)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRInputStream.h 13 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;
  /art/runtime/verifier/
instruction_flags.cc 25 char encoding[8]; local
27 strncpy(encoding, "XXXXXXX", sizeof(encoding));
29 strncpy(encoding, "-------", sizeof(encoding));
30 if (IsVisited()) encoding[kVisited] = 'V';
31 if (IsChanged()) encoding[kChanged] = 'C';
32 if (IsOpcode()) encoding[kOpcode] = 'O';
33 if (IsInTry()) encoding[kInTry] = 'T';
34 if (IsBranchTarget()) encoding[kBranchTarget] = 'B'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_codecmaps_hk.py 13 encoding = 'big5hkscs' variable in class:TestBig5HKSCSMap
test_codecencodings_hk.py 4 # Codec encoding tests for HongKong encodings.
12 encoding = 'big5hkscs' variable in class:Test_Big5HKSCS
test_codecencodings_tw.py 4 # Codec encoding tests for ROC encodings.
12 encoding = 'big5' variable in class:Test_Big5
  /external/python/cpython2/Lib/test/
test_codecmaps_hk.py 12 encoding = 'big5hkscs' variable in class:TestBig5HKSCSMap
test_codecencodings_hk.py 3 # Codec encoding tests for HongKong encodings.
11 encoding = 'big5hkscs' variable in class:Test_Big5HKSCS
test_codecencodings_tw.py 3 # Codec encoding tests for ROC encodings.
11 encoding = 'big5' variable in class:Test_Big5
  /external/python/cpython3/Lib/test/
test_codecencodings_hk.py 3 # Codec encoding tests for HongKong encodings.
10 encoding = 'big5hkscs' variable in class:Test_Big5HKSCS
test_codecencodings_tw.py 3 # Codec encoding tests for ROC encodings.
10 encoding = 'big5' variable in class:Test_Big5
test_codecmaps_hk.py 11 encoding = 'big5hkscs' variable in class:TestBig5HKSCSMap
test_codecmaps_cn.py 11 encoding = 'gb2312' variable in class:TestGB2312Map
16 encoding = 'gbk' variable in class:TestGBKMap
21 encoding = 'gb18030' variable in class:TestGB18030Map
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_codecmaps_hk.py 13 encoding = 'big5hkscs' variable in class:TestBig5HKSCSMap
test_codecencodings_hk.py 4 # Codec encoding tests for HongKong encodings.
12 encoding = 'big5hkscs' variable in class:Test_Big5HKSCS
test_codecencodings_tw.py 4 # Codec encoding tests for ROC encodings.
12 encoding = 'big5' variable in class:Test_Big5
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_codecmaps_hk.py 13 encoding = 'big5hkscs' variable in class:TestBig5HKSCSMap
test_codecencodings_hk.py 4 # Codec encoding tests for HongKong encodings.
12 encoding = 'big5hkscs' variable in class:Test_Big5HKSCS
test_codecencodings_tw.py 4 # Codec encoding tests for ROC encodings.
12 encoding = 'big5' variable in class:Test_Big5
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codecmaps_hk.py 13 encoding = 'big5hkscs' variable in class:TestBig5HKSCSMap
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codecmaps_hk.py 13 encoding = 'big5hkscs' variable in class:TestBig5HKSCSMap
  /external/freetype/src/base/
ftbdf.c 34 const char* encoding = NULL; local
46 error = service->get_charset_id( face, &encoding, &registry );
51 *acharset_encoding = encoding;
  /external/google-tv-pairing-protocol/cpp/src/polo/encoding/
hexadecimalencoder.h 21 #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
  /external/google-tv-pairing-protocol/cpp/tests/polo/encoding/
hexadecimalencodertest.cc 16 #include <polo/encoding/hexadecimalencoder.h>
19 namespace encoding { namespace in namespace:polo
49 } // namespace encoding
  /prebuilts/go/darwin-x86/src/encoding/
encoding.go 5 // Package encoding defines interfaces shared by other packages that
7 // Packages that check for these interfaces include encoding/gob,
8 // encoding/json, and encoding/xml. As a result, implementing an
12 package encoding package

Completed in 163 milliseconds

1 2 3 4 5 6 7 8 91011>>