Searched defs:Notes (Results 1 - 9 of 9) sorted by relevance

/external/libunwind/doc/
H A Dunw_getcontext.tex29 \section{Platform-specific Notes}
/external/clang/include/clang/Frontend/
H A DTextDiagnosticBuffer.h31 DiagList Errors, Warnings, Remarks, Notes; member in class:clang::TextDiagnosticBuffer
42 const_iterator note_begin() const { return Notes.begin(); }
43 const_iterator note_end() const { return Notes.end(); }
H A DVerifyDiagnosticConsumer.h192 DirectiveList Notes; member in struct:clang::VerifyDiagnosticConsumer::ExpectedData
198 llvm::DeleteContainerPointers(Notes);
/external/clang/lib/AST/
H A DExprConstant.cpp1977 SmallVector<PartialDiagnosticAt, 8> Notes; local
1978 if (!VD->evaluateValue(Notes)) {
1980 Notes.size() + 1) << VD;
1982 Info.addNotes(Notes);
1986 Notes.size() + 1) << VD;
1988 Info.addNotes(Notes);
8166 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
8174 EStatus.Diag = &Notes;
H A DDecl.cpp2008 SmallVector<PartialDiagnosticAt, 8> Notes; local
2009 return evaluateValue(Notes);
2020 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
2042 this, Notes);
2059 Eval->IsICE = Result && Notes.empty();
2082 SmallVector<PartialDiagnosticAt, 8> Notes; local
2083 evaluateValue(Notes);
3531 /// completeDefinition - Notes that the definition of this type is now
/external/clang/lib/Sema/
H A DSemaTemplate.cpp4203 SmallVector<PartialDiagnosticAt, 8> Notes; local
4204 EvalResult.Diag = &Notes;
4212 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
4214 DiagLoc = Notes[0].first;
4215 Notes.clear();
4220 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
4221 S.Diag(Notes[I].first, Notes[I].second);
H A DSemaDecl.cpp9179 SmallVector<PartialDiagnosticAt, 8> Notes; local
9180 if (!var->evaluateValue(Notes) || !var->isInitICE()) {
9184 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
9186 DiagLoc = Notes[0].first;
9187 Notes.clear();
9191 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
9192 Diag(Notes[I].first, Notes[I].second);
H A DSemaOverload.cpp5057 SmallVector<PartialDiagnosticAt, 8> Notes; local
5059 Eval.Diag = &Notes;
5068 if (Notes.empty()) {
5075 if (Notes.size() == 1 &&
5076 Notes[0].second.getDiagID() == diag::note_invalid_subexpr_in_const_expr)
5077 Diag(Notes[0].first, diag::err_expr_not_cce) << CCE;
5081 for (unsigned I = 0; I < Notes.size(); ++I)
5082 Diag(Notes[I].first, Notes[I].second);
8467 // Notes th
[all...]
H A DSemaExpr.cpp11156 SmallVector<PartialDiagnosticAt, 8> Notes; local
11157 EvalResult.Diag = &Notes;
11167 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
11176 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
11178 DiagLoc = Notes[0].first;
11179 Notes.clear();
11185 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11186 Diag(Notes[I].first, Notes[
[all...]

Completed in 289 milliseconds