Home
last modified time | relevance | path

Searched refs:file_name (Results 1 – 19 of 19) sorted by relevance

/ndk/sources/host-tools/ndk-stack/binutils/
Daddr2line.c337 process_file (const char *file_name, const char *section_name, in process_file() argument
344 if (get_file_size (file_name) < 1) in process_file()
347 abfd = bfd_openr (file_name, target); in process_file()
349 bfd_fatal (file_name); in process_file()
355 fatal (_("%s: cannot get addresses from archive"), file_name); in process_file()
372 fatal (_("%s: cannot find section %s"), file_name, section_name); in process_file()
395 const char *file_name; in addr2line_main() local
417 file_name = NULL; in addr2line_main()
449 file_name = optarg; in addr2line_main()
480 if (file_name == NULL) in addr2line_main()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/test/
Dformat.py51 def _working_directory(self, file_name): argument
52 return os.path.join(self.device_dir, file_name)
54 def _wd_path(self, test_name, file_name): argument
55 return os.path.join(self._working_directory(test_name), file_name)
/ndk/sources/third_party/googletest/googletest/test/
Dgtest-test-part_test.cc70 EXPECT_STREQ("some_file.cc", result.file_name()); in TEST_F()
113 TEST_F(TestPartResultTest, file_name) { in TEST_F() argument
114 EXPECT_STREQ("foo/bar.cc", r1_.file_name()); in TEST_F()
115 EXPECT_STREQ(NULL, r3_.file_name()); in TEST_F()
Dgtest_unittest.cc1411 EXPECT_STREQ(expected.file_name(), actual.file_name()); in CompareTestPartResult()
/ndk/
Dcheckbuild.py219 for file_name in files:
220 prefixed_name = '-'.join([triple, file_name])
224 for file_name in files:
225 dir_prefixed_files.append(os.path.join(triple, 'bin', file_name))
231 def install_file(file_name, src_dir, dst_dir): argument
232 src_file = os.path.join(src_dir, file_name)
233 dst_file = os.path.join(dst_dir, file_name)
309 for file_name in get_binutils_files(triple, has_gold, is_windows):
310 install_file(file_name, toolchain_path, install_dir)
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-port.cc457 const std::string file_name(file == NULL ? kUnknownFile : file); in FormatFileLocation() local
460 return file_name + ":"; in FormatFileLocation()
463 return file_name + "(" + StreamableToString(line) + "):"; in FormatFileLocation()
465 return file_name + ":" + StreamableToString(line) + ":"; in FormatFileLocation()
476 const std::string file_name(file == NULL ? kUnknownFile : file); in FormatCompilerIndependentFileLocation() local
479 return file_name; in FormatCompilerIndependentFileLocation()
481 return file_name + ":" + StreamableToString(line); in FormatCompilerIndependentFileLocation()
Dgtest-test-part.cc60 << result.file_name() << ":" << result.line_number() << ": " in operator <<()
Dgtest-internal-inl.h1184 const char* file_name = test_part_result.file_name(); in OnTestPartResult() local
1185 if (file_name == NULL) in OnTestPartResult()
1186 file_name = ""; in OnTestPartResult()
1187 SendLn("event=TestPartResult&file=" + UrlEncode(file_name) + in OnTestPartResult()
Dgtest.cc2497 << internal::FormatFileLocation(test_part_result.file_name(), in PrintTestPartResultToString()
3289 part.file_name(), part.line_number()); in OutputXmlTestInfo()
3710 const char* file_name, in AddTestPartResult() argument
3734 TestPartResult(result_type, file_name, line_number, in AddTestPartResult()
/ndk/build/lib/
Dbuild_support.py190 file_name = 'repo.prop'
194 dist_repo_prop = os.path.join(dist_dir, file_name)
197 out_file = os.path.join(out_dir, file_name)
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dtest_tools.ipp118 const_string file_name, std::size_t line_num,
161 unit_test_log << unit_test::log::begin( file_name, line_num )
171 unit_test_log << unit_test::log::begin( file_name, line_num ) << ll;
201 unit_test_log << unit_test::log::begin( file_name, line_num )
228 unit_test_log << unit_test::log::begin( file_name, line_num ) << ll;
252 unit_test_log << unit_test::log::begin( file_name, line_num ) << ll;
268 unit_test_log << unit_test::log::begin( file_name, line_num )
320 unit_test_log << unit_test::log::begin( file_name, line_num )
342 unit_test_log << unit_test::log::begin( file_name, line_num )
Dexecution_monitor.ipp1354 execution_exception::location::location( char const* file_name, size_t line_num, char const* func )
1355 : m_file_name( file_name ? file_name : "unknown location" )
/ndk/sources/third_party/googletest/googletest/samples/
Dsample9_unittest.cc77 test_part_result.file_name(), in OnTestPartResult()
/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest-test-part.h76 const char* file_name() const { in file_name() function
Dgtest.h1206 const char* file_name,
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
Dexecution_monitor.hpp117 … explicit location( char const* file_name = 0, size_t line_num = 0, char const* func = 0 );
Dtest_tools.hpp480 const_string file_name, std::size_t line_num,
505 const_string file_name, std::size_t line_num, \
512 check_descr, file_name, line_num, tl, ct, \
/ndk/tests/device/test-gnustl-full/unit/
Dfstream_test.cpp594 const char* file_name = "win32_file_format.tmp"; in win32_file_format() local
597 ofstream out(file_name); in win32_file_format()
607 ifstream in(file_name); in win32_file_format()
/ndk/tests/device/test-stlport/unit/
Dfstream_test.cpp594 const char* file_name = "win32_file_format.tmp"; in win32_file_format() local
597 ofstream out(file_name); in win32_file_format()
607 ifstream in(file_name); in win32_file_format()