Searched refs:CJS_Console (Results 1 – 3 of 3) sorted by relevance
/external/pdfium/fxjs/ |
D | cjs_console.cpp | 16 const JSMethodSpec CJS_Console::MethodSpecs[] = {{"clear", clear_static}, 21 int CJS_Console::ObjDefnID = -1; 22 const char CJS_Console::kName[] = "console"; 25 int CJS_Console::GetObjDefnID() { in GetObjDefnID() 30 void CJS_Console::DefineJSObjects(CFXJS_Engine* pEngine) { in DefineJSObjects() 31 ObjDefnID = pEngine->DefineObj(CJS_Console::kName, FXJSOBJTYPE_STATIC, in DefineJSObjects() 32 JSConstructor<CJS_Console>, JSDestructor); in DefineJSObjects() 36 CJS_Console::CJS_Console(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime) in CJS_Console() function in CJS_Console 39 CJS_Console::~CJS_Console() = default; 41 CJS_Result CJS_Console::clear(CJS_Runtime* pRuntime, in clear() [all …]
|
D | cjs_console.h | 15 class CJS_Console final : public CJS_Object { 20 CJS_Console(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime); 21 ~CJS_Console() override; 23 JS_STATIC_METHOD(clear, CJS_Console) 24 JS_STATIC_METHOD(hide, CJS_Console) 25 JS_STATIC_METHOD(println, CJS_Console) 26 JS_STATIC_METHOD(show, CJS_Console)
|
D | cjs_runtime.cpp | 100 CJS_Console::DefineJSObjects(this); in DefineJSObjects()
|