/ec/ECSpooler/backends/haskellio/ |
H A D | HaskellIO.py | 52 name = 'Haskell I/O' variable in class:HaskellIO
|
/ec/ECSpooler/backends/echo/ |
H A D | Echo.py | 40 name = 'Echo von sh und ma' variable in class:Echo
|
/ec/ECSpooler/backends/haskellext/ |
H A D | HaskellExt.py | 81 name is definied in the model as well as in the student's module. 85 name = 'Haskell (extended)' variable in class:HaskellExt
|
/ec/ECAssignmentBox/Products/ECAssignmentBox/PlagDetector/Normalize/ |
H A D | normPython.py | 154 #struct for functions -> name, posStart, posEnd, expanded, className
156 name = ''
variable in class:reorderFunctions.funStruct 163 #struct for classes -> name, posStart, posEnd
165 name = ''
variable in class:reorderFunctions.classStruct 173 functionPattern = 'def\s+(\w+)\s*\(.*\):' # def name(...):
function in function:reorderFunctions 174 classPattern = 'class\s+(\w+)\s*\(.*\):' # class name(...):
202 fun.name = funMatch.group(1)
207 if inClass: fun.className = cl.name
223 cl.name = classMatch.group(1)
332 if fun.name [all...] |
/ec/ECQuiz/Products/ECQuiz/AnswerTypes/ |
H A D | ECQBaseAnswer.py | 45 name='title', variable in class:ECQBaseAnswer 58 name='answerkey', variable in class:ECQBaseAnswer 80 meta_type = 'ECQBaseAnswer' # zope type name 81 portal_type = meta_type # plone type name 82 archetype_name = 'Base Answer' # friendly type name
|
/ec/ECQuiz/Products/ECQuiz/skins/ECQuiz/ |
H A D | ecq_quiz_submit.py | 78 name = candidateId + '_' + question.UID() variable 79 candidateAnswer = REQUEST.get(name, nullVal)
|
/ec/ECSpooler/backends/erlang/ |
H A D | Erlang.py | 82 'function name (given in the exercise directives) ' + 123 name = 'Erlang' variable in class:Erlang 139 Replace module name in students' submission. 142 @return: modified source code and new module name 232 # replace module name in model solution 248 # replace module name in student solution
|
/ec/ECSpooler/backends/keywords/ |
H A D | Keywords.py | 75 name = 'Keywords' variable in class:Keywords
|
/ec/ECSpooler/backends/python/ |
H A D | Python.py | 84 'function name (given in the exercise directives) ' + 121 name = 'Python' variable in class:Python
|
/ec/ECSpooler/backends/pyunit/ |
H A D | PyUnit.py | 96 name = 'PyUnit' variable in class:PyUnit 164 # get unit test's class name 167 assert className, "Internal error: Could not extract class name from test class." 176 # replace test class's name
|
/ec/ECSpooler/backends/scheme/ |
H A D | Scheme.py | 108 'function name (given in the exercise directives) ' + 151 name = 'Scheme' variable in class:Scheme
|
/ec/ECSpooler/backends/sql/ |
H A D | SQL.py | 126 name = 'SQL' variable in class:SQL
|
/ec/ECSpooler/lib/ |
H A D | Backend.py | 39 name = '' variable in class:Backend 61 assert self.name != '', 'A valid name is required for this backend.' 114 self.name, 192 @return: a dictionary with backendId, name, version, host, and port infos 211 'name': self.name,
|
/ec/ECSpooler/lib/data/ |
H A D | dto.py | 42 name = Unicode variable in class:BackendStatus 58 name = Unicode variable in class:Backend 64 name = Unicode variable in class:BackendInputField 79 name = Unicode variable in class:BackendTestField
|
/ec/ECSpooler/backends/sql/lib/ |
H A D | commons-logging-1.1.1.jar | ... %3E" <init> (java.lang.String) String name
public org.apache.avalon.framework.logger ... |
H A D | slf4j-simple-1.7.2.jar | ... String getStringProperty (java.lang.String) SecurityException e
String name
String prop
private static java.lang.String getStringProperty ... |
/ec/ECAutoAssessmentBox/Products/ECAutoAssessmentBox/browser/ |
H A D | ecaabsettings.py | 189 name=u'apply_ecaab_settings') variable in class:ECAABControlPanel 238 name=u'reset_backend_cache')
|
/ec/ECSpooler/backends/cl/ |
H A D | Cl.py | 116 'function name (given in the exercise directives) ' + 160 name = 'Cl' variable in class:Cl
|
/ec/ECSpooler/backends/haskell/ |
H A D | Haskell.py | 112 'function name (given in the exercise directives) ' + 169 name = 'Haskell' variable in class:Haskell 191 @return: source and module name if needed
|
/ec/ECSpooler/backends/haskellqc/ |
H A D | HaskellQC.py | 43 PROPERTIES_RE = re.compile(r'(?P<name>prop_[A-Z,a-z,0-9]+\w*)') 45 # regex to substitute 'prop_' placeholder with the property name 111 name = 'Haskell QuickCheck' variable in class:HaskellQC 165 # function name, which causes this backend to output the results 199 # add property name
|
/ec/ECSpooler/backends/java/ |
H A D | Java.py | 31 # The name of the wrapper class that performs the semantic check 117 'The Java class name and metod names are normally ' + 150 # The regular expression to extract the name of the *public* class 170 CLASS_NAME_RE = re.compile(r'^\s*(?:public\s+(?:(?:abstract|final|public|strictfp)\s+)*)+\s*class\s+(?P<name>[a-zA-Z_]\w*)', re.MULTILINE) 186 name = 'Java' variable in class:Java 202 Extract the class name from the source code snippet [src] 211 return m.group('name') 217 Replace module name in students' submission. 220 @return: modified source code and new module name 317 name, n [all...] |
/ec/ECSpooler/backends/javare/ |
H A D | JavaRE.py | 29 # The name of the wrapper class that performs the syntactic check 32 # The name of the wrapper class that performs the semantic check 75 'function name (given in the exercise directives) ' + 148 name = 'JavaRE' variable in class:JavaRE 196 Replace module name in students' submission. 199 @return: modified source code and new module name
|
/ec/ECSpooler/backends/junit/ |
H A D | JUnit.py | 64 # An Identifier is a name followed by an optional generic argument 73 # Since the class of the name we want to extract definately is public, <ClassModifier> is NOT optional 84 IMPORT_NAME_NOT_JAVA_RE = re.compile('import\s+(?!java\.)(?P<name>.*);') 101 name = 'JUnit' variable in class:JUnit 125 Returns the class name of a given java source. 128 @return: Class name of given source code. 141 Replaces all Variables ${CLASS} with the class name of a given java source. 144 @param className: Class name that ${CLASS} will be substituted with. 273 @param test: name of the selected test environment (cf. self.testSchema)
|
/ec/ECSpooler/backends/prolog/ |
H A D | Prolog.py | 31 # The name of the wrapper class that performs the semantic check 107 'function name (given in the exercise directives) ' + 164 name = 'Prolog' variable in class:Prolog 194 Replace module name in students' submission. 197 @return: modified source code and new module name 247 for name in raw: 248 if name not in uniq: 249 uniq.append(name) 320 for name, ns, source in \ 323 # replace module name i [all...] |
/ec/ECSpooler/backends/xml/ |
H A D | XML.py | 40 # This is the name we use to store the dtd on the server: 43 # These variables indicate how we name our xml files internally: 119 name = 'XML' variable in class:XML 206 def _writeXML(self, name, content, suffix, LOG, dtdName='dtd'): 219 return self._writeModule(name, correctedXML, suffix, id)
|