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

/ec/ECSpooler/backends/cl/
H A Dconfig.py8 from os.path import join, dirname, abspath namespace
10 #INTERPRETER = join(abspath(dirname(__file__)), 'sbcl+systrace')
11 INTERPRETER = join(abspath(dirname(__file__)), 'sbcl.sh')
H A DCl.py12 from os.path import join, dirname namespace
34 simpleTest = file(join(dirname(__file__), 'simpleTest.lisp'), 'r').read()
41 # permTest = file(join(dirname(__file__), 'permTest.lisp'), 'r').read()
362 os.path.dirname(wrapperModule['file']),
/ec/ECSpooler/backends/haskell/
H A Dconfig.py8 from os.path import join, dirname, abspath namespace
10 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace')
11 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh')
H A DHaskell.py21 from os.path import join, dirname namespace
39 simpleTest = file(join(dirname(__file__), 'simpleTest.hs'), 'r').read()
46 permTest = file(join(dirname(__file__), 'permTest.hs'), 'r').read()
53 toleranceTest = file(join(dirname(__file__), 'toleranceTest.hs'), 'r').read()
340 os.path.dirname(wrapperModule['file']),
/ec/ECSpooler/backends/haskellext/
H A Dconfig.py7 from os.path import join, dirname, abspath namespace
9 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace')
10 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh')
/ec/ECSpooler/backends/haskellio/
H A Dconfig.py8 from os.path import join, dirname, abspath namespace
10 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh')
11 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace')
/ec/ECSpooler/backends/haskellqc/
H A Dconfig.py20 from os.path import join, dirname, abspath namespace
22 INTERPRETER = join(abspath(dirname(__file__)), 'runhugs.sh')
23 #INTERPRETER = join(abspath(dirname(__file__)), 'runhugs+systrace')
/ec/ECSpooler/backends/python/
H A Dconfig.py7 from os.path import join, dirname, abspath namespace
9 #INTERPRETER = join(abspath(dirname(__file__)), 'python+systrace')
10 INTERPRETER = join(abspath(dirname(__file__)), 'python.sh')
H A DPython.py12 from os.path import join, dirname namespace
29 simpleTest = file(join(dirname(__file__), 'simpleTest.py'), 'r').read()
36 permTest = file(join(dirname(__file__), 'permTest.py'), 'r').read()
235 os.path.dirname(wrapperModule['file']),
/ec/ECSpooler/backends/pyunit/
H A Dconfig.py8 from os.path import join, dirname, abspath namespace
10 #INTERPRETER = join(abspath(dirname(__file__)), 'python+systrace')
11 INTERPRETER = join(abspath(dirname(__file__)), 'python.sh')
/ec/ECSpooler/backends/sql/
H A Dconfig.py7 from os.path import join, dirname, abspath namespace
9 INTERPRETER = join(abspath(dirname(__file__)), 'sql.sh')
/ec/ECSpooler/backends/erlang/
H A Dconfig.py7 from os.path import join, dirname, abspath namespace
9 #COMPILER = join(abspath(dirname(__file__)), 'erlc')
10 COMPILER = join(abspath(dirname(__file__)), 'erlc.sh')
12 #INTERPRETER = join(abspath(dirname(__file__)), 'erl+systrace')
13 INTERPRETER = join(abspath(dirname(__file__)), 'erl.sh')
H A DErlang.py12 from os.path import join, dirname namespace
30 simpleTest = file(join(dirname(__file__), 'simpleTest.erl'), 'r').read()
37 permTest = file(join(dirname(__file__), 'permTest.erl'), 'r').read()
242 os.path.dirname(model['file']),
259 os.path.dirname(student['file']),
306 os.path.dirname(wrapperModule['file']),
315 os.path.dirname(wrapperModule['file']),
/ec/ECSpooler/backends/java/
H A Dconfig.py7 from os.path import join, dirname, abspath namespace
9 #COMPILER = join(abspath(dirname(__file__)), 'javac')
10 COMPILER = join(abspath(dirname(__file__)), 'javac.sh')
12 #INTERPRETER = join(abspath(dirname(__file__)), 'java+systrace')
13 INTERPRETER = join(abspath(dirname(__file__)), 'java.sh')
H A DJava.py12 from os.path import join, dirname namespace
36 simpleTest = file(join(dirname(__file__), 'simpleTest.java'), 'r').read()
336 os.path.dirname(compiled[name]['file']),
414 os.path.dirname(wrapperModule['file']),
423 os.path.dirname(wrapperModule['file']),
/ec/ECSpooler/backends/javare/
H A Dconfig.py7 from os.path import join, dirname, abspath namespace
9 #COMPILER = join(abspath(dirname(__file__)), 'javac')
10 COMPILER = join(abspath(dirname(__file__)), 'javac.sh')
12 #INTERPRETER = join(abspath(dirname(__file__)), 'java+systrace')
13 INTERPRETER = join(abspath(dirname(__file__)), 'java.sh')
H A DJavaRE.py14 from os.path import join, dirname namespace
37 findFirstGroup0 = file(join(dirname(__file__),
42 WRAPPER_TEMPLATE = file(join(dirname(__file__),
46 SYNTAX_TEMPLATE = file(join(dirname(__file__),
342 os.path.dirname(wrapperModule['file']),
376 dn = os.path.dirname(wrapperModule['file'])
407 os.path.dirname(wrapperModule['file']),
/ec/ECSpooler/backends/prolog/
H A Dconfig.py7 from os.path import join, dirname, abspath namespace
9 INTERPRETER = join(abspath(dirname(__file__)), 'pl+systrace')
10 #INTERPRETER = join(abspath(dirname(__file__)), 'pl.sh')
H A DProlog.py12 from os.path import join, dirname namespace
38 # simpleTest = file(join(dirname(__file__), 'simpleTest.pl'), 'r').read()
43 SIMPLE_TEST = file(join(dirname(__file__), 'simpleTest.pl'), 'r').read()
44 PERM_TEST = file(join(dirname(__file__), 'permTest.pl'), 'r').read()
45 PRED_TEST = file(join(dirname(__file__), 'predTest.pl'), 'r').read()
388 os.path.dirname(wrapperModule['file']),
401 path = os.path.dirname(wrapperModule['file'])
/ec/ECSpooler/backends/xml/
H A Dconfig.py8 from os.path import join, dirname, abspath namespace
11 XMLLINT = join(abspath(dirname(__file__)), 'xmllint.sh')
14 SAXON = join(abspath(dirname(__file__)), 'saxon.sh'
/ec/ECSpooler/backends/scheme/
H A Dconfig.py8 from os.path import join, dirname, abspath namespace
11 #INTERPRETER = join(abspath(dirname(__file__)), 'mzscheme+systrace')
12 INTERPRETER = join(abspath(dirname(__file__)), 'mzscheme.sh')
16 STREAM_LIB_PATH = join(abspath(dirname(__file__)), 'scheme_libs', STREAM_LIB)
H A DScheme.py11 from os.path import join, dirname namespace
29 simpleTest = file(join(dirname(__file__), 'simpleTest.scm'), 'r').read()
36 permTest = file(join(dirname(__file__), 'permTest.scm'), 'r').read()
326 os.path.dirname(wrapperModule['file']),
/ec/ECSpooler/lib/util/
H A Dauth.py142 from os.path import join, dirname namespace
145 uamd5 = UserAuthMD5(join(dirname(__file__), '..', '..', 'etc', 'passwd'))
/ec/ECSpooler/backends/junit/
H A Dconfig.py35 from os.path import join, dirname, abspath namespace
44 #compiler = join(abspath(dirname(__file__)), 'javac')
45 compiler = join(abspath(dirname(__file__)), 'javac.sh')
46 #interpreter = join(abspath(dirname(__file__)), 'java+systrace')
47 interpreter = join(abspath(dirname(__file__)), 'java.sh')
53 compiler = join(abspath(dirname(__file__)), comp)
57 interpreter = join(abspath(dirname(__file__)), intp)
74 CURRENT_PATH = abspath(dirname(__file__))
/ec/ECSpooler/lib/
H A DBackend.py14 from os.path import join, dirname, abspath namespace
55 self.version = file(join(abspath(dirname(versionFile)), 'version.txt'), 'r').read()

Completed in 1795 milliseconds