OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isFinal
(Results
1 - 25
of
30
) sorted by relevancy
1
2
/src/external/mit/expat/dist/tests/benchmark/
benchmark.c
76
int nrOfLoops, bufferSize, i,
isFinal
;
140
isFinal
= 0;
145
isFinal
= 1;
149
if (! XML_Parse(parser, XMLBufPtr, (int)parseBufferSize,
isFinal
)) {
161
} while (!
isFinal
);
/src/external/mit/expat/dist/tests/
common.c
197
int
isFinal
) {
219
return XML_Parse(parser, s, len,
isFinal
);
common.h
102
int len, int
isFinal
);
basic_tests.c
225
assert_true(XML_Parse(parser, "", 0, XML_FALSE /*
isFinal
*/)
1231
/*
isFinal
*/ XML_TRUE)
1312
/*
isFinal
*/ XML_TRUE);
3238
for (int
isFinal
= 0;
isFinal
< 2;
isFinal
++) {
3239
set_subtest("
isFinal
=%d",
isFinal
);
3246
const enum XML_Status status = XML_Parse(parser, doc, -1,
isFinal
);
3262
for (int
isFinal
= 0; isFinal < 2; isFinal++)
[
all
...]
/src/external/gpl3/binutils/dist/gprofng/src/
IndexObject.cc
85
bool
isFinal
= true;
114
isFinal
= false;
136
return
isFinal
;
/src/external/gpl3/binutils.old/dist/gprofng/src/
IndexObject.cc
85
bool
isFinal
= true;
114
isFinal
= false;
136
return
isFinal
;
/src/external/mit/expat/dist/lib/
expat.h
781
detected. The last call to XML_Parse must have
isFinal
true; len
790
XML_Parse(XML_Parser parser, const char *s, int len, int
isFinal
);
796
XML_ParseBuffer(XML_Parser parser, int len, int
isFinal
);
xmlparse.c
2260
XML_Parse(XML_Parser parser, const char *s, int len, int
isFinal
) {
2300
parser->m_parsingStatus.finalBuffer = (XML_Bool)
isFinal
;
2316
if (
isFinal
) {
2367
return XML_ParseBuffer(parser, len,
isFinal
);
2371
XML_ParseBuffer(XML_Parser parser, int len, int
isFinal
) {
2411
parser->m_parsingStatus.finalBuffer = (XML_Bool)
isFinal
;
2427
if (
isFinal
) {
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroEarly.cpp
164
if (cast<CoroSuspendInst>(&I)->
isFinal
())
CoroInstr.h
505
bool
isFinal
() const {
Coroutines.cpp
294
if (Suspend->
isFinal
()) {
CoroSplit.cpp
364
if (S->
isFinal
()) {
1447
if (!SI->
isFinal
() && simplifySuspendPoint(SI, Shape.CoroBegin)) {
/src/external/gpl2/gettext/dist/gettext-tools/src/
x-glade.c
127
static int (*p_XML_Parse) (XML_Parser parser, const char *s, int len, int
isFinal
);
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/
statement.d
1181
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
);
statement.h
433
bool
isFinal
;
objc.d
593
if (fd.toParent.isInterfaceDeclaration && fd.
isFinal
)
statementsem.d
2271
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
)
func.d
1855
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
())
declaration.h
135
bool
isFinal
() const { return (storage_class & STCfinal) != 0; }
declaration.d
449
final bool
isFinal
() const pure nothrow @nogc @safe
/src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Registry.cpp
411
REGISTER_MATCHER(
isFinal
);
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/gc/impl/conservative/
gc.d
2996
* The collection is done concurrently only if block and
isFinal
are false.
2998
size_t fullcollect(bool nostack = false, bool block = false, bool
isFinal
= false) nothrow
3017
if (
isFinal
) // avoid starting threads for parallel marking
3076
if (doFork && !
isFinal
&& !block) // don't start a new fork during termination
3119
isFinal
= false;
3165
if (doFork &&
isFinal
)
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
traits.d
25
* $(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
!(C.ff))
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h
798
Init *Fold(Record *CurRec, bool
IsFinal
= false) const;
2002
bool
IsFinal
= false;
2022
bool
isFinal
() const { return
IsFinal
; }
2024
void setFinal(bool Final) {
IsFinal
= Final; }
2077
setFinal(R.
isFinal
());
/src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp
521
if (R.
isFinal
())
717
Init *UnOpInit::Fold(Record *CurRec, bool
IsFinal
) const {
733
if (!CurRec && !
IsFinal
)
743
if (!
IsFinal
)
749
if (
IsFinal
)
834
if (LHS != lhs || (R.
isFinal
() && getOpcode() == CAST))
836
->Fold(R.getCurrentRecord(), R.
isFinal
());
Completed in 74 milliseconds
1
2
Indexes created Sun Jun 14 00:25:39 UTC 2026