Searched refs:analysis (Results 1 - 25 of 35) sorted by relevance

12

/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/tree/analysis/
H A DValue.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
H A DAnalyzerException.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
64 * Thrown if a problem occurs during the analysis of a method.
H A DSourceValue.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
H A DInterpreter.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
75 * type of the Value used for the analysis.
H A DBasicValue.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
H A DSubroutine.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
H A DSmallSet.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
H A DSourceInterpreter.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
H A DSimpleVerifier.java59 package jdk.internal.org.objectweb.asm.tree.analysis;
/openjdk10/nashorn/samples/
H A Djava_completion.js38 var analysis = repl.sourceCodeAnalysis()
40 var suggestions = analysis.completionSuggestions(code, code.length, [0])
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/axes/
H A DWalkerFactory.java42 * which are built from the opcode map output, and an analysis engine
105 int analysis = analyze(compiler, stepOpCodePos, stepIndex);
109 walker = createDefaultWalker(compiler, stepOpCodePos, lpi, analysis);
114 // walker.setAnalysis(analysis);
135 public static boolean isSet(int analysis, int bits) argument
137 return (0 != (analysis & bits));
140 public static void diagnoseIterator(String name, int analysis, Compiler compiler) argument
143 + Integer.toBinaryString(analysis) + ", "
144 + getAnalysisString(analysis));
149 * returned is based on an analysis o
979 createDefaultStepPattern( Compiler compiler, int opPos, MatchPatternIterator mpi, int analysis, StepPattern tail, StepPattern head) argument
1165 createDefaultWalker(Compiler compiler, int opPos, WalkingIterator lpi, int analysis) argument
1284 getAnalysisString(int analysis) argument
1368 hasPredicate(int analysis) argument
1373 isWild(int analysis) argument
1378 walksAncestors(int analysis) argument
1383 walksAttributes(int analysis) argument
1388 walksNamespaces(int analysis) argument
1393 walksChildren(int analysis) argument
1398 walksDescendants(int analysis) argument
1403 walksSubtree(int analysis) argument
1408 walksSubtreeOnlyMaybeAbsolute(int analysis) argument
1417 walksSubtreeOnly(int analysis) argument
1424 walksFilteredList(int analysis) argument
1429 walksSubtreeOnlyFromRootOrContext(int analysis) argument
1439 walksInDocOrder(int analysis) argument
1448 walksFollowingOnlyMaybeAbsolute(int analysis) argument
1457 walksUp(int analysis) argument
1462 walksSideways(int analysis) argument
1468 walksExtraNodes(int analysis) argument
1473 walksExtraNodesOnly(int analysis) argument
1484 isAbsolute(int analysis) argument
1489 walksChildrenOnly(int analysis) argument
1501 walksChildrenAndExtraAndSelfOnly(int analysis) argument
1511 walksDescendantsAndExtraAndSelfOnly(int analysis) argument
1521 walksSelfOnly(int analysis) argument
1532 walksUpOnly(int analysis) argument
1541 walksDownOnly(int analysis) argument
1550 walksDownExtraOnly(int analysis) argument
1559 canSkipSubtrees(int analysis) argument
1564 canCrissCross(int analysis) argument
1598 isNaturalDocOrder(int analysis) argument
1624 isNaturalDocOrder( Compiler compiler, int stepOpCodePos, int stepIndex, int analysis) argument
1722 isOneStep(int analysis) argument
1727 getStepCount(int analysis) argument
[all...]
H A DWalkingIteratorSorted.java70 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
73 super(compiler, opPos, analysis, shouldLoadWalkers);
89 * Tell if the nodeset can be walked in doc order, via static analysis.
188 * This function is used to perform some extra analysis of the iterator.
201 int analysis = getAnalysisBits();
202 if(WalkerFactory.isNaturalDocOrder(analysis))
210 // WalkerFactory.getAnalysisString(analysis));
69 WalkingIteratorSorted( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DAttributeIterator.java46 AttributeIterator(Compiler compiler, int opPos, int analysis) argument
49 super(compiler, opPos, analysis);
H A DBasicTestIterator.java74 protected BasicTestIterator(Compiler compiler, int opPos, int analysis) argument
77 super(compiler, opPos, analysis, false);
113 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
116 super(compiler, opPos, analysis, shouldLoadWalkers);
112 BasicTestIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DMatchPatternIterator.java70 * @param analysis Analysis bits that give general information about the
75 MatchPatternIterator(Compiler compiler, int opPos, int analysis) argument
79 super(compiler, opPos, analysis, false);
90 if (0 != (analysis & (WalkerFactory.BIT_ROOT |
94 if (0 != (analysis
104 if (0 != (analysis
110 if (0 != (analysis
116 System.out.print("analysis: "+Integer.toBinaryString(analysis));
117 System.out.println(", "+WalkerFactory.getAnalysisString(analysis));
[all...]
H A DChildTestIterator.java55 ChildTestIterator(Compiler compiler, int opPos, int analysis) argument
58 super(compiler, opPos, analysis);
H A DChildIterator.java46 * @param analysis Analysis bits of the entire pattern.
50 ChildIterator(Compiler compiler, int opPos, int analysis) argument
53 super(compiler, opPos, analysis, false);
H A DOneStepIteratorForward.java53 OneStepIteratorForward(Compiler compiler, int opPos, int analysis) argument
56 super(compiler, opPos, analysis);
H A DSelfIteratorNoPredicate.java44 * @param analysis Analysis bits.
48 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis) argument
51 super(compiler, opPos, analysis, false);
H A DOneStepIterator.java57 OneStepIterator(Compiler compiler, int opPos, int analysis) argument
60 super(compiler, opPos, analysis);
H A DWalkingIterator.java56 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
59 super(compiler, opPos, analysis, shouldLoadWalkers);
84 * Get the analysis bits for this walker, as defined in the WalkerFactory.
55 WalkingIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DDescendantIterator.java55 DescendantIterator(Compiler compiler, int opPos, int analysis) argument
59 super(compiler, opPos, analysis, false);
100 if((analysis & WalkerFactory.BIT_CHILD) != 0)
H A DLocPathIterator.java89 protected LocPathIterator(Compiler compiler, int opPos, int analysis) argument
92 this(compiler, opPos, analysis, true);
111 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
118 * Get the analysis bits for this walker, as defined in the WalkerFactory.
899 // * Get the analysis pattern built by the WalkerFactory.
901 // * @return The analysis pattern built by the WalkerFactory.
909 // * Set the analysis pattern built by the WalkerFactory.
911 // * @param a The analysis pattern built by the WalkerFactory.
1020 // * The analysis pattern built by the WalkerFactory.
110 LocPathIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/
H A DClassLoaderStats.java133 // compute reverse pointer analysis (takes long time for larger app)
134 ReversePtrsAnalysis analysis = new ReversePtrsAnalysis();
137 analysis.setHeapProgressThunk(new HeapProgressThunk() {
149 analysis.run();
153 err.println("liveness analysis may be inaccurate ...");
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DConsoleIOContext.java115 return repl.analysis.analyzeCompletion(input.toString()).completeness().isComplete();
225 suggestions = repl.analysis.completionSuggestions(prefix + text, cursor + prefixLength, anchor);
227 doc = repl.analysis.documentation(prefix + text, cursor + prefix.length(), false)
641 List<String> doc = repl.analysis.documentation(prefix + text, cursor + prefix.length(), true)
891 String type = repl.analysis.analyzeType(code, cursor);
910 QualifiedNames res = repl.analysis.listQualifiedNames(stype, stype.length());
957 final CompletionInfo ci = repl.analysis.analyzeCompletion(codeToCursor);
973 List<Snippet> snl = repl.analysis.sourceToSnippets(ci.source());
1015 QualifiedNames res = repl.analysis.listQualifiedNames(stype, stype.length());
1040 QualifiedNames res = repl.analysis
[all...]

Completed in 120 milliseconds

12