/third_party/skia/infra/bots/gen_tasks_logic/ |
D | compile_cas.go | 103 isLeaf bool member 111 isLeaf: false, 131 n.isLeaf = true 137 if !n.isLeaf { 150 if child.isLeaf { 154 n.isLeaf = true 169 if n.isLeaf {
|
/third_party/icu/icu4c/source/tools/genrb/ |
D | filterrb.cpp | 109 bool isLeaf = false; in match() local 119 isLeaf = true; in match() 131 if (node->isLeaf()) { in match() 132 isLeaf = true; in match() 136 if (!isLeaf) { in match() 157 bool SimpleRuleBasedPathFilter::Tree::isLeaf() const { in isLeaf() function in SimpleRuleBasedPathFilter::Tree 169 if (isVerbose() && (fIncluded != PARTIAL || !isLeaf())) { in applyRule()
|
D | filterrb.h | 169 bool isLeaf() const;
|
/third_party/skia/third_party/externals/icu/source/tools/genrb/ |
D | filterrb.cpp | 109 bool isLeaf = false; in match() local 119 isLeaf = true; in match() 131 if (node->isLeaf()) { in match() 132 isLeaf = true; in match() 136 if (!isLeaf) { in match() 157 bool SimpleRuleBasedPathFilter::Tree::isLeaf() const { in isLeaf() function in SimpleRuleBasedPathFilter::Tree 169 if (isVerbose() && (fIncluded != PARTIAL || !isLeaf())) { in applyRule()
|
D | filterrb.h | 169 bool isLeaf() const;
|
/third_party/node/deps/icu-small/source/tools/genrb/ |
D | filterrb.cpp | 109 bool isLeaf = false; in match() local 119 isLeaf = true; in match() 131 if (node->isLeaf()) { in match() 132 isLeaf = true; in match() 136 if (!isLeaf) { in match() 157 bool SimpleRuleBasedPathFilter::Tree::isLeaf() const { in isLeaf() function in SimpleRuleBasedPathFilter::Tree 169 if (isVerbose() && (fIncluded != PARTIAL || !isLeaf())) { in applyRule()
|
D | filterrb.h | 169 bool isLeaf() const;
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTestHierarchyIterator.cpp | 170 const bool isLeaf = isTestNodeTypeExecutable(node->getNodeType()); in next() local 179 …if (!(isLeaf ? (m_caseListFilter.checkRunnerType(node->getRunnerType()) && m_caseListFilter.checkT… in next() 193 if (isLeaf) in next() 247 if (!isLeaf) in next()
|
/third_party/typescript/src/server/ |
D | scriptVersionCache.ts | 8 isLeaf(): this is LineLeaf; method 164 if (node.isLeaf()) { 193 if (!lineCollection.isLeaf()) { 208 if (!lineCollection.isLeaf()) { 574 isLeaf() { method in LineNode 672 if (child.isLeaf()) { 699 …return child.isLeaf() ? { position: positionAccumulator, leaf: child } : (<LineNode>child).lineNum… 817 isLeaf() { method in LineLeaf
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
D | DistanceTable.java | 218 if (key.isLeaf()) { in addExplicitMapping() 228 if (key.isLeaf()) { in addWildcardMappings() 506 boolean isLeaf() { in isLeaf() method in DistanceTable.MappingKey 543 checkState(!isLeaf(), "cannot get 'next' for an empty key"); in getSuffix() 549 return isLeaf() in toString()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Intrinsics.h | 69 bool isLeaf(ID id);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Intrinsics.h | 71 bool isLeaf(ID id);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 248 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in DeleteBasicBlock()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CallGraph.cpp | 78 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in addToCallGraph()
|
D | CallGraphSCCPass.cpp | 246 Intrinsic::isLeaf(Call->getCalledFunction()->getIntrinsicID()))) { in RefreshCallGraph()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | CallGraph.h | 235 !Intrinsic::isLeaf(Call->getCalledFunction()->getIntrinsicID())); in addCalledFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineOutliner.cpp | 169 bool isLeaf() const { return SuffixIdx != EmptyIdx; } in isLeaf() function 540 if (!ChildPair.second->isLeaf()) in advance()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
D | Coroutines.cpp | 196 if (!Callee || !Intrinsic::isLeaf(Callee->getIntrinsicID())) in buildCGN()
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
D | parserRealSource11.ts | 34 public isLeaf() { return this.isStatementOrExpression() && (!this.isCompoundStatement()); } method in AST 283 public isLeaf() { return true; } method in Identifier
|
/third_party/typescript/tests/baselines/reference/ |
D | parserRealSource11.js | 35 public isLeaf() { return this.isStatementOrExpression() && (!this.isCompoundStatement()); } 284 public isLeaf() { return true; } 2413 …AST.prototype.isLeaf = function () { return this.isStatementOrExpression() && (!this.isCompoundSta… method in AST 2653 Identifier.prototype.isLeaf = function () { return true; }; method in Identifier
|
D | parserRealSource11.symbols | 61 public isLeaf() { return this.isStatementOrExpression() && (!this.isCompoundStatement()); } 62 >isLeaf : Symbol(AST.isLeaf, Decl(parserRealSource11.ts, 31, 54)) 768 public isLeaf() { return true; } 769 >isLeaf : Symbol(Identifier.isLeaf, Decl(parserRealSource11.ts, 281, 44))
|
D | parserRealSource11.types | 77 public isLeaf() { return this.isStatementOrExpression() && (!this.isCompoundStatement()); } 78 >isLeaf : () => boolean 1189 public isLeaf() { return true; } 1190 >isLeaf : () => boolean
|
D | parserRealSource11.errors.txt | 558 … public isLeaf() { return this.isStatementOrExpression() && (!this.isCompoundStatement()); } 897 public isLeaf() { return true; }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Function.cpp | 1095 bool Intrinsic::isLeaf(ID id) { in isLeaf() function in Intrinsic
|
/third_party/typescript/lib/ |
D | tsserverlibrary.js | 161930 if (node.isLeaf()) { 161960 if (!lineCollection.isLeaf()) { 161975 if (!lineCollection.isLeaf()) { 162316 LineNode.prototype.isLeaf = function () { method in LineNode 162410 if (child.isLeaf()) { 162436 …return child.isLeaf() ? { position: positionAccumulator, leaf: child } : child.lineNumberToInfo(re… 162546 LineLeaf.prototype.isLeaf = function () { method in LineLeaf
|