Home
last modified time | relevance | path

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

/netbsd-src/external/gpl2/xcvs/dist/src/
H A Dparseinfo.c553 readBool (infopath, "SystemAuth", p, &retval->system_auth); in parse_config()
560 readBool (infopath, "SystemAuth", p, &dummy); in parse_config()
571 readBool (infopath, "PreservePermissions", p, in parse_config()
581 readBool (infopath, "TopLevelAdmin", p, &retval->top_level_admin); in parse_config()
648 if (readBool (infopath, "RereadLogAfterVerify", p, &tmp)) in parse_config()
675 readBool (infopath, "UseNewInfoFmtStrings", p, in parse_config()
680 if (readBool (infopath, "UseNewInfoFmtStrings", p, &dummy) in parse_config()
688 readBool (infopath, "ImportNewFilesToVendorBranchOnly", p, in parse_config()
701 readBool (infopath, "UseArchiveCommentLeader", p, in parse_config()
H A Dsubr.h85 bool readBool (const char *infopath, const char *option,
H A Droot.c613 readBool ("CVSROOT", "Redirect", q, &newroot->redirect); in parse_cvsroot()
H A Dsubr.c1870 readBool (const char *infopath, const char *option, const char *p, bool *val) in readBool() function
H A DChangeLog1564 * parseinfo.c (readBool): Update quotes in error message for
1566 * subr.c (readBool): ...here.
1574 * parseinfo.c (readBool): Reorder arguments to error() and improve
2732 * parseinfo.c (readBool): Remove dead code.
2738 * parseinfo.c (readBool): Return false when there was no boolean
2749 * parseinfo.c (readBool, readSizeT): New functions.
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2303 D->setHasCancel(Record.readBool()); in VisitOMPParallelDirective()
2316 D->setHasCancel(Record.readBool()); in VisitOMPForDirective()
2326 D->setHasCancel(Record.readBool()); in VisitOMPSectionsDirective()
2332 D->setHasCancel(Record.readBool()); in VisitOMPSectionDirective()
2353 D->setHasCancel(Record.readBool()); in VisitOMPParallelForDirective()
2371 D->setHasCancel(Record.readBool()); in VisitOMPParallelSectionsDirective()
2377 D->setHasCancel(Record.readBool()); in VisitOMPTaskDirective()
2423 D->IsXLHSInRHSPart = Record.readBool(); in VisitOMPAtomicDirective()
2424 D->IsPostfixUpdate = Record.readBool(); in VisitOMPAtomicDirective()
2453 D->setHasCancel(Record.readBool()); in VisitOMPTargetParallelDirective()
[all …]
H A DASTReader.cpp6533 if (Reader.readBool()) in VisitArrayTypeLoc()
6650 if (Reader.readBool()) { in VisitAutoTypeLoc()
6760 TL.setHasBaseTypeAsWritten(Reader.readBool()); in VisitObjCObjectTypeLoc()
7146 if (readBool()) // bool InfoHasSameExpr. in readTemplateArgumentLoc()
8788 bool HasRequiresClause = readBool(); in readTemplateParameterList()
8818 bool isVirtual = readBool(); in readCXXBaseSpecifier()
8819 bool isBaseOfClass = readBool(); in readCXXBaseSpecifier()
8821 bool inheritConstructors = readBool(); in readCXXBaseSpecifier()
8847 IsBaseVirtual = readBool(); in readCXXCtorInitializers()
8885 if (/*IsWritten*/readBool()) { in readCXXCtorInitializers()
[all …]
H A DASTReaderDecl.cpp2352 if (Record.readBool()) { in VisitTemplateTypeParmDecl()
2357 if (Record.readBool()) in VisitTemplateTypeParmDecl()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DAbstractBasicReader.h166 bool isUnsigned = asImpl().readBool(); in readAPSInt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DASTRecordReader.h296 bool readBool() { return readInt() != 0; } in readBool() function