Searched defs:follow (Results 1 - 2 of 2) sorted by relevance
/lucene-3.6.0/lucene/contrib/analyzers/kuromoji/src/java/org/apache/lucene/analysis/ja/dict/ |
H A D | TokenInfoFST.java | 67 public FST.Arc<Long> findTargetArc(int ch, FST.Arc<Long> follow, FST.Arc<Long> arc, boolean useCache, FST.BytesReader fstReader) throws IOException { argument 78 return fst.findTargetArc(ch, follow, arc, fstReader);
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/fst/ |
H A D | FST.java | 750 /** Follows the <code>follow</code> arc and reads the last 756 public Arc<T> readLastTargetArc(Arc<T> follow, Arc<T> arc) throws IOException { argument 758 if (!targetHasArcs(follow)) { 760 assert follow.isFinal(); 763 arc.output = follow.nextFinalOutput; 767 final BytesReader in = getBytesReader(getNodeAddress(follow.target)); 768 arc.node = follow.target; 817 * Follow the <code>follow</code> arc and read the first arc of its target; 823 public Arc<T> readFirstTargetArc(Arc<T> follow, Arc<T> arc) throws IOException { argument 825 //System.out.println(" readFirstTarget follow 882 isExpandedTarget(Arc<T> follow) argument 1026 findTargetArc(int labelToMatch, Arc<T> follow, Arc<T> arc, BytesReader in) argument [all...] |
Completed in 582 milliseconds