HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 201 - 225 of 1566) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
X509CertPathImplTest.java 78 byte[] encoding = certPath.getEncoded();
79 ByteArrayInputStream bais = new ByteArrayInputStream(encoding);
89 byte[] encoding = certPath.getEncoded();
90 X509CertPathImpl cpath = X509CertPathImpl.getInstance(encoding);
102 byte[] encoding = certPath.getEncoded();
106 ByteArrayInputStream bais = new ByteArrayInputStream(encoding);
110 encoding = cert_path.getEncoded("PKCS7");
113 .getInstance(encoding, "PKCS7");
117 bais = new ByteArrayInputStream(encoding);
129 byte[] encoding = certPath.getEncoded()
164 Object encoding = it.next(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRFileStream.cs 40 using Encoding = System.Text.Encoding;
68 this(fileName, Encoding.Default)
74 /// specified file name and encoding
76 public ANTLRFileStream(string fileName, Encoding encoding)
79 Load(fileName, encoding);
100 /// <param name="encoding">Encoding to apply to file</param>
101 public virtual void Load(string fileName, Encoding encoding
    [all...]
  /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/chromium_org/third_party/WebKit/Source/core/platform/text/
TextEncodingDetectorICU.cpp 58 // "the context" (parent-encoding, referrer encoding, etc).
61 // encoding with a highest confidence among the detector-specific
71 const char* encoding = 0; local
75 // allocation in a given encoding. The size of a chunk passed to
97 encoding = hintEncodingName;
104 // a child frame in Shift_JIS and both frames do NOT specify the encoding
106 if (!encoding && matchesCount > 0)
107 encoding = ucsdet_getName(matches[0], &status);
109 *detectedEncoding = WTF::TextEncoding(encoding);
    [all...]
  /external/chromium_org/third_party/libxml/src/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>
45 const char *encoding,
49 const char *encoding,
54 const char *encoding,
61 const char *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,
  /external/llvm/test/MC/ARM/
arm-thumb-trustzone.s 1 @ RUN: not llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=-trustzone < %s | FileCheck %s -check-prefix=NOTZ
2 @ RUN: llvm-mc -triple=thumbv7-apple-darwin -mcpu=cortex-a8 -show-encoding -mattr=trustzone < %s | FileCheck %s -check-prefix=TZ
23 @ TZ: smc #15 @ encoding: [0xff,0xf7,0x00,0x80]
24 @ TZ: ite eq @ encoding: [0x0c,0xbf]
25 @ TZ: smceq #0 @ encoding: [0xf0,0xf7,0x00,0x80]
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]
  /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();
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codecencodings_jp.py 4 # Codec encoding tests for Japanese encodings.
12 encoding = 'cp932' variable in class:Test_CP932
28 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
58 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
75 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
83 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 13 encoding = 'cp932' variable in class:TestCP932Map
29 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
36 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
51 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
58 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
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_jp.py 4 # Codec encoding tests for Japanese encodings.
12 encoding = 'cp932' variable in class:Test_CP932
28 encoding = 'euc_jisx0213' variable in class:Test_EUC_JISX0213
58 encoding = 'euc_jp' variable in class:Test_EUC_JP_COMPAT
75 encoding = 'shift_jis' variable in class:Test_SJIS_COMPAT
83 encoding = 'shift_jisx0213' variable in class:Test_SJISX0213
test_codecmaps_jp.py 13 encoding = 'cp932' variable in class:TestCP932Map
29 encoding = 'euc_jp' variable in class:TestEUCJPCOMPATMap
36 encoding = 'shift_jis' variable in class:TestSJISCOMPATMap
51 encoding = 'euc_jisx0213' variable in class:TestEUCJISX0213Map
58 encoding = 'shift_jisx0213' variable in class:TestSJISX0213Map
  /external/llvm/test/MC/Mips/
mips-relocations.s 1 # RUN: llvm-mc %s -triple=mipsel-unknown-linux -show-encoding -mcpu=mips32r2 | FileCheck %s
4 # CHECK: lui $2, %hi(_gp_disp) # encoding: [A,A,0x02,0x3c]
6 # CHECK: addiu $2, $2, %lo(_gp_disp) # encoding: [A,A,0x42,0x24]
8 # CHECK: lw $25, %call16(strchr)($gp) # encoding: [A,A,0x99,0x8f]
10 # CHECK: lw $3, %got(loop_1)($2) # encoding: [A,A,0x43,0x8c]
12 # CHECK: lui $2, %dtprel_hi(_gp_disp) # encoding: [A,A,0x02,0x3c]
14 # CHECK: addiu $2, $2, %dtprel_hi(_gp_disp) # encoding: [A,A,0x42,0x24]
16 # CHECK: lw $3, %got(loop_1)($2) # encoding: [A,A,0x43,0x8c]
18 # CHECK: lw $4, %got_disp(loop_2)($3) # encoding: [A,A,0x64,0x8c]
20 # 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/robolectric/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);
218 public final String encoding; field in class:ShadowWebView.LoadDataWithBaseURL
221 public LoadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) {
225 this.encoding = encoding;
233 public final String encoding; field in class:ShadowWebView.LoadData
235 public LoadData(String data, String mimeType, String encoding) {
    [all...]

Completed in 812 milliseconds

1 2 3 4 5 6 7 891011>>