Home
last modified time | relevance | path

Searched refs:isScope (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/src/sksl/ir/
DSkSLBlock.h24 const std::shared_ptr<SymbolTable> symbols = nullptr, bool isScope = true)
28 , fIsScope(isScope) {} in INHERITED()
35 bool isScope = true);
49 bool isScope() const { in isScope() function
53 void setIsScope(bool isScope) { in setIsScope() argument
54 fIsScope = isScope; in setIsScope()
DSkSLBlock.cpp55 bool isScope) { in Make() argument
58 return std::make_unique<Block>(line, std::move(statements), std::move(symbols), isScope); in Make()
70 this->isScope()); in clone()
DSkSLForStatement.cpp29 if (b.isScope()) { in is_vardecl_block_initializer()
DSkSLSwitchStatement.cpp97 block.symbolTable(), block.isScope())); in move_all_but_break()
/third_party/skia/src/sksl/codegen/
DSkSLPipelineStageCodeGenerator.cpp698 bool isScope = b.isScope() || b.isEmpty(); in writeBlock() local
699 if (isScope) { in writeBlock()
708 if (isScope) { in writeBlock()
DSkSLGLSLCodeGenerator.cpp1266 bool isScope = b.isScope() || b.isEmpty(); in writeBlock() local
1267 if (isScope) { in writeBlock()
1277 if (isScope) { in writeBlock()
DSkSLMetalCodeGenerator.cpp2138 bool isScope = b.isScope() || b.isEmpty(); in writeBlock() local
2139 if (isScope) { in writeBlock()
2149 if (isScope) { in writeBlock()
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/
Dshrinkwrap.js132 const isScope = dir !== path && base.startsWith('@') constant
133 const isParent = (dir === path) || isNM || isScope
146 if (!isScope && !isNM && !data.packages[rel]) {
/third_party/skia/src/sksl/dsl/priv/
DDSLWriter.cpp101 SkASSERT(!block.isScope()); in AddVarDeclaration()
/third_party/skia/src/sksl/
DSkSLInliner.cpp151 if (!(*stmt)->is<Block>() || (*stmt)->as<Block>().isScope()) { in find_parent_statement()
192 int depthIncrement = stmt.as<Block>().isScope() ? 1 : 0; in visitStatement()
275 if (nestedBlock->isScope()) { in ensureScopedBlocks()
489 b.isScope()); in inlineStatement()
DSkSLRehydrator.cpp320 bool isScope = this->readU8(); in statement() local
321 return Block::Make(/*line=*/-1, std::move(statements), fSymbolTable, isScope); in statement()
DSkSLDehydrator.cpp453 this->writeU8(b.isScope()); in write()
DSkSLAnalysis.cpp354 if (block.isScope() || block.children().empty()) { in DetectVarDeclarationWithoutScope()
/third_party/typescript/src/services/refactors/
DextractSymbol.ts655 function isScope(node: Node): node is Scope { function
692 if (isScope(current)) {
1244 …if (node.parent.kind === SyntaxKind.ExpressionStatement && scope === findAncestor(node, isScope)) {
1536 if (isScope(curr)) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DVerifier.cpp871 static bool isScope(const Metadata *MD) { return !MD || isa<DIScope>(MD); } in isScope() function
936 AssertDI(isScope(N.getRawScope()), "invalid scope", &N, N.getRawScope()); in visitDIDerivedType()
978 AssertDI(isScope(N.getRawScope()), "invalid scope", &N, N.getRawScope()); in visitDICompositeType()
1105 AssertDI(isScope(N.getRawScope()), "invalid scope", &N, N.getRawScope()); in visitDISubprogram()