HomeSort by relevance Sort by last modified time
    Searched refs:funcID (Results 1 - 3 of 3) sorted by null

  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
FunctionTable.java 182 m_functions[FUNC_ID] = org.apache.xpath.functions.FuncId.class;
311 String getFunctionName(int funcID) {
312 if (funcID < NUM_BUILT_IN_FUNCS) return m_functions[funcID].getName();
313 else return m_functions_customer[funcID - NUM_BUILT_IN_FUNCS].getName();
Compiler.java 1025 int funcID = getOp(opPos);
1029 if (-1 != funcID)
1031 Function func = m_functionTable.getFunction(funcID);
1059 java.lang.String name = m_functionTable.getFunctionName(funcID);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 405 int funcID = compiler.getOp(opPos);
406 // System.out.println("funcID: "+funcID);
409 switch(funcID)
    [all...]

Completed in 45 milliseconds