/third_party/skia/src/sksl/ir/ |
D | SkSLBlock.h | 24 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()
|
D | SkSLBlock.cpp | 55 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()
|
D | SkSLForStatement.cpp | 29 if (b.isScope()) { in is_vardecl_block_initializer()
|
D | SkSLSwitchStatement.cpp | 97 block.symbolTable(), block.isScope())); in move_all_but_break()
|
/third_party/skia/src/sksl/codegen/ |
D | SkSLPipelineStageCodeGenerator.cpp | 698 bool isScope = b.isScope() || b.isEmpty(); in writeBlock() local 699 if (isScope) { in writeBlock() 708 if (isScope) { in writeBlock()
|
D | SkSLGLSLCodeGenerator.cpp | 1266 bool isScope = b.isScope() || b.isEmpty(); in writeBlock() local 1267 if (isScope) { in writeBlock() 1277 if (isScope) { in writeBlock()
|
D | SkSLMetalCodeGenerator.cpp | 2138 bool isScope = b.isScope() || b.isEmpty(); in writeBlock() local 2139 if (isScope) { in writeBlock() 2149 if (isScope) { in writeBlock()
|
/third_party/skia/src/sksl/dsl/priv/ |
D | DSLWriter.cpp | 101 SkASSERT(!block.isScope()); in AddVarDeclaration()
|
/third_party/skia/src/sksl/ |
D | SkSLInliner.cpp | 151 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()
|
D | SkSLRehydrator.cpp | 320 bool isScope = this->readU8(); in statement() local 321 return Block::Make(/*line=*/-1, std::move(statements), fSymbolTable, isScope); in statement()
|
D | SkSLDehydrator.cpp | 453 this->writeU8(b.isScope()); in write()
|
D | SkSLAnalysis.cpp | 349 if (block.isScope() || block.children().empty()) { in DetectVarDeclarationWithoutScope()
|
/third_party/typescript/src/services/refactors/ |
D | extractSymbol.ts | 622 function isScope(node: Node): node is Scope { function 658 if (isScope(current)) { 1187 …if (node.parent.kind === SyntaxKind.ExpressionStatement && scope === findAncestor(node, isScope)) { 1480 if (isScope(curr)) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Verifier.cpp | 871 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()
|
/third_party/typescript/lib/ |
D | tsserver.js | 145165 function isScope(node) { function 145198 if (isScope(current)) { 145604 … (node.parent.kind === 235 /* ExpressionStatement */ && scope === ts.findAncestor(node, isScope)) { 145861 if (isScope(curr)) {
|
D | typescriptServices.js | 145734 function isScope(node) { function 145767 if (isScope(current)) { 146173 … (node.parent.kind === 235 /* ExpressionStatement */ && scope === ts.findAncestor(node, isScope)) { 146430 if (isScope(curr)) {
|
D | tsserverlibrary.js | 145734 function isScope(node) { function 145767 if (isScope(current)) { 146173 … (node.parent.kind === 235 /* ExpressionStatement */ && scope === ts.findAncestor(node, isScope)) { 146430 if (isScope(curr)) {
|
D | typescript.js | 145734 function isScope(node) { function 145767 if (isScope(current)) { 146173 … (node.parent.kind === 235 /* ExpressionStatement */ && scope === ts.findAncestor(node, isScope)) { 146430 if (isScope(curr)) {
|