/freebsd/contrib/expat/tests/benchmark/ |
H A D | benchmark.c | 67 int nrOfLoops, bufferSize, i, isFinal; in main() local 117 isFinal = 0; in main() 122 isFinal = 1; in main() 126 if (! XML_Parse(parser, XMLBufPtr, (int)parseBufferSize, isFinal)) { in main() 138 } while (! isFinal); in main()
|
/freebsd/contrib/expat/tests/ |
H A D | common.c | 194 int isFinal) { in _XML_Parse_SINGLE_BYTES() 210 return XML_Parse(parser, s, len, isFinal); in _XML_Parse_SINGLE_BYTES() 193 _XML_Parse_SINGLE_BYTES(XML_Parser parser,const char * s,int len,int isFinal) _XML_Parse_SINGLE_BYTES() argument
|
H A D | common.h | 102 int len, int isFinal);
|
H A D | basic_tests.c | 2819 for (int isFinal = 0; isFinal < 2; isFinal++) { in START_TEST() 2820 set_subtest("isFinal=%d", isFinal); in START_TEST() 2827 const enum XML_Status status = XML_Parse(parser, doc, -1, isFinal); in START_TEST() 2843 for (int isFinal = 0; isFinal < 2; isFinal++) { in START_TEST() 2844 set_subtest("isFinal in START_TEST() 2810 for (int isFinal = 0; isFinal < 2; isFinal++) { START_TEST() local 2834 for (int isFinal = 0; isFinal < 2; isFinal++) { START_TEST() local [all...] |
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | SyntheticSections.h | 292 assert(isFinal || target->usesThunks()); in getVA() 296 return isFinal ? addr + stubsIndex * target->stubSize in getVA() 300 bool isFinal = false; // is address assigned? variable 344 void finalize() override { isec->isFinal = true; } in finalize()
|
H A D | ConcatOutputSection.cpp | 200 isec->isFinal = true; in finalizeOne() 239 assert(isec->isFinal); in finalize()
|
H A D | Symbols.cpp | 94 if (!isec()->isFinal) { in getVA()
|
H A D | SyntheticSections.cpp | 79 isec->isFinal = true; in MachHeaderSection() 728 void StubsSection::finalize() { isFinal = true; } in finalize() 871 objcSelref->isFinal = true; in makeSelRef() 1676 isec->isFinal = true; in finalizeContents() 1756 isec->isFinal = true; in finalizeContents() 1797 isec->isFinal = true; in finalizeContents() 2039 isec->isFinal = true; in finalize()
|
H A D | InputSection.h | 80 bool isFinal = false;
|
/freebsd/contrib/expat/lib/ |
H A D | expat.h | 779 detected. The last call to XML_Parse must have isFinal true; len 788 XML_Parse(XML_Parser parser, const char *s, int len, int isFinal); 794 XML_ParseBuffer(XML_Parser parser, int len, int isFinal);
|
H A D | xmlparse.c | 1926 XML_Parse(XML_Parser parser, const char *s, int len, int isFinal) { in XML_Parse() 1966 parser->m_parsingStatus.finalBuffer = (XML_Bool)isFinal; in XML_Parse() 1982 if (isFinal) { in XML_Parse() 2033 return XML_ParseBuffer(parser, len, isFinal); in XML_Parse() 2037 XML_ParseBuffer(XML_Parser parser, int len, int isFinal) { in XML_ParseBuffer() 2077 parser->m_parsingStatus.finalBuffer = (XML_Bool)isFinal; in XML_ParseBuffer() 2093 if (isFinal) { in XML_ParseBuffer() 1925 XML_Parse(XML_Parser parser,const char * s,int len,int isFinal) XML_Parse() argument 2036 XML_ParseBuffer(XML_Parser parser,int len,int isFinal) XML_ParseBuffer() argument
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Coroutines/ |
H A D | CoroEarly.cpp | 188 if (cast<CoroSuspendInst>(&I)->isFinal()) in lowerEarlyIntrinsics()
|
H A D | CoroSplit.cpp | 426 assert(cast<CoroSuspendInst>(Shape.CoroSuspends.back())->isFinal() && in markCoroutineAsDone() 1398 if (!SI->isFinal() && simplifySuspendPoint(SI, Shape.CoroBegin)) { in simplifySuspendPoints() 1404 if (cast<CoroSuspendInst>(S[I])->isFinal()) { in simplifySuspendPoints() 1419 assert(cast<CoroSuspendInst>(S[ChangedFinalIndex])->isFinal()); in simplifySuspendPoints() 1507 if (S->isFinal()) { in createResumeEntryBlock()
|
H A D | Coroutines.cpp | 217 if (Suspend->isFinal()) { in buildFrom()
|
H A D | CoroInstr.h | 536 bool isFinal() const { in isFinal() function
|
/freebsd/contrib/ncurses/ncurses/base/ |
H A D | lib_mouse.c | 1210 #define isFinal(c) ((c) >= 0x40 && (c) <= 0x7e) macro 1284 } else if (isFinal(ch)) { in read_SGR() 1295 } while (!isFinal(ch)); in read_SGR()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | IdentifierTable.h | 306 bool isFinal() const { return IsFinal; } in isFinal() function
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | Record.cpp | 627 if (R.isFinal()) in resolveReferences() 963 if (LHS != lhs || (R.isFinal() && getOpcode() == CAST)) in resolveReferences() 965 ->Fold(R.getCurrentRecord(), R.isFinal()); in resolveReferences() 2086 if (Expr != NewExpr || R.isFinal()) in resolveReferences() 2087 return get(CheckType, NewExpr)->Fold(R.getCurrentRecord(), R.isFinal()); in resolveReferences()
|
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 439 REGISTER_MATCHER(isFinal); in RegistryMaps()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | PPDirectives.cpp | 3160 if (!II->hasMacroDefinition() && II->hadMacroDefinition() && II->isFinal()) in HandleDefineDirective() 3208 if (MacroNameTok.getIdentifierInfo()->isFinal()) in HandleDefineDirective() 3312 if (II->isFinal()) in HandleUndefDirective()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
H A D | Record.h | 2235 bool isFinal() const { return IsFinal; } in isFinal() function 2290 setFinal(R.isFinal()); in ShadowResolver()
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 6362 AST_POLYMORPHIC_MATCHER(isFinal, in AST_POLYMORPHIC_MATCHER() argument
|
/freebsd/contrib/expat/ |
H A D | Changes | 218 #745 #757 docs: Document the importance of isFinal + adjust tests
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 209454 static void jsonArrayCompute(sqlite3_context *ctx, int isFinal){ 209467 if( isFinal ){ 209473 }else if( isFinal ){ 209574 static void jsonObjectCompute(sqlite3_context *ctx, int isFinal){ 209587 if( isFinal ){ 209593 }else if( isFinal ){
|