/external/llvm/lib/IR/ |
D | DebugInfo.cpp | 58 processScope(DIG->getScope()); in processModule() 76 processScope(NS->getScope()); in processModule() 78 processScope(M->getScope()); in processModule() 89 processScope(Loc->getScope()); in processLocation() 96 processScope(DT->getScope().resolve()); in processType() 135 processScope(LB->getScope()); in processScope() 137 processScope(NS->getScope()); in processScope() 139 processScope(M->getScope()); in processScope() 146 processScope(SP->getScope().resolve()); in processSubprogram() 169 processScope(DV->getScope()); in processDeclare() [all …]
|
D | DebugLoc.cpp | 35 MDNode *DebugLoc::getScope() const { in getScope() function in DebugLoc 37 return get()->getScope(); in getScope() 90 auto *Scope = cast<DIScope>(getScope()); in print()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/naming/ |
D | NameLogicTest.java | 419 .getScope())); // a.b.c.D in identifyNamesInSimpleExamples() 421 .getScope().asFieldAccessExpr() in identifyNamesInSimpleExamples() 422 .getScope())); // a.b.c in identifyNamesInSimpleExamples() 424 .getScope().asFieldAccessExpr() in identifyNamesInSimpleExamples() 425 .getScope().asFieldAccessExpr() in identifyNamesInSimpleExamples() 426 .getScope())); // a.b in identifyNamesInSimpleExamples() 428 .getScope().asFieldAccessExpr() in identifyNamesInSimpleExamples() 429 .getScope().asFieldAccessExpr() in identifyNamesInSimpleExamples() 430 .getScope().asFieldAccessExpr() in identifyNamesInSimpleExamples() 431 .getScope())); // a in identifyNamesInSimpleExamples() [all …]
|
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/nodeTypes/ |
D | NodeWithOptionalScopeTest.java | 16 assertTrue(methodCallExpr.getScope().isPresent()); in commonExpressionWhichHaveInterfaceNodeWithOptionalScope() 17 assertFalse(objectCreationExpr.getScope().isPresent()); in commonExpressionWhichHaveInterfaceNodeWithOptionalScope() 26 assertFalse(methodCallExpr.getScope().isPresent()); in removeScope()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | DebugLoc.cpp | 35 MDNode *DebugLoc::getScope() const { in getScope() function in DebugLoc 37 return get()->getScope(); in getScope() 109 Ctx, MD->getLine(), MD->getColumn(), MD->getScope(), Last); in appendInlinedAt() 123 auto *Scope = cast<DIScope>(getScope()); in print()
|
D | DebugInfoMetadata.cpp | 90 DIScope *S = LocA->getScope(); in getMergedLocation() 94 S = S->getScope(); in getMergedLocation() 96 S = L->getScope(); in getMergedLocation() 101 S = LocB->getScope(); in getMergedLocation() 106 S = S->getScope(); in getMergedLocation() 108 S = L->getScope(); in getMergedLocation() 116 S = LocA->getScope(); in getMergedLocation() 215 DIScope *DIScope::getScope() const { in getScope() function in DIScope 217 return T->getScope(); in getScope() 220 return SP->getScope(); in getScope() [all …]
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/naming/ |
D | NameLogic.java | 60 return isAName(fieldAccessExpr.getScope()); in isAName() 72 return fieldAccessExpr.getScope(); in getQualifier() 167 (p.getScope().isPresent() && p.getScope().get() == c))) { in classifyRole() 182 … if (whenParentIs(FieldAccessExpr.class, name, (p, c) -> p.getName() == c || p.getScope() == c)) { in classifyRole() 275 (p.getScope().isPresent() && p.getScope().get() == c))) { in classifyRole() 538 if (whenParentIs(FieldAccessExpr.class, name, (p, c) -> p.getScope() == c)) { in isSyntacticallyAAmbiguousName() 544 …if (whenParentIs(MethodCallExpr.class, name, (p, c) -> p.getScope().isPresent() && p.getScope().ge… in isSyntacticallyAAmbiguousName() 567 …henParentIs(ClassOrInterfaceType.class, name, (p, c) -> p.getScope().isPresent() && p.getScope().g… in isSyntacticallyAPackageOrTypeName() 826 p2.getScope() == c2) in isSyntacticallyATypeName() 866 ne.getScope().isPresent() && ne.getScope().get() == c2) in isSyntacticallyAnExpressionName() [all …]
|
/external/llvm/tools/opt/ |
D | BreakpointPrinter.cpp | 34 getContextName(NS->getScope(), N); in getContextName() 39 getContextName(TY->getScope().resolve(), N); in getContextName() 53 getContextName(SP->getScope().resolve(), Name); in runOnModule()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_javaparsermodel_TypeExtractor.txt | 63 Line 180) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 64 Line 181) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 65 Line 182) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 73 Line 189) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 74 …Line 192) facade.solve((ThisExpr) node.getScope()) ==> com.github.javaparser.symbolsolver.javapars… 75 Line 192) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 80 Line 201) node.getScope().toString().indexOf('.') ==> java.lang.String.indexOf(int) 81 Line 201) node.getScope().toString() ==> com.github.javaparser.ast.Node.toString() 82 Line 201) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 83 …Line 203) typeSolver.tryToSolveType(node.getScope().toString()) ==> com.github.javaparser.symbolso… [all …]
|
D | com_github_javaparser_symbolsolver_javaparsermodel_TypeExtractor_J9.txt | 63 Line 180) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 64 Line 181) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 65 Line 182) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 73 Line 189) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 74 …Line 192) facade.solve((ThisExpr) node.getScope()) ==> com.github.javaparser.symbolsolver.javapars… 75 Line 192) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 80 Line 201) node.getScope().toString().indexOf('.') ==> java.lang.String.indexOf(int) 81 Line 201) node.getScope().toString() ==> com.github.javaparser.ast.Node.toString() 82 Line 201) node.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 83 …Line 203) typeSolver.tryToSolveType(node.getScope().toString()) ==> com.github.javaparser.symbolso… [all …]
|
D | com_github_javaparser_symbolsolver_javaparsermodel_contexts_FieldAccessContext.txt | 4 Line 53) wrappedNode.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope() 19 Line 73) wrappedNode.getScope() ==> com.github.javaparser.ast.expr.FieldAccessExpr.getScope()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/ |
D | NodeWithScope.java | 34 Expression getScope(); in getScope() method 39 return Optional.of(getScope()); in traverseScope()
|
D | NodeWithOptionalScope.java | 34 Optional<Expression> getScope(); in getScope() method 41 return getScope(); in traverseScope()
|
/external/llvm/lib/Transforms/Scalar/ |
D | ADCE.cpp | 47 collectLiveScopes(cast<DILocalScope>(*LS.getScope()), AliveScopes); in collectLiveScopes() 58 collectLiveScopes(*DL.getScope(), AliveScopes); in collectLiveScopes() 120 if (AliveScopes.count(DII->getDebugLoc()->getScope())) in aggressiveDCE()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | TypeExtractor.java | 180 if (node.getScope() instanceof NameExpr || in visit() 181 node.getScope() instanceof FieldAccessExpr) { in visit() 182 Expression staticValue = node.getScope(); in visit() 189 } else if (node.getScope()instanceof ThisExpr){ in visit() 192 SymbolReference<TypeDeclaration> solve = facade.solve((ThisExpr) node.getScope()); in visit() 201 } else if (node.getScope().toString().indexOf('.') > 0) { in visit() 203 …SymbolReference<ReferenceTypeDeclaration> sr = typeSolver.tryToSolveType(node.getScope().toString(… in visit() 373 if (callExpr.getScope().isPresent()) { in visit() 374 Expression scope = callExpr.getScope().get(); in visit()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/ |
D | TypeExtractor.java | 175 if (node.getScope() instanceof NameExpr || in visit() 176 node.getScope() instanceof FieldAccessExpr) { in visit() 177 Expression staticValue = node.getScope(); in visit() 184 } else if (node.getScope() instanceof ThisExpr) { in visit() 187 … SymbolReference<ResolvedTypeDeclaration> solve = facade.solve((ThisExpr) node.getScope()); in visit() 196 } else if (node.getScope().toString().indexOf('.') > 0) { in visit() 198 …rence<ResolvedReferenceTypeDeclaration> sr = typeSolver.tryToSolveType(node.getScope().toString()); in visit() 366 if (callExpr.getScope().isPresent()) { in visit() 367 Expression scope = callExpr.getScope().get(); in visit()
|
/external/guice/core/src/com/google/inject/internal/ |
D | ScopeBindingProcessor.java | 39 Scope scope = checkNotNull(command.getScope(), "scope"); in visit() 55 if (!scope.equals(existing.getScope())) { in visit()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/contexts/ |
D | FieldAccessContext.java | 52 if (wrappedNode.getScope() instanceof ThisExpr) { in solveSymbol() 72 Expression scope = wrappedNode.getScope(); in solveSymbolAsValue() 96 …esolvedReferenceTypeDeclaration> rrtds = findTypeDeclarations(Optional.of(wrappedNode.getScope())); in solveField()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 414 DIScope *getScope() const; 628 DIScope *getScope() const { return cast_or_null<DIScope>(getRawScope()); } in getScope() function 794 getScope(), getBaseType(), getSizeInBits(), in cloneImpl() 940 getScope(), getBaseType(), getSizeInBits(), in cloneImpl() 1435 DILocalScope *getScope() const { return cast<DILocalScope>(getRawScope()); } in getScope() function 1450 DIFile *getFile() const { return getScope()->getFile(); } in getFile() 1451 StringRef getFilename() const { return getScope()->getFilename(); } in getFilename() 1452 StringRef getDirectory() const { return getScope()->getDirectory(); } in getDirectory() 1453 Optional<StringRef> getSource() const { return getScope()->getSource(); } in getSource() 1462 return getScope(); in getInlinedAtScope() [all …]
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/ |
D | PropertyBasedObjectIdGenerator.java | 18 this(oid.getScope(), prop); in PropertyBasedObjectIdGenerator() 35 if (other.getScope() == _scope) { in canUseFor()
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 413 DIScopeRef getScope() const; 553 DIScopeRef getScope() const { return DIScopeRef(getRawScope()); } 697 getScope(), getBaseType(), getSizeInBits(), 815 getScope(), getBaseType(), getSizeInBits(), 1217 DILocalScope *getScope() const { return cast<DILocalScope>(getRawScope()); } 1222 DIFile *getFile() const { return getScope()->getFile(); } 1223 StringRef getFilename() const { return getScope()->getFilename(); } 1224 StringRef getDirectory() const { return getScope()->getDirectory(); } 1233 return getScope(); 1346 getContext(), getScope(), getName(), getLinkageName(), getFile(), [all …]
|
/external/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 336 auto *OldSubprogram = cast<DISubprogram>(OldDL.getScope()); in TEST_F() 337 auto *NewSubprogram = cast<DISubprogram>(NewDL.getScope()); in TEST_F() 374 cast<DISubprogram>(OldIntrin->getVariable()->getScope())); in TEST_F() 377 cast<DISubprogram>(NewIntrin->getVariable()->getScope())); in TEST_F() 384 cast<DISubprogram>(OldIntrin->getVariable()->getScope())); in TEST_F() 387 cast<DISubprogram>(NewIntrin->getVariable()->getScope())); in TEST_F()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 124 DILocalScope *Scope = DL->getScope(); in findLexicalScope() 170 Parent = getOrCreateLexicalScope(Block->getScope()); in getOrCreateRegularScope() 198 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt); in getOrCreateInlinedScope() 221 Parent = getOrCreateAbstractScope(Block->getScope()); in getOrCreateAbstractScope()
|
/external/llvm/lib/CodeGen/ |
D | LexicalScopes.cpp | 110 DILocalScope *Scope = DL->getScope(); in findLexicalScope() 152 Parent = getOrCreateLexicalScope(Block->getScope()); in getOrCreateRegularScope() 180 Parent = getOrCreateInlinedScope(Block->getScope(), InlinedAt); in getOrCreateInlinedScope() 204 Parent = getOrCreateAbstractScope(Block->getScope()); in getOrCreateAbstractScope()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIMemoryLegalizer.cpp | 154 SIAtomicScope getScope() const { in getScope() function in __anond8d13b300111::SIMemOpInfo 1145 Changed |= CC->enableLoadCacheBypass(MI, MOI.getScope(), in expandLoad() 1150 Changed |= CC->insertWait(MI, MOI.getScope(), in expandLoad() 1158 Changed |= CC->insertWait(MI, MOI.getScope(), in expandLoad() 1163 Changed |= CC->insertCacheInvalidate(MI, MOI.getScope(), in expandLoad() 1189 Changed |= CC->insertWait(MI, MOI.getScope(), in expandStore() 1226 Changed |= CC->insertWait(MI, MOI.getScope(), in expandAtomicFence() 1235 Changed |= CC->insertCacheInvalidate(MI, MOI.getScope(), in expandAtomicFence() 1256 Changed |= CC->insertWait(MI, MOI.getScope(), in expandAtomicCmpxchgOrRmw() 1267 Changed |= CC->insertWait(MI, MOI.getScope(), in expandAtomicCmpxchgOrRmw() [all …]
|