Searched defs:copy (Results 1 - 21 of 21) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/analysis/
H A DSlowSynonymFilter.java7 * the License. You may obtain a copy of the License at
86 copy(this, replacement.next());
96 copy(this, firstTok);
111 copy(this, firstTok);
250 private void copy(AttributeSource target, AttributeSource source) { method in class:SlowSynonymFilter
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/geometry/
H A DFloatLatLng.java7 * the License. You may obtain a copy of the License at
43 public LatLng copy() { method in class:FloatLatLng
H A DFixedLatLng.java7 * the License. You may obtain a copy of the License at
63 public LatLng copy() { method in class:FixedLatLng
H A DLatLng.java7 * the License. You may obtain a copy of the License at
48 public abstract LatLng copy(); method in class:LatLng
/lucene-3.6.0/lucene/contrib/icu/src/java/org/apache/lucene/analysis/icu/
H A DICUTransformFilter.java9 * the License. You may obtain a copy of the License at
135 public void copy(int start, int limit, int dest) { method in class:ICUTransformFilter.ReplaceableTermAttribute
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/tier/
H A DDistanceFieldComparatorSource.java7 * the License. You may obtain a copy of the License at
101 public void copy(int slot, int doc) { method in class:DistanceFieldComparatorSource.DistanceScoreDocLookupComparator
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DCharArraySet.java9 * the License. You may obtain a copy of the License at
202 * Returns a copy of the given set as a {@link CharArraySet}. If the given set
206 * a set to copy
207 * @return a copy of the given set as a {@link CharArraySet}. If the given set
210 * @deprecated use {@link #copy(Version, Set)} instead.
213 public static CharArraySet copy(final Set<?> set) { method in class:CharArraySet
216 return copy(Version.LUCENE_30, set);
220 * Returns a copy of the given set as a {@link CharArraySet}. If the given set
223 * <b>Note:</b> If you intend to create a copy of another {@link CharArraySet} where
224 * the {@link Version} of the source set differs from its copy
240 public static CharArraySet copy(final Version matchVersion, final Set<?> set) { method in class:CharArraySet
[all...]
H A DCharArrayMap.java9 * the License. You may obtain a copy of the License at
560 * Returns a copy of the given map as a {@link CharArrayMap}. If the given map
563 * <b>Note:</b> If you intend to create a copy of another {@link CharArrayMap} where
564 * the {@link Version} of the source map differs from its copy
566 * The {@link #copy(Version, Map)} will preserve the {@link Version} of the
575 * a map to copy
576 * @return a copy of the given map as a {@link CharArrayMap}. If the given map
581 public static <V> CharArrayMap<V> copy(final Version matchVersion, final Map<?,? extends V> map) { method in class:CharArrayMap
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DDirectory.java9 * the License. You may obtain a copy of the License at
216 * If you want to copy the entire source directory to the destination one, you
220 * Directory to; // the directory to copy to
222 * dir.copy(to, file, newFile); // newFile can be either file, or a new name
229 public void copy(Directory to, String src, String dest) throws IOException { method in class:Directory
260 * {@link #copy(Directory, String, String)} for every file that
267 * src.copy(dest, file, file);
273 public static void copy(Directory src, Directory dest, boolean closeDirSrc) throws IOException { method in class:Directory
277 src.copy(dest, file, file);
/lucene-3.6.0/lucene/contrib/remote/src/test/org/apache/lucene/search/
H A DTestRemoteSort.java9 * the License. You may obtain a copy of the License at
40 * Note: This is a modified copy of {@link TestSort} without duplicated test
170 public void copy(int slot, int doc) { method in class:TestRemoteSort.MyFieldComparator
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/fst/
H A DSort.java9 * the License. You may obtain a copy of the License at
211 // One partition, try to rename or copy if unsuccessful.
216 copy(merges.get(0), output);
250 private static void copy(File file, File output) throws IOException { method in class:Sort
251 // 64kb copy buffer (empirical pick).
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DByteBlockPool.java9 * the License. You may obtain a copy of the License at
256 public final void copy(final BytesRef bytes) { method in class:ByteBlockPool
H A DPagedBytes.java9 * the License. You may obtain a copy of the License at
30 * using copy, and then retrieve slices (BytesRef) into it
76 * allocate sufficient resources and copy the paged data.
191 * block border this method will allocate sufficient resources and copy the
254 public void copy(IndexInput in, long byteCount) throws IOException { method in class:PagedBytes
279 public void copy(BytesRef bytes) throws IOException { method in class:PagedBytes
309 public void copy(BytesRef bytes, BytesRef out) throws IOException { method in class:PagedBytes
338 throw new IllegalStateException("cannot freeze when copy(BytesRef, BytesRef) was used");
535 * not call the other writing methods (eg, copy);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DMissingStringLastComparatorSource.java7 * the License. You may obtain a copy of the License at
170 public void copy(int slot, int doc) { method in class:MissingLastOrdComparator
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/
H A DValueSource.java7 * the License. You may obtain a copy of the License at
179 public void copy(int slot, int doc) { method in class:ValueSource.ValueSourceComparator
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DFieldComparator.java9 * the License. You may obtain a copy of the License at
67 * <li> {@link #copy} Installs a new hit into the
129 * You should copy any state associated with this document
133 * @param slot which slot to copy the hit to
136 public abstract void copy(int slot, int doc) throws IOException; method in class:FieldComparator
241 public void copy(int slot, int doc) { method in class:FieldComparator.ByteComparator
293 public void copy(int slot, int doc) { method in class:FieldComparator.DocComparator
361 public void copy(int slot, int doc) { method in class:FieldComparator.DoubleComparator
439 public void copy(int slot, int doc) { method in class:FieldComparator.FloatComparator
521 public void copy(in method in class:FieldComparator.IntComparator
599 public void copy(int slot, int doc) { method in class:FieldComparator.LongComparator
657 public void copy(int slot, int doc) throws IOException { method in class:FieldComparator.RelevanceComparator
727 public void copy(int slot, int doc) { method in class:FieldComparator.ShortComparator
802 public void copy(int slot, int doc) { method in class:FieldComparator.StringComparatorLocale
904 public void copy(int slot, int doc) { method in class:FieldComparator.StringOrdValComparator
1032 public void copy(int slot, int doc) { method in class:FieldComparator.StringValComparator
[all...]
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java9 * the License. You may obtain a copy of the License at
238 // First, make temp file and copy only half this
253 // Delete original and copy bytes back:
770 public synchronized void copy(Directory to, String src, String dest) throws IOException { method in class:MockDirectoryWrapper
772 delegate.copy(to, src, dest);
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/store/
H A DMockDirectoryWrapper.java9 * the License. You may obtain a copy of the License at
671 public synchronized void copy(Directory to, String src, String dest) throws IOException { method in class:MockDirectoryWrapper
673 delegate.copy(to, src, dest);
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DJustCompileSearch.java9 * the License. You may obtain a copy of the License at
232 public void copy(int slot, int doc) throws IOException { method in class:JustCompileSearch.JustCompileFieldComparator
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DJustCompileSearch.java9 * the License. You may obtain a copy of the License at
232 public void copy(int slot, int doc) throws IOException { method in class:JustCompileSearch.JustCompileFieldComparator
/lucene-3.6.0/solr/client/ruby/flare/public/javascripts/
H A Dprototype.js1591 function copy(methods, destination, onlyIfAbsent) { function
1602 copy(Element.Methods, HTMLElement.prototype);
1603 copy(Element.Methods.Simulated, HTMLElement.prototype, true);
1604 copy(Form.Methods, HTMLFormElement.prototype);
1606 copy(Form.Element.Methods, klass.prototype);

Completed in 466 milliseconds