Searched refs:isFinal (Results 1 - 25 of 35) sorted by relevance

12

/netbsd-current/external/mit/expat/dist/tests/benchmark/
H A Dbenchmark.c65 int nrOfLoops, bufferSize, fileSize, i, isFinal; local
114 isFinal = 0;
119 isFinal = 1;
122 if (! XML_Parse(parser, XMLBufPtr, parseBufferSize, isFinal)) {
134 } while (! isFinal);
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DIndexObject.cc85 bool isFinal = true; local
114 isFinal = false;
136 return isFinal;
/netbsd-current/external/mit/expat/dist/lib/
H A Dexpat.h760 detected. The last call to XML_Parse must have isFinal true; len
769 XML_Parse(XML_Parser parser, const char *s, int len, int isFinal);
775 XML_ParseBuffer(XML_Parser parser, int len, int isFinal);
H A Dxmlparse.c1817 XML_Parse(XML_Parser parser, const char *s, int len, int isFinal) { argument
1841 parser->m_parsingStatus.finalBuffer = (XML_Bool)isFinal;
1842 if (! isFinal)
1901 parser->m_parsingStatus.finalBuffer = (XML_Bool)isFinal;
1917 if (isFinal) {
1965 return XML_ParseBuffer(parser, len, isFinal);
1971 XML_ParseBuffer(XML_Parser parser, int len, int isFinal) { argument
2005 parser->m_parsingStatus.finalBuffer = (XML_Bool)isFinal;
2021 if (isFinal) {
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroEarly.cpp164 if (cast<CoroSuspendInst>(&I)->isFinal())
H A DCoroutines.cpp294 if (Suspend->isFinal()) {
H A DCoroInstr.h505 bool isFinal() const { function in class:llvm::CoroSuspendInst
H A DCoroSplit.cpp364 if (S->isFinal()) {
1447 if (!SI->isFinal() && simplifySuspendPoint(SI, Shape.CoroBegin)) {
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dx-glade.c127 static int (*p_XML_Parse) (XML_Parser parser, const char *s, int len, int isFinal);
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dstatement.d1181 bool isFinal; /// https://dlang.org/spec/statement.html#final-switch-statement
1192 extern (D) this(const ref Loc loc, Expression condition, Statement _body, bool isFinal)
1197 this.isFinal = isFinal;
1202 return new SwitchStatement(loc, condition.syntaxCopy(), _body.syntaxCopy(), isFinal);
H A Dstatement.h433 bool isFinal; member in class:SwitchStatement
H A Dobjc.d593 if (fd.toParent.isInterfaceDeclaration && fd.isFinal)
H A Dstatementsem.d2271 if (ss.isFinal)
2317 (!ss.isFinal || needswitcherror || global.params.useAssert == CHECKENABLE.on))
2321 if (!ss.isFinal && (!ss._body || !ss._body.isErrorStatement()) && !(sc.flags & SCOPE.Cfile))
2513 if (sw.isFinal)
2622 if (sw.isFinal)
2717 if (sc.sw.isFinal)
2749 if (gds.sw.isFinal)
H A Dfunc.d1855 printf("FuncDeclaration::isFinalFunc(%s), %x\n", toChars(), Declaration.isFinal());
1856 printf("%p %d %d %d\n", isMember(), isStatic(), Declaration.isFinal(), ((cd = toParent().isClassDeclaration()) !is null && cd.storage_class & STC.final_));
1857 printf("result is %d\n", isMember() && (Declaration.isFinal() || (cd !is null && cd.storage_class & STC.final_)));
1863 if (Declaration.isFinal())
H A Ddeclaration.h135 bool isFinal() const { return (storage_class & STCfinal) != 0; } function in class:Declaration
H A Ddeclaration.d449 final bool isFinal() const pure nothrow @nogc @safe
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dstatement.c1090 SwitchStatement::SwitchStatement(Loc loc, Expression *c, Statement *b, bool isFinal) argument
1095 this->isFinal = isFinal;
1109 isFinal);
H A Dstatement.h421 bool isFinal; member in class:SwitchStatement
431 SwitchStatement(Loc loc, Expression *c, Statement *b, bool isFinal);
H A Dstatementsem.c2296 if (ss->isFinal)
2332 if (!sc->sw->sdefault && (!ss->isFinal || needswitcherror || global.params.useAssert))
2336 if (!ss->isFinal && (!ss->_body || !ss->_body->isErrorStatement()))
2424 if (sw->isFinal)
2526 if (sw->isFinal)
2619 if (sc->sw->isFinal)
2646 if (gds->sw->isFinal)
H A Ddeclaration.h142 bool isFinal() { return (storage_class & STCfinal) != 0; } function in class:Declaration
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dtraits.d25 * $(LREF isFinal)
7996 template isFinal(X...) if (X.length == 1)
7999 enum isFinal = __traits(isFinalClass, X[0]);
8001 enum isFinal = __traits(isFinalFunction, X[0]);
8003 enum isFinal = false;
8017 static assert(!isFinal!(C));
8018 static assert( isFinal!(FC));
8020 static assert(!isFinal!(C.nf));
8021 static assert(!isFinal!(C.sf));
8022 static assert( isFinal!(
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp411 REGISTER_MATCHER(isFinal);
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Dtraits.d25 * $(LREF isFinal)
9037 template isFinal(alias X)
9040 enum isFinal = __traits(isFinalClass, X);
9042 enum isFinal = __traits(isFinalFunction, X);
9044 enum isFinal = false;
9058 static assert(!isFinal!(C));
9059 static assert( isFinal!(FC));
9061 static assert(!isFinal!(C.nf));
9062 static assert(!isFinal!(C.sf));
9063 static assert( isFinal!(
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DRecord.h2022 bool isFinal() const { return IsFinal; } function in class:llvm::final::final::LessRecordRegister::Resolver
2077 setFinal(R.isFinal());
/netbsd-current/external/apache2/llvm/dist/llvm/lib/TableGen/
H A DRecord.cpp521 if (R.isFinal())
834 if (LHS != lhs || (R.isFinal() && getOpcode() == CAST))
836 ->Fold(R.getCurrentRecord(), R.isFinal());

Completed in 314 milliseconds

12