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
114
DiagStatePoints
.clear();
120
DiagStatePoints
.push_back(DiagStatePoint(&DiagStates.back(), FullSourceLoc()));
142
assert(!
DiagStatePoints
.empty());
143
assert(
DiagStatePoints
.front().Loc.isInvalid() &&
147
return
DiagStatePoints
.end() - 1;
151
return
DiagStatePoints
.end() - 1;
153
DiagStatePointsTy::iterator Pos =
DiagStatePoints
.end();
154
FullSourceLoc LastStateChangePos =
DiagStatePoints
.back().Loc;
157
Pos = std::upper_bound(
DiagStatePoints
.begin(),
DiagStatePoints
.end()
[
all
...]
/external/clang/include/clang/Basic/
Diagnostic.h
247
/// \brief A sorted vector of all
DiagStatePoints
representing changes in
253
mutable DiagStatePointsTy
DiagStatePoints
;
260
assert(!
DiagStatePoints
.empty());
261
return
DiagStatePoints
.back().State;
266
// Make sure that
DiagStatePoints
is always sorted according to Loc.
268
assert(!
DiagStatePoints
.empty() &&
269
(
DiagStatePoints
.back().Loc.isInvalid() ||
270
DiagStatePoints
.back().Loc.isBeforeInTranslationUnitThan(Loc)) &&
272
DiagStatePoints
.push_back(DiagStatePoint(State, Loc));
[
all
...]
/external/clang/lib/Serialization/
ASTWriter.cpp
[
all
...]
ASTReader.cpp
[
all
...]
Completed in 161 milliseconds