Searched defs:compiler (Results 1 - 25 of 30) sorted by relevance

12

/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
H A DXPathDumper.java21 package org.apache.xpath.compiler;
H A DPsuedoNames.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 DOpMapVector.java22 package org.apache.xpath.compiler;
H A DOpMap.java21 package org.apache.xpath.compiler;
H A DXPathParser.java21 package org.apache.xpath.compiler;
94 * @param compiler The compiler object.
102 Compiler compiler, String expression, PrefixResolver namespaceContext)
106 m_ops = compiler;
108 m_functionTable = compiler.getFunctionTable();
110 Lexer lexer = new Lexer(compiler, namespaceContext, this);
157 initXPath(compiler, "/..", namespaceContext);
163 compiler.shrink();
170 * @param compiler Th
101 initXPath( Compiler compiler, String expression, PrefixResolver namespaceContext) argument
177 initMatchPattern( Compiler compiler, String expression, PrefixResolver namespaceContext) argument
[all...]
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
/dalvik/libcore/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 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 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 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 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 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
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 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 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 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 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 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 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 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);
/dalvik/libcore/xml/src/main/java/org/apache/xpath/functions/
H A DFuncLast.java26 import org.apache.xpath.compiler.Compiler;
45 public void postCompileStep(Compiler compiler) argument
47 m_isTopLevel = compiler.getLocationPathDepth() == -1;
H A DFuncPosition.java27 import org.apache.xpath.compiler.Compiler;
44 public void postCompileStep(Compiler compiler) argument
46 m_isTopLevel = compiler.getLocationPathDepth() == -1;
H A DFunction.java28 import org.apache.xpath.compiler.Compiler;
47 * XPath compiler.
66 * called by the compiler for static number of arguments checking.
140 public void postCompileStep(Compiler compiler) argument

Completed in 164 milliseconds

12