/ndk/sources/host-tools/ndk-stack/binutils/ |
D | addr2line.c | 337 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/ |
D | format.py | 51 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/ |
D | gtest-test-part_test.cc | 70 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()
|
D | gtest_unittest.cc | 1411 EXPECT_STREQ(expected.file_name(), actual.file_name()); in CompareTestPartResult()
|
/ndk/ |
D | checkbuild.py | 219 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/ |
D | gtest-port.cc | 457 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()
|
D | gtest-test-part.cc | 60 << result.file_name() << ":" << result.line_number() << ": " in operator <<()
|
D | gtest-internal-inl.h | 1184 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()
|
D | gtest.cc | 2497 << 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/ |
D | build_support.py | 190 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/ |
D | test_tools.ipp | 118 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 )
|
D | execution_monitor.ipp | 1354 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/ |
D | sample9_unittest.cc | 77 test_part_result.file_name(), in OnTestPartResult()
|
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
D | gtest-test-part.h | 76 const char* file_name() const { in file_name() function
|
D | gtest.h | 1206 const char* file_name,
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
D | execution_monitor.hpp | 117 … explicit location( char const* file_name = 0, size_t line_num = 0, char const* func = 0 );
|
D | test_tools.hpp | 480 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/ |
D | fstream_test.cpp | 594 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/ |
D | fstream_test.cpp | 594 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()
|