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

1 2 3 4 5

  /external/llvm/test/MC/ARM/
coff-relocations.s 5 @ RUN: | llvm-objdump -d - | FileCheck %s -check-prefix CHECK-ENCODING
17 @ CHECK-ENCODING-LABEL: branch24t
18 @ CHECK-ENCODING-NEXT: b.w #0
24 @ CHECK-ENCODING-LABEL: branch20t
25 @ CHECK-ENCODING-NEXT: blo.w #0
31 @ CHECK-ENCODING-LABEL: blx23t
32 @ CHECK-ENCODING-NEXT: bl #0
40 @ CHECK-ENCODING-LABEL: mov32t
41 @ CHECK-ENCODING-NEXT: movw r0, #0
42 @ CHECK-ENCODING-NEXT: movt r0, #
    [all...]
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 209 Encoding = byteFromRec(Rec, "OpEncBits");
289 if (Encoding == X86Local::EVEX) {
377 } else if (Encoding == X86Local::VEX || Encoding == X86Local::XOP) {
468 void RecognizableInstr::adjustOperandEncoding(OperandEncoding &encoding) {
469 // The scaling factor for AVX512 compressed displacement encoding is an
470 // instruction attribute. Adjust the ModRM encoding type to include the
472 if (encoding != ENCODING_RM || CD8_Scale == 0)
474 encoding = (OperandEncoding)(encoding + Log2_32(CD8_Scale))
    [all...]
  /external/expat/lib/
xmltok.h 125 struct encoding;
126 typedef struct encoding ENCODING;
128 typedef int (PTRCALL *SCANNER)(const ENCODING *,
139 struct encoding { struct
142 int (PTRCALL *sameName)(const ENCODING *,
145 int (PTRCALL *nameMatchesAscii)(const ENCODING *,
149 int (PTRFASTCALL *nameLength)(const ENCODING *, const char *);
150 const char *(PTRFASTCALL *skipS)(const ENCODING *, const char *);
151 int (PTRCALL *getAtts)(const ENCODING *enc
    [all...]
xmltok_ns.c 8 const ENCODING *
14 const ENCODING *
29 static const ENCODING * const NS(encodings)[] = {
40 NS(initScanProlog)(const ENCODING *enc, const char *ptr, const char *end,
48 NS(initScanContent)(const ENCODING *enc, const char *ptr, const char *end,
56 NS(XmlInitEncoding)(INIT_ENCODING *p, const ENCODING **encPtr,
71 static const ENCODING *
72 NS(findEncoding)(const ENCODING *enc, const char *ptr, const char *end)
92 const ENCODING *enc,
99 const ENCODING **encoding
    [all...]
xmlrole.c 105 const ENCODING *enc);
132 const ENCODING *enc)
169 const ENCODING *enc)
200 const ENCODING *enc)
221 const ENCODING *enc)
239 const ENCODING *enc)
269 const ENCODING *enc)
286 const ENCODING *enc)
303 const ENCODING *enc)
323 const ENCODING *enc
    [all...]
xmltok.c 125 isNever(const ENCODING *enc, const char *p)
131 utf8_isName2(const ENCODING *enc, const char *p)
137 utf8_isName3(const ENCODING *enc, const char *p)
145 utf8_isNmstrt2(const ENCODING *enc, const char *p)
151 utf8_isNmstrt3(const ENCODING *enc, const char *p)
159 utf8_isInvalid2(const ENCODING *enc, const char *p)
165 utf8_isInvalid3(const ENCODING *enc, const char *p)
171 utf8_isInvalid4(const ENCODING *enc, const char *p)
177 ENCODING enc;
180 int (PTRFASTCALL *byteType)(const ENCODING *, const char *)
1143 const ENCODING **encoding, variable
    [all...]
xmltok_impl.c 93 PREFIX(scanComment)(const ENCODING *enc, const char *ptr,
131 PREFIX(scanDecl)(const ENCODING *enc, const char *ptr,
178 PREFIX(checkPiTarget)(const ENCODING *enc, const char *ptr,
223 PREFIX(scanPi)(const ENCODING *enc, const char *ptr,
285 PREFIX(scanCdataSection)(const ENCODING *enc, const char *ptr,
305 PREFIX(cdataSectionTok)(const ENCODING *enc, const char *ptr,
383 PREFIX(scanEndTag)(const ENCODING *enc, const char *ptr,
432 PREFIX(scanHexCharRef)(const ENCODING *enc, const char *ptr,
464 PREFIX(scanCharRef)(const ENCODING *enc, const char *ptr,
496 PREFIX(scanRef)(const ENCODING *enc, const char *ptr, const char *end
    [all...]
xmlrole.h 92 const ENCODING *enc);
  /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
  /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;
RSA_SHA1.java 193 byte[] signature = sign(baseString.getBytes(OAuth.ENCODING));
207 baseString.getBytes(OAuth.ENCODING));
  /external/llvm/test/MC/ARM/Windows/
mov32t-range.s 5 @ RUN: | llvm-objdump -d - | FileCheck -check-prefix CHECK-ENCODING %s
35 @ CHECK-ENCODING: 0: 40 f2 00 00
36 @ CHECK-ENCODING-NEXT: 4: c0 f2 01 00
  /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);
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
PreferenceConstants.java 29 public static final String ENCODING = "encoding";
  /cts/common/host-side/util/src/com/android/compatibility/common/util/
DynamicConfigHandler.java 41 private static final String ENCODING = "UTF-8";
84 serializer.setOutput(stream, ENCODING);
86 serializer.startDocument(ENCODING, false);
  /cts/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);
  /external/libvpx/libvpx/vp9/encoder/
vp9_svc_layercontext.h 63 ENCODING,
96 // Prior to encoding the frame, update framerate-related quantities
104 // Prior to encoding the frame, set the layer context, for the current layer
108 // Save the layer context after encoding the frame.
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ParserFactory.java 42 private final static String ENCODING = "UTF-8"; //$NON-NLS-1$
77 parser.setInput(stream, ENCODING);
  /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/jetty/src/java/org/eclipse/jetty/util/
UrlEncoded.java 38 * This class handles the encoding and decoding for either
58 public static final String ENCODING = System.getProperty("org.eclipse.jetty.util.UrlEncoding.charset",StringUtil.__UTF8);
76 decode(s,ENCODING);
89 decodeTo(query,this,ENCODING,-1);
99 /** Encode Hashtable with % encoding.
103 return encode(ENCODING,false);
107 /** Encode Hashtable with % encoding.
115 /** Encode Hashtable with % encoding.
125 /** Encode Hashtable with % encoding.
132 charset=ENCODING;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 292 == m_text_properties.getProperty(OutputKeys.ENCODING))
296 OutputKeys.ENCODING,
  /external/icu/icu4c/source/tools/ctestfw/
uperf.cpp 33 "\t-e or --encoding encoding of source files\n"
52 ENCODING,
83 ucharBuf(NULL), encoding(""),
99 ucharBuf(NULL), encoding(""),
146 if(options[ENCODING].doesOccur) {
147 encoding = options[ENCODING].value;
200 ucharBuf = ucbuf_open(resolvedFileName,&encoding,TRUE,FALSE,&status);
  /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/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorOutputElem.java 78 * Set the encoding property from the attribute value.
79 * @see javax.xml.transform.OutputKeys#ENCODING
84 m_outputProperties.setProperty(OutputKeys.ENCODING, newValue);
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/
UOption.java 78 public static UOption ENCODING() { return create("encoding", 'e', REQUIRES_ARG); }

Completed in 901 milliseconds

1 2 3 4 5