Package org.exist.indexing

Examples of org.exist.indexing.StructuralIndex.matchDescendantsByTagName()


        {context.getProfiler().message(this, Profiler.OPTIMIZATIONS,
            "OPTIMIZATION",
            "Using structural index '" + index.toString() + "'");}
      if (contextSet instanceof ExtNodeSet
          && !contextSet.getProcessInReverseOrder()) {
        return index.matchDescendantsByTagName(ElementValue.ELEMENT,
            test.getName(), axis, docs, (ExtNodeSet) contextSet,
            contextId);
      } else {
        // if (contextSet instanceof VirtualNodeSet)
        // ((VirtualNodeSet)contextSet).realize();
View Full Code Here


        {context.getProfiler().message(this, Profiler.OPTIMIZATIONS,
            "OPTIMIZATION",
            "Using structural index '" + index.toString() + "'");}
      if (contextSet instanceof ExtNodeSet
          && !contextSet.getProcessInReverseOrder()) {
        return index.matchDescendantsByTagName(ElementValue.ATTRIBUTE,
            test.getName(), axis, docs, (ExtNodeSet) contextSet,
            contextId);
      } else {
        NodeSelector selector;
        switch (axis) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.