Searched defs:remove (Results 1 - 25 of 45) sorted by relevance

12

/lucene-3.6.0/solr/scripts/
H A Dbackupcleaner84 function remove function
111 remove $i
126 remove $i
H A Dsnapcleaner84 function remove function
123 remove $i
138 remove $i
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/collections/
H A DDoubleIterator.java29 void remove(); method in interface:DoubleIterator
H A DFloatIterator.java29 void remove(); method in interface:FloatIterator
H A DIntIterator.java29 void remove(); method in interface:IntIterator
H A DIntHashSet.java49 * Index of the last visited pair. Used in {@link #remove()}.
88 public void remove() { method in class:IntHashSet.IndexIterator
89 IntHashSet.this.remove(keys[lastIndex]);
110 public void remove() { method in class:IntHashSet.KeyIterator
111 iterator.remove();
445 public boolean remove(int value) { method in class:IntHashSet
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/attributes/
H A DCategoryAttributesIterable.java64 public void remove() { method in class:CategoryAttributesIterable.CategoryAttributesIterator
65 this.internalIterator.remove();
H A DCategoryAttribute.java128 public void remove(Class<? extends CategoryProperty> propertyClass); method in interface:CategoryAttribute
H A DCategoryAttributeImpl.java188 public void remove(Class<? extends CategoryProperty> propertyClass) { method in class:CategoryAttributeImpl
189 properties.remove(propertyClass);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DMapBackedSet.java62 public boolean remove(Object o) { method in class:MapBackedSet
63 return map.remove(o) != null;
H A DWeakIdentityMap.java89 public V remove(Object key) { method in class:WeakIdentityMap
91 return backingStore.remove(new IdentityWeakReference(key, null));
104 backingStore.remove(zombie);
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DIteratorChain.java76 public void remove() { method in class:IteratorChain
/lucene-3.6.0/solr/core/src/java/org/apache/solr/spelling/
H A DPossibilityIterator.java105 rpArr[i] = rankedPossibilities.remove();
178 public void remove() { method in class:PossibilityIterator
/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/index/
H A DIndexSplitter.java46 * accidentally remove segments from your index so be
86 is.remove(segs.toArray(new String[0]));
129 public void remove(String[] segs) throws IOException { method in class:IndexSplitter
132 infos.remove(idx);
/lucene-3.6.0/lucene/contrib/pruning/src/java/org/apache/lucene/index/pruning/
H A DStorePruningPolicy.java80 // for simplicity remove only fields with DEL_ALL
112 private Map<String,Integer> remove; field in class:StorePruningPolicy.DelFieldSelector
114 public DelFieldSelector(Map<String,Integer> remove) { argument
115 this.remove = remove;
123 if (!remove.isEmpty() && remove.containsKey(fieldName) &&
124 ((remove.get(fieldName) & DEL_STORED) > 0)) {
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DPrefixCodedTerms.java89 public void remove() { method in class:PrefixCodedTerms.PrefixCodedTermsIterator
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/params/
H A DModifiableSolrParams.java64 * Replace any existing parameter with the given name. if val==null remove key from params completely.
68 vals.remove(name);
122 * remove a field at the given name
124 public String[] remove( String name ) method in class:ModifiableSolrParams
126 return vals.remove( name );
136 * remove the given value for the given name
140 public boolean remove(String name, String value) { method in class:ModifiableSolrParams
148 remove(name);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/writercache/cl2o/
H A DCollisionMap.java261 public void remove() { method in class:CollisionMap.EntryIterator
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/processors/
H A DQueryNodeProcessorPipeline.java256 * @see List#remove(Object)
258 public boolean remove(Object o) { method in class:QueryNodeProcessorPipeline
259 return this.processors.remove(o);
263 * @see List#remove(int)
265 public QueryNodeProcessor remove(int index) { method in class:QueryNodeProcessorPipeline
266 return this.processors.remove(index);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/analysis/
H A DCharArraySet.java30 * class. For example, it cannot remove items from the
131 /** Clears all entries in this set. This method is supported for reusing, but not {@link Set#remove}. */
285 public void remove() { method in class:CharArraySet.CharArraySetIterator
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DParallelMultiSearcher.java284 public void remove() { method in class:ParallelMultiSearcher.ExecutionHelper
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DSolrEntityProcessor.java250 public void remove() { method in class:SolrEntityProcessor.SolrDocumentListIterator
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DJmxMonitoredMap.java153 public SolrInfoMBean remove(Object key) { method in class:JmxMonitoredMap
162 return super.remove(key);
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/
H A DDirContentSource.java146 public void remove() { method in class:DirContentSource.Iterator
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/
H A DSolrDocument.java74 return _fields.remove( name ) != null;
222 public Collection<Object> remove(Object key) {throw new UnsupportedOperationException();}
251 public Collection<Object> remove(Object key) {throw new UnsupportedOperationException();}
293 public Object remove(Object key) { method in class:SolrDocument
294 return _fields.remove(key);

Completed in 41 milliseconds

12