Home | History | Annotate | Download | only in compiler

Lines Matching defs:TransformerException

25 import javax.xml.transform.TransformerException;
111 * @throws TransformerException if there is a syntax or other error.
114 public Expression compile(int opPos) throws TransformerException
207 * @throws TransformerException if there is a syntax or other error.
210 throws TransformerException
229 * @throws TransformerException if syntax or other error occurs.
232 throws TransformerException
249 * @throws TransformerException if a error occurs creating the Expression.
251 protected Expression or(int opPos) throws TransformerException
263 * @throws TransformerException if a error occurs creating the Expression.
265 protected Expression and(int opPos) throws TransformerException
277 * @throws TransformerException if a error occurs creating the Expression.
279 protected Expression notequals(int opPos) throws TransformerException
291 * @throws TransformerException if a error occurs creating the Expression.
293 protected Expression equals(int opPos) throws TransformerException
305 * @throws TransformerException if a error occurs creating the Expression.
307 protected Expression lte(int opPos) throws TransformerException
319 * @throws TransformerException if a error occurs creating the Expression.
321 protected Expression lt(int opPos) throws TransformerException
333 * @throws TransformerException if a error occurs creating the Expression.
335 protected Expression gte(int opPos) throws TransformerException
347 * @throws TransformerException if a error occurs creating the Expression.
349 protected Expression gt(int opPos) throws TransformerException
361 * @throws TransformerException if a error occurs creating the Expression.
363 protected Expression plus(int opPos) throws TransformerException
375 * @throws TransformerException if a error occurs creating the Expression.
377 protected Expression minus(int opPos) throws TransformerException
389 * @throws TransformerException if a error occurs creating the Expression.
391 protected Expression mult(int opPos) throws TransformerException
403 * @throws TransformerException if a error occurs creating the Expression.
405 protected Expression div(int opPos) throws TransformerException
417 * @throws TransformerException if a error occurs creating the Expression.
419 protected Expression mod(int opPos) throws TransformerException
431 * @throws TransformerException if a error occurs creating the Expression.
433 // protected Expression quo(int opPos) throws TransformerException
445 * @throws TransformerException if a error occurs creating the Expression.
447 protected Expression neg(int opPos) throws TransformerException
459 * @throws TransformerException if a error occurs creating the Expression.
461 protected Expression string(int opPos) throws TransformerException
473 * @throws TransformerException if a error occurs creating the Expression.
475 protected Expression bool(int opPos) throws TransformerException
487 * @throws TransformerException if a error occurs creating the Expression.
489 protected Expression number(int opPos) throws TransformerException
501 * @throws TransformerException if a error occurs creating the Expression.
518 * @throws TransformerException if a error occurs creating the Expression.
535 * @throws TransformerException if a error occurs creating the Expression.
537 protected Expression variable(int opPos) throws TransformerException
564 * @throws TransformerException if a error occurs creating the Expression.
566 protected Expression group(int opPos) throws TransformerException
580 * @throws TransformerException if a error occurs creating the Expression.
582 protected Expression arg(int opPos) throws TransformerException
597 * @throws TransformerException if a error occurs creating the Expression.
599 protected Expression union(int opPos) throws TransformerException
639 * @throws TransformerException if a error occurs creating the Expression.
641 public Expression locationPath(int opPos) throws TransformerException
662 * @throws TransformerException if a error occurs creating the Expression.
664 public Expression predicate(int opPos) throws TransformerException
676 * @throws TransformerException if a error occurs creating the Expression.
678 protected Expression matchPattern(int opPos) throws TransformerException
722 * @throws TransformerException if a error occurs creating the Expression.
725 throws TransformerException
819 * @throws TransformerException if a error occurs creating the Expression.
823 throws TransformerException
945 * @throws TransformerException if a error occurs creating the Expression.
948 throws TransformerException
972 * @throws TransformerException if a error occurs creating the Expression.
974 public int countPredicates(int opPos) throws TransformerException
996 * @throws TransformerException
999 throws TransformerException
1016 * @throws TransformerException if a error occurs creating the Expression.
1018 Expression compileFunction(int opPos) throws TransformerException
1061 m_errorHandler.fatalError( new TransformerException(
1098 * @throws TransformerException if a error occurs creating the Expression.
1101 throws TransformerException
1155 * @throws TransformerException if the current ErrorListoner determines to
1158 public void warn(String msg, Object[] args) throws TransformerException
1165 m_errorHandler.warning(new TransformerException(fmsg, m_locator));
1208 * @throws TransformerException if the current ErrorListoner determines to
1211 public void error(String msg, Object[] args) throws TransformerException
1219 m_errorHandler.fatalError(new TransformerException(fmsg, m_locator));
1228 throw new TransformerException(fmsg, (SAXSourceLocator)m_locator);