Home | History | Annotate | Download | only in compiler

Lines Matching refs:m_functions

144   private static Class m_functions[];
177 m_functions = new Class[NUM_BUILT_IN_FUNCS];
178 m_functions[FUNC_CURRENT] = org.apache.xpath.functions.FuncCurrent.class;
179 m_functions[FUNC_LAST] = org.apache.xpath.functions.FuncLast.class;
180 m_functions[FUNC_POSITION] = org.apache.xpath.functions.FuncPosition.class;
181 m_functions[FUNC_COUNT] = org.apache.xpath.functions.FuncCount.class;
182 m_functions[FUNC_ID] = org.apache.xpath.functions.FuncId.class;
183 m_functions[FUNC_KEY] =
185 m_functions[FUNC_LOCAL_PART] =
187 m_functions[FUNC_NAMESPACE] =
189 m_functions[FUNC_QNAME] = org.apache.xpath.functions.FuncQname.class;
190 m_functions[FUNC_GENERATE_ID] =
192 m_functions[FUNC_NOT] = org.apache.xpath.functions.FuncNot.class;
193 m_functions[FUNC_TRUE] = org.apache.xpath.functions.FuncTrue.class;
194 m_functions[FUNC_FALSE] = org.apache.xpath.functions.FuncFalse.class;
195 m_functions[FUNC_BOOLEAN] = org.apache.xpath.functions.FuncBoolean.class;
196 m_functions[FUNC_LANG] = org.apache.xpath.functions.FuncLang.class;
197 m_functions[FUNC_NUMBER] = org.apache.xpath.functions.FuncNumber.class;
198 m_functions[FUNC_FLOOR] = org.apache.xpath.functions.FuncFloor.class;
199 m_functions[FUNC_CEILING] = org.apache.xpath.functions.FuncCeiling.class;
200 m_functions[FUNC_ROUND] = org.apache.xpath.functions.FuncRound.class;
201 m_functions[FUNC_SUM] = org.apache.xpath.functions.FuncSum.class;
202 m_functions[FUNC_STRING] = org.apache.xpath.functions.FuncString.class;
203 m_functions[FUNC_STARTS_WITH] =
205 m_functions[FUNC_CONTAINS] = org.apache.xpath.functions.FuncContains.class;
206 m_functions[FUNC_SUBSTRING_BEFORE] =
208 m_functions[FUNC_SUBSTRING_AFTER] =
210 m_functions[FUNC_NORMALIZE_SPACE] =
212 m_functions[FUNC_TRANSLATE] =
214 m_functions[FUNC_CONCAT] = org.apache.xpath.functions.FuncConcat.class;
215 m_functions[FUNC_SYSTEM_PROPERTY] =
217 m_functions[FUNC_EXT_FUNCTION_AVAILABLE] =
219 m_functions[FUNC_EXT_ELEM_AVAILABLE] =
221 m_functions[FUNC_SUBSTRING] =
223 m_functions[FUNC_STRING_LENGTH] =
225 m_functions[FUNC_DOCLOCATION] =
227 m_functions[FUNC_UNPARSED_ENTITY_URI] =
312 if (funcID < NUM_BUILT_IN_FUNCS) return m_functions[funcID].getName();
333 return (Function) m_functions[which].newInstance();