Home
last modified time | relevance | path

Searched refs:check_contents (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/lite/micro/tools/ci_build/
Dtest_code_style.sh97 check_contents "gtest|gmock" "${CHECK_CONTENTS_PATHSPEC}" \
106 check_contents "error_reporter.*Report\(|context->ReportError\(" \
118 check_contents "\<assert\>" "${ASSERT_PATHSPEC}" \
Dhelper_functions.sh39 function check_contents() { function
/external/skia/tests/
DWriter32Test.cpp14 static void check_contents(skiatest::Reporter* reporter, const SkWriter32& writer, in check_contents() function
38 check_contents(reporter, writer, expected, sizeof(expected)); in test_string_null()
49 check_contents(reporter, writer, array, sizeof(array)); in test_rewind()
56 check_contents(reporter, writer, array, sizeof(array)); in test_rewind()
/external/skqp/tests/
DWriter32Test.cpp14 static void check_contents(skiatest::Reporter* reporter, const SkWriter32& writer, in check_contents() function
38 check_contents(reporter, writer, expected, sizeof(expected)); in test_string_null()
49 check_contents(reporter, writer, array, sizeof(array)); in test_rewind()
56 check_contents(reporter, writer, array, sizeof(array)); in test_rewind()
/external/python/pyfakefs/pyfakefs/tests/
Dfake_filesystem_shutil_test.py373 self.check_contents(dst_file, contents)
406 self.check_contents(dst_file, src_contents)
446 self.check_contents(dst_file, src_contents)
468 self.check_contents(dst_file, src_contents)
Dfake_pathlib_test.py539 self.check_contents(path_name, 'foo')
546 self.check_contents(path_name, 'ανοησίες'.encode('greek'))
559 self.check_contents(path_name, b'Binary file contents')
567 self.check_contents(new_file_name, 'test')
577 self.check_contents(self.make_path('foo', 'bar.txt'), 'replaced')
590 self.check_contents(file_name, '')
601 self.check_contents(file_name, 'test')
Dfake_os_test.py866 self.check_contents(new_file_path, 'test contents')
1019 self.check_contents(self.os.path.join(new_path, 'plugh'), 'test')
1143 self.check_contents(new_file_path, 'test contents 1')
1171 self.check_contents(new_file_path, 'test contents 1')
1186 self.check_contents(old_file_path, 'test contents')
1292 self.check_contents(after_file, 'payload')
1324 self.check_contents(file_path, file_contents)
3144 self.check_contents(self.os.path.join(new_path, 'plugh'), 'test')
3286 self.check_contents(new_file_path, 'test contents 1')
3315 self.check_contents(new_file_path, 'test contents 1')
[all …]
Dtest_utils.py313 def check_contents(self, file_path, contents): member in RealFsTestMixin