Searched defs:children (Results 1 - 25 of 30) sorted by relevance

12

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/processors/
H A DNoChildOptimizationQueryNodeProcessor.java35 * ModifierQueryNode that do not have a valid children.
38 * Example: When the children of these nodes are removed for any reason then the
56 List<QueryNode> children = node.getChildren();
58 if (children != null && children.size() > 0) {
60 for (QueryNode child : children) {
86 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
89 return children;
H A DRemoveDeletedQueryNodesProcessor.java59 List<QueryNode> children = node.getChildren();
62 if (children == null || children.size() == 0) {
68 for (Iterator<QueryNode> it = children.iterator(); it.hasNext();) {
91 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
94 for (int i = 0; i < children.size(); i++) {
96 if (children.get(i) instanceof DeletedQueryNode) {
97 children.remove(i--);
102 return children;
H A DQueryNodeProcessorImpl.java36 * {@link #preProcessNode(QueryNode)} is invoked. After a node's children are
41 * children order or remove any children from the children list.
114 List<QueryNode> children = queryTree.getChildren();
117 if (children != null && children.size() > 0) {
123 for (QueryNode child : children) {
233 * @param children
234 * the list containing all current node's children
242 setChildrenOrder(List<QueryNode> children) argument
[all...]
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/processors/
H A DAllowLeadingWildcardProcessor.java98 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
101 return children;
H A DAnalyzerQueryNodeProcessor.java191 LinkedList<QueryNode> children = new LinkedList<QueryNode>();
204 children.add(new FieldQueryNode(field, term, -1, -1));
208 new StandardBooleanQueryNode(children, positionCount==1));
331 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
334 return children;
H A DBooleanSingleChildOptimizationQueryNodeProcessor.java49 List<QueryNode> children = node.getChildren();
51 if (children != null && children.size() == 1) {
52 QueryNode child = children.get(0);
84 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
87 return children;
H A DBoostQueryNodeProcessor.java81 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
84 return children;
H A DDefaultPhraseSlopQueryNodeProcessor.java111 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
114 return children;
H A DFuzzyQueryNodeProcessor.java79 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
82 return children;
H A DLowercaseExpandedTermsQueryNodeProcessor.java84 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
87 return children;
H A DMatchAllDocsQueryNodeProcessor.java70 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
73 return children;
H A DMultiFieldQueryNodeProcessor.java95 LinkedList<QueryNode> children = new LinkedList<QueryNode>();
96 children.add(fieldNode);
103 children.add(fieldNode);
111 return new GroupQueryNode(new BooleanQueryNode(children));
126 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
129 return children;
H A DMultiTermRewriteMethodProcessor.java74 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) { argument
75 return children;
H A DNumericQueryNodeProcessor.java140 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
142 return children;
H A DNumericRangeQueryNodeProcessor.java155 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
157 return children;
H A DParametricRangeQueryNodeProcessor.java161 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
164 return children;
H A DPhraseSlopQueryNodeProcessor.java67 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
70 return children;
H A DRemoveEmptyNonLeafQueryNodeProcessor.java32 * children. If after processing the entire tree the root node is not a leaf and
33 * has no children, a {@link MatchNoDocsQueryNode} object is returned. <br/>
37 * with no children. <br/>
57 List<QueryNode> children = queryTree.getChildren();
59 if (children == null || children.size() == 0) {
84 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
89 for (QueryNode child : children) {
105 children.clear();
106 children
[all...]
H A DWildcardQueryNodeProcessor.java132 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
135 return children;
/lucene-3.6.0/lucene/contrib/queryparser/src/test/org/apache/lucene/queryParser/spans/
H A DSpansValidatorQueryNodeProcessor.java65 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
68 return children;
H A DUniqueFieldQueryNodeProcessor.java75 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
78 return children;
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/precedence/processors/
H A DBooleanModifiersQueryNodeProcessor.java38 * This processor is used to apply the correct {@link ModifierQueryNode} to {@link BooleanQueryNode}s children.
81 List<QueryNode> children = node.getChildren();
83 for (QueryNode child : children) {
93 List<QueryNode> children = node.getChildren();
95 for (QueryNode child : children) {
132 protected List<QueryNode> setChildrenOrder(List<QueryNode> children) argument
135 return children;
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DThreadedEntityProcessorWrapper.java40 /** single EntityRunner per children entity */
41 final Map<DataConfig.Entity ,DocBuilder.EntityRunner> children; field in class:ThreadedEntityProcessorWrapper
55 this.children = childrenRunners;
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/nodes/
H A DQueryNode.java86 public void add(List<QueryNode> children); argument
88 // reset the children of a node
89 public void set(List<QueryNode> children); argument
/lucene-3.6.0/solr/core/src/java/org/apache/solr/core/
H A DPluginInfo.java36 public final List<PluginInfo> children; field in class:PluginInfo
38 public PluginInfo(String type, Map<String, String> attrs ,NamedList initArgs, List<PluginInfo> children) { argument
44 this.children = children == null ? Collections.<PluginInfo>emptyList(): unmodifiableList(children);
54 children = loadSubPlugins(node);
58 List<PluginInfo> children = new ArrayList<PluginInfo>();
66 if (pluginInfo.isEnabled()) children.add(pluginInfo);
68 return children.isEmpty() ? Collections.<PluginInfo>emptyList() : unmodifiableList(children);
[all...]

Completed in 742 milliseconds

12