Searched refs:pop (Results 1 - 25 of 56) sorted by relevance

123

/lucene-3.6.0/lucene/contrib/highlighter/src/test/org/apache/lucene/search/vectorhighlight/
H A DFieldTermStackTest.java32 assertEquals( "a(0,1,0)", stack.pop().toString() );
33 assertEquals( "a(2,3,1)", stack.pop().toString() );
34 assertEquals( "a(4,5,2)", stack.pop().toString() );
35 assertEquals( "a(12,13,6)", stack.pop().toString() );
36 assertEquals( "a(28,29,14)", stack.pop().toString() );
37 assertEquals( "a(32,33,16)", stack.pop().toString() );
49 assertEquals( "b(6,7,3)", stack.pop().toString() );
50 assertEquals( "b(8,9,4)", stack.pop().toString() );
51 assertEquals( "c(10,11,5)", stack.pop().toString() );
52 assertEquals( "b(14,15,7)", stack.pop()
[all...]
H A DIndexTimeSynonymTest.java42 assertEquals( "Mac(11,20,3)", stack.pop().toString() );
57 assertTrue( expectedSet.contains( stack.pop().toString() ) );
58 assertTrue( expectedSet.contains( stack.pop().toString() ) );
67 assertEquals( "pc(3,5,1)", stack.pop().toString() );
76 assertEquals( "personal(3,5,1)", stack.pop().toString() );
77 assertEquals( "computer(3,5,2)", stack.pop().toString() );
86 assertEquals( "computer(3,5,2)", stack.pop().toString() );
101 assertTrue( expectedSet.contains( stack.pop().toString() ) );
102 assertTrue( expectedSet.contains( stack.pop().toString() ) );
103 assertEquals( "computer(3,5,2)", stack.pop()
[all...]
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DHeap.java29 * NOTE: Once {@link #pop()} is called no other {@link #add(Object)} or
32 public T pop(); method in interface:Heap
39 * NOTE: This method should not be called after invoking {@link #pop()}
47 * NOTE: This method should not be called after invoking {@link #pop()}
H A DTopKFacetResultsHandler.java103 FacetResultNode a = heap.insertWithOverflow(tmpHeap.pop());
210 resNode.insertSubResult(heap.pop());
228 subResults.add(0,heap.pop());
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DSegmentMergeQueue.java39 pop().close();
H A DMultipleTermPositions.java130 _termPositionsQueue.pop();
149 TermPositions tp = _termPositionsQueue.pop();
168 _termPositionsQueue.pop().close();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DBitUtil.java28 public static int pop(long x) { method in class:BitUtil
29 /* Hacker's Delight 32 bit pop function:
32 int pop(unsigned x) {
129 tot8 += pop(eights);
136 // tot = tot + pop(A[i]);
160 tot8 += pop(eights);
176 tot8 += pop(eights);
181 tot += pop(A[i]);
184 tot += (pop(fours)<<2)
185 + (pop(two
[all...]
H A DPriorityQueue.java21 * least element can always be found in constant time. Put()'s and pop()'s
170 public final T pop() { method in class:PriorityQueue
194 * o = pq.pop();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DTopDocsCollector.java61 results[i] = pq.pop();
148 // pq's pop() returns the 'least' element in the queue, therefore need
153 for (int i = pq.size() - start - howMany; i > 0; i--) { pq.pop(); }
H A DParallelMultiSearcher.java116 scoreDocs[i] = hq.pop();
145 scoreDocs[i] = hq.pop();
H A DTopScoreDocCollector.java289 // maxScore. Otherwise pop everything else, until the largest element is
295 for (int i = pq.size(); i > 1; i--) { pq.pop(); }
296 maxScore = pq.pop().score;
H A DSloppyPhraseScorer.java77 PhrasePositions pp = pq.pop();
89 pp = pq.pop();
140 PhrasePositions pp2 = pq.pop();
492 // t[0] = pq.pop();
495 // t[i] = pq.pop();
/lucene-3.6.0/solr/client/ruby/flare/vendor/plugins/engines/lib/engines/rails_extensions/
H A Dpublic_asset_helpers.rb103 options = sources.last.is_a?(Hash) ? sources.pop.stringify_keys : { }
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DDebugLogger.java64 public DebugInfo pop() {
68 return super.pop();
110 while (debugStack.pop().type != DIHLogLevels.START_ENTITY)
113 while (debugStack.pop().type != DIHLogLevels.START_DOC)
150 debugStack.pop();
/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/
H A DJSONParser.java155 // pop parser state (use at end of container)
156 private final void pop() { method in class:JSONParser
620 pop();
639 pop();
654 pop();
662 pop();
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/
H A DLookup.java106 res[i] = pop();
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/
H A DTestPriorityQueue.java61 Integer next = pq.pop();
71 // System.out.println(" microseconds/pop");
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/util/
H A DTestPriorityQueue.java61 Integer next = pq.pop();
71 // System.out.println(" microseconds/pop");
/lucene-3.6.0/lucene/contrib/highlighter/src/java/org/apache/lucene/search/vectorhighlight/
H A DFieldPhraseList.java61 TermInfo ti = fieldTermStack.pop();
70 ti = fieldTermStack.pop();
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpanOrQuery.java200 queue.pop(); // exhausted a clause
217 queue.pop();
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DTestTopDocsCollector.java49 for (int i = pq.size(); i > 1; i--) { pq.pop(); }
50 maxScore = pq.pop().score;
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DTestTopDocsCollector.java49 for (int i = pq.size(); i > 1; i--) { pq.pop(); }
50 maxScore = pq.pop().score;
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/
H A DDirContentSource.java101 File f = stack.pop();
140 File object = stack.pop();
141 // System.err.println("pop " + object);
/lucene-3.6.0/lucene/contrib/queries/src/java/org/apache/lucene/search/similar/
H A DMoreLikeThis.java687 while (((cur = q.pop()) != null)) {
964 while (((cur = pq.pop()) != null) && lim-- > 0) {
990 while (((cur = pq.pop()) != null) && lim-- > 0) {
/lucene-3.6.0/solr/core/src/java/org/apache/solr/handler/
H A DJsonLoader.java429 obj = stack.pop();
447 stack.pop(); // the val should have done it...
471 : (SolrInputField)stack.pop();

Completed in 27 milliseconds

123