Searched full:cxxabi (Results 1 – 25 of 207) sorted by relevance
123456789
| /external/cronet/third_party/libc++abi/src/include/ |
| D | CMakeLists.txt | 3 cxxabi.h 12 COMMENT "Copying CXXABI header ${f}") 16 add_custom_target(generate-cxxabi-headers ALL DEPENDS ${_all_includes}) 18 add_library(cxxabi-headers INTERFACE) 19 add_dependencies(cxxabi-headers generate-cxxabi-headers) 20 target_include_directories(cxxabi-headers INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}") 27 COMPONENT cxxabi-headers 32 add_custom_target(install-cxxabi-headers 33 DEPENDS cxxabi-headers 35 -DCMAKE_INSTALL_COMPONENT=cxxabi-headers [all …]
|
| /external/cronet/third_party/libc++abi/src/src/ |
| D | CMakeLists.txt | 47 ../include/cxxabi.h 170 target_link_libraries(cxxabi_shared_objects PUBLIC cxxabi-headers) 212 add_library(cxxabi-reexports INTERFACE) 221 target_link_libraries(cxxabi-reexports INTERFACE "-Wl,-reexported_symbols_list,${file}") 250 target_link_libraries(cxxabi_static_objects PUBLIC cxxabi-headers) 297 add_custom_target(cxxabi DEPENDS ${LIBCXXABI_BUILD_TARGETS}) target 301 LIBRARY DESTINATION ${LIBCXXABI_INSTALL_LIBRARY_DIR} COMPONENT cxxabi 302 ARCHIVE DESTINATION ${LIBCXXABI_INSTALL_LIBRARY_DIR} COMPONENT cxxabi 303 RUNTIME DESTINATION ${LIBCXXABI_INSTALL_RUNTIME_DIR} COMPONENT cxxabi 308 add_custom_target(install-cxxabi [all …]
|
| /external/libcxxabi/src/ |
| D | CMakeLists.txt | 38 set(LIBCXXABI_HEADERS ../include/cxxabi.h) 219 add_custom_target(cxxabi DEPENDS ${LIBCXXABI_BUILD_TARGETS}) target 223 LIBRARY DESTINATION ${LIBCXXABI_INSTALL_PREFIX}lib${LIBCXXABI_LIBDIR_SUFFIX} COMPONENT cxxabi 224 ARCHIVE DESTINATION ${LIBCXXABI_INSTALL_PREFIX}lib${LIBCXXABI_LIBDIR_SUFFIX} COMPONENT cxxabi 229 add_custom_target(install-cxxabi 230 DEPENDS cxxabi 232 -DCMAKE_INSTALL_COMPONENT=cxxabi 234 add_custom_target(install-cxxabi-stripped 235 DEPENDS cxxabi 237 -DCMAKE_INSTALL_COMPONENT=cxxabi [all …]
|
| /external/sdv/vsomeip/third_party/boost/core/include/boost/core/ |
| D | uncaught_exceptions.hpp | 52 // cxxabi.h availability macro 54 # if __has_include(<cxxabi.h>) 64 // On AIX, xlclang++ does have cxxabi.h but doesn't have __cxa_get_globals (https://github.com/boos… 69 #include <cxxabi.h> 72 // At least on MinGW and Linux, only GCC since 4.7 declares __cxa_get_globals() in cxxabi.h. Older … 74 // Note that at least on FreeBSD 11, cxxabi.h declares __cxa_get_globals with a different exception… 75 // On Linux with clang and libc++ and on OS X, there is a version of cxxabi.h from libc++abi that d… 78 // On QNX SDP 7.0 (QCC 5.4.0), there are multiple cxxabi.h, one from glibcxx from gcc and another f…
|
| D | demangle.hpp | 24 # if __has_include(<cxxabi.h>) 32 # include <cxxabi.h> 33 // For some archtectures (mips, mips64, x86, x86_64) cxxabi.h in Android NDK is implemented by gabi…
|
| /external/clang/lib/AST/ |
| D | CXXABI.h | 1 //===----- CXXABI.h - Interface to C++ ABIs ---------------------*- C++ -*-===// 30 class CXXABI { 32 virtual ~CXXABI(); 75 CXXABI *CreateItaniumCXXABI(ASTContext &Ctx); 76 CXXABI *CreateMicrosoftCXXABI(ASTContext &Ctx);
|
| D | ItaniumCXXABI.cpp | 20 #include "CXXABI.h" 97 class ItaniumCXXABI : public CXXABI { 172 CXXABI *clang::CreateItaniumCXXABI(ASTContext &Ctx) { in CreateItaniumCXXABI()
|
| D | MicrosoftCXXABI.cpp | 15 #include "CXXABI.h" 67 class MicrosoftCXXABI : public CXXABI { 269 CXXABI *clang::CreateMicrosoftCXXABI(ASTContext &Ctx) { in CreateMicrosoftCXXABI()
|
| /external/libcxx/cmake/Modules/ |
| D | HandleLibCXXABI.cmake | 84 cxxabi.h bits/c++config.h bits/os_defines.h bits/cpu_defines.h 100 # Link against just-built "cxxabi" target. 111 set(HEADERS "cxxabi.h;__cxxabi_config.h") 118 "cxxrt" "cxxabi.h;unwind.h;unwind-arm.h;unwind-itanium.h" ""
|
| /external/cronet/third_party/libc++/src/cmake/Modules/ |
| D | HandleLibCXXABI.cmake | 88 …"cxxabi.h;bits/c++config.h;bits/os_defines.h;bits/cpu_defines.h;bits/cxxabi_tweaks.h;bits/cxxabi_f… 101 …"cxxabi.h;bits/c++config.h;bits/os_defines.h;bits/cpu_defines.h;bits/cxxabi_tweaks.h;bits/cxxabi_f… 113 target_link_libraries(libcxx-abi-headers INTERFACE cxxabi-headers) 135 …import_private_headers(libcxx-abi-headers "${LIBCXX_CXX_ABI_INCLUDE_PATHS}" "cxxabi.h;__cxxabi_con… 152 "cxxabi.h;unwind.h;unwind-arm.h;unwind-itanium.h")
|
| /external/cronet/third_party/google_benchmark/src/.github/ |
| D | libcxx-setup.sh | 22 #make -C llvm-build -j3 cxx cxxabi 23 #sudo make -C llvm-build install-cxx install-cxxabi
|
| /external/libcxxabi/test/ |
| D | CMakeLists.txt | 50 add_lit_testsuite(check-cxxabi "Running libcxxabi tests" 56 add_custom_target(check-libcxxabi DEPENDS check-cxxabi)
|
| /external/libcxx/test/support/ |
| D | demangle.h | 19 # if __has_include("cxxabi.h") && !defined(_LIBCPP_ABI_MICROSOFT) 20 # include "cxxabi.h"
|
| /external/fmtlib/src/ |
| D | fmt.cc | 38 #if __has_include(<cxxabi.h>) 39 # include <cxxabi.h>
|
| /external/libcxx/src/ |
| D | new.cpp | 20 #include <cxxabi.h> 22 #include <cxxabi.h> 28 # include <cxxabi.h> // FIXME: remove this once buildit is gone.
|
| /external/skia/infra/bots/assets/clang_linux/ |
| D | Dockerfile | 84 RUN ninja -C tsan_out cxx cxxabi 96 RUN ninja -C msan_out cxx cxxabi
|
| /external/google-fruit/configuration/bazel/ |
| D | cxa_demangle.cpp | 1 #include <cxxabi.h>
|
| /external/libcxx/utils/ci/ |
| D | macos-trunk.sh | 141 ninja -C "${LIBCXXABI_BUILD_DIR}" install-cxxabi 152 ninja -C "${LIBCXXABI_BUILD_DIR}" check-cxxabi
|
| /external/compiler-rt/test/ubsan/TestCases/TypeCheck/ |
| D | vptr-virtual-base-construction.cpp | 4 // REQUIRES: cxxabi
|
| D | vptr-non-unique-typeinfo.cpp | 5 // REQUIRES: cxxabi
|
| /external/mesa3d/src/gtest/include/gtest/internal/ |
| D | gtest-type-util.h | 47 // libstdc++ (which is where cxxabi.h comes from). 49 #include <cxxabi.h>
|
| /external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/ |
| D | gtest-type-util.h | 41 // libstdc++ (which is where cxxabi.h comes from). 43 # include <cxxabi.h>
|
| /external/libaom/third_party/googletest/src/googletest/include/gtest/internal/ |
| D | gtest-type-util.h | 43 // libstdc++ (which is where cxxabi.h comes from). 45 #include <cxxabi.h>
|
| /external/cronet/third_party/googletest/src/googletest/include/gtest/internal/ |
| D | gtest-type-util.h | 43 // libstdc++ (which is where cxxabi.h comes from). 45 #include <cxxabi.h>
|
| /external/libvpx/third_party/googletest/src/include/gtest/internal/ |
| D | gtest-type-util.h | 43 // libstdc++ (which is where cxxabi.h comes from). 45 #include <cxxabi.h>
|
123456789