HomeSort by relevance Sort by last modified time
    Searched defs:Decoder (Results 51 - 75 of 109) sorted by null

1 23 4 5

  /prebuilts/go/linux-x86/src/encoding/xml/
xml.go 40 // In tokens returned by Decoder.Token, the Space identifier
139 // Decoder.
155 // A Decoder represents an XML parser reading a particular input stream.
157 type Decoder struct {
229 func NewDecoder(r io.Reader) *Decoder {
230 d := &Decoder{
241 func NewTokenDecoder(t TokenReader) *Decoder {
242 // Is it already a Decoder?
243 if d, ok := t.(*Decoder); ok {
246 d := &Decoder{
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Decoder.java 19 * A Decoder is a helper class for deserializing a mojo struct. It enables deserialization of basic
22 public class Decoder {
125 public Decoder(Message message) {
129 private Decoder(Message message, Validator validator, int baseOffset) {
168 * @returns a decoder suitable to decode an union defined as the root object of a message.
170 public Decoder decoderForSerializedUnion() {
306 * Deserializes a pointer at the given offset. Returns a Decoder suitable to decode the content
309 public Decoder readPointer(int offset, boolean nullable) {
329 Decoder d = readPointer(offset, BindingsHelper.isArrayNullable(arrayNullability));
353 Decoder d = readPointer(offset, BindingsHelper.isArrayNullable(arrayNullability))
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 1 //===------------ FixedLenDecoderEmitter.cpp - Decoder Generator ----------===//
10 // It contains the tablegen backend that emits the decoder functions for
36 #define DEBUG_TYPE "decoder-emitter"
47 std::string Decoder;
51 : Decoder(std::move(D)), HasCompleteDecoder(HCD) {}
98 // Emit the decoder state machine table.
214 /// which could have been used by the decoder to resolve the conflict. The
215 /// decoder could try to decode the even/odd register numbering and assign to
216 /// VST4q8a or VST4q8b, but for the time being, the decoder chooses the "a"
690 // Emit the decoder state machine table
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 8 public class Decoder
29 SevenZip.Compression.RangeCoder.Decoder.InitBitModels(m_Choice);
38 public int Decode(SevenZip.Compression.RangeCoder.Decoder rangeDecoder, int posState) throws IOException
59 SevenZip.Compression.RangeCoder.Decoder.InitBitModels(m_Decoders);
62 public byte DecodeNormal(SevenZip.Compression.RangeCoder.Decoder rangeDecoder) throws IOException
71 public byte DecodeWithMatchByte(SevenZip.Compression.RangeCoder.Decoder rangeDecoder, byte matchByte) throws IOException
124 SevenZip.Compression.RangeCoder.Decoder m_RangeDecoder = new SevenZip.Compression.RangeCoder.Decoder();
148 public Decoder()
183 SevenZip.Compression.RangeCoder.Decoder.InitBitModels(m_IsMatchDecoders);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
InstallShortcutReceiver.java 183 Decoder decoder = new Decoder(encoded, context); local
184 if (packageNames.contains(getIntentPackage(decoder.launcherIntent)) &&
185 user.equals(decoder.user)) {
277 Decoder decoder = new Decoder(encoded, context); local
278 if (decoder.optBoolean(DEEPSHORTCUT_TYPE_KEY)) {
279 result.add(ShortcutKey.fromIntent(decoder.launcherIntent, decoder.user))
535 Decoder decoder = new Decoder(encoded, context); local
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
FixedLenDecoderEmitter.cpp 1 //===------------ FixedLenDecoderEmitter.cpp - Decoder Generator ----------===//
10 // It contains the tablegen backend that emits the decoder functions for
15 #define DEBUG_TYPE "decoder-emitter"
122 /// which could have been used by the decoder to resolve the conflict. The
123 /// decoder could try to decode the even/odd register numbering and assign to
124 /// VST4q8a or VST4q8b, but for the time being, the decoder chooses the "a"
578 << "const void *Decoder, const MCSubtargetInfo &STI) {\n";
740 std::string &Decoder = OpInfo.Decoder;
757 if (Decoder != ""
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/
charsets.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/
charsets.jar 
  /cts/tests/tests/media/src/android/media/cts/
ImageReaderDecoderTest.java 66 * test. For decoder test, hw and sw decoders are tested,
204 class Decoder {
219 Decoder(String name, MediaAssets assets, CodecCapabilities caps) {
253 MediaCodec decoder = null; local
288 // Create decoder
289 decoder = MediaCodec.createByCodecName(mName);
290 assertNotNull("couldn't create decoder" + mName, decoder);
293 decoder, extractor, mediaFormat,
296 decoder.stop()
    [all...]
MediaSyncTest.java 82 private Decoder mDecoderVideo = null;
83 private Decoder mDecoderAudio = null;
116 mDecoderVideo = new Decoder(this, mMediaSync, false);
117 mDecoderAudio = new Decoder(this, mMediaSync, true);
151 public void onTaggedAudioBufferIndex(Decoder decoder, int index) {
153 if (decoder == mDecoderAudio) {
159 public void onEos(Decoder decoder) {
161 if (decoder == mDecoderAudio)
    [all...]
  /packages/services/Car/car-lib/src/android/car/diagnostic/
CarDiagnosticEvent.java 596 public static final class Decoder {
600 Decoder(int availableBitmask, int incompleteBitmask) {
637 static final IgnitionMonitor.Decoder COMPONENTS_DECODER =
638 new IgnitionMonitor.Decoder(COMPONENTS_AVAILABLE, COMPONENTS_INCOMPLETE);
640 static final IgnitionMonitor.Decoder FUEL_SYSTEM_DECODER =
641 new IgnitionMonitor.Decoder(FUEL_SYSTEM_AVAILABLE, FUEL_SYSTEM_INCOMPLETE);
643 static final IgnitionMonitor.Decoder MISFIRE_DECODER =
644 new IgnitionMonitor.Decoder(MISFIRE_AVAILABLE, MISFIRE_INCOMPLETE);
727 static final IgnitionMonitor.Decoder EGR_DECODER =
728 new IgnitionMonitor.Decoder(EGR_AVAILABLE, EGR_INCOMPLETE)
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp     [all...]
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
commons-codec-1.3.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
commons-codec-1.3.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
commons-codec-1.3.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
commons-codec-1.3.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.3/
commons-codec-1.3.jar 
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /external/protobuf/php/ext/google/protobuf/
upb.h     [all...]

Completed in 1225 milliseconds

1 23 4 5