Package org.eclipse.php.internal.core.search

Examples of org.eclipse.php.internal.core.search.IOccurrencesFinder.initialize()


    }

    if (locations == null && fMarkBreakContinueTargets) {
      IOccurrencesFinder finder = OccurrencesFinderFactory
          .createBreakContinueTargetFinder();
      if (finder.initialize(astRoot, selectedNode) == null) {
        locations = finder.getOccurrences();
      }
    }

    if (locations == null && fMarkImplementors) {
View Full Code Here


    }

    if (locations == null && fMarkImplementors) {
      IOccurrencesFinder finder = OccurrencesFinderFactory
          .createImplementorsOccurrencesFinder();
      if (finder.initialize(astRoot, selectedNode) == null) {
        locations = finder.getOccurrences();
      }
    }

    if (selectedNode != null && selectedNode.getType() == ASTNode.VARIABLE) {
View Full Code Here

      int type = PhpElementConciliator.concile(selectedNode);
      if (markOccurrencesOfType(type)) {
        IOccurrencesFinder finder = OccurrencesFinderFactory
            .getOccurrencesFinder(type);
        if (finder != null) {
          if (finder.initialize(astRoot, selectedNode) == null) {
            locations = finder.getOccurrences();
          }
        }
      }
    }
View Full Code Here

    }

    if (locations == null && fMarkMethodExitPoints) {
      IOccurrencesFinder finder = OccurrencesFinderFactory
          .createMethodExitsFinder();
      if (finder.initialize(astRoot, selectedNode) == null) {
        locations = finder.getOccurrences();
      }
    }

    if (locations == null && fMarkImplementors) {
View Full Code Here

    }

    if (locations == null && fMarkImplementors) {
      IOccurrencesFinder finder = OccurrencesFinderFactory
          .createIncludeFinder();
      if (finder.initialize(astRoot, selectedNode) == null) {
        locations = finder.getOccurrences();
      }
    }

    if (locations == null && fMarkBreakContinueTargets) {
View Full Code Here

      int type = PhpElementConciliator.concile(selectedNode);
      if (markOccurrencesOfType(type)) {
        final IOccurrencesFinder finder = OccurrencesFinderFactory
            .getOccurrencesFinder(type);
        if (finder != null) {
          if (finder.initialize(astRoot, selectedNode) == null) {
            perfMonitor.execute(
                "PerformanceTests.testMarkOccurrence" + "_"
                    + fileName, new Operation() {
                  public void run() throws Exception {
                    finder.getOccurrences();
View Full Code Here

      int type = PhpElementConciliator.concile(selectedNode);
      if (markOccurrencesOfType(type)) {
        IOccurrencesFinder finder = OccurrencesFinderFactory
            .getOccurrencesFinder(type);
        if (finder != null) {
          if (finder.initialize(astRoot, selectedNode) == null) {
            locations = finder.getOccurrences();
          }
        }
      }
    }
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.