Searched refs:MacroType (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | GtestMatchers.cpp | 25 enum class MacroType { enum 53 static llvm::StringRef getMacroTypeName(MacroType Macro) { in getMacroTypeName() 55 case MacroType::Expect: in getMacroTypeName() 57 case MacroType::Assert: in getMacroTypeName() 59 case MacroType::On: in getMacroTypeName() 83 static std::string getMacroName(MacroType Macro, GtestCmp Cmp) { in getMacroName() 87 static std::string getMacroName(MacroType Macro, llvm::StringRef Operation) { in getMacroName() 95 static llvm::StringRef getSpecSetterName(MacroType Macro) { in getSpecSetterName() 97 case MacroType::On: in getSpecSetterName() 99 case MacroType::Expect: in getSpecSetterName() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFStreamer.cpp | |
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/ |
| H A D | DWARFStreamer.cpp | 1384 uint8_t MacroType = MacroEntry.Type; in emitMacroTableImpl() local 1385 switch (MacroType) { in emitMacroTableImpl() 1388 (!hasDWARFv5Header && MacroType == dwarf::DW_MACINFO_vendor_ext) || in emitMacroTableImpl() 1389 (hasDWARFv5Header && (MacroType >= dwarf::DW_MACRO_lo_user && in emitMacroTableImpl() 1390 MacroType <= dwarf::DW_MACRO_hi_user)); in emitMacroTableImpl() 1394 MS->emitIntValue(MacroType, 1); in emitMacroTableImpl() 1417 MS->emitIntValue(MacroType, 1); in emitMacroTableImpl() 1437 switch (MacroType) { in emitMacroTableImpl() 1439 MacroType = dwarf::DW_MACRO_define_strp; in emitMacroTableImpl() 1447 MacroType = dwarf::DW_MACRO_undef_strp; in emitMacroTableImpl() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DWARFLinkerCompileUnit.cpp | 986 uint8_t MacroType = MacroEntry.Type; in emitMacroTableImpl() local 987 switch (MacroType) { in emitMacroTableImpl() 991 MacroType == dwarf::DW_MACINFO_vendor_ext) || in emitMacroTableImpl() 992 (hasDWARFv5Header && (MacroType >= dwarf::DW_MACRO_lo_user && in emitMacroTableImpl() 993 MacroType <= dwarf::DW_MACRO_hi_user)); in emitMacroTableImpl() 997 OutSection.emitIntVal(MacroType, 1); in emitMacroTableImpl() 1016 OutSection.emitIntVal(MacroType, 1); in emitMacroTableImpl() 1030 switch (MacroType) { in emitMacroTableImpl() 1032 MacroType = dwarf::DW_MACRO_define_strp; in emitMacroTableImpl() 1040 MacroType = dwarf::DW_MACRO_undef_strp; in emitMacroTableImpl() [all …]
|
| /freebsd/sys/dev/bhnd/tools/ |
| H A D | nvram_map_gen.awk | 233 MacroType = class_new("MacroType") 234 class_add_prop(MacroType, p_name, "name") 235 class_add_prop(MacroType, p_const_suffix, "const_suffix") 2230 _obj = obj_new(MacroType) 3006 obj_assert_class(macro_type, MacroType) 3015 obj_assert_class(macro_type, MacroType)
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DIBuilder.cpp | 220 unsigned MacroType, StringRef Name, in createMacro() argument 223 assert((MacroType == dwarf::DW_MACINFO_undef || in createMacro() 224 MacroType == dwarf::DW_MACINFO_define) && in createMacro() 226 auto *M = DIMacro::get(VMContext, MacroType, LineNumber, Name, Value); in createMacro()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DIBuilder.h | 179 unsigned MacroType, StringRef Name,
|