HomeSort by relevance Sort by last modified time
    Searched refs:source_file_ (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
deflickering_test.cc 32 fclose(source_file_);
35 source_file_ = fopen(input_file.c_str(), "rb");
36 ASSERT_TRUE(source_file_ != NULL) <<
55 while (fread(video_buffer.get(), 1, frame_length_, source_file_) ==
79 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
88 rewind(source_file_);
brightness_detection_test.cc 23 while (fread(video_buffer.get(), 1, frame_length_, source_file_) ==
39 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
47 rewind(source_file_);
50 while (fread(video_buffer.get(), 1, frame_length_, source_file_) ==
81 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
88 rewind(source_file_);
91 while (fread(video_buffer.get(), 1, frame_length_, source_file_) ==
117 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
content_metrics_test.cc 27 while (fread(video_buffer.get(), 1, frame_length_, source_file_)
41 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
video_processing_unittest.h 35 FILE* source_file_; member in class:webrtc::VideoProcessingModuleTest
color_enhancement_test.cc 29 fclose(source_file_);
32 source_file_ = fopen(video_file.c_str(), "rb");
33 ASSERT_TRUE(source_file_ != NULL) <<
43 while (fread(video_buffer.get(), 1, frame_length_, source_file_) ==
59 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
112 ASSERT_NE(0, feof(source_file_)) << "Error reading source file";
video_processing_unittest.cc 34 source_file_(NULL),
54 source_file_ = fopen(video_file.c_str(),"rb");
55 ASSERT_TRUE(source_file_ != NULL) <<
60 if (source_file_ != NULL) {
61 ASSERT_EQ(0, fclose(source_file_));
63 source_file_ = NULL;
92 source_file_));
129 source_file_));
143 source_file_));
159 source_file_));
    [all...]
  /external/chromium_org/third_party/webrtc/common_video/libyuv/
scaler_unittest.cc 39 FILE* source_file_; member in class:webrtc::TestScaler
51 : source_file_(NULL),
64 source_file_ = fopen(input_file_name.c_str(), "rb");
65 ASSERT_TRUE(source_file_ != NULL) << "Cannot read file: "<<
72 if (source_file_ != NULL) {
73 ASSERT_EQ(0, fclose(source_file_));
75 source_file_ = NULL;
103 EXPECT_GT(fread(orig_buffer.get(), 1, frame_length_, source_file_), 0U);
125 source_file_, out_name,
136 avg_psnr = ComputeAvgSequencePSNR(source_file_, out_name, width_, height_)
    [all...]
libyuv_unittest.cc 85 FILE* source_file_; member in class:webrtc::TestLibYuv
96 : source_file_(NULL),
109 source_file_ = fopen(input_file_name.c_str(), "rb");
110 ASSERT_TRUE(source_file_ != NULL) << "Cannot read file: "<<
113 EXPECT_EQ(fread(orig_buffer_.get(), 1, frame_length_, source_file_),
125 if (source_file_ != NULL) {
126 ASSERT_EQ(0, fclose(source_file_));
128 source_file_ = NULL;
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/test/
vp8_impl_unittest.cc 116 source_file_ = fopen(source.GetFileName().c_str(), "rb");
117 ASSERT_TRUE(source_file_ != NULL);
120 source_file_), length_source_frame_);
185 FILE* source_file_; member in class:webrtc::TestVp8Impl
  /external/chromium_org/chrome/browser/extensions/
crx_installer.cc 180 source_file_ = source_file;
202 source_file_ = source_file;
214 source_file_, download_url_, install_directory_, &error);
853 if (delete_source_ && !source_file_.value().empty()) {
854 file_util::DeleteFile(source_file_, false);
855 source_file_ = base::FilePath();
    [all...]
crx_installer.h 117 const base::FilePath& source_file() const { return source_file_; }
281 base::FilePath source_file_; member in class:extensions::CrxInstaller

Completed in 368 milliseconds