com.sun.org.apache.xpath.internal.functions.FuncPosition Java Examples
The following examples show how to use
com.sun.org.apache.xpath.internal.functions.FuncPosition.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: HasPositionalPredChecker.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #2
Source File: HasPositionalPredChecker.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #3
Source File: HasPositionalPredChecker.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #4
Source File: HasPositionalPredChecker.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #5
Source File: HasPositionalPredChecker.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #6
Source File: HasPositionalPredChecker.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #7
Source File: HasPositionalPredChecker.java From Bytecoder with Apache License 2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #8
Source File: HasPositionalPredChecker.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #9
Source File: HasPositionalPredChecker.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #10
Source File: HasPositionalPredChecker.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }
Example #11
Source File: HasPositionalPredChecker.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Visit a function. * @param owner The owner of the expression, to which the expression can * be reset if rewriting takes place. * @param func The function reference object. * @return true if the sub expressions should be traversed. */ public boolean visitFunction(ExpressionOwner owner, Function func) { if((func instanceof FuncPosition) || (func instanceof FuncLast)) m_hasPositionalPred = true; return true; }