Lines Matching refs:DebugMacroEntry
16 DebugMacroEntry::DebugMacroEntry(EntryType type, uint32_t line, in DebugMacroEntry() function in DebugMacroEntry
21 DebugMacroEntry::DebugMacroEntry(EntryType type, in DebugMacroEntry() function in DebugMacroEntry
26 const FileSpec &DebugMacroEntry::GetFileSpec(CompileUnit *comp_unit) const { in GetFileSpec()
30 DebugMacroEntry DebugMacroEntry::CreateDefineEntry(uint32_t line, in CreateDefineEntry()
32 return DebugMacroEntry(DebugMacroEntry::DEFINE, line, 0, str); in CreateDefineEntry()
35 DebugMacroEntry DebugMacroEntry::CreateUndefEntry(uint32_t line, in CreateUndefEntry()
37 return DebugMacroEntry(DebugMacroEntry::UNDEF, line, 0, str); in CreateUndefEntry()
40 DebugMacroEntry
41 DebugMacroEntry::CreateStartFileEntry(uint32_t line, in CreateStartFileEntry()
43 return DebugMacroEntry(DebugMacroEntry::START_FILE, line, debug_line_file_idx, in CreateStartFileEntry()
47 DebugMacroEntry DebugMacroEntry::CreateEndFileEntry() { in CreateEndFileEntry()
48 return DebugMacroEntry(DebugMacroEntry::END_FILE, 0, 0, nullptr); in CreateEndFileEntry()
51 DebugMacroEntry
52 DebugMacroEntry::CreateIndirectEntry(const DebugMacrosSP &debug_macros_sp) { in CreateIndirectEntry()
53 return DebugMacroEntry(DebugMacroEntry::INDIRECT, debug_macros_sp); in CreateIndirectEntry()