Searched defs:compiler (Results 1 - 25 of 508) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DAttributeIterator.java24 import org.apache.xpath.compiler.Compiler;
39 * @param compiler A reference to the Compiler that contains the op map.
45 AttributeIterator(Compiler compiler, int opPos, int analysis) argument
48 super(compiler, opPos, analysis);
H A DAxesWalker.java33 import org.apache.xpath.compiler.Compiler;
64 * @param compiler The Compiler object that has information about this
71 public void init(Compiler compiler, int opPos, int stepType) argument
75 initPredicateInfo(compiler, opPos);
77 // int testType = compiler.getOp(nodeTestOpPos);
H A DBasicTestIterator.java27 import org.apache.xpath.compiler.Compiler;
28 import org.apache.xpath.compiler.OpMap;
66 * @param compiler The Compiler which is creating
69 * opcode list from the compiler.
73 protected BasicTestIterator(Compiler compiler, int opPos, int analysis) argument
76 super(compiler, opPos, analysis, false);
79 int whatToShow = compiler.getWhatToShow(firstStepPos);
90 initNodeTest(whatToShow, compiler.getStepNS(firstStepPos),
91 compiler.getStepLocalName(firstStepPos));
93 initPredicateInfo(compiler, firstStepPo
111 BasicTestIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
[all...]
H A DChildIterator.java26 import org.apache.xpath.compiler.Compiler;
42 * @param compiler A reference to the Compiler that contains the op map.
49 ChildIterator(Compiler compiler, int opPos, int analysis) argument
52 super(compiler, opPos, analysis, false);
H A DChildTestIterator.java27 import org.apache.xpath.compiler.Compiler;
48 * @param compiler A reference to the Compiler that contains the op map.
54 ChildTestIterator(Compiler compiler, int opPos, int analysis) argument
57 super(compiler, opPos, analysis);
H A DDescendantIterator.java30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
32 import org.apache.xpath.compiler.OpMap;
47 * @param compiler A reference to the Compiler that contains the op map.
53 DescendantIterator(Compiler compiler, int opPos, int analysis) argument
57 super(compiler, opPos, analysis, false);
60 int stepType = compiler.getOp(firstStepPos);
73 int nextStepPos = compiler.getNextStepPos(firstStepPos);
74 if(compiler.getOp(nextStepPos) == OpCodes.FROM_DESCENDANTS_OR_SELF)
83 nextStepPos = compiler
[all...]
H A DFilterExprWalker.java30 import org.apache.xpath.compiler.Compiler;
31 import org.apache.xpath.compiler.OpCodes;
56 * @param compiler non-null reference to the Compiler that is constructing.
62 public void init(Compiler compiler, int opPos, int stepType) argument
66 super.init(compiler, opPos, stepType);
76 m_expr = compiler.compile(opPos);
86 m_expr = compiler.compile(opPos + 2);
H A DLocPathIterator.java32 import org.apache.xpath.compiler.Compiler;
81 * @param compiler The Compiler which is creating
84 * opcode list from the compiler.
88 protected LocPathIterator(Compiler compiler, int opPos, int analysis) argument
91 this(compiler, opPos, analysis, true);
99 * @param compiler The Compiler which is creating
102 * opcode list from the compiler.
110 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
109 LocPathIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DMatchPatternIterator.java28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.OpMap;
65 * @param compiler The Compiler which is creating
68 * opcode list from the compiler.
74 MatchPatternIterator(Compiler compiler, int opPos, int analysis) argument
78 super(compiler, opPos, analysis, false);
82 m_pattern = WalkerFactory.loadSteps(this, compiler, firstStepPos, 0);
223 // Yuck. Just to shut up the compiler!
H A DOneStepIterator.java29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpMap;
50 * @param compiler A reference to the Compiler that contains the op map.
56 OneStepIterator(Compiler compiler, int opPos, int analysis) argument
59 super(compiler, opPos, analysis);
62 m_axis = WalkerFactory.getAxisFromStep(compiler, firstStepPos);
H A DOneStepIteratorForward.java26 import org.apache.xpath.compiler.Compiler;
27 import org.apache.xpath.compiler.OpMap;
46 * @param compiler A reference to the Compiler that contains the op map.
52 OneStepIteratorForward(Compiler compiler, int opPos, int analysis) argument
55 super(compiler, opPos, analysis);
58 m_axis = WalkerFactory.getAxisFromStep(compiler, firstStepPos);
H A DPredicatedNodeTest.java30 import org.apache.xpath.compiler.Compiler;
153 * @param compiler The Compiler object that has information about this
159 protected void initPredicateInfo(Compiler compiler, int opPos) argument
163 int pos = compiler.getFirstPredicateOpPos(opPos);
167 m_predicates = compiler.getCompiledPredicates(pos);
H A DSelfIteratorNoPredicate.java25 import org.apache.xpath.compiler.Compiler;
40 * @param compiler A reference to the Compiler that contains the op map.
47 SelfIteratorNoPredicate(Compiler compiler, int opPos, int analysis) argument
50 super(compiler, opPos, analysis, false);
H A DUnionPathIterator.java29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpCodes;
31 import org.apache.xpath.compiler.OpMap;
149 * @param compiler The Compiler which is creating
152 * opcode list from the compiler.
156 public UnionPathIterator(Compiler compiler, int opPos) argument
164 loadLocationPaths(compiler, opPos, 0);
170 * @param compiler The Compiler which is creating
173 * opcode list from the compiler.
179 public static LocPathIterator createUnionIterator(Compiler compiler, in argument
310 createDTMIterator( Compiler compiler, int opPos) argument
329 loadLocationPaths(Compiler compiler, int opPos, int count) argument
[all...]
H A DWalkerFactory.java28 import org.apache.xpath.compiler.Compiler;
29 import org.apache.xpath.compiler.FunctionTable;
30 import org.apache.xpath.compiler.OpCodes;
31 import org.apache.xpath.compiler.OpMap;
51 * @param compiler non-null reference to compiler object that has processed
61 WalkingIterator lpi, Compiler compiler, int stepOpCodePos)
66 int stepType = compiler.getOp(stepOpCodePos);
73 firstWalker = createDefaultWalker(compiler, stepType, lpi, 0);
75 firstWalker.init(compiler, stepOpCodePo
60 loadOneWalker( WalkingIterator lpi, Compiler compiler, int stepOpCodePos) argument
95 loadWalkers( WalkingIterator lpi, Compiler compiler, int stepOpCodePos, int stepIndex) argument
139 diagnoseIterator(String name, int analysis, Compiler compiler) argument
158 newDTMIterator( Compiler compiler, int opPos, boolean isTopLevel) argument
300 getAxisFromStep( Compiler compiler, int stepOpCodePos) argument
400 functionProximateOrContainsProximate(Compiler compiler, int opPos) argument
430 isProximateInnerExpr(Compiler compiler, int opPos) argument
473 mightBeProximate(Compiler compiler, int opPos, int stepType) argument
556 isOptimizableForDescendantIterator( Compiler compiler, int stepOpCodePos, int stepIndex) argument
664 analyze( Compiler compiler, int stepOpCodePos, int stepIndex) argument
819 loadSteps( MatchPatternIterator mpi, Compiler compiler, int stepOpCodePos, int stepIndex) argument
978 createDefaultStepPattern( Compiler compiler, int opPos, MatchPatternIterator mpi, int analysis, StepPattern tail, StepPattern head) argument
1127 analyzePredicate(Compiler compiler, int opPos, int stepType) argument
1164 createDefaultWalker(Compiler compiler, int opPos, WalkingIterator lpi, int analysis) argument
1623 isNaturalDocOrder( Compiler compiler, int stepOpCodePos, int stepIndex, int analysis) argument
[all...]
H A DWalkingIterator.java29 import org.apache.xpath.compiler.Compiler;
30 import org.apache.xpath.compiler.OpMap;
44 * @param compiler The Compiler which is creating
47 * opcode list from the compiler.
55 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
58 super(compiler, opPos, analysis, shouldLoadWalkers);
64 m_firstWalker = WalkerFactory.loadWalkers(this, compiler, firstStepPos, 0);
54 WalkingIterator( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
H A DWalkingIteratorSorted.java25 import org.apache.xpath.compiler.Compiler;
58 * @param compiler The Compiler which is creating
61 * opcode list from the compiler.
69 Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers)
72 super(compiler, opPos, analysis, shouldLoadWalkers);
68 WalkingIteratorSorted( Compiler compiler, int opPos, int analysis, boolean shouldLoadWalkers) argument
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java21 package org.apache.xpath.compiler;
H A DFunctionTable.java21 package org.apache.xpath.compiler;
320 * values found in {@link org.apache.xpath.compiler.FunctionTable}, but may
348 * found in {@link org.apache.xpath.compiler.FunctionTable}, but may be a
H A DKeywords.java21 package org.apache.xpath.compiler;
H A DLexer.java21 package org.apache.xpath.compiler;
75 * @param compiler The owning compiler for this lexer.
80 Lexer(Compiler compiler, PrefixResolver resolver, argument
84 m_compiler = compiler;
H A DOpCodes.java21 package org.apache.xpath.compiler;
H A DOpMap.java21 package org.apache.xpath.compiler;
H A DOpMapVector.java22 package org.apache.xpath.compiler;

Completed in 1710 milliseconds

1234567891011>>