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

1 2 3 4 5 6

  /external/openfst/src/script/
decode.cc 19 #include <fst/script/decode.h>
25 void Decode(MutableFstClass *ofst, const string &coder_fname) {
28 Apply<Operation<DecodeArgs> >("Decode", ofst->ArcType(), &args);
31 REGISTER_FST_OPERATION(Decode, StdArc, DecodeArgs);
32 REGISTER_FST_OPERATION(Decode, LogArc, DecodeArgs);
33 REGISTER_FST_OPERATION(Decode, Log64Arc, DecodeArgs);
  /external/chromium_org/remoting/codec/
audio_decoder_verbatim.cc 18 scoped_ptr<AudioPacket> AudioDecoderVerbatim::Decode(
  /external/chromium_org/mojo/public/cpp/bindings/lib/
bindings_serialization.h 54 // The following 2 functions are used to encode/decode all objects (structs and
66 inline void Decode(T* obj, std::vector<Handle>* handles) {
  /external/openfst/src/include/fst/script/
decode.h 32 void Decode(DecodeArgs *args) {
35 EncodeMapper<Arc> *decoder = EncodeMapper<Arc>::Read(args->arg2, DECODE);
36 Decode(ofst, *decoder);
41 void Decode(MutableFstClass *fst, const string &coder_fname);
  /external/chromium_org/content/child/
image_decoder.cc 22 return decoder.Decode(data, size);
35 SkBitmap ImageDecoder::Decode(const unsigned char* data, size_t size) const {
  /external/chromium_org/ppapi/cpp/
video_decoder.cc 70 int32_t VideoDecoder::Decode(uint32_t decode_id,
75 return get_interface<PPB_VideoDecoder_0_2>()->Decode(
79 return get_interface<PPB_VideoDecoder_0_1>()->Decode(
  /external/chromium_org/tools/relocation_packer/src/
delta_encoder.cc 40 // Decode relative relocations with addends from a delta encoded (packed)
42 void RelocationDeltaCodec::Decode(const std::vector<ELF::Sxword>& packed,
  /art/runtime/base/
bit_field.h 66 static T Decode(uword value) {
  /external/chromium_org/native_client_sdk/src/tools/
decode_dump.py 6 """Utility to decode a crash dump generated by untrusted_crash_dump.[ch]
94 """Use addr2line to decode a code address.
131 def Decode(self, text):
  /external/chromium_org/net/quic/
quic_socket_address_coder.cc 51 bool QuicSocketAddressCoder::Decode(const char* data, size_t length) {
  /external/chromium_org/ppapi/c/dev/
ppb_video_decoder_dev.h 38 * - Call Decode() to decode some video data.
88 int32_t (*Decode)(PP_Resource video_decoder,
138 * Decode() calls. |callback| will be called when the reset is done.
  /external/chromium_org/ppapi/c/
ppb_video_decoder.h 41 * - Call Decode() continuously (waiting for each previous call to complete) to
106 * returning PP_OK or by running |callback| before calling Decode() again.
113 * If the call to Decode() eventually results in a picture, the |decode_id|
115 * associate decoded pictures with Decode() calls (e.g. to assign timestamps
122 * used to associate calls to Decode() with decoded pictures returned by
132 * Returns PP_ERROR_INPROGRESS if there is another Decode() call pending.
134 * Returns PP_ERROR_ABORTED when Reset() is called while Decode() is pending.
136 int32_t (*Decode)(PP_Resource video_decoder,
168 * the decoder can decode more pictures.
180 * pending Decode() call to completion. The plugin should make no furthe
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
video_decoder_dev.cc 48 int32_t VideoDecoder_Dev::Decode(
53 return get_interface<PPB_VideoDecoder_Dev>()->Decode(
  /external/chromium_org/ppapi/thunk/
ppb_video_decoder_dev_thunk.cc 34 int32_t Decode(PP_Resource video_decoder,
41 enter.object()->Decode(bitstream_buffer, enter.callback()));
81 &Decode,
ppb_video_decoder_thunk.cc 64 int32_t Decode(PP_Resource video_decoder,
69 VLOG(4) << "PPB_VideoDecoder::Decode()";
73 return enter.SetResult(enter.object()->Decode(decode_id,
120 &Decode,
131 &Decode,
  /external/chromium_org/sdch/open-vcdiff/src/google/
vcdecoder.h 74 // This convention differs from the non-streaming Encode/Decode
111 // not change the limit. Setting the limit to 0 will cause all decode
157 bool Decode(const char* dictionary_ptr,
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType0FunctionDictionary_autogen.cpp 59 SkPdfArray* SkPdfType0FunctionDictionary::Decode(SkPdfNativeDoc* doc) {
60 SkPdfNativeObject* ret = get("Decode", "");
68 return get("Decode", "") != NULL;
SkPdfType4ShadingDictionary_autogen.cpp 47 SkRect SkPdfType4ShadingDictionary::Decode(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Decode", "");
56 return get("Decode", "") != NULL;
SkPdfType5ShadingDictionary_autogen.cpp 47 SkPdfArray* SkPdfType5ShadingDictionary::Decode(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Decode", "");
56 return get("Decode", "") != NULL;
SkPdfType6ShadingDictionary_autogen.cpp 47 SkPdfArray* SkPdfType6ShadingDictionary::Decode(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Decode", "");
56 return get("Decode", "") != NULL;
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/jni/
media_codec_video_decoder.cc 51 int32_t MediaCodecVideoDecoder::Decode(
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/mock/
mock_external_decoder_pcm16b.h 34 virtual int Decode(const uint8_t* encoded, size_t encoded_len,
58 ON_CALL(*this, Decode(_, _, _, _))
59 .WillByDefault(Invoke(&real_, &ExternalPcm16B::Decode));
76 MOCK_METHOD4(Decode,
  /external/chromium_org/third_party/webrtc/modules/utility/source/
coder.cc 54 int32_t AudioCoder::Decode(AudioFrame& decodedAudio,
video_coder.cc 62 int32_t VideoCoder::Decode(I420VideoFrame& decodedVideo,
  /external/chromium_org/third_party/webrtc/test/
fake_decoder.cc 33 int32_t FakeDecoder::Decode(const EncodedImage& input,
60 int32_t FakeH264Decoder::Decode(const EncodedImage& input,
79 return FakeDecoder::Decode(input,

Completed in 872 milliseconds

1 2 3 4 5 6