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

1 2 3 4 5 6 7 8 910

  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRCodeReader.h 28 CFX_ByteString Decode(CFX_DIBitmap* pBitmap,
32 CFX_ByteString Decode(const CFX_WideString& filename,
37 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e);
38 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
BC_QRCodeReader.cpp 54 CFX_ByteString CBC_QRCodeReader::Decode(CBC_BinaryBitmap* image,
64 m_decoder->Decode(detectorResult->GetBits(), 0, e);
69 CFX_ByteString CBC_QRCodeReader::Decode(const CFX_WideString& filename,
78 CFX_ByteString bs = Decode(&bitmap, hints, e);
82 CFX_ByteString CBC_QRCodeReader::Decode(CFX_DIBitmap* pBitmap,
89 CFX_ByteString bs = Decode(&bitmap, hints, e);
93 CFX_ByteString CBC_QRCodeReader::Decode(CBC_BinaryBitmap* image, int32_t& e) {
94 CFX_ByteString bs = Decode(image, 0, e);
BC_QRCoderDecoder.h 23 CBC_CommonDecoderResult* Decode(FX_BOOL* image,
27 CBC_CommonDecoderResult* Decode(CBC_CommonBitMatrix* bits,
  /external/pdfium/xfa/src/fxbarcode/
BC_Reader.h 15 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e) = 0;
16 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image,
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixReader.h 17 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
18 CFX_ByteString Decode(CBC_BinaryBitmap* image, int hints, int32_t& e);
BC_DataMatrixDecoder.h 16 CBC_CommonDecoderResult* Decode(CBC_CommonBitMatrix* bits, int32_t& e);
BC_DataMatrixReader.cpp 44 CFX_ByteString CBC_DataMatrixReader::Decode(CBC_BinaryBitmap* image,
56 m_decoder->Decode(detectorResult->GetBits(), e);
61 CFX_ByteString CBC_DataMatrixReader::Decode(CBC_BinaryBitmap* image,
63 CFX_ByteString bs = Decode(image, 0, e);
  /external/pdfium/xfa/src/fxbarcode/pdf417/
BC_PDF417Reader.h 16 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
17 CFX_ByteString Decode(CBC_BinaryBitmap* image,
21 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e);
  /external/v8/src/
disassembler.h 15 // Decode instructions in the the interval [begin, end) and print the
19 static int Decode(Isolate* isolate, std::ostream* os, byte* begin, byte* end,
  /external/webrtc/webrtc/test/
fake_decoder.h 30 int32_t Decode(const EncodedImage& input,
56 int32_t Decode(const EncodedImage& input,
67 int32_t Decode(const EncodedImage& input,
  /art/test/004-UnsafeTest/
unsafe_test.cc 29 mirror::Class* klass = soa.Decode<mirror::Class*>(classObj);
36 mirror::Class* klass = soa.Decode<mirror::Class*>(classObj);
  /external/webrtc/webrtc/modules/video_coding/
video_coding_robustness_unittest.cc 89 Decode(AllOf(Field(&EncodedImage::_timeStamp, ts),
110 ASSERT_EQ(VCM_OK, vcm_->Decode(0));
111 ASSERT_EQ(VCM_OK, vcm_->Decode(0));
112 ASSERT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
118 ASSERT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
124 ASSERT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
131 ASSERT_EQ(VCM_OK, vcm_->Decode(0));
145 EXPECT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
150 EXPECT_EQ(VCM_FRAME_NOT_READY, vcm_->Decode(0));
165 // Decode operation
    [all...]
  /external/webrtc/webrtc/video/
video_decoder_unittest.cc 32 int32_t Decode(const EncodedImage& input_image,
82 // Unfortunately faking a VP8 frame is hard. Rely on no Decode -> using SW
86 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
90 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
97 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
99 << "Wrapper did not try to decode a keyframe using registered decoder.";
102 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
114 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1));
117 fallback_wrapper_.Decode(encoded_image, false, nullptr, nullptr, -1);
119 << "Decoder should be active even though previous decode failed."
    [all...]
  /external/pdfium/xfa/include/fxbarcode/
BC_BarCode.h 59 virtual CFX_WideString Decode(uint8_t* buf,
63 virtual CFX_WideString Decode(CFX_DIBitmap* pBitmap, int32_t& e) = 0;
90 virtual CFX_WideString Decode(uint8_t* buf,
94 virtual CFX_WideString Decode(CFX_DIBitmap* pBitmap, int32_t& e) = 0;
116 CFX_WideString Decode(uint8_t* buf, int32_t width, int32_t hight, int32_t& e);
117 CFX_WideString Decode(CFX_DIBitmap* pBitmap, int32_t& e);
134 CFX_WideString Decode(uint8_t* buf, int32_t width, int32_t hight, int32_t& e);
135 CFX_WideString Decode(CFX_DIBitmap* pBitmap, int32_t& e);
154 CFX_WideString Decode(uint8_t* buf, int32_t width, int32_t hight, int32_t& e);
155 CFX_WideString Decode(CFX_DIBitmap* pBitmap, int32_t& e);
    [all...]
  /art/runtime/native/
java_lang_DexCache.cc 31 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
54 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
61 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
69 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
71 dex_cache->SetResolvedType(type_index, soa.Decode<mirror::Class*>(type));
77 mirror::DexCache* dex_cache = soa.Decode<mirror::DexCache*>(javaDexCache);
79 dex_cache->SetResolvedString(string_index, soa.Decode<mirror::String*>(string));
java_lang_Object.cc 28 mirror::Object* o = soa.Decode<mirror::Object*>(java_this);
34 mirror::Object* o = soa.Decode<mirror::Object*>(java_this);
40 mirror::Object* o = soa.Decode<mirror::Object*>(java_this);
46 mirror::Object* o = soa.Decode<mirror::Object*>(java_this);
52 mirror::Object* o = soa.Decode<mirror::Object*>(java_this);
java_lang_ref_FinalizerReference.cc 30 mirror::FinalizerReference* const ref = soa.Decode<mirror::FinalizerReference*>(javaThis);
  /art/benchmark/jobject-benchmark/
jobject_benchmark.cc 28 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj);
39 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj);
43 CHECK_EQ(soa.Decode<mirror::Object*>(ref), obj);
51 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj);
62 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj);
66 CHECK_EQ(soa.Decode<mirror::Object*>(ref), obj);
74 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj);
85 mirror::Object* obj = soa.Decode<mirror::Object*>(jobj);
89 CHECK_EQ(soa.Decode<mirror::Object*>(ref), obj);
98 soa.Decode<mirror::Object*>(jobj)
    [all...]
  /art/test/497-inlining-and-class-loader/
clear_dex_cache.cc 31 mirror::DexCache* dex_cache = soa.Decode<mirror::Class*>(cls)->GetDexCache();
45 mirror::PointerArray* pointer_array = soa.Decode<mirror::PointerArray*>(array);
56 mirror::DexCache* dex_cache = soa.Decode<mirror::Class*>(cls)->GetDexCache();
58 ArtMethod** methods = soa.Decode<mirror::Class*>(cls)->GetDexCache()->GetResolvedMethods();
60 mirror::PointerArray* old = soa.Decode<mirror::PointerArray*>(old_cache);
  /art/runtime/
jobject_comparator.cc 35 Handle<mirror::Object> obj1(hs.NewHandle(soa.Decode<mirror::Object*>(jobj1)));
36 Handle<mirror::Object> obj2(hs.NewHandle(soa.Decode<mirror::Object*>(jobj2)));
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDReader.h 17 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
18 virtual CFX_ByteString Decode(CBC_BinaryBitmap* image,
BC_OnedUPCAReader.h 30 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t& e);
31 CFX_ByteString Decode(CBC_BinaryBitmap* image, int32_t hints, int32_t& e);
BC_OnedUPCAReader.cpp 64 CFX_ByteString CBC_OnedUPCAReader::Decode(CBC_BinaryBitmap* image, int32_t& e) {
65 CFX_ByteString bytestring = m_ean13Reader->Decode(image, e);
71 CFX_ByteString CBC_OnedUPCAReader::Decode(CBC_BinaryBitmap* image,
74 CFX_ByteString bytestring = m_ean13Reader->Decode(image, hints, e);
  /external/v8/test/cctest/
test-fuzz-arm64.cc 48 decoder.Decode(buffer);
69 decoder.Decode(buffer);
  /art/runtime/base/
bit_field_test.cc 33 ASSERT_EQ(16, TestBitFields::Decode(32));

Completed in 793 milliseconds

1 2 3 4 5 6 7 8 910