Package org.eclipse.dltk.core.search

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


    assert (allFunctions.length > 0);
  }

  public void testPgsql() {

    IDLTKSearchScope scope = createScope();

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


    assert (allFunctions.length > 0);
  }

  public void testReflection() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testSession() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testSimpleXml() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testSoap() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testSockets() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testSpl() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testSqlite() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testStandard() {

    IDLTKSearchScope scope = createScope();

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

    assert (allFunctions.length > 0);
  }

  public void testTidy() {

    IDLTKSearchScope scope = createScope();

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

TOP

Related Classes of org.eclipse.dltk.core.search.IDLTKSearchScope

Copyright © 2018 www.massapicom. 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.