Searched refs:encoding (Results 126 - 150 of 1375) sorted by last modified time

1234567891011>>

/external/oauth/core/src/main/java/net/oauth/
H A DOAuthMessage.java41 * responsible for percent-encoding parameters before transmission and decoding
149 * The character encoding of the body of this message.
151 * @return the name of an encoding, or "ISO-8859-1" if no charset has been
337 public static String readAll(InputStream from, String encoding) throws IOException argument
344 Reader r = new InputStreamReader(from, encoding);
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java40 String encoding = getEncoding(message);
41 if (encoding != null) {
42 return new HttpMessageDecoder(message, encoding);
53 String encoding = message.getHeader(CONTENT_ENCODING);
54 if (encoding == null) {
56 } else if (GZIP.equalsIgnoreCase(encoding)
57 || ("x-" + GZIP).equalsIgnoreCase(encoding)) {
59 } else if (DEFLATE.equalsIgnoreCase(encoding)) {
65 private HttpMessageDecoder(HttpResponseMessage in, String encoding) argument
73 if (encoding
[all...]
/external/okhttp/
H A DAndroid.mk32 LOCAL_JAVACFLAGS := -encoding UTF-8
44 LOCAL_JAVACFLAGS := -encoding UTF-8
60 LOCAL_JAVACFLAGS := -encoding UTF-8
70 LOCAL_JAVACFLAGS := -encoding UTF-8
80 LOCAL_JAVACFLAGS := -encoding UTF-8
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
H A DOkApacheClient.java135 Header encoding = entity.getContentEncoding();
136 if (encoding != null) {
137 connection.addRequestProperty(encoding.getName(), encoding.getValue());
/external/nist-sip/java/gov/nist/core/
H A DGenericObjectList.java350 StringBuffer encoding = new StringBuffer();
357 encoding.append(gobj.encode());
359 encoding.append(obj.toString());
362 encoding.append(separator);
367 return encoding.toString();
378 * Set the separator (for encoding the list)
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptEncoding.java138 * Sets the encoding of an EncodingHeader.
140 * @param encoding -
141 * the new string value defining the encoding.
144 * while parsing the encoding value.
147 public void setEncoding(String encoding) throws ParseException { argument
148 if (encoding == null)
149 throw new NullPointerException(" encoding parameter is null");
150 contentCoding = encoding;
H A DAcceptLanguage.java75 StringBuffer encoding = new StringBuffer();
77 encoding.append(languageRange);
80 encoding.append(SEMICOLON).append(parameters.encode());
82 return encoding.toString();
H A DAlertInfo.java67 * Return value encoding in canonical form.
68 * @return The value of the header in canonical encoding.
71 StringBuffer encoding = new StringBuffer();
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();
H A DContentDisposition.java67 StringBuffer encoding = new StringBuffer(dispositionType);
69 encoding.append(SEMICOLON).append(parameters.encode());
71 return encoding.toString();
H A DContentEncoding.java34 * Content encoding part of a content encoding header list.
56 * encoding and is only decoded before rendering or analogous usage.
71 * Additional information about the encoding parameters MAY be provided
110 * Canonical encoding of body of the header.
127 * @param encoding String to set
129 public void setEncoding(String encoding) throws ParseException { argument
130 if (encoding == null)
132 "JAIN-SIP Exception, " + " encoding is null");
133 contentEncoding = encoding;
[all...]
H A DHeaderFactoryImpl.java69 * Set pretty encoding on / off.
79 * Creates a new AcceptEncodingHeader based on the newly supplied encoding
82 * @param encoding - the new string containing the encoding value.
84 * unexpectedly while parsing the encoding value.
87 public AcceptEncodingHeader createAcceptEncodingHeader(String encoding) argument
89 if (encoding == null)
90 throw new NullPointerException("the encoding parameter is null");
92 acceptEncoding.setEncoding(encoding);
348 * Creates a new ContentEncodingHeader based on the newly supplied encoding
356 createContentEncodingHeader(String encoding) argument
[all...]
H A DSIPDate.java281 String encoding = "";
284 encoding += sipWkDay + Separators.COMMA + Separators.SP;
286 encoding += dayString + Separators.SP;
289 encoding += sipMonth + Separators.SP;
291 encoding += year
301 return encoding;
H A DStatusLine.java116 String encoding = SIPConstants.SIP_VERSION_STRING + SP + statusCode;
118 encoding += SP + reasonPhrase;
119 encoding += NEWLINE;
120 return encoding;
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAccessNetworkInfo.java250 StringBuffer encoding = new StringBuffer();
253 encoding.append(getAccessType());
256 encoding.append(SEMICOLON + SP + this.parameters.encode());
261 encoding.append(SEMICOLON + SP
265 return encoding.toString();
H A DPChargingFunctionAddresses.java91 StringBuffer encoding = new StringBuffer();
96 encoding.append(duplicates.encode());
99 return encoding.toString();
H A DPChargingVector.java63 StringBuffer encoding = new StringBuffer();
72 nv.encode( encoding );
77 encoding.append(SEMICOLON).append(
83 encoding.append(SEMICOLON).append(ParameterNamesIms.TERM_IOI)
88 encoding.append(SEMICOLON).append(ParameterNamesIms.ORIG_IOI)
91 return encoding.toString();
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPMessage.java238 StringBuffer encoding = new StringBuffer();
244 siphdr.encode(encoding);
247 return contentLengthHeader.encode(encoding).append(NEWLINE).toString();
361 StringBuffer encoding = new StringBuffer();
367 encoding.append(siphdr.encode());
372 encoding.append(unrecognized).append(NEWLINE);
375 encoding.append(contentLengthHeader.encode()).append(NEWLINE);
380 encoding.append(mbody);
395 encoding.append(content);
397 return encoding
[all...]
/external/nist-sip/java/javax/sip/header/
H A DEncoding.java7 void setEncoding(String encoding) throws ParseException; argument
H A DHeaderFactory.java14 AcceptEncodingHeader createAcceptEncodingHeader(String encoding) argument
46 ContentEncodingHeader createContentEncodingHeader(String encoding) argument
/external/nanopb-c/tools/
H A Dmake_windows_package.sh36 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_dump.c243 trace_dump_writes("<?xml version='1.0' encoding='UTF-8'?>\n");
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp60 static inline const char* stringForOperandEncoding(OperandEncoding encoding) { argument
61 switch (encoding) {
63 llvm_unreachable("Unhandled encoding");
563 .operands[OperandIndex].encoding);
597 .operands[OperandIndex].encoding);
H A DX86RecognizableInstr.cpp459 Spec->operands[operandIndex].encoding = ENCODING_DUP;
467 Spec->operands[operandIndex].encoding = encodingFromString(typeName,
878 // For instructions with a REX_W prefix, a declared 32-bit register encoding
884 // immediate encoding is special.
889 // immediate encoding is special.
984 #define ENCODING(str, encoding) if (s == str) return encoding;
990 // immediate encoding is special.
1015 errs() << "Unhandled immediate encoding " << s << "\n";
1016 llvm_unreachable("Unhandled immediate encoding");
[all...]
/external/lohit-fonts/lohit-odia-ttf/
H A D66-lohit-odia.conf1 <?xml version="1.0" encoding="UTF-8"?>
/external/lzma/C/
H A DBra.c6 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
20 if (encoding)
33 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
53 if (encoding)
69 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
85 if (encoding)
99 SizeT SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
118 if (encoding)

Completed in 7803 milliseconds

1234567891011>>