HomeSort by: relevance | last modified time | path
    Searched defs:AtEnd (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDie.h 411 bool AtEnd;
415 : Die(It.Die), AtEnd(!It.Die.getPreviousSibling()) {
416 if (!AtEnd)
421 return llvm::DWARFDie::iterator(AtEnd ? Die : Die.getSibling());
425 assert(!AtEnd && "Incrementing rend");
430 AtEnd = true;
435 if (AtEnd) {
436 AtEnd = false;
453 return Die == RHS.Die && AtEnd == RHS.AtEnd;
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 790 assert(!AtEnd());
814 // so we have to consult AtEnd().
815 if (AtEnd() && typed_other->AtEnd()) return true;
843 if (!AtEnd())
846 bool AtEnd() const {
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseObjc.cpp 599 SourceRange AtEnd;
680 AtEnd.setBegin(AtLoc);
681 AtEnd.setEnd(Tok.getLocation());
793 AtEnd.setBegin(Tok.getLocation());
794 AtEnd.setEnd(Tok.getLocation());
799 Actions.ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables);
2232 Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) {
2237 CurParsedObjCImpl->finish(atEnd);
2240 Diag(atEnd.getBegin(), diag::err_expected_objc_container);
2258 void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) {
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 951 SourceRange AtEnd;
1098 SourceRange getAtEndRange() const { return AtEnd; }
1100 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; }

Completed in 158 milliseconds