Searched defs:append (Results 1 - 15 of 15) sorted by relevance

/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/
H A DBytesRefList.java33 * A simple append only random-access {@link BytesRef} array that stores full
73 * @param bytes the bytes to append
76 public int append(BytesRef bytes) { method in class:BytesRefList
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/tokenattributes/
H A DCharTermAttribute.java67 public CharTermAttribute append(CharSequence csq); method in interface:CharTermAttribute
68 public CharTermAttribute append(CharSequence csq, int start, int end); method in interface:CharTermAttribute
69 public CharTermAttribute append(char c); method in interface:CharTermAttribute
76 public CharTermAttribute append(String s); method in interface:CharTermAttribute
83 public CharTermAttribute append(StringBuilder sb); method in interface:CharTermAttribute
90 public CharTermAttribute append(CharTermAttribute termAtt); method in interface:CharTermAttribute
H A DCharTermAttributeImpl.java145 public final CharTermAttribute append(CharSequence csq) { method in class:CharTermAttributeImpl
148 return append(csq, 0, csq.length());
151 public final CharTermAttribute append(CharSequence csq, int start, int end) { method in class:CharTermAttributeImpl
187 public final CharTermAttribute append(char c) { method in class:CharTermAttributeImpl
194 public final CharTermAttribute append(String s) { method in class:CharTermAttributeImpl
203 public final CharTermAttribute append(StringBuilder s) { method in class:CharTermAttributeImpl
212 public final CharTermAttribute append(CharTermAttribute ta) { method in class:CharTermAttributeImpl
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/hunspell/
H A DHunspellAffix.java27 private String append; // the affix itself, what is appended field in class:HunspellAffix
49 * Returns the append defined for the affix
51 * @return Defined append
54 return append;
58 * Sets the append defined for the affix
60 * @param append Defined append for the affix
62 public void setAppend(String append) { argument
63 this.append = append;
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/
H A DCharBuffer.java85 * @param cb the CharBuffer to append or null
87 public void append(final CharBuffer cb) { method in class:CharBuffer
99 * @param s the String to append or null
101 public void append(final String s) { method in class:CharBuffer
105 append(s.toCharArray());
111 * @param sb the StringBuffer to append or null
113 public void append(final StringBuffer sb) { method in class:CharBuffer
125 * @param data the char[] to append or null
127 public void append(final char[] data) { method in class:CharBuffer
139 * @param data the char to append
141 public void append(final char data) { method in class:CharBuffer
[all...]
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DFastWriter.java62 public FastWriter append(char c) throws IOException { method in class:FastWriter
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/
H A DCharBlockArray.java81 public CharBlockArray append(CharSequence chars) { method in class:CharBlockArray
82 return append(chars, 0, chars.length());
85 public CharBlockArray append(char c) { method in class:CharBlockArray
95 public CharBlockArray append(CharSequence chars, int start, int length) { method in class:CharBlockArray
98 append(chars.charAt(i));
103 public CharBlockArray append(char[] chars, int start, int length) { method in class:CharBlockArray
125 public CharBlockArray append(String s) { method in class:CharBlockArray
164 b.append(this.blocks.get(i).chars);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DBytesRef.java202 sb.append('[');
206 sb.append(' ');
208 sb.append(Integer.toHexString(bytes[i]&0xff));
210 sb.append(']');
235 public void append(BytesRef other) { method in class:BytesRef
H A DCharsRef.java179 public void append(char[] otherChars, int otherOffset, int otherLength) { method in class:CharsRef
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DLuceneJUnitResultFormatter.java125 append("Testsuite: ");
126 append(suite.getName());
127 append(StringUtils.LINE_SEP);
135 append("Tests run: ");
136 append(suite.runCount());
137 append(", Failures: ");
138 append(suite.failureCount());
139 append(", Errors: ");
140 append(suite.errorCount());
141 append(", Tim
279 public LuceneJUnitResultFormatter append(String s) { method in class:LuceneJUnitResultFormatter
290 public LuceneJUnitResultFormatter append(long l) { method in class:LuceneJUnitResultFormatter
[all...]
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/
H A DLuceneJUnitResultFormatter.java125 append("Testsuite: ");
126 append(suite.getName());
127 append(StringUtils.LINE_SEP);
135 append("Tests run: ");
136 append(suite.runCount());
137 append(", Failures: ");
138 append(suite.failureCount());
139 append(", Errors: ");
140 append(suite.errorCount());
141 append(", Tim
279 public LuceneJUnitResultFormatter append(String s) { method in class:LuceneJUnitResultFormatter
290 public LuceneJUnitResultFormatter append(long l) { method in class:LuceneJUnitResultFormatter
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/util/
H A DOpenStringBuilder.java51 public Appendable append(CharSequence csq) { method in class:OpenStringBuilder
52 return append(csq, 0, csq.length());
55 public Appendable append(CharSequence csq, int start, int end) { method in class:OpenStringBuilder
63 public Appendable append(char c) { method in class:OpenStringBuilder
/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/
H A DCharArr.java195 public final Appendable append(CharSequence csq) throws IOException { method in class:CharArr
196 return append(csq, 0, csq.length());
199 public Appendable append(CharSequence csq, int start, int end) throws IOException { method in class:CharArr
204 public final Appendable append(char c) throws IOException { method in class:CharArr
229 public Appendable append(CharSequence csq, int start, int end) throws IOException { method in class:NullCharArr
/lucene-3.6.0/solr/core/src/java/org/apache/solr/analysis/
H A DWordDelimiterFilter.java601 concatenation.append(savedBuffer, iterator.current, iterator.end - iterator.current);
723 * @param text Text to append
725 * @param length Length of the text to append
727 void append(char text[], int offset, int length) { method in class:WordDelimiterFilter.WordDelimiterConcatenation
728 buffer.append(text, offset, length);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/schema/
H A DIndexSchema.java882 private static Object[] append(Object[] orig, Object item) { method in class:IndexSchema

Completed in 301 milliseconds