HomeSort by relevance Sort by last modified time
    Searched defs:Diag (Results 26 - 39 of 39) sorted by null

12

  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 742 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID);
    [all...]
ExprConstant.cpp 347 PartialDiagnostic *Diag;
350 explicit OptionalDiagnostic(PartialDiagnostic *Diag = nullptr)
351 : Diag(Diag) {}
355 if (Diag)
356 *Diag << v;
361 if (Diag) {
364 *Diag << StringRef(Buffer.data(), Buffer.size());
370 if (Diag) {
382 *Diag << StringRef(Buffer.data(), Buffer.size())
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 747 AST->getDiagnostics().Report(diag::err_fe_unable_to_load_pch);
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h 726 unsigned Diag = diag::err_expected,
816 DiagnosticBuilder Diag(SourceLocation Loc, unsigned DiagID);
817 DiagnosticBuilder Diag(const Token &Tok, unsigned DiagID);
818 DiagnosticBuilder Diag(unsigned DiagID) {
819 return Diag(Tok, DiagID);
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 185 S.Diag(Str->getLocStart(),
186 diag::err_initializer_string_for_char_array_too_long)
191 S.Diag(Str->getLocStart(),
192 diag::warn_initializer_string_for_char_array_too_long)
421 SemaRef.Diag(CtorDecl->getLocation(),
422 diag::warn_invalid_initializer_from_system_header);
423 SemaRef.Diag(Entity.getDecl()->getLocation(),
424 diag::note_used_in_initialization_here);
433 SemaRef.Diag(Entity.getDecl()->getLocation(),
434 diag::note_in_omitted_aggregate_initializer
    [all...]
SemaTemplate.cpp 237 Diag(IILoc, diag::err_template_kw_missing)
339 diagnoseTypo(Corrected, PDiag(diag::err_no_member_template_suggest)
343 diagnoseTypo(Corrected, PDiag(diag::err_no_template_suggest) << Name);
387 Diag(Found.getNameLoc(),
388 diag::ext_nested_name_member_ref_lookup_ambiguous)
391 Diag(Found.getRepresentativeDecl()->getLocation(),
392 diag::note_ambig_member_ref_object_type)
394 Diag(FoundOuter.getFoundDecl()->getLocation(),
395 diag::note_ambig_member_ref_scope)
    [all...]
SemaDecl.cpp 172 S.Diag(NameLoc, diag::ext_found_via_dependent_bases_lookup) << &II;
314 PDiag(diag::err_unknown_type_or_class_name_suggest)
434 Diag(NameLoc, diag::ext_ms_delayed_template_argument) << &II;
525 diagnoseTypo(Corrected, PDiag(diag::err_unknown_typename_suggest) << II);
531 PDiag(diag::err_unknown_typename_suggest) << II);
537 PDiag(diag::err_unknown_nested_typename_suggest)
567 Diag(IILoc, diag::err_template_missing_args) << TplName
8218 unsigned diag; local
    [all...]
SemaExpr.cpp 80 S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
147 Diag(Decl->getLocation(), diag::note_implicitly_deleted);
161 Diag(Decl->getLocation(), diag::note_inherited_deleted_here);
167 Diag(BaseCD->getLocation(), diag::note_cannot_inherit);
173 Diag(Decl->getLocation(), diag::note_availability_specified_here
    [all...]
SemaOverload.cpp 614 PartialDiagnosticAt *Diag = new (Result.Diagnostic) PartialDiagnosticAt(
616 Info.takeSFINAEDiagnostic(*Diag);
654 if (PartialDiagnosticAt *Diag = getSFINAEDiagnostic()) {
655 Diag->~PartialDiagnosticAt();
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 988 CXDiagnostic Diag = clang_getDiagnosticInSet(Set, i);
989 CXDiagnosticSet ChildDiags = clang_getChildDiagnostics(Diag);
990 PrintDiagnostic(Diag);
2072 CXDiagnostic diag = clang_codeCompleteGetDiagnostic(results, i); local
2775 CXDiagnostic diag; local
    [all...]
  /external/clang/include/clang/AST/
Expr.h 534 /// Diag - If this is non-null, it will be filled in with a stack of notes
541 SmallVectorImpl<PartialDiagnosticAt> *Diag;
543 EvalStatus() : HasSideEffects(false), Diag(nullptr) {}
600 SmallVectorImpl<PartialDiagnosticAt> *Diag = nullptr) const;
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 504 void add(const sema::DelayedDiagnostic &diag); // in DelayedDiagnostic.h
    [all...]

Completed in 911 milliseconds

12