HomeSort by relevance Sort by last modified time
    Searched refs:Decoder (Results 76 - 100 of 301) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/utils/TableGen/
FixedLenDecoderEmitter.h 1 //===------------ FixedLenDecoderEmitter.h - Decoder Generator --*- C++ -*-===//
10 // It contains the tablegen backend that emits the decoder functions for
33 std::string Decoder;
36 : Decoder(D) { }
  /frameworks/base/core/java/android/net/metrics/
DhcpErrorEvent.java 103 return String.format("DhcpErrorEvent(%s)", Decoder.constants.get(errorCode));
106 final static class Decoder {
NetworkEvent.java 105 Decoder.constants.get(eventType), durationMs);
108 final static class Decoder {
ApfProgramEvent.java 118 names.add(Decoder.constants.get(bit));
123 final static class Decoder {
  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 13 // A Decoder reads and decodes JSON values from an input stream.
14 type Decoder struct {
27 // NewDecoder returns a new decoder that reads from r.
29 // The decoder introduces its own buffering and may
31 func NewDecoder(r io.Reader) *Decoder {
32 return &Decoder{r: r}
35 // UseNumber causes the Decoder to unmarshal a number into an interface{} as a
37 func (dec *Decoder) UseNumber() { dec.d.useNumber = true }
39 // DisallowUnknownFields causes the Decoder to return an error when the destination
42 func (dec *Decoder) DisallowUnknownFields() { dec.d.disallowUnknownFields = true
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 13 // A Decoder reads and decodes JSON values from an input stream.
14 type Decoder struct {
27 // NewDecoder returns a new decoder that reads from r.
29 // The decoder introduces its own buffering and may
31 func NewDecoder(r io.Reader) *Decoder {
32 return &Decoder{r: r}
35 // UseNumber causes the Decoder to unmarshal a number into an interface{} as a
37 func (dec *Decoder) UseNumber() { dec.d.useNumber = true }
39 // DisallowUnknownFields causes the Decoder to return an error when the destination
42 func (dec *Decoder) DisallowUnknownFields() { dec.d.disallowUnknownFields = true
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Base64.java 48 * character. The decoder rejects data that contains characters
55 * The decoder rejects data that contains characters outside the
132 int[] base64 = Decoder.fromBase64;
145 * Returns a {@link Decoder} that decodes using the
148 * @return A Base64 decoder.
150 public static Decoder getDecoder() {
151 return Decoder.RFC4648;
155 * Returns a {@link Decoder} that decodes using the
159 * @return A Base64 decoder.
161 public static Decoder getUrlDecoder()
    [all...]
  /external/v8/src/arm/
disasm-arm.cc 47 // Decoder decodes and disassembles instructions into an output buffer.
50 class Decoder {
52 Decoder(const disasm::NameConverter& converter,
60 ~Decoder() {}
125 DISALLOW_COPY_AND_ASSIGN(Decoder);
129 // Support for assertions in the Decoder formatting functions.
135 void Decoder::PrintChar(const char ch) {
141 void Decoder::Print(const char* str) {
160 void Decoder::PrintCondition(Instruction* instr) {
166 void Decoder::PrintRegister(int reg)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
Base64Test.java 30 import java.util.Base64.Decoder;
112 Decoder basicDecoder = Base64.getDecoder(); // uses Table 1
127 Decoder urlDecoder = Base64.getUrlDecoder(); // uses Table 2
141 private static void checkDecoder_extraChars_common(Decoder decoder) throws Exception {
143 assertDecodeThrowsIAe(decoder, " aGVsbG8sIHdvcmx");
144 assertDecodeThrowsIAe(decoder, "aGV sbG8sIHdvcmx");
145 assertDecodeThrowsIAe(decoder, "aGVsbG8sIHdvcmx ");
146 assertDecodeThrowsIAe(decoder, "*aGVsbG8sIHdvcmx");
147 assertDecodeThrowsIAe(decoder, "aGV*sbG8sIHdvcmx")
325 Decoder decoder = Base64.getUrlDecoder(); local
380 Decoder decoder = Base64.getDecoder(); local
391 assertRoundTrip(Base64.getEncoder(), decoder, inputString, decodedBytes); local
417 Decoder decoder = Base64.getDecoder(); local
459 Decoder decoder = Base64.getDecoder(); local
557 Decoder decoder = Base64.getMimeDecoder(); local
747 Decoder decoder = Base64.getMimeDecoder(); local
753 decoder); local
762 ALL_BYTE_VALUES_ENCODED.length(), separator), decoder); local
764 decoder); local
791 Decoder decoder = Base64.getMimeDecoder(); local
801 checkRoundTrip_allBytes(Base64.getMimeEncoder(Integer.MAX_VALUE & ~3, separator), decoder, local
814 Decoder decoder = Base64.getMimeDecoder(); local
880 Decoder decoder = Base64.getDecoder(); local
886 Decoder decoder = Base64.getMimeDecoder(); local
892 Decoder decoder = Base64.getUrlDecoder(); local
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetCallback.java 129 * Decoder Callback interface
132 public interface Decoder {
141 public CoderResult call(CharsetDecoderICU decoder, Object context,
186 public static final Decoder TO_U_CALLBACK_SKIP = new Decoder() {
188 public CoderResult call(CharsetDecoderICU decoder, Object context,
232 public static final Decoder TO_U_CALLBACK_SUBSTITUTE = new Decoder() {
234 public CoderResult call(CharsetDecoderICU decoder, Object context,
238 CharsetICU cs = (CharsetICU) decoder.charset()
    [all...]
CharsetDecoderICU.java 57 private CharsetCallback.Decoder onUnmappableCharacter = CharsetCallback.TO_U_CALLBACK_STOP;
58 private CharsetCallback.Decoder onMalformedInput = CharsetCallback.TO_U_CALLBACK_STOP;
59 CharsetCallback.Decoder toCharErrorBehaviour = new CharsetCallback.Decoder() {
61 public CoderResult call(CharsetDecoderICU decoder, Object context, ByteBuffer source,
64 return onUnmappableCharacter.call(decoder, context, source, target, offsets, buffer,
67 return onMalformedInput.call(decoder, context, source, target, offsets, buffer,
70 // return CharsetCallback.TO_U_CALLBACK_STOP.call(decoder, context, source, target, offsets, buffer, length, cr);
88 * Is this Decoder allowed to use fallbacks? A fallback mapping is a mapping
168 public final void setToUCallback(CoderResult err, CharsetCallback.Decoder newCallback, Object newContext)
    [all...]
  /external/llvm/lib/Target/PowerPC/Disassembler/
PPCDisassembler.cpp 217 const void *Decoder) {
223 const void *Decoder) {
229 const void *Decoder) {
235 const void *Decoder) {
241 const void *Decoder) {
247 const void *Decoder) {
253 const void *Decoder) {
259 const void *Decoder) {
265 const void *Decoder) {
271 const void *Decoder) {
    [all...]
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 27 public class Decoder {
118 public Decoder(InputStream is, String _bound) throws IOException {
122 public Decoder(InputStream is, String _bound, String characterEncoding) throws IOException {
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 22 class Decoder {
31 bool (Decoder::*Routine)(const uint8_t *, unsigned &, unsigned, bool);
110 Decoder(ScopedPrinter &SW) : SW(SW), OS(SW.getOStream()) {}
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVStream.h 134 operator>>(const SPIRVDecoder& Decoder, const std::pair<IterTy,IterTy> &Range) {
136 Decoder >> *I;
137 return Decoder;
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 89 public uint Decode(RangeCoder.Decoder rangeDecoder)
96 if (rangeDecoder.Range < Decoder.kTopValue)
108 if (rangeDecoder.Range < Decoder.kTopValue)
RangeCoderBitTree.cs 120 public uint Decode(RangeCoder.Decoder rangeDecoder)
128 public uint ReverseDecode(RangeCoder.Decoder rangeDecoder)
143 RangeCoder.Decoder rangeDecoder, int NumBitLevels)
  /external/brotli/java/org/brotli/wrapper/dec/
Decoder.java 17 public class Decoder {
19 private final DecoderJNI.Wrapper decoder; field in class:Decoder
24 * Creates a Decoder wrapper.
29 public Decoder(ReadableByteChannel source, int inputBufferSize)
38 this.decoder = new DecoderJNI.Wrapper(inputBufferSize);
65 switch (decoder.getStatus()) {
70 decoder.push(0);
74 ByteBuffer inputBuffer = decoder.getInputBuffer();
80 decoder.push(bytesRead);
84 buffer = decoder.pull()
122 DecoderJNI.Wrapper decoder = new DecoderJNI.Wrapper(data.length); local
    [all...]
  /external/libvpx/libvpx/test/
invalid_file_test.cc 55 libvpx_test::Decoder *decoder) {
73 << ". (" << decoder->DecodeError()
79 << ". (" << decoder->DecodeError() << ")";
171 virtual void HandlePeekResult(libvpx_test::Decoder *const /*decoder*/,
frame_size_tests.cc 30 libvpx_test::Decoder *decoder) {
31 EXPECT_EQ(expected_res_, res_dec) << decoder->DecodeError();
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 9 public class Decoder : ICoder, ISetDecoderProperties // ,System.IO.Stream
42 public uint Decode(RangeCoder.Decoder rangeDecoder, uint posState)
69 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder)
78 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, byte matchByte)
128 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte)
131 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte, byte matchByte)
136 RangeCoder.Decoder m_RangeDecoder = new RangeCoder.Decoder();
160 public Decoder()
  /frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
ViewDumpParser.java 15 Decoder d = new Decoder(ByteBuffer.wrap(data));
  /external/v8/src/arm64/
decoder-arm64-inl.h 8 #include "src/arm64/decoder-arm64.h"
19 void Decoder<V>::Decode(Instruction *instr) {
98 void Decoder<V>::DecodePCRelAddressing(Instruction* instr) {
108 void Decoder<V>::DecodeBranchSystemException(Instruction* instr) {
210 void Decoder<V>::DecodeLoadStore(Instruction* instr) {
338 void Decoder<V>::DecodeLogical(Instruction* instr) {
358 void Decoder<V>::DecodeBitfieldExtract(Instruction* instr) {
384 void Decoder<V>::DecodeAddSubImmediate(Instruction* instr) {
395 void Decoder<V>::DecodeDataProcessing(Instruction* instr) {
511 void Decoder<V>::DecodeFP(Instruction* instr)
    [all...]
  /art/disassembler/
disassembler_arm64.h 25 #include "aarch64/decoder-aarch64.h"
76 decoder.AppendVisitor(&disasm);
83 vixl::aarch64::Decoder decoder; member in class:art::arm64::FINAL
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Decoder.java 4 public class Decoder

Completed in 1189 milliseconds

1 2 34 5 6 7 8 91011>>