Home
last modified time | relevance | path

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

/external/compiler-rt/cmake/Modules/
DCompilerRTLink.cmake6 macro(clang_link_shared so_file)
12 OUTPUT ${so_file}
13 COMMAND ${COMPILER_RT_TEST_COMPILER} -o "${so_file}" -shared
/external/llvm-project/compiler-rt/cmake/Modules/
DCompilerRTLink.cmake6 macro(clang_link_shared so_file)
12 OUTPUT ${so_file}
13 COMMAND ${COMPILER_RT_TEST_COMPILER} -o "${so_file}" -shared
/external/python/cpython2/Lib/distutils/tests/
Dtest_build_ext.py294 so_file = cmd.get_outputs()[0]
297 self.assertTrue(os.path.exists(so_file))
298 self.assertEqual(os.path.splitext(so_file)[-1],
300 so_dir = os.path.dirname(so_file)
305 so_file = cmd.get_outputs()[0]
306 self.assertTrue(os.path.exists(so_file))
307 self.assertEqual(os.path.splitext(so_file)[-1],
309 so_dir = os.path.dirname(so_file)
/external/python/cpython3/Lib/distutils/tests/
Dtest_build_ext.py357 so_file = cmd.get_outputs()[0]
360 self.assertTrue(os.path.exists(so_file))
362 self.assertTrue(so_file.endswith(ext_suffix))
363 so_dir = os.path.dirname(so_file)
369 so_file = cmd.get_outputs()[0]
370 self.assertTrue(os.path.exists(so_file))
371 self.assertTrue(so_file.endswith(ext_suffix))
372 so_dir = os.path.dirname(so_file)
/external/webrtc/tools_webrtc/android/
Dbuild_aar.py189 for so_file in NEEDED_SO_FILES:
190 aar_file.write(os.path.join(output_directory, so_file),
191 os.path.join(abi_dir, so_file))
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARFDebugMap.h169 lldb_private::FileSpec so_file; member
182 : so_file(), oso_path(), oso_mod_time(), oso_sp(), compile_unit_sp(), in CompileUnitInfo()
DSymbolFileDWARFDebugMap.cpp344 m_compile_unit_infos[i].so_file.SetFile( in InitOSO()
473 if (m_compile_unit_infos[oso_idx].so_file) { in GetFileSpecForSO()
474 file_spec = m_compile_unit_infos[oso_idx].so_file; in GetFileSpecForSO()
/external/tensorflow/tensorflow/
Dtensorflow.bzl2093 # -l%(so_name) instead of -l:%(so_file) during linking. When -l%(so_name)
2654 so_file = "%s%s.so" % (prefix, sname)
2692 name = so_file,
2733 srcs = [so_file],
2747 "//conditions:default": [so_file],