HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 151 - 175 of 1021) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ANTLRFileStream.js 8 * @param {String} [encoding] name of the charset used for decoding
10 org.antlr.runtime.ANTLRFileStream = function(fileName, encoding) {
24 var data = this[method](fileName, encoding);
43 * @param {String} [encoding] name of the charset used for decoding
46 loadFileUsingJava: function(fileName, encoding) {
52 if (encoding) {
53 isr = new java.io.InputStreamReader(fis, encoding);
  /external/libxml2/include/libxml/
DOCBparser.h 52 const char *encoding,
57 const char *encoding);
60 const char *encoding,
65 const char *encoding);
86 const char *encoding);
xmlsave.h 15 #include <libxml/encoding.h>
46 const char *encoding,
50 const char *encoding,
55 const char *encoding,
62 const char *encoding,
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/nist-sip/java/gov/nist/javax/sip/header/
AlertInfo.java 67 * Return value encoding in canonical form.
68 * @return The value of the header in canonical encoding.
71 StringBuffer encoding = new StringBuffer(); local
73 encoding.append(LESS_THAN).append(uri.encode()).append(GREATER_THAN);
75 encoding.append(string);
78 encoding.append(SEMICOLON).append(parameters.encode());
80 return encoding.toString();
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/webkit/Source/WebCore/platform/text/
TextEncodingDetectorICU.cpp 50 // Tiger came with ICU 3.2 and does not have the encoding detector.
69 // "the context" (parent-encoding, referrer encoding, etc).
72 // encoding with a highest confidence among the detector-specific
82 const char* encoding = 0;
86 // allocation in a given encoding. The size of a chunk passed to
108 encoding = hintEncodingName;
115 // a child frame in Shift_JIS and both frames do NOT specify the encoding
117 if (!encoding && matchesCount > 0)
118 encoding = ucsdet_getName(matches[0], &status)
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLPostfieldElement.cpp 75 static inline CString encodedString(const TextEncoding& encoding, const String& data)
77 return encoding.encode(data.characters(), data.length(), EntitiesForUnencodables);
80 void WMLPostfieldElement::encodeData(const TextEncoding& encoding, CString& name, CString& value)
82 name = encodedString(encoding, this->name());
83 value = encodedString(encoding, this->value());
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
ThreeIntegerSequence.java 35 private byte[] encoding; field in class:ThreeIntegerSequence
42 encoding = null;
46 if (encoding == null) {
47 encoding = ASN1.encode(this);
49 return encoding;
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ExtendedKeyUsage.java 51 public ExtendedKeyUsage(byte[] encoding) {
52 super(encoding);
67 if (encoding == null) {
68 encoding = ASN1.encode(keys);
70 return encoding;
79 // incorrect extension value encoding
BasicConstraints.java 52 public BasicConstraints(byte[] encoding) throws IOException {
53 super(encoding);
54 Object[] values = (Object[]) ASN1.decode(encoding);
69 if (encoding == null) {
70 encoding = ASN1.encode(new Object[]{ca, BigInteger.valueOf(pathLenConstraint) });
72 return encoding;
  /external/llvm/test/MC/Mips/
mips-relocations.s 1 # RUN: llvm-mc %s -triple=mipsel-unknown-linux -show-encoding -mcpu=mips32r2 | FileCheck %s
5 # CHECK: lui $2, %hi(_gp_disp) # encoding: [A,A,0x02,0x3c]
7 # CHECK: addiu $2, $2, %lo(_gp_disp) # encoding: [A,A,0x42,0x24]
9 # CHECK: lw $25, %call16(strchr)($gp) # encoding: [A,A,0x99,0x8f]
11 # CHECK: lw $3, %got(loop_1)($2) # encoding: [A,A,0x43,0x8c]
13 # CHECK: lui $2, %dtprel_hi(_gp_disp) # encoding: [A,A,0x02,0x3c]
15 # CHECK: addiu $2, $2, %dtprel_hi(_gp_disp) # encoding: [A,A,0x42,0x24]
17 # CHECK: lw $3, %got(loop_1)($2) # encoding: [A,A,0x43,0x8c]
19 # CHECK: lw $4, %got_disp(loop_2)($3) # encoding: [A,A,0x64,0x8c]
21 # CHECK: lw $5, %got_page(loop_3)($4) # encoding: [A,A,0x85,0x8c
    [all...]
  /external/libxml2/
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
1037 const char *encoding; local
1097 const char *encoding; local
    [all...]
  /external/apache-http/src/org/apache/http/client/entity/
UrlEncodedFormEntity.java 48 * of parameters in the specified encoding.
51 * @param encoding encoding the name/value pairs be encoded with
52 * @throws UnsupportedEncodingException if the encoding isn't supported
56 final String encoding) throws UnsupportedEncodingException {
57 super(URLEncodedUtils.format(parameters, encoding),
58 encoding); local
64 * of parameters with the default encoding of {@link HTTP#DEFAULT_CONTENT_CHARSET}
67 * @throws UnsupportedEncodingException if the default encoding isn't supported
  /external/llvm/test/MC/ARM/
arm_fixups.s 1 @ RUN: llvm-mc -triple armv7-unknown-unknown %s --show-encoding > %t
5 @ CHECK: bl _printf @ encoding: [A,A,A,0xeb]
12 @ CHECK: movw r9, :lower16:_foo @ encoding: [A,0x90'A',0b0000AAAA,0xe3]
14 @ CHECK: movw r9, :lower16:_foo @ encoding: [A,0x90'A',0b0000AAAA,0xe3]
16 @ CHECK: movt r9, :upper16:_foo @ encoding: [A,0x90'A',0b0100AAAA,0xe3]
21 @ CHECK: movw r2, fred @ encoding: [A,0x20'A',0b0000AAAA,0xe3]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CRLEntryImpl.java 57 private byte[] encoding; field in class:X509CRLEntryImpl
82 if (encoding == null) {
83 encoding = rcert.getEncoded();
85 byte[] result = new byte[encoding.length];
86 System.arraycopy(encoding, 0, result, 0, encoding.length);
X509CertFactoryImpl.java 76 * certificate, or PEM (Base64 encoding bounded by
99 // mark is needed to recognize the format of the provided encoding
134 // if it is PEM encoded form this array will contain the encoding
135 // so ((it is PEM) <-> (encoding != null))
136 byte[] encoding = null;
140 // unsupported encoding)
146 if (ch == '-') { // beginning of PEM encoding ('-' char)
147 // decode PEM chunk and store its content (ASN.1 encoding)
148 encoding = decodePEM(inStream, FREE_BOUND_SUFFIX);
150 encoding = null
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
Timestamp_ImplTest.java 42 private static final byte[] encoding = { 1, 2, 3 }; field in class:Timestamp_ImplTest
44 private CertPath cpath = new MyCertPath(encoding);
  /external/chromium/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 string16 encoding = it->encoding_display_name; local
134 base::i18n::AdjustStringForLocaleDirection(&encoding);
135 menu_items->push_back(EncodingMenuItem(it->encoding_id, encoding));
    [all...]
  /external/icu4c/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/icu4c/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/webkit/Source/WebCore/html/
DOMFormData.cpp 42 DOMFormData::DOMFormData(const TextEncoding& encoding)
43 : FormDataList(encoding)
DOMFormData.h 48 static PassRefPtr<DOMFormData> create(const TextEncoding& encoding) { return adoptRef(new DOMFormData(encoding)); }
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BerInputStreamTest.java 112 byte[] encoding = new byte[arrayLength + 4];
115 encoding[0] = ASN1Constants.TAG_OCTETSTRING;
116 encoding[1] = (byte) 0x82; // length is encoded in two bytes
117 encoding[2] = (byte) (arrayLength >> 8);
118 encoding[3] = (byte) (arrayLength & 0xFF);
121 encoding));
122 assertEquals(encoding.length, in.getBuffer().length);
139 // pass boolean encoding
143 // pass oid encoding
147 // pass random encoding (equals to ANY
    [all...]

Completed in 1972 milliseconds

1 2 3 4 5 67 8 91011>>