HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 276 - 300 of 1313) sorted by null

<<11121314151617181920>>

  /external/libxml2/
HTMLtree.c 37 * Getting/Setting encoding meta tags *
45 * Encoding definition lookup in the Meta tags
47 * Returns the current encoding as flagged in the HTML source
53 const xmlChar *encoding; local
130 encoding = xmlStrstr(content, BAD_CAST"charset=");
131 if (encoding == NULL)
132 encoding = xmlStrstr(content, BAD_CAST"Charset=");
133 if (encoding == NULL)
134 encoding = xmlStrstr(content, BAD_CAST"CHARSET=");
135 if (encoding != NULL)
555 const char *encoding; local
1061 const char *encoding; local
1121 const char *encoding; local
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.cc 52 message.encoding().symbol_length());
55 EncodingTypeToProto(message.encoding().encoding_type()));
76 encoding::EncodingOption::EncodingSet::const_iterator iter;
80 encoding::EncodingOption option = *iter;
81 Options_Encoding* encoding = options.add_input_encodings(); local
82 encoding->set_symbol_length(option.symbol_length());
83 encoding->set_type(EncodingTypeToProto(option.encoding_type()));
89 encoding::EncodingOption option = *iter;
90 Options_Encoding* encoding = options.add_output_encodings(); local
91 encoding->set_symbol_length(option.symbol_length())
271 const Options_Encoding& encoding = options.input_encodings(i); local
279 const Options_Encoding& encoding = options.output_encodings(i); local
    [all...]
  /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/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/Sparc/
sparcv9-instructions.s 1 ! RUN: not llvm-mc %s -arch=sparc -show-encoding 2>&1 | FileCheck %s --check-prefix=V8
2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s --check-prefix=V9
6 ! V9: addx %g2, %g1, %g3 ! encoding: [0x86,0x40,0x80,0x01]
11 ! V9: addxcc %g1, %g2, %g3 ! encoding: [0x86,0xc0,0x40,0x02]
16 ! V9: subx %g2, %g1, %g3 ! encoding: [0x86,0x60,0x80,0x01]
21 ! V9: subxcc %g1, %g2, %g3 ! encoding: [0x86,0xe0,0x40,0x02]
  /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/llvm/test/MC/Mips/
expr1.s 1 # RUN: llvm-mc %s -triple=mipsel-unknown-linux -show-encoding -mcpu=mips32r2 | FileCheck %s
6 # CHECK: lw $4, %lo(foo)($4) # encoding: [A,A,0x84,0x8c]
8 # CHECK: lw $4, 56($4) # encoding: [0x38,0x00,0x84,0x8c]
9 # CHECK: lw $4, %lo(foo+8)($4) # encoding: [0x08'A',A,0x84,0x8c]
11 # CHECK: lw $4, %lo(foo+8)($4) # encoding: [0x08'A',A,0x84,0x8c]
13 # CHECK: lw $4, %lo(foo+8)($4) # encoding: [0x08'A',A,0x84,0x8c]
micromips-expressions.s 1 # RUN: llvm-mc %s -triple=mipsel-unknown-linux -show-encoding \
7 # CHECK: lw $4, %lo(foo)($4) # encoding: [0x84'A',0xfc'A',0x00,0x00]
11 # CHECK: lw $4, 56($4) # encoding: [0x84,0xfc,0x38,0x00]
12 # CHECK: lw $4, %lo(foo+8)($4) # encoding: [0x84'A',0xfc'A',0x08,0x00]
16 # CHECK: lw $4, %lo(foo+8)($4) # encoding: [0x84'A',0xfc'A',0x08,0x00]
20 # CHECK: lw $4, %lo(foo+8)($4) # encoding: [0x84'A',0xfc'A',0x08,0x00]
  /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
  /external/chromium_org/third_party/libxml/src/
HTMLtree.c 35 * Getting/Setting encoding meta tags *
43 * Encoding definition lookup in the Meta tags
45 * Returns the current encoding as flagged in the HTML source
51 const xmlChar *encoding; local
128 encoding = xmlStrstr(content, BAD_CAST"charset=");
129 if (encoding == NULL)
130 encoding = xmlStrstr(content, BAD_CAST"Charset=");
131 if (encoding == NULL)
132 encoding = xmlStrstr(content, BAD_CAST"CHARSET=");
133 if (encoding != NULL)
536 const char *encoding; local
1039 const char *encoding; local
1099 const char *encoding; local
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
Timestamp_ImplTest.java 41 private static final byte[] encoding = { 1, 2, 3 }; field in class:Timestamp_ImplTest
43 private CertPath cpath = new MyCertPath(encoding);
  /external/chromium_org/chrome/browser/ui/toolbar/
encoding_menu_controller.cc 87 std::string encoding = current_tab_encoding;
88 if (encoding.empty())
89 encoding = browser_profile->GetPrefs()->GetString(prefs::kDefaultCharset);
96 if (!encoding.empty()) {
97 return encoding ==
116 // Create current display encoding list.
119 // Build the list of encoding ids : It is made of the
133 base::string16 encoding = it->encoding_display_name; local
134 base::i18n::AdjustStringForLocaleDirection(&encoding);
135 menu_items->push_back(EncodingMenuItem(it->encoding_id, encoding));
    [all...]
  /external/chromium_org/remoting/protocol/
audio_reader.cc 16 AudioReader::AudioReader(AudioPacket::Encoding encoding)
18 encoding_(encoding),
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
TextResource.cpp 28 String TextResource::encoding() const function in class:blink::TextResource
30 return m_decoder->encoding().name();
  /external/chromium_org/third_party/WebKit/Source/core/html/
DOMFormData.cpp 41 DOMFormData::DOMFormData(const WTF::TextEncoding& encoding)
42 : FormDataList(encoding)
DOMFormData.h 57 static PassRefPtrWillBeRawPtr<DOMFormData> create(const WTF::TextEncoding& encoding)
59 return adoptRefWillBeNoop(new DOMFormData(encoding));
  /external/chromium_org/third_party/WebKit/Source/modules/encoding/
TextEncoder.idl 39 readonly attribute DOMString encoding;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
backward.py 90 """Open a file in read only mode using the encoding detected by
94 encoding, _ = detect_encoding(buffer.readline)
96 text = TextIOWrapper(buffer, encoding, line_buffering=True)
122 def write_encoded(fname, text, encoding='utf8', errors='strict'):
123 '''Write string `text` to file names `fname`, with encoding.'''
125 f = open(fname, 'w', encoding=encoding, errors=errors)
132 def write_encoded(fname, text, encoding='utf8', errors='strict'):
133 '''Write utf8 string `text` to file names `fname`, with encoding.'''
135 f = codecs.open(fname, 'w', encoding=encoding, errors=errors
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
textfile.h 24 * 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/chromium_org/third_party/icu/source/test/letest/
cfonts.h 22 const char *le_getNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language);
24 const LEUnicode16 *le_getUnicodeNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language);
  /external/chromium_org/third_party/icu/source/test/perf/leperf/
cfonts.h 22 const char *le_getNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language);
24 const LEUnicode16 *le_getUnicodeNameString(le_font *font, le_uint16 nameID, le_uint16 platform, le_uint16 encoding, le_uint16 language);
  /external/chromium_org/third_party/libxml/src/include/libxml/
HTMLtree.h 72 const xmlChar *encoding);
101 const char *encoding,
106 const char *encoding);
110 const char *encoding,
117 const char *encoding,
122 const char *encoding);
126 const char *encoding,
132 const char *encoding);
  /external/elfutils/0.153/libdw/
encoded-value.h 60 uint8_t encoding, const uint8_t *p)
62 if (encoding == DW_EH_PE_omit)
65 switch (encoding & 0x07)
114 read_encoded_value (const Dwarf_CFI *cache, uint8_t encoding, const uint8_t **p,
118 switch (encoding & 0x70)
140 encoding, *p);
154 switch (encoding & 0x0f)
200 if (encoding & DW_EH_PE_indirect)
  /external/icu/icu4c/source/test/intltest/
textfile.h 24 * 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

Completed in 2218 milliseconds

<<11121314151617181920>>