Home
last modified time | relevance | path

Searched refs:CompiledPythonScript (Results 1 – 3 of 3) sorted by relevance

/dports/math/kig/kig-21.12.3/scripting/
H A Dpython_scripter.h15 class CompiledPythonScript
20 CompiledPythonScript( Private* );
22 CompiledPythonScript( const CompiledPythonScript& s );
23 ~CompiledPythonScript();
31 friend class CompiledPythonScript; variable
52 CompiledPythonScript compile( const char* code );
53 ObjectImp* calc( CompiledPythonScript& script, const Args& args );
H A Dpython_type.cc15 mutable CompiledPythonScript mscript;
21 PythonCompiledScriptImp( const CompiledPythonScript& s );
29 CompiledPythonScript& data() const { return mscript; }; in data()
32 PythonCompiledScriptImp::PythonCompiledScriptImp( const CompiledPythonScript& s ) in PythonCompiledScriptImp()
106 CompiledPythonScript cs = PythonScripter::instance()->compile( s.toLatin1() ); in calc()
136 CompiledPythonScript& script = static_cast<const PythonCompiledScriptImp*>( parents[0] )->data(); in calc()
H A Dpython_scripter.cc406 class CompiledPythonScript::Private
415 ObjectImp* CompiledPythonScript::calc( const Args& args, const KigDocument& ) in calc()
420 CompiledPythonScript::~CompiledPythonScript() in ~CompiledPythonScript()
427 CompiledPythonScript::CompiledPythonScript( Private* ind ) in CompiledPythonScript() function in CompiledPythonScript
433 CompiledPythonScript PythonScripter::compile( const char* code ) in compile()
457 CompiledPythonScript::Private* ret = new CompiledPythonScript::Private; in compile()
460 return CompiledPythonScript( ret ); in compile()
463 CompiledPythonScript::CompiledPythonScript( const CompiledPythonScript& s ) in CompiledPythonScript() function in CompiledPythonScript
484 ObjectImp* PythonScripter::calc( CompiledPythonScript& script, const Args& args ) in calc()
588 bool CompiledPythonScript::valid() in valid()