Examples of IDLTKSearchScope


Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    project = null;
  }

  public void testBcmath() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "bcsqrt", MatchRule.PREFIX, Modifiers.AccGlobal, 0, scope,
        new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

  }

  private IDLTKSearchScope createScope() {
    IScriptProject scriptProject = DLTKCore.create(project);

    IDLTKSearchScope scope = SearchEngine.createSearchScope(scriptProject);
    return scope;
  }
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    return scope;
  }

  public void testBz2() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "bzopen", MatchRule.PREFIX, Modifiers.AccGlobal, 0, scope,
        new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    assert (allFunctions.length > 0);
  }

  public void testCalendar() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "jdtogregorian", MatchRule.PREFIX, Modifiers.AccGlobal, 0,
        scope, new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    assert (allFunctions.length > 0);
  }

  public void testCtype() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "ctype_alnum", MatchRule.PREFIX, Modifiers.AccGlobal, 0, scope,
        new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    assert (allFunctions.length > 0);
  }

  public void testCurl() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "curl_init", MatchRule.PREFIX, Modifiers.AccGlobal, 0, scope,
        new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    assert (allFunctions.length > 0);
  }

  public void testDate() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "getTimezone", MatchRule.PREFIX, Modifiers.AccGlobal, 0, scope,
        new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    assert (allFunctions.length > 0);
  }

  public void testDom() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "getTraceAsString", MatchRule.PREFIX, Modifiers.AccGlobal, 0,
        scope, new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    assert (allFunctions.length > 0);
  }

  public void testExif() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "read_exif_data", MatchRule.PREFIX, Modifiers.AccGlobal, 0,
        scope, new NullProgressMonitor());
View Full Code Here

Examples of org.eclipse.dltk.core.search.IDLTKSearchScope

    assert (allFunctions.length > 0);
  }

  public void testFilter() {

    IDLTKSearchScope scope = createScope();

    IMethod[] allFunctions = PhpModelAccess.getDefault().findMethods(
        "filter_input", MatchRule.PREFIX, Modifiers.AccGlobal, 0,
        scope, new NullProgressMonitor());
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.