Searched defs:child (Results 1 - 9 of 9) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/nodes/
H A DGroupQueryNode.java77 * @param child
79 public void setChild(QueryNode child) { argument
81 list.add(child);
H A DModifierQueryNode.java152 * @param child
154 public void setChild(QueryNode child) { argument
156 list.add(child);
H A DQueryNode.java83 // add a new child to a non Leaf node
84 public void add(QueryNode child); argument
H A DQueryNodeImpl.java60 public final void add(QueryNode child) { argument
62 if (isLeaf() || this.clauses == null || child == null) {
67 this.clauses.add(child);
68 ((QueryNodeImpl) child).setParent(this);
79 for (QueryNode child : children) {
80 add(child);
102 for (QueryNode child : children) {
104 ((QueryNodeImpl) child).setParent(null);
112 for (QueryNode child : children) {
113 add(child);
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DScorer.java152 * @param parent the parent query of the child query or <code>null</code> if the child is a top-level query
153 * @param child the query of the currently visited scorer
156 public void visitOptional(P parent, C child, S scorer) {} argument
161 * @param parent the parent query of the child query or <code>null</code> if the child is a top-level query
162 * @param child the query of the currently visited scorer
165 public void visitRequired(P parent, C child, S scorer) {} argument
170 * @param parent the parent query of the child query or <code>null</code> if the child i
174 visitProhibited(P parent, C child, S scorer) argument
[all...]
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DTestSubScorerFreqs.java82 public void visitOptional(Query parent, Query child, Scorer scorer) { argument
84 subScorers.put(child, scorer);
88 public void visitProhibited(Query parent, Query child, Scorer scorer) { argument
90 subScorers.put(child, scorer);
94 public void visitRequired(Query parent, Query child, Scorer scorer) { argument
96 subScorers.put(child, scorer);
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DTestSubScorerFreqs.java82 public void visitOptional(Query parent, Query child, Scorer scorer) { argument
84 subScorers.put(child, scorer);
88 public void visitProhibited(Query parent, Query child, Scorer scorer) { argument
90 subScorers.put(child, scorer);
94 public void visitRequired(Query parent, Query child, Scorer scorer) { argument
96 subScorers.put(child, scorer);
/lucene-3.6.0/solr/client/ruby/flare/public/javascripts/
H A Ddragdrop.js757 var child = null;
766 child = index + 1 < children.length ? children[index + 1] : null;
769 child = children[index];
775 dropon.insertBefore(element, child);
817 var child = {
827 if (child.container)
828 this._tree(child.container, options, child)
830 parent.children.push (child);
915 // Returns true if child i
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/compound/hyphenation/
H A DTernaryTree.java475 char child; field in class:TernaryTree.Iterator.Item
479 child = 0;
484 child = c;
489 return new Item(parent, child);
555 i.child++;
556 switch (i.child) {
563 i.child++;

Completed in 2122 milliseconds