| /external/chromium_org/ui/gfx/image/ |
| image_png_rep.cc | 30 // using the gfx::PNGCodec API, is to decode the whole thing. 33 if (!gfx::PNGCodec::Decode(raw_data->front(), raw_data->size(), 35 LOG(ERROR) << "Unable to decode PNG.";
|
| /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/dev/ |
| video_decoder_dev.cc | 48 int32_t VideoDecoder_Dev::Decode( 53 return get_interface<PPB_VideoDecoder_Dev>()->Decode(
|
| /external/chromium_org/ui/gfx/codec/ |
| png_codec.h | 23 // isn't as robust as would be required for a browser (see Decode() for more). 43 // For Decode() kARGB_8888_Config is always used. 113 static bool Decode(const unsigned char* input, size_t input_size, 118 // significantly faster than the vector<unsigned char> version of Decode() 125 static bool Decode(const unsigned char* input, size_t input_size,
|
| /external/chromium_org/ppapi/thunk/ |
| ppb_video_decoder_thunk.cc | 49 int32_t Decode(PP_Resource video_decoder, 54 VLOG(4) << "PPB_VideoDecoder::Decode()"; 58 return enter.SetResult(enter.object()->Decode(decode_id, 105 &Decode,
|
| /external/chromium_org/tools/relocation_packer/src/ |
| run_length_encoder_unittest.cc | 84 TEST(Rle, Decode) { 89 codec.Decode(packed, &relocations); 105 codec.Decode(packed, &relocations);
|
| /art/disassembler/ |
| disassembler_arm64.cc | 36 decoder.Decode(reinterpret_cast<vixl::Instruction*>(&instruction));
|
| /art/runtime/base/ |
| bit_field.h | 66 static T Decode(uword value) {
|
| /art/runtime/native/ |
| java_lang_DexCache.cc | 27 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
|
| /external/chromium_org/content/common/gpu/media/ |
| vt_video_decode_accelerator.cc | 34 void VTVideoDecodeAccelerator::Decode(const media::BitstreamBuffer& bitstream) {
|
| vt_video_decode_accelerator.h | 32 virtual void Decode(const media::BitstreamBuffer& bitstream) OVERRIDE;
|
| /external/chromium_org/media/video/ |
| video_decode_accelerator.h | 96 virtual void Decode(const BitstreamBuffer& bitstream_buffer) = 0; 123 // decoder returned to a state ready for further Decode()s, followed by 138 // Returns true if VDA::Decode and VDA::Client callbacks can run on the IO 140 // running Decode on the IO thread is to reduce decode latency. Note Decode
|
| /external/chromium_org/ppapi/c/ |
| ppb_video_decoder.h | 38 * - Call Decode() continuously (waiting for each previous call to complete) to 104 * returning PP_OK or by running |callback| before calling Decode() again. 111 * If the call to Decode() eventually results in a picture, the |decode_id| 113 * associate decoded pictures with Decode() calls (e.g. to assign timestamps 120 * used to associate calls to Decode() with decoded pictures returned by 130 * Returns PP_ERROR_INPROGRESS if there is another Decode() call pending. 132 * Returns PP_ERROR_ABORTED when Reset() is called while Decode() is pending. 134 int32_t (*Decode)(PP_Resource video_decoder, 166 * the decoder can decode more pictures. 178 * pending Decode() call to completion. The plugin should make no furthe [all...] |
| /external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
| saslmechanism.cc | 62 return Base64::Decode(encoded, Base64::DO_LAX);
|
| /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/ |
| SkPdfType4ShadingDictionary_autogen.h | 44 SkRect Decode(SkPdfNativeDoc* doc);
|
| SkPdfType5ShadingDictionary_autogen.h | 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
|
| SkPdfType6ShadingDictionary_autogen.h | 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
|
| /external/chromium_org/third_party/webrtc/modules/utility/source/ |
| coder.h | 36 int32_t Decode(AudioFrame& decodedAudio, uint32_t sampFreqHz,
|
| video_coder.h | 35 int32_t Decode(I420VideoFrame& decodedVideo,
|
| /external/chromium_org/third_party/webrtc/test/ |
| fake_decoder.cc | 33 int32_t FakeDecoder::Decode(const EncodedImage& input,
|
| /external/lzma/CPP/7zip/Archive/7z/ |
| 7zDecode.h | 49 HRESULT Decode(
|
| /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/ |
| SkPdfType4ShadingDictionary_autogen.h | 44 SkRect Decode(SkPdfNativeDoc* doc);
|
| SkPdfType5ShadingDictionary_autogen.h | 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
|
| SkPdfType6ShadingDictionary_autogen.h | 44 SkPdfArray* Decode(SkPdfNativeDoc* doc);
|
| /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/ |
| codec_database_test.cc | 113 // registering the callback - encode and decode with the same vcm (could be later changed) 203 TEST(_vcm->Decode() == VCM_OK); 208 TEST(_vcm->Decode() == VCM_OK); 213 TEST(_vcm->Decode() < 0); // Expect an error since we have de-registered the decoder 237 TEST(_vcm->Decode() == VCM_OK); 243 // Try to decode a delta frame. Should get a warning since we have enabled the "require key frame" setting 245 TEST(_vcm->Decode() == VCM_MISSING_CALLBACK); 250 TEST(_vcm->Decode() == VCM_OK); 263 TEST(_vcm->Decode() == VCM_OK); 270 TEST(_vcm->Decode() == VCM_OK) [all...] |