Home
last modified time | relevance | path

Searched refs:argLen (Results 1 – 4 of 4) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DCompiler.java842 int argLen; in stepPattern() local
850 argLen = getOp(opPos + OpMap.MAPINDEX_LENGTH); in stepPattern()
857 argLen = getArgLengthOfStep(opPos); in stepPattern()
866 argLen = getArgLengthOfStep(opPos); in stepPattern()
876 argLen = getArgLengthOfStep(opPos); in stepPattern()
890 argLen = getArgLengthOfStep(opPos); in stepPattern()
903 pattern.setPredicates(getCompiledPredicates(opPos + argLen)); in stepPattern()
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DWalkerFactory.java478 int argLen; in mightBeProximate() local
486 argLen = compiler.getArgLength(opPos); in mightBeProximate()
489 argLen = compiler.getArgLengthOfStep(opPos); in mightBeProximate()
1107 int argLen = compiler.getFirstPredicateOpPos(opPos); in createDefaultStepPattern() local
1109 ai.setPredicates(compiler.getCompiledPredicates(argLen)); in createDefaultStepPattern()
1131 int argLen; in analyzePredicate() local
1139 argLen = compiler.getArgLength(opPos); in analyzePredicate()
1142 argLen = compiler.getArgLengthOfStep(opPos); in analyzePredicate()
/external/deqp/framework/delibs/decpp/
DdeCommandLine.cpp156 int argLen = (int)strlen(arg); in parse() local
169 const char* nameEnd = std::find(nameStart, arg+argLen, '='); in parse()
170 const bool hasImmValue = nameEnd != (arg+argLen); in parse()
/external/starlark-go/internal/compile/
Dcompile.go587 pc += uint32(argLen(insn.arg))
847 func argLen(x uint32) int { func