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

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
fallible_iterator.h 166 if (LHS.isEnd() && RHS.isEnd())
177 if (LHS.isEnd())
200 bool isEnd() const { return getErrPtr() == nullptr; }
ilist_iterator.h 175 bool isEnd() const { return NodePtr ? NodePtr->isSentinel() : false; }
SparseMultiSet.h 238 bool isEnd() const {
268 assert((isEnd() || SparseIdx == RHS.SparseIdx) &&
283 assert((isEnd() || !SMS->isHead(SMS->Dense[Idx])) &&
287 if (isEnd())
295 assert(!isEnd() && isKeyed() && "Incrementing an invalid/end iterator");
467 assert(I.isKeyed() && !I.isEnd() && !Dense[I.Idx].isTombstone() &&
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
DbiModuleList.cpp 36 if (isEnd() && R.isEnd())
40 if (isEnd() != R.isEnd())
51 assert(!isEnd());
52 assert(!R.isEnd());
76 if (isEnd() && R.isEnd())
79 assert(!R.isEnd());
86 if (isEnd()) {
    [all...]
  /src/external/bsd/libarchive/dist/tar/
subst.c 238 char isEnd = 0;
240 isEnd = *name == '\0';
297 } else if (!isEnd) {
303 } while (rule->global && !isEnd); // Testing one step after because sed et al. run 0-length patterns a last time on the empty string at the end
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
HashTable.h 44 bool IsEnd)
45 : Map(&Map), Index(Index), IsEnd(IsEnd) {}
52 IsEnd = true;
55 IsEnd = false;
65 if (IsEnd && R.IsEnd)
67 if (IsEnd != R.IsEnd)
89 IsEnd = true
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
InputFile.cpp 447 bool E = isEnd();
448 bool RE = R.isEnd();
458 assert(!isEnd());
462 assert(!isEnd());
467 assert(Value.File && !isEnd());
469 if (isEnd())
485 assert(!isEnd());
498 bool SymbolGroupIterator::isEnd() const {
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentParser.cpp 52 bool isEnd() const {
58 assert(!isEnd());
73 assert(!isEnd());
79 assert(!isEnd());
84 if (isEnd() && !addToken())
87 assert(!isEnd());
122 while (!isEnd()) {
154 if (isEnd())
163 while (!isEnd()) {
187 if (isEnd())
    [all...]
ASTDiagnostic.cpp 953 if (isEnd()) return;
974 /// isEnd - Returns true if the iterator is one past the end.
975 bool isEnd() const {
983 if (isEnd()) {
1019 assert(!isEnd() && "Index exceeds number of arguments.");
1062 /// isEnd - Returns true if no more TemplateArguments are available.
1063 bool isEnd() const {
1064 return SugaredIterator.isEnd();
1070 return DesugaredIterator.isValid() && !DesugaredIterator.isEnd();
1137 bool FromDefault = FromIter.isEnd() && !FromType.isNull()
    [all...]

Completed in 59 milliseconds