OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DiagStatePoints
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/Basic/
Diagnostic.cpp
131
DiagStatePoints
.clear();
137
DiagStatePoints
.push_back(DiagStatePoint(&DiagStates.back(), FullSourceLoc()));
159
assert(!
DiagStatePoints
.empty());
160
assert(
DiagStatePoints
.front().Loc.isInvalid() &&
164
return
DiagStatePoints
.end() - 1;
168
return
DiagStatePoints
.end() - 1;
170
DiagStatePointsTy::iterator Pos =
DiagStatePoints
.end();
171
FullSourceLoc LastStateChangePos =
DiagStatePoints
.back().Loc;
174
Pos = std::upper_bound(
DiagStatePoints
.begin(),
DiagStatePoints
.end()
[
all
...]
/external/clang/include/clang/Basic/
Diagnostic.h
248
/// \brief A sorted vector of all
DiagStatePoints
representing changes in
254
mutable DiagStatePointsTy
DiagStatePoints
;
261
assert(!
DiagStatePoints
.empty());
262
return
DiagStatePoints
.back().State;
267
// Make sure that
DiagStatePoints
is always sorted according to Loc.
269
assert(!
DiagStatePoints
.empty() &&
270
(
DiagStatePoints
.back().Loc.isInvalid() ||
271
DiagStatePoints
.back().Loc.isBeforeInTranslationUnitThan(Loc)) &&
273
DiagStatePoints
.push_back(DiagStatePoint(State, Loc));
[
all
...]
/external/clang/lib/Serialization/
ASTWriter.cpp
[
all
...]
ASTReader.cpp
[
all
...]
Completed in 368 milliseconds