Home
last modified time | relevance | path

Searched refs:hasMore (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp192 bool hasMore = true; in ParsePrintfSpecifier() local
195 default: hasMore = false; break; in ParsePrintfSpecifier()
206 if (!hasMore) in ParsePrintfSpecifier()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h1041 while (hasMore() && Filter(*I)) in FilteredCFGBlockIterator()
1045 bool hasMore() const { return I != E; } in hasMore() function
1048 do { ++I; } while (hasMore() && Filter(*I));
/freebsd/contrib/expat/lib/
H A Dxmlparse.c319 bool hasMore; /* true if entity has not been completely processed */
320 /* An entity can be open while being already completely processed (!hasMore).
6465 entity->hasMore = true;
6504 if (entity->hasMore) {
6537 entity->hasMore = false;
6551 // this function and we skipped doProlog and doContent calls with hasMore set
6601 if (entity->hasMore) {
6620 entity->hasMore = false;
6630 // with hasMore set to false. This means we can directly remove the head
7062 if (entity->hasMore) {
337 XML_Bool hasMore; /* true if entity has not been completely processed */ global() member
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3683 auto hasMore = [&]() { in writeUseListBlock() local
3686 if (!hasMore()) in writeUseListBlock()
3691 while (hasMore()) { in writeUseListBlock()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp611 I.hasMore(); ++I) { in CheckFallThrough()