HomeSort by relevance Sort by last modified time
    Searched defs:ENCODING (Results 1 - 24 of 24) sorted by null

  /external/oauth/core/src/main/java/net/oauth/signature/
HMAC_SHA1.java 69 byte[] keyBytes = keyString.getBytes(ENCODING);
76 byte[] text = baseString.getBytes(ENCODING);
81 private static final String ENCODING = OAuth.ENCODING;
  /libcore/luni/src/main/java/javax/xml/transform/
OutputKeys.java 75 * encoding = <var>string</var>.
77 * <p><code>encoding</code> specifies the preferred character
78 * encoding that the Transformer should use to encode sequences of
79 * characters as sequences of bytes. The value of the encoding property should be
88 public static final String ENCODING = "encoding";
187 * according to the character encoding actually used by the output
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 85 * Encoding to use when showing parsed results in a {@link WebView}.
87 public static final String ENCODING = "utf-8";
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ParserFactory.java 38 private final static String ENCODING = "UTF-8"; //$NON-NLS-1$
59 parser.setInput(stream, ENCODING);
  /external/icu4c/tools/ctestfw/
uperf.cpp 29 "\t-e or --encoding encoding of source files\n"
48 ENCODING,
79 ucharBuf(NULL), encoding(""),
95 ucharBuf(NULL), encoding(""),
142 if(options[ENCODING].doesOccur) {
143 encoding = options[ENCODING].value;
196 ucharBuf = ucbuf_open(resolvedFileName,&encoding,TRUE,FALSE,&status);
  /external/icu4c/tools/genrb/
genrb.c 48 ENCODING,
122 const char *encoding = ""; local
180 "\t-e or --encoding encoding of source files\n"
187 "\t-j or --write-java write a Java ListResourceBundle for ICU4J, followed by optional encoding\n"
253 if(options[ENCODING].doesOccur) {
254 encoding = options[ENCODING].value;
427 processFile(arg, encoding, inputDir, outputDir, gPackageName, &status);
555 printf("autodetected encoding %s\n", cp)
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 511 Spec->operands[operandIndex].encoding = ENCODING_DUP;
519 Spec->operands[operandIndex].encoding = encodingFromString(typeName,
    [all...]
  /external/oauth/core/src/main/java/net/oauth/
OAuth.java 38 /** The encoding used to represent characters as bytes. */
39 public static final String ENCODING = "UTF-8";
89 * name/value pairs. Use OAuth percent encoding (not exactly the encoding
160 return URLEncoder.encode(s, ENCODING)
172 return URLDecoder.decode(s, ENCODING);