OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isLeaf
(Results
1 - 22
of
22
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Rewrite/
DeltaTree.cpp
78
///
IsLeaf
- This is true if this is a leaf of the btree. If false, this is
80
bool
IsLeaf
;
87
DeltaTreeNode(bool
isLeaf
= true) :
IsLeaf
(
isLeaf
) {}
89
bool
isLeaf
() const { return
IsLeaf
; }
121
/// DeltaTreeInteriorNode - When
isLeaf
= false, a node has child pointers.
155
static bool classof(const DeltaTreeNode *N) { return !N->
isLeaf
(); }
162
if (
isLeaf
())
[
all
...]
RewriteRope.cpp
90
///
IsLeaf
- True if this is an instance of RopePieceBTreeLeaf, false if it
92
bool
IsLeaf
;
94
RopePieceBTreeNode(bool
isLeaf
) :
IsLeaf
(
isLeaf
) {}
98
bool
isLeaf
() const { return
IsLeaf
; }
224
return N->
isLeaf
();
465
return !N->
isLeaf
();
/src/external/apache2/llvm/dist/llvm/include/llvm/Support/
SuffixTree.h
90
bool
isLeaf
() const { return SuffixIdx != EmptyIdx; }
280
if (!ChildPair.second->
isLeaf
())
GenericDomTree.h
98
bool
isLeaf
() const { return Children.empty(); }
672
assert(Node->
isLeaf
() && "Node is not a leaf node.");
GenericDomTreeConstruction.h
1361
if (Node->
isLeaf
()) {
1473
if (!BB || TN->
isLeaf
())
1507
if (!BB || TN->
isLeaf
())
/src/external/apache2/llvm/dist/llvm/utils/TableGen/
DAGISelEmitter.cpp
43
if (P->
isLeaf
()) return 0;
62
if (P->
isLeaf
()) return 0;
DAGISelMatcherGen.cpp
203
assert(N->
isLeaf
() && "Not a leaf?");
312
assert(!N->
isLeaf
() && "Not an operator?");
346
N->getChild(1)->
isLeaf
() && N->getChild(1)->getPredicateCalls().empty() &&
533
if (N->
isLeaf
())
594
if (N->
isLeaf
()) {
658
if (!N->
isLeaf
()) {
673
assert(N->
isLeaf
() && "Must be a leaf");
767
if (N->
isLeaf
())
873
if (!Child->
isLeaf
() && Child->getOperator()->isSubClassOf("Instruction"))
1025
if (N->
isLeaf
())
[
all
...]
CodeGenDAGPatterns.cpp
1350
if (Tree->
isLeaf
())
1380
if (!P->
isLeaf
())
1398
if (P->
isLeaf
() && isa<IntInit>(P->getLeafValue()))
1415
if (!Child->
isLeaf
() && Child->getNumTypes()) {
1424
if (Child->
isLeaf
()) {
1621
if (!NodeToApply->
isLeaf
() ||
1893
if (
isLeaf
())
1903
if (!
isLeaf
()) {
1943
if (N->
isLeaf
() !=
isLeaf
() || getExtTypes() != N->getExtTypes() |
[
all
...]
FastISelEmitter.cpp
191
if (InstPatNode->
isLeaf
())
210
if (!Op->
isLeaf
() && Op->getOperator()->getName() == "imm") {
241
if (!Op->
isLeaf
()) {
429
if (!Op->
isLeaf
())
454
if (Dst->
isLeaf
()) continue;
473
if (ChildOp->
isLeaf
())
499
if (!Dst->getChild(1)->
isLeaf
()) continue;
511
if (InstPatNode->
isLeaf
()) continue;
GlobalISelEmitter.cpp
3940
if (Src->
isLeaf
()) {
4013
if (Src->
isLeaf
()) {
4043
if (SrcChild->
isLeaf
()) {
4154
if (SrcChildName.empty() && SrcChild->
isLeaf
()) {
4174
if (!SrcChild->
isLeaf
() &&
4197
if (!SrcChild->
isLeaf
()) {
4232
if (!SrcChild->
isLeaf
()) {
4396
if (!DstChild->
isLeaf
()) {
4753
if (!Dst->getChild(1)->
isLeaf
())
4761
if (!ValChild->
isLeaf
()) {
[
all
...]
CodeGenDAGPatterns.h
690
bool
isLeaf
() const { return Val != nullptr; }
718
Init *getLeafValue() const { assert(
isLeaf
()); return Val; }
719
Record *getOperator() const { assert(!
isLeaf
()); return Operator; }
/src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h
46
bool
isLeaf
() const { return Children.empty(); }
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Intrinsics.h
84
bool
isLeaf
(ID id);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
PruneEH.cpp
242
if (!Callee || !Intrinsic::
isLeaf
(Callee->getIntrinsicID()))
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
CallGraph.cpp
104
if (!Callee || !Intrinsic::
isLeaf
(Callee->getIntrinsicID()))
107
// Intrinsic::
isLeaf
.
CallGraphSCCPass.cpp
279
Intrinsic::
isLeaf
(Call->getCalledFunction()->getIntrinsicID()))) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
CallGraph.h
246
!Intrinsic::
isLeaf
(Call->getCalledFunction()->getIntrinsicID()));
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
Coroutines.cpp
203
if (!Callee || !Intrinsic::
isLeaf
(Callee->getIntrinsicID()))
206
// Intrinsic::
isLeaf
.
/src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp
226
if (N.
isLeaf
())
531
NumLeaves += N.
isLeaf
();
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopSimplify.cpp
688
while (!Node->
isLeaf
()) {
/src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp
1307
bool Intrinsic::
isLeaf
(ID id) {
/src/external/public-domain/sqlite/dist/
sqlite3.c
[
all
...]
Completed in 112 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026