Searched defs:Notes (Results 1 - 10 of 10) 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.h195 DirectiveList Notes; member in struct:clang::VerifyDiagnosticConsumer::ExpectedData
201 Notes.clear();
/external/google-breakpad/src/common/linux/
H A Dsynth_elf.h181 class Notes : public Section { class in namespace:google_breakpad::synth_elf
183 Notes(Endianness endianness) function in class:google_breakpad::synth_elf::Notes
/external/clang/lib/AST/
H A DDecl.cpp2135 SmallVector<PartialDiagnosticAt, 8> Notes; local
2136 return evaluateValue(Notes);
2147 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
2169 this, Notes);
2186 Eval->IsICE = Result && Notes.empty();
2230 SmallVector<PartialDiagnosticAt, 8> Notes; local
2231 evaluateValue(Notes);
3773 /// completeDefinition - Notes that the definition of this type is now
H A DExprConstant.cpp781 /// Notes that we failed to evaluate an expression that other expressions
2174 SmallVector<PartialDiagnosticAt, 8> Notes; local
2175 if (!VD->evaluateValue(Notes)) {
2177 Notes.size() + 1) << VD;
2179 Info.addNotes(Notes);
2183 Notes.size() + 1) << VD;
2185 Info.addNotes(Notes);
9215 SmallVectorImpl<PartialDiagnosticAt> &Notes) const {
9223 EStatus.Diag = &Notes;
/external/clang/lib/Sema/
H A DSemaOverload.cpp5214 SmallVector<PartialDiagnosticAt, 8> Notes; local
5216 Eval.Diag = &Notes;
5228 if (Notes.empty()) {
5235 if (Notes.size() == 1 &&
5236 Notes[0].second.getDiagID() == diag::note_invalid_subexpr_in_const_expr)
5237 S.Diag(Notes[0].first, diag::err_expr_not_cce) << CCE;
5241 for (unsigned I = 0; I < Notes.size(); ++I)
5242 S.Diag(Notes[I].first, Notes[I].second);
8993 // Notes th
[all...]
H A DSemaTemplate.cpp4340 SmallVector<PartialDiagnosticAt, 8> Notes; local
4341 EvalResult.Diag = &Notes;
4349 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
4351 DiagLoc = Notes[0].first;
4352 Notes.clear();
4357 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
4358 S.Diag(Notes[I].first, Notes[I].second);
H A DSemaDecl.cpp10447 SmallVector<PartialDiagnosticAt, 8> Notes; local
10448 if (!var->evaluateValue(Notes) || !var->isInitICE()) {
10452 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
10454 DiagLoc = Notes[0].first;
10455 Notes.clear();
10459 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
10460 Diag(Notes[I].first, Notes[I].second);
H A DSemaExpr.cpp12714 SmallVector<PartialDiagnosticAt, 8> Notes; local
12715 EvalResult.Diag = &Notes;
12725 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
12734 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
12736 DiagLoc = Notes[0].first;
12737 Notes.clear();
12743 for (const PartialDiagnosticAt &Note : Notes)
12751 for (const PartialDiagnosticAt &Note : Notes)

Completed in 300 milliseconds