Lines Matching refs:CJS_Console
14 const JSMethodSpec CJS_Console::MethodSpecs[] = {{"clear", clear_static},
19 uint32_t CJS_Console::ObjDefnID = 0;
20 const char CJS_Console::kName[] = "console";
23 uint32_t CJS_Console::GetObjDefnID() { in GetObjDefnID()
28 void CJS_Console::DefineJSObjects(CFXJS_Engine* pEngine) { in DefineJSObjects()
29 ObjDefnID = pEngine->DefineObj(CJS_Console::kName, FXJSOBJTYPE_STATIC, in DefineJSObjects()
30 JSConstructor<CJS_Console>, JSDestructor); in DefineJSObjects()
34 CJS_Console::CJS_Console(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime) in CJS_Console() function in CJS_Console
37 CJS_Console::~CJS_Console() = default;
39 CJS_Result CJS_Console::clear(CJS_Runtime* pRuntime, in clear()
44 CJS_Result CJS_Console::hide(CJS_Runtime* pRuntime, in hide()
49 CJS_Result CJS_Console::println(CJS_Runtime* pRuntime, in println()
54 CJS_Result CJS_Console::show(CJS_Runtime* pRuntime, in show()