Lines Matching defs:Global
202 void PlainPrinterBase::print(const Request &Request, const DIGlobal &Global) {
204 StringRef Name = Global.Name;
208 OS << Global.Start << " " << Global.Size << "\n";
209 if (Global.DeclFile.empty())
212 OS << Global.DeclFile << ":" << Global.DeclLine << "\n";
342 void JSONPrinter::print(const Request &Request, const DIGlobal &Global) {
344 {{"Name", Global.Name != DILineInfo::BadString ? Global.Name : ""},
345 {"Start", toHex(Global.Start)},
346 {"Size", toHex(Global.Size)}});