Lines Matching refs:DebugMacroEntry
15 DebugMacroEntry::DebugMacroEntry(EntryType type, uint32_t line, in DebugMacroEntry() function in DebugMacroEntry
20 DebugMacroEntry::DebugMacroEntry(EntryType type, in DebugMacroEntry() function in DebugMacroEntry
25 const FileSpec &DebugMacroEntry::GetFileSpec(CompileUnit *comp_unit) const { in GetFileSpec()
29 DebugMacroEntry DebugMacroEntry::CreateDefineEntry(uint32_t line, in CreateDefineEntry()
31 return DebugMacroEntry(DebugMacroEntry::DEFINE, line, 0, str); in CreateDefineEntry()
34 DebugMacroEntry DebugMacroEntry::CreateUndefEntry(uint32_t line, in CreateUndefEntry()
36 return DebugMacroEntry(DebugMacroEntry::UNDEF, line, 0, str); in CreateUndefEntry()
39 DebugMacroEntry
40 DebugMacroEntry::CreateStartFileEntry(uint32_t line, in CreateStartFileEntry()
42 return DebugMacroEntry(DebugMacroEntry::START_FILE, line, debug_line_file_idx, in CreateStartFileEntry()
46 DebugMacroEntry DebugMacroEntry::CreateEndFileEntry() { in CreateEndFileEntry()
47 return DebugMacroEntry(DebugMacroEntry::END_FILE, 0, 0, nullptr); in CreateEndFileEntry()
50 DebugMacroEntry
51 DebugMacroEntry::CreateIndirectEntry(const DebugMacrosSP &debug_macros_sp) { in CreateIndirectEntry()
52 return DebugMacroEntry(DebugMacroEntry::INDIRECT, debug_macros_sp); in CreateIndirectEntry()