Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp815 if (Record.readBool()) in VisitConceptSpecializationExpr()
2397 D->setHasCancel(Record.readBool()); in VisitOMPParallelDirective()
2420 D->setHasCancel(Record.readBool()); in VisitOMPForDirective()
2430 D->setHasCancel(Record.readBool()); in VisitOMPSectionsDirective()
2436 D->setHasCancel(Record.readBool()); in VisitOMPSectionDirective()
2462 D->setHasCancel(Record.readBool()); in VisitOMPParallelForDirective()
2486 D->setHasCancel(Record.readBool()); in VisitOMPParallelSectionsDirective()
2492 D->setHasCancel(Record.readBool()); in VisitOMPTaskDirective()
2578 D->setHasCancel(Record.readBool()); in VisitOMPTargetParallelDirective()
2584 D->setHasCancel(Record.readBool()); in VisitOMPTargetParallelForDirective()
[all …]
H A DASTReaderDecl.cpp976 bool HasTemplateArgumentsAsWritten = Record.readBool(); in VisitFunctionDecl()
1037 bool HasTemplateArgumentsAsWritten = Record.readBool(); in VisitFunctionDecl()
1872 D->IsCBuffer = Record.readBool(); in VisitHLSLBufferDecl()
2688 if (Record.readBool()) in VisitTemplateTypeParmDecl()
3107 bool readBool() { return Reader.readBool(); } in readBool() function in __anonf03d97f00511::AttrReader
3167 bool IsRegularKeywordAttribute = Record.readBool(); in readAttr()
4730 bool Indirect = Record.readBool(); in UpdateDecl()
H A DASTReader.cpp6836 if (Reader.readBool()) in VisitArrayTypeLoc()
6970 if (Reader.readBool()) in VisitAutoTypeLoc()
6972 if (Reader.readBool()) in VisitAutoTypeLoc()
9138 bool HasRequiresClause = readBool(); in readTemplateParameterList()
9168 bool isVirtual = readBool(); in readCXXBaseSpecifier()
9169 bool isBaseOfClass = readBool(); in readCXXBaseSpecifier()
9197 IsBaseVirtual = readBool(); in readCXXCtorInitializers()
9235 if (/*IsWritten*/readBool()) { in readCXXCtorInitializers()
9277 bool Template = readBool(); in readNestedNameSpecifierLoc()
10749 C->setIsTarget(Record.readBool()); in VisitOMPInitClause()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DAbstractBasicReader.h166 bool isUnsigned = asImpl().readBool(); in readAPSInt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTRecordReader.h302 bool readBool() { return readInt() != 0; } in readBool() function