HomeSort by relevance Sort by last modified time
    Searched refs:TargetCXXABI (Results 1 - 9 of 9) sorted by null

  /external/clang/include/clang/Basic/
TargetCXXABI.h 1 //===--- TargetCXXABI.h - C++ ABI Target Configuration ----------*- C++ -*-===//
11 /// \brief Defines the TargetCXXABI class, which abstracts details of the
25 class TargetCXXABI {
125 TargetCXXABI() : TheKind(GenericItanium) {}
127 TargetCXXABI(Kind kind) : TheKind(kind) {}
343 friend bool operator==(const TargetCXXABI &left, const TargetCXXABI &right) {
347 friend bool operator!=(const TargetCXXABI &left, const TargetCXXABI &right) {
TargetInfo.h 21 #include "clang/Basic/TargetCXXABI.h"
83 TargetCXXABI TheCXXABI;
775 TargetCXXABI getCXXABI() const {
    [all...]
  /external/clang/lib/AST/
Mangle.cpp 75 TI.getCXXABI() == TargetCXXABI::Microsoft)
142 if (CC == CCM_Other || (MCXX && TI.getCXXABI() == TargetCXXABI::Microsoft)) {
RecordLayoutBuilder.cpp 681 TargetCXXABI getCXXABI() const {
    [all...]
ASTContext.cpp 682 case TargetCXXABI::GenericARM: // Same as Itanium at this level
683 case TargetCXXABI::iOS:
684 case TargetCXXABI::iOS64:
685 case TargetCXXABI::WatchOS:
686 case TargetCXXABI::GenericAArch64:
687 case TargetCXXABI::GenericMIPS:
688 case TargetCXXABI::GenericItanium:
689 case TargetCXXABI::WebAssembly:
691 case TargetCXXABI::Microsoft:
    [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 90 ? TargetCXXABI::Microsoft
91 : TargetCXXABI::GenericItanium);
Targets.cpp 765 this->TheCXXABI.set(TargetCXXABI::WebAssembly);
    [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 65 case TargetCXXABI::GenericAArch64:
66 case TargetCXXABI::GenericARM:
67 case TargetCXXABI::iOS:
68 case TargetCXXABI::iOS64:
69 case TargetCXXABI::WatchOS:
70 case TargetCXXABI::GenericMIPS:
71 case TargetCXXABI::GenericItanium:
72 case TargetCXXABI::WebAssembly:
74 case TargetCXXABI::Microsoft:
    [all...]
ItaniumCXXABI.cpp 461 case TargetCXXABI::GenericARM:
462 case TargetCXXABI::iOS:
463 case TargetCXXABI::WatchOS:
466 case TargetCXXABI::iOS64:
472 case TargetCXXABI::GenericAArch64:
476 case TargetCXXABI::GenericMIPS:
479 case TargetCXXABI::WebAssembly:
482 case TargetCXXABI::GenericItanium:
493 case TargetCXXABI::Microsoft:
    [all...]

Completed in 1609 milliseconds