HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 501 - 525 of 4437) sorted by null

<<21222324252627282930>>

  /external/llvm/test/MC/Mips/
mips-hwr-register-names.s 6 # RUN: llvm-mc %s -triple=mips-unknown-linux -show-encoding -mcpu=mips32r2 | \
12 # CHECK-NEXT: .set pop # encoding: [0x7c,0x04,0x00,0x3b]
17 # CHECK-NEXT: .set pop # encoding: [0x7c,0x04,0x00,0x3b]
23 # CHECK-NEXT: .set pop # encoding: [0x7c,0x05,0x08,0x3b]
28 # CHECK-NEXT: .set pop # encoding: [0x7c,0x05,0x08,0x3b]
34 # CHECK-NEXT: .set pop # encoding: [0x7c,0x06,0x10,0x3b]
39 # CHECK-NEXT: .set pop # encoding: [0x7c,0x06,0x10,0x3b]
45 # CHECK-NEXT: .set pop # encoding: [0x7c,0x07,0x18,0x3b]
50 # CHECK-NEXT: .set pop # encoding: [0x7c,0x07,0x18,0x3b]
56 # CHECK-NEXT: .set pop # encoding: [0x7c,0x04,0x20,0x3b
    [all...]
  /bionic/tools/relocation_packer/src/
sleb128.h 8 // integer values. Encoding these as LEB128 saves space.
31 // Add a value to the encoding stream.
35 // Add a vector of values to the encoding stream.
40 // |encoding| is the returned vector of encoded data.
41 void GetEncoding(std::vector<uint8_t>* encoding) { *encoding = encoding_; }
53 // |encoding| is the vector of encoded data.
54 explicit Sleb128Decoder(const std::vector<uint8_t>& encoding, size_t start_with);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_codecencodings_kr.py 4 # Codec encoding tests for ROK encodings.
12 encoding = 'cp949' variable in class:Test_CP949
24 encoding = 'euc_kr' variable in class:Test_EUCKR
54 encoding = 'johab' variable in class:Test_JOHAB
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 53 * 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); local
69 * of parameters with the default encoding of {@link HTTP#DEFAULT_CONTENT_CHARSET}
72 * @throws UnsupportedEncodingException if the default encoding isn't supported
  /external/google-breakpad/src/common/dwarf/
bytereader.cc 82 bool ByteReader::ValidEncoding(DwarfPointerEncoding encoding) const {
83 if (encoding == DW_EH_PE_omit) return true;
84 if (encoding == DW_EH_PE_aligned) return true;
85 if ((encoding & 0x7) > DW_EH_PE_udata8)
87 if ((encoding & 0x70) > DW_EH_PE_funcrel)
92 bool ByteReader::UsableEncoding(DwarfPointerEncoding encoding) const {
93 switch (encoding & 0x70) {
104 DwarfPointerEncoding encoding,
108 assert(encoding != DW_EH_PE_omit);
114 if (encoding == DW_EH_PE_aligned)
    [all...]
  /external/libtextclassifier/util/java/
string_utils.cc 39 jstring encoding = env->NewStringUTF("UTF-8"); local
41 env->CallObjectMethod(jstr, get_bytes_id, encoding));
52 env->DeleteLocalRef(encoding);
  /external/llvm/test/MC/AArch64/
arm64-arm64-fixup.s 1 ; RUN: llvm-mc < %s -triple arm64-apple-darwin --show-encoding | FileCheck %s
5 ; CHECK: adr x3, Lbar ; encoding: [0x03'A',A,A,0x10'A']
9 ; CHECK: adrp x3, _printf@PAGE ; encoding: [0x03'A',A,A,0x90'A']
  /external/llvm/test/MC/ARM/
dot-req.s 1 @ RUN: llvm-mc -triple=armv7-apple-darwin -show-encoding < %s | FileCheck %s
13 @ CHECK: mov r11, r5 @ encoding: [0x05,0xb0,0xa0,0xe1]
14 @ CHECK: mov r1, r6 @ encoding: [0x06,0x10,0xa0,0xe1]
neon-vcvt-fp16.s 1 @ RUN: llvm-mc -mcpu=cortex-r7 -triple arm -show-encoding < %s 2>&1| \
3 @ RUN: not llvm-mc -mcpu=cortex-r5 -triple arm -show-encoding < %s 2>&1 | \
6 @ CHECK-FP16: vcvtt.f32.f16 s7, s1 @ encoding: [0xe0,0x3a,0xf2,0xee]
9 @ CHECK-FP16: vcvtt.f16.f32 s1, s7 @ encoding: [0xe3,0x0a,0xf3,0xee]
13 @ CHECK-FP16: vcvtb.f32.f16 s7, s1 @ encoding: [0x60,0x3a,0xf2,0xee]
16 @ CHECK-FP16: vcvtb.f16.f32 s1, s7 @ encoding: [0x63,0x0a,0xf3,0xee]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptEncoding.java 36 * Accept-Encoding SIP (HTTP) Header.
47 * The Accept-Encoding request-header field is similar to Accept, but
52 * Accept-Encoding = &quot;Accept-Encoding&quot; &quot;:&quot;
60 * Accept-Encoding: compress, gzip
61 * Accept-Encoding:
62 * Accept-Encoding: *
63 * Accept-Encoding: compress;q=0.5, gzip;q=1.0
64 * Accept-Encoding: gzip;q=1.0, identity; q=0.5, *;q=0
138 * Sets the encoding of an EncodingHeader
    [all...]
ContentDisposition.java 67 StringBuffer encoding = new StringBuffer(dispositionType); local
69 encoding.append(SEMICOLON).append(parameters.encode());
71 return encoding.toString();
  /external/python/cpython2/Lib/test/
test_codecencodings_iso2022.py 1 # Codec encoding tests for ISO 2022 encodings.
15 encoding = 'iso2022_jp' variable in class:Test_ISO2022_JP
22 encoding = 'iso2022_jp_2' variable in class:Test_ISO2022_JP2
29 encoding = 'iso2022_kr' variable in class:Test_ISO2022_KR
test_codecencodings_kr.py 3 # Codec encoding tests for ROK encodings.
11 encoding = 'cp949' variable in class:Test_CP949
23 encoding = 'euc_kr' variable in class:Test_EUCKR
53 encoding = 'johab' variable in class:Test_JOHAB
  /external/python/cpython3/Lib/encodings/
__init__.py 3 Standard Python encoding modules are stored in this package
6 Codec modules must have names corresponding to normalized encoding
20 * getaliases() -> sequence of encoding name strings to use as aliases
22 Alias names returned by getaliases() must be normalized encoding
43 def normalize_encoding(encoding):
45 """ Normalize an encoding name.
52 Note that encoding names should be ASCII only; if they do use
56 if isinstance(encoding, bytes):
57 encoding = str(encoding, "ascii"
    [all...]
  /external/python/cpython3/Lib/test/
test_codecencodings_iso2022.py 1 # Codec encoding tests for ISO 2022 encodings.
14 encoding = 'iso2022_jp' variable in class:Test_ISO2022_JP
21 encoding = 'iso2022_jp_2' variable in class:Test_ISO2022_JP2
28 encoding = 'iso2022_kr' variable in class:Test_ISO2022_KR
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowWebView.java 49 public void loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) {
50 lastLoadDataWithBaseURL = new LoadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl);
54 public void loadData(String data, String mimeType, String encoding) {
55 lastLoadData = new LoadData(data, mimeType, encoding);
222 public final String encoding; field in class:ShadowWebView.LoadDataWithBaseURL
225 public LoadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) {
229 this.encoding = encoding;
237 public final String encoding; field in class:ShadowWebView.LoadData
239 public LoadData(String data, String mimeType, String encoding) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_codecencodings_iso2022.py 3 # Codec encoding tests for ISO 2022 encodings.
17 encoding = 'iso2022_jp' variable in class:Test_ISO2022_JP
24 encoding = 'iso2022_jp_2' variable in class:Test_ISO2022_JP2
31 encoding = 'iso2022_kr' variable in class:Test_ISO2022_KR
test_codecencodings_kr.py 4 # Codec encoding tests for ROK encodings.
12 encoding = 'cp949' variable in class:Test_CP949
24 encoding = 'euc_kr' variable in class:Test_EUCKR
54 encoding = 'johab' variable in class:Test_JOHAB
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_codecencodings_iso2022.py 3 # Codec encoding tests for ISO 2022 encodings.
17 encoding = 'iso2022_jp' variable in class:Test_ISO2022_JP
24 encoding = 'iso2022_jp_2' variable in class:Test_ISO2022_JP2
31 encoding = 'iso2022_kr' variable in class:Test_ISO2022_KR
test_codecencodings_kr.py 4 # Codec encoding tests for ROK encodings.
12 encoding = 'cp949' variable in class:Test_CP949
24 encoding = 'euc_kr' variable in class:Test_EUCKR
54 encoding = 'johab' variable in class:Test_JOHAB
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codecencodings_iso2022.py 3 # Codec encoding tests for ISO 2022 encodings.
17 encoding = 'iso2022_jp' variable in class:Test_ISO2022_JP
24 encoding = 'iso2022_jp_2' variable in class:Test_ISO2022_JP2
31 encoding = 'iso2022_kr' variable in class:Test_ISO2022_KR
test_codecencodings_kr.py 4 # Codec encoding tests for ROK encodings.
12 encoding = 'cp949' variable in class:Test_CP949
24 encoding = 'euc_kr' variable in class:Test_EUCKR
54 encoding = 'johab' variable in class:Test_JOHAB
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codecencodings_iso2022.py 3 # Codec encoding tests for ISO 2022 encodings.
17 encoding = 'iso2022_jp' variable in class:Test_ISO2022_JP
24 encoding = 'iso2022_jp_2' variable in class:Test_ISO2022_JP2
31 encoding = 'iso2022_kr' variable in class:Test_ISO2022_KR
test_codecencodings_kr.py 4 # Codec encoding tests for ROK encodings.
12 encoding = 'cp949' variable in class:Test_CP949
24 encoding = 'euc_kr' variable in class:Test_EUCKR
54 encoding = 'johab' variable in class:Test_JOHAB
  /external/llvm/test/MC/PowerPC/
deprecated-p7.s 1 # RUN: llvm-mc -triple powerpc64-unknown-linux-gnu -mcpu=pwr7 -show-encoding < %s 2>&1 | FileCheck %s
2 # RUN: llvm-mc -triple powerpc64le-unknown-linux-gnu -mcpu=pwr7 -show-encoding < %s 2>&1 | FileCheck %s
3 # RUN: llvm-mc -triple powerpc-unknown-linux-gnu -mcpu=601 -show-encoding < %s 2>&1 | FileCheck -check-prefix=CHECK-OLD %s

Completed in 999 milliseconds

<<21222324252627282930>>