Home
last modified time | relevance | path

Searched refs:ControlFlow (Results 1 – 19 of 19) sorted by relevance

/external/javassist/src/test/test/javassist/bytecode/analysis/
DDomTreeTest.java4 import javassist.bytecode.analysis.ControlFlow;
5 import javassist.bytecode.analysis.ControlFlow.Block;
6 import javassist.bytecode.analysis.ControlFlow.Node;
13ControlFlow cf = new ControlFlow(pool.get(DomTreeTest.class.getName()).getDeclaredMethod("test1")); in testDomtree()
63ControlFlow cf = new ControlFlow(pool.get(DomTreeTest.class.getName()).getDeclaredMethod("test2")); in testDomtree2()
94ControlFlow cf = new ControlFlow(pool.get(DomTreeTest.class.getName()).getDeclaredMethod("test3")); in testDomtree3()
DDomTreePrinter.java4 import javassist.bytecode.analysis.ControlFlow;
5 import javassist.bytecode.analysis.ControlFlow.Block;
6 import javassist.bytecode.analysis.ControlFlow.Node;
11 ControlFlow cf = new ControlFlow(pool.get(args[0]).getDeclaredMethod(args[1])); in main()
/external/javassist/src/main/javassist/bytecode/analysis/
DControlFlow.java48 public class ControlFlow { class
57 public ControlFlow(CtMethod method) throws BadBytecode { in ControlFlow() method in ControlFlow
64 public ControlFlow(CtClass ctclazz, MethodInfo minfo) throws BadBytecode { in ControlFlow() method in ControlFlow
96 ControlFlow.Catcher[] catchers = b.catchers(); in ControlFlow()
/external/llvm-project/clang-tools-extra/clangd/unittests/tweaks/
DExtractFunctionTests.cpp148 TEST_F(ExtractFunctionTest, ControlFlow) { in TEST_F() argument
/external/llvm-project/clang/include/clang/Analysis/
DPathDiagnostic.h408 enum Kind { ControlFlow, Event, Macro, Call, Note, PopUp }; enumerator
644 : PathDiagnosticPiece(s, ControlFlow) { in PathDiagnosticControlFlowPiece()
650 : PathDiagnosticPiece(ControlFlow) { in PathDiagnosticControlFlowPiece()
699 return P->getKind() == ControlFlow; in classof()
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DPathDiagnostic.h339 enum Kind { ControlFlow, Event, Macro, Call }; enumerator
627 : PathDiagnosticPiece(s, ControlFlow) { in PathDiagnosticControlFlowPiece()
633 : PathDiagnosticPiece(ControlFlow) { in PathDiagnosticControlFlowPiece()
679 return P->getKind() == ControlFlow; in classof()
/external/llvm-project/mlir/include/mlir/Interfaces/
DControlFlowInterfaces.td1 //===-- ControlFlowInterfaces.td - ControlFlow Interfaces --*- tablegen -*-===//
178 // ControlFlow Traits
/external/apache-commons-bcel/
DTODO.JustIce41 successor more than one time. For performance reasons the ControlFlow-
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DSarifDiagnostics.cpp248 case PathDiagnosticPiece::ControlFlow: in calculateImportance()
DHTMLDiagnostics.cpp817 case PathDiagnosticPiece::ControlFlow: Kind = "Control"; break; in HandlePiece()
DPlistDiagnostics.cpp109 case PathDiagnosticPiece::ControlFlow: in ReportPiece()
DBugReporter.cpp409 case PathDiagnosticPiece::ControlFlow: in removeRedundantMsgs()
461 case PathDiagnosticPiece::ControlFlow: in removeUnneededCalls()
/external/clang/lib/StaticAnalyzer/Core/
DPlistDiagnostics.cpp268 case PathDiagnosticPiece::ControlFlow: in ReportPiece()
DHTMLDiagnostics.cpp392 case PathDiagnosticPiece::ControlFlow: Kind = "Control"; break; in HandlePiece()
DPathDiagnostic.cpp97 case PathDiagnosticPiece::ControlFlow: in flattenTo()
345 case clang::ento::PathDiagnosticPiece::ControlFlow: in comparePiece()
DBugReporter.cpp121 case clang::ento::PathDiagnosticPiece::ControlFlow: in removeRedundantMsgs()
198 case PathDiagnosticPiece::ControlFlow: in removeUnneededCalls()
/external/llvm-project/clang-tools-extra/clangd/
DXRefs.cpp1110 auto ControlFlow = relatedControlFlow(*N); in findDocumentHighlights() local
1111 if (!ControlFlow.empty()) { in findDocumentHighlights()
1112 for (SourceLocation Loc : ControlFlow) in findDocumentHighlights()
/external/llvm-project/clang/lib/Analysis/
DPathDiagnostic.cpp109 case PathDiagnosticPiece::ControlFlow: in flattenTo()
296 case PathDiagnosticPiece::ControlFlow: in comparePiece()
/external/llvm-project/clang-tools-extra/clangd/unittests/
DXRefsTests.cpp126 TEST(HighlightsTest, ControlFlow) { in TEST() argument