Lines Matching refs:mCompiled
58 delete mCompiled; in ~Script()
328 mCompiled = new (std::nothrow) ScriptCompiled(this); in internalCompile()
330 if (!mCompiled) { in internalCompile()
340 mCompiled->registerSymbolCallback(mpExtSymbolLookupFn, in internalCompile()
364 if (mCompiled->readModule(mSourceList[0]->getModule()) != 0) { in internalCompile()
371 if (mCompiled->linkModule(mSourceList[1]->getModule()) != 0) { in internalCompile()
378 if (mCompiled->compile(option) != 0) { in internalCompile()
469 return mCompiled->getCompilerErrorMessage(); in getCompilerErrorMessage()
476 return mCompiled->lookup(name); in lookup()
494 return mCompiled->getExportVarCount(); in getExportVarCount()
511 return mCompiled->getExportFuncCount(); in getExportFuncCount()
528 return mCompiled->getExportForEachCount(); in getExportForEachCount()
545 return mCompiled->getPragmaCount(); in getPragmaCount()
562 return mCompiled->getFuncCount(); in getFuncCount()
579 return mCompiled->getObjectSlotCount(); in getObjectSlotCount()
614 return mCompiled->getExportVarNameList(varList); in getExportVarNameList()
645 return mCompiled->getExportFuncNameList(funcList); in getExportFuncNameList()
675 return mCompiled->getExportForEachNameList(forEachList); in getExportForEachNameList()
777 return mCompiled->getELFSize(); in getELFSize()
793 return mCompiled->getELF(); in getELF()