HomeSort by relevance Sort by last modified time
    Searched refs:analysis (Results 1 - 25 of 28) sorted by null

1 2

  /libcore/luni/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 41 * which are built from the opcode map output, and an analysis engine
104 int analysis = analyze(compiler, stepOpCodePos, stepIndex); local
108 walker = createDefaultWalker(compiler, stepOpCodePos, lpi, analysis);
113 // walker.setAnalysis(analysis);
134 public static boolean isSet(int analysis, int bits)
136 return (0 != (analysis & bits));
139 public static void diagnoseIterator(String name, int analysis, Compiler compiler)
142 + Integer.toBinaryString(analysis) + ", "
143 + getAnalysisString(analysis));
148 * returned is based on an analysis of the XPath operations
165 int analysis = analyze(compiler, firstStepPos, 0); local
832 int analysis = analyze(compiler, stepOpCodePos, stepIndex); local
    [all...]
AttributeIterator.java 45 AttributeIterator(Compiler compiler, int opPos, int analysis)
48 super(compiler, opPos, analysis);
WalkingIteratorSorted.java 69 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
72 super(compiler, opPos, analysis, shouldLoadWalkers);
88 * Tell if the nodeset can be walked in doc order, via static analysis.
187 * This function is used to perform some extra analysis of the iterator.
200 int analysis = getAnalysisBits(); local
201 if(WalkerFactory.isNaturalDocOrder(analysis))
209 // WalkerFactory.getAnalysisString(analysis));
SelfIteratorNoPredicate.java 43 * @param analysis Analysis bits.
47 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis)
50 super(compiler, opPos, analysis, false);
BasicTestIterator.java 73 protected BasicTestIterator(Compiler compiler, int opPos, int analysis)
76 super(compiler, opPos, analysis, false);
112 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
115 super(compiler, opPos, analysis, shouldLoadWalkers);
ChildIterator.java 45 * @param analysis Analysis bits of the entire pattern.
49 ChildIterator(Compiler compiler, int opPos, int analysis)
52 super(compiler, opPos, analysis, false);
ChildTestIterator.java 54 ChildTestIterator(Compiler compiler, int opPos, int analysis)
57 super(compiler, opPos, analysis);
MatchPatternIterator.java 69 * @param analysis Analysis bits that give general information about the
74 MatchPatternIterator(Compiler compiler, int opPos, int analysis)
78 super(compiler, opPos, analysis, false);
89 if (0 != (analysis & (WalkerFactory.BIT_ROOT |
93 if (0 != (analysis
103 if (0 != (analysis
109 if (0 != (analysis
115 System.out.print("analysis: "+Integer.toBinaryString(analysis));
    [all...]
OneStepIteratorForward.java 52 OneStepIteratorForward(Compiler compiler, int opPos, int analysis)
55 super(compiler, opPos, analysis);
OneStepIterator.java 56 OneStepIterator(Compiler compiler, int opPos, int analysis)
59 super(compiler, opPos, analysis);
WalkingIterator.java 55 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
58 super(compiler, opPos, analysis, shouldLoadWalkers);
83 * Get the analysis bits for this walker, as defined in the WalkerFactory.
DescendantIterator.java 53 DescendantIterator(Compiler compiler, int opPos, int analysis)
57 super(compiler, opPos, analysis, false);
98 if((analysis & WalkerFactory.BIT_CHILD) != 0)
LocPathIterator.java 88 protected LocPathIterator(Compiler compiler, int opPos, int analysis)
91 this(compiler, opPos, analysis, true);
110 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
117 * Get the analysis bits for this walker, as defined in the WalkerFactory.
898 // * Get the analysis pattern built by the WalkerFactory.
900 // * @return The analysis pattern built by the WalkerFactory.
908 // * Set the analysis pattern built by the WalkerFactory.
910 // * @param a The analysis pattern built by the WalkerFactory.
1019 // * The analysis pattern built by the WalkerFactory.
  /external/webkit/WebCore/platform/graphics/gtk/
GlyphPageTreeNodePango.cpp 52 PangoFont* tmpFont = item->analysis.font;
53 item->analysis.font = font;
56 pango_shape(buffer, length, &item->analysis, glyphs);
58 item->analysis.font = tmpFont;
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/rules/
Rule.java 23 * Interface that define an analysis rule.
35 * issue to the analysis.
37 * @param analysis The resulting analysis.
40 void run(LayoutAnalysis analysis, Node node);
GroovyRule.java 61 public void run(LayoutAnalysis analysis, Node node) {
62 mBinding.setVariable("analysis", analysis);
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/
LayoutAnalysisCategory.java 187 * analysis << "The issue"
189 * @return The analysis itself to chain calls.
191 public static LayoutAnalysis leftShift(LayoutAnalysis analysis, GString description) {
192 analysis.addIssue(description.toString());
193 return analysis;
197 * analysis << "The issue"
199 * @return The analysis itself to chain calls.
201 public static LayoutAnalysis leftShift(LayoutAnalysis analysis, String description) {
202 analysis.addIssue(description);
203 return analysis;
    [all...]
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/
LayoutAnalyzer.java 47 * Analysis engine used to discover inefficiencies in Android XML
217 LayoutAnalysis analysis = new LayoutAnalysis(name); local
221 analyze(analysis, root);
223 analysis.validate();
226 return analysis;
229 private void analyze(LayoutAnalysis analysis, Node node) {
233 applyRules(analysis, node);
238 analyze(analysis, child);
243 private void applyRules(LayoutAnalysis analysis, Node node) {
244 analysis.setCurrentNode(node)
    [all...]
  /sdk/layoutopt/app/src/com/android/layoutopt/cli/
Main.java 61 LayoutAnalysis analysis = analyzer.analyze(file); local
62 System.out.println(analysis.getName());
63 for (LayoutAnalysis.Issue issue : analysis.getIssues()) {
  /external/webkit/WebCore/platform/wx/wxcode/gtk/
non-kerned-drawing.cpp 162 PangoFont* tmpFont = item->analysis.font;
163 item->analysis.font = font;
166 pango_shape(buffer, length, &item->analysis, glyphs);
168 item->analysis.font = tmpFont;
  /dalvik/vm/
Dvm.mk 139 analysis/CodeVerify.c \
140 analysis/DexPrepare.c \
141 analysis/DexVerify.c \
142 analysis/Optimize.c \
143 analysis/RegisterMap.c \
144 analysis/VerifySubs.c \
  /libcore/luni/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 1057 int analysis = path.getAnalysisBits(); local
    [all...]
  /external/blktrace/btt/doc/
btt.tex 483 M*tif.''}, but is easy to parse for other plotting and/or analysis
570 some real-world analysis\footnote{Note the logarithmic nature of the
586 some real-world analysis\footnote{Note the logarithmic nature of the
    [all...]
  /external/v8/src/
jsregexp.cc     [all...]
  /external/libxml2/
xpath.c     [all...]

Completed in 2553 milliseconds

1 2