HomeSort by relevance Sort by last modified time
    Searched full:steptype (Results 1 - 16 of 16) sorted by null

  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMap.java 213 int stepType = getOp(opPos);
215 if ((stepType >= OpCodes.AXES_START_TYPES)
216 && (stepType <= OpCodes.AXES_END_TYPES))
220 else if ((stepType >= OpCodes.FIRST_NODESET_OP)
221 && (stepType <= OpCodes.LAST_NODESET_OP))
230 stepType = getOp(newOpPos);
232 if (!((stepType >= OpCodes.AXES_START_TYPES)
233 && (stepType <= OpCodes.AXES_END_TYPES)))
243 XSLMessages.createXPATHMessage(XPATHErrorResources.ER_UNKNOWN_STEP, new Object[]{String.valueOf(stepType)}));
244 //"Programmer's assertion in getNextStepPos: unknown stepType: " + stepType)
    [all...]
Compiler.java 827 int stepType = getOp(opPos);
829 if (OpCodes.ENDOP == stepType)
844 switch (stepType)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 66 int stepType = compiler.getOp(stepOpCodePos);
68 if (stepType != OpCodes.ENDOP)
73 firstWalker = createDefaultWalker(compiler, stepType, lpi, 0);
75 firstWalker.init(compiler, stepOpCodePos, stepType);
100 int stepType;
106 while (OpCodes.ENDOP != (stepType = compiler.getOp(stepOpCodePos)))
110 walker.init(compiler, stepOpCodePos, stepType);
305 int stepType = compiler.getOp(stepOpCodePos);
307 switch (stepType)
344 throw new RuntimeException(XSLMessages.createXPATHMessage(XPATHErrorResources.ER_NULL_ERROR_HANDLER, new Object[]{Integer.toString(stepType)})); //"Programmer's assertion: unknown opcode:
    [all...]
FilterExprWalker.java 58 * @param stepType The type of step.
62 public void init(Compiler compiler, int opPos, int stepType)
66 super.init(compiler, opPos, stepType);
69 switch (stepType)
78 //if((OpCodes.OP_FUNCTION == stepType) && (m_expr instanceof org.apache.xalan.templates.FuncKey))
DescendantIterator.java 60 int stepType = compiler.getOp(firstStepPos);
62 boolean orSelf = (OpCodes.FROM_DESCENDANTS_OR_SELF == stepType);
64 if (OpCodes.FROM_SELF == stepType)
69 else if(OpCodes.FROM_ROOT == stepType)
UnionPathIterator.java 334 int steptype = compiler.getOp(opPos); local
336 if (steptype == OpCodes.OP_LOCATIONPATH)
348 switch (steptype)
365 iter.m_firstWalker.init(compiler, opPos, steptype);
AxesWalker.java 67 * @param stepType The type of location step.
71 public void init(Compiler compiler, int opPos, int stepType)
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_utils.h 62 enum StepType {
75 VarianceArray(size_t freqs, StepType type, size_t window_size, float decay);
intelligibility_enhancer_unittest.cc 95 bool CheckUpdate(VarianceArray::StepType step_type) {
125 vector<VarianceArray::StepType> step_types;
intelligibility_enhancer.h 52 intelligibility::VarianceArray::StepType var_type;
intelligibility_utils_unittest.cc 77 vector<VarianceArray::StepType> step_types;
intelligibility_enhancer.cc 47 using VarianceType = intelligibility::VarianceArray::StepType;
intelligibility_utils.cc 55 StepType type,
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/test/
intelligibility_proc.cc 112 config.var_type = static_cast<VarianceArray::StepType>(FLAGS_clear_type);
  /external/apache-xml/src/main/java/org/apache/xpath/res/
XPATHErrorResources.java 259 /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
648 "Programmer''s assertion in getNextStepPos: unknown stepType: {0}"},
    [all...]
  /external/chromium-trace/catapult/tracing/tracing/extras/importer/
trace_event_importer.html     [all...]

Completed in 1110 milliseconds