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

1 2 3 4 5

  /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";
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
PreferenceConstants.java 27 public static final String ENCODING = "encoding";
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
AudioRecordHelper.java 24 private static final int ENCODING = AudioFormat.ENCODING_PCM_16BIT;
41 tmpBufferSize = AudioRecord.getMinBufferSize(rate, CHANNEL, ENCODING);
42 AudioRecord testAudioRecord = new AudioRecord(source, rate, CHANNEL, ENCODING,
76 audioRecord = new AudioRecord(source, sampleRate, CHANNEL, ENCODING, bufferSize);
  /development/vndk/tools/sourcedr/sourcedr/tests/
test_ninja.py 12 ENCODING = 'utf-8'
479 parser.parse(input_path, ENCODING)
492 manifest = parser.parse(input_path, ENCODING)
524 manifest = parser.parse(input_path, ENCODING)
548 manifest = parser.parse(input_path, ENCODING)
560 manifest = parser.parse(input_path, ENCODING)
572 manifest = parser.parse(input_path, ENCODING)
585 manifest = parser.parse(input_path, ENCODING)
596 MockedParser().parse(input_path, ENCODING)
605 MockedParser().parse(input_path, ENCODING)
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/
uperf.cpp 35 "\t-e or --encoding encoding of source files\n"
54 ENCODING,
85 ucharBuf(NULL), encoding(""),
101 ucharBuf(NULL), encoding(""),
148 if(options[ENCODING].doesOccur) {
149 encoding = options[ENCODING].value;
202 ucharBuf = ucbuf_open(resolvedFileName,&encoding,TRUE,FALSE,&status);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/
UOption.java 80 public static UOption ENCODING() { return create("encoding", 'e', REQUIRES_ARG); }
  /external/libvpx/libvpx/vp9/encoder/
vp9_svc_layercontext.h 63 enum { ENCODED = 0, ENCODING, NEED_TO_ENCODE } encode_empty_frame_state;
115 // Prior to encoding the frame, update framerate-related quantities
123 // Prior to encoding the frame, set the layer context, for the current layer
127 // Save the layer context after encoding the frame.
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
SubPlan.java 41 private static final String ENCODING = "UTF-8";
112 serializer.setOutput(stream, ENCODING);
113 serializer.startDocument(ENCODING, false);
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
DynamicConfigHandler.java 43 private static final String ENCODING = "UTF-8";
96 serializer.setOutput(stream, ENCODING);
98 serializer.startDocument(ENCODING, false);
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 209 Encoding = byteFromRec(Rec, "OpEncBits");
288 if (Encoding == X86Local::EVEX) {
376 } else if (Encoding == X86Local::VEX || Encoding == X86Local::XOP) {
467 void RecognizableInstr::adjustOperandEncoding(OperandEncoding &encoding) {
468 // The scaling factor for AVX512 compressed displacement encoding is an
469 // instruction attribute. Adjust the ModRM encoding type to include the
471 if (encoding != ENCODING_RM || CD8_Scale == 0)
473 encoding = (OperandEncoding)(encoding + Log2_32(CD8_Scale))
    [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);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Http2xStream.java 57 private static final ByteString TRANSFER_ENCODING = ByteString.encodeUtf8("transfer-encoding");
59 private static final ByteString ENCODING = ByteString.encodeUtf8("encoding");
90 ENCODING,
105 ENCODING,
  /external/python/cpython3/Lib/
tokenize.py 5 determining source file encoding.
19 operators. Additionally, all token lists start with an ENCODING token
20 which tells you which encoding was used to decode the bytes stream.
42 "NL", "untokenize", "ENCODING", "TokenInfo"]
49 ENCODING = N_TOKENS + 2
50 tok_name[ENCODING] = 'ENCODING'
228 self.encoding = None
252 if tok_type == ENCODING:
253 self.encoding = toke
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
X86RecognizableInstr.cpp 519 Spec->operands[operandIndex].encoding = ENCODING_DUP;
527 Spec->operands[operandIndex].encoding = encodingFromString(typeName,
    [all...]
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
ReportLog.java 37 private static final String ENCODING = "UTF-8";
306 serializer.setOutput(byteArrayOutputStream, ENCODING);
307 serializer.startDocument(ENCODING, true);
311 return byteArrayOutputStream.toString(ENCODING);
349 parser.setInput(new ByteArrayInputStream(result.getBytes(ENCODING)), ENCODING);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmltok.h 125 struct encoding;
126 typedef struct encoding ENCODING;
128 typedef int (PTRCALL *SCANNER)(const ENCODING *,
133 struct encoding { struct
136 int (PTRCALL *sameName)(const ENCODING *,
139 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
144 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
145 int (PTRCALL *getAtts)(const ENCODING *enc,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmltok.h 125 struct encoding;
126 typedef struct encoding ENCODING;
128 typedef int (PTRCALL *SCANNER)(const ENCODING *,
133 struct encoding { struct
136 int (PTRCALL *sameName)(const ENCODING *,
139 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
144 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
145 int (PTRCALL *getAtts)(const ENCODING *enc,
    [all...]
  /external/expat/lib/
xmltok.h 153 struct encoding;
154 typedef struct encoding ENCODING;
156 typedef int (PTRCALL *SCANNER)(const ENCODING *,
167 struct encoding { struct
170 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
174 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
175 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
176 int (PTRCALL *getAtts)(const ENCODING *enc,
180 int (PTRFASTCALL *charRefNumber)(const ENCODING *enc, const char *ptr)
    [all...]
  /external/icu/icu4c/source/tools/genrb/
genrb.cpp 65 ENCODING,
124 const char *encoding = ""; local
197 "\t-e or --encoding encoding of source files\n"
204 "\t-j or --write-java write a Java ListResourceBundle for ICU4J, followed by optional encoding\n"
257 if(options[ENCODING].doesOccur) {
258 encoding = options[ENCODING].value;
527 processFile(arg, encoding, inputDir, outputDir, NULL,
661 printf("autodetected encoding %s\n", cp)
    [all...]
  /external/python/cpython2/Modules/expat/
xmltok.h 125 struct encoding;
126 typedef struct encoding ENCODING;
128 typedef int (PTRCALL *SCANNER)(const ENCODING *,
133 struct encoding { struct
136 int (PTRCALL *sameName)(const ENCODING *,
139 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
144 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
145 int (PTRCALL *getAtts)(const ENCODING *enc
    [all...]
  /external/python/cpython3/Modules/expat/
xmltok.h 125 struct encoding;
126 typedef struct encoding ENCODING;
128 typedef int (PTRCALL *SCANNER)(const ENCODING *,
133 struct encoding { struct
136 int (PTRCALL *sameName)(const ENCODING *,
139 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
143 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
144 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
145 int (PTRCALL *getAtts)(const ENCODING *enc
    [all...]
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
PerfTest.java 86 protected String encoding; field in class:PerfTest
333 static final int ENCODING = 4;
356 UOption.ENCODING(),
451 encoding = "";
522 if (options[ENCODING].doesOccur) encoding = options[ENCODING].value;
818 String encoding; field in class:PerfTest.BOMFreeReader
823 * encoding. Equivalent to BOMFreeReader(in, null).
836 * encoding. If encoding is null, attempts to detect the encoding by th
    [all...]
  /external/python/cpython2/Tools/gdb/
libpython.py 88 ENCODING = locale.getpreferredencoding()
112 # ENCODING encoding with 'backslashreplace' error handler to avoid
115 text = text.encode(ENCODING, 'backslashreplace')
    [all...]

Completed in 1243 milliseconds

1 2 3 4 5