HomeSort by relevance Sort by last modified time
    Searched defs:DiagInfo (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 47 /// inline asm has an error in it. diagInfo is a pointer to the SrcMgrDiagInfo
49 static void srcMgrDiagHandler(const SMDiagnostic &Diag, void *diagInfo) {
50 SrcMgrDiagInfo *DiagInfo = static_cast<SrcMgrDiagInfo *>(diagInfo);
51 assert(DiagInfo && "Diagnostic context not passed down?");
56 if (const MDNode *LocInfo = DiagInfo->LocInfo) {
67 DiagInfo->DiagHandler(Diag, DiagInfo->DiagContext, LocCookie);
89 SrcMgrDiagInfo DiagInfo;
96 // to be invoked, getting DiagInfo passed into it
    [all...]
  /external/clang/lib/Basic/
DiagnosticIDs.cpp 273 std::vector<DiagDesc> DiagInfo;
280 assert(this && DiagID-DIAG_UPPER_LIMIT < DiagInfo.size() &&
282 return DiagInfo[DiagID-DIAG_UPPER_LIMIT].second;
287 assert(this && DiagID-DIAG_UPPER_LIMIT < DiagInfo.size() &&
289 return DiagInfo[DiagID-DIAG_UPPER_LIMIT].first;
301 unsigned ID = DiagInfo.size()+DIAG_UPPER_LIMIT;
303 DiagInfo.push_back(D);

Completed in 45 milliseconds