Searched defs:csq (Results 1 - 4 of 4) sorted by relevance
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/ |
H A D | CharTermAttribute.java | 67 public CharTermAttribute append(CharSequence csq); argument 68 public CharTermAttribute append(CharSequence csq, int start, int end); argument
|
H A D | CharTermAttributeImpl.java | 145 public final CharTermAttribute append(CharSequence csq) { argument 146 if (csq == null) // needed for Appendable compliance 148 return append(csq, 0, csq.length()); 151 public final CharTermAttribute append(CharSequence csq, int start, int end) { argument 152 if (csq == null) // needed for Appendable compliance 153 csq = "null"; 154 final int len = end - start, csqlen = csq.length(); 161 if (csq instanceof String) { 162 ((String) csq) [all...] |
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/util/ |
H A D | OpenStringBuilder.java | 51 public Appendable append(CharSequence csq) { argument 52 return append(csq, 0, csq.length()); 55 public Appendable append(CharSequence csq, int start, int end) { argument 58 unsafeWrite(csq.charAt(i));
|
/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/ |
H A D | CharArr.java | 195 public final Appendable append(CharSequence csq) throws IOException { argument 196 return append(csq, 0, csq.length()); 199 public Appendable append(CharSequence csq, int start, int end) throws IOException { argument 200 write(csq.subSequence(start, end).toString()); 229 public Appendable append(CharSequence csq, int start, int end) throws IOException { argument
|
Completed in 13 milliseconds