Home
last modified time | relevance | path

Searched refs:CJS_GlobalData (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fpdfsdk/src/javascript/
DJS_GlobalData.cpp100 CJS_GlobalData* CJS_GlobalData::g_Instance = nullptr;
103 CJS_GlobalData* CJS_GlobalData::GetRetainedInstance(CPDFDoc_Environment* pApp) { in GetRetainedInstance()
105 g_Instance = new CJS_GlobalData(); in GetRetainedInstance()
111 void CJS_GlobalData::Release() { in Release()
118 CJS_GlobalData::CJS_GlobalData() : m_RefCount(0) { in CJS_GlobalData() function in CJS_GlobalData
123 CJS_GlobalData::~CJS_GlobalData() { in ~CJS_GlobalData()
131 int CJS_GlobalData::FindGlobalVariable(const FX_CHAR* propname) { in FindGlobalVariable()
140 CJS_GlobalData_Element* CJS_GlobalData::GetGlobalVariable( in GetGlobalVariable()
148 void CJS_GlobalData::SetGlobalVariableNumber(const FX_CHAR* propname, in SetGlobalVariableNumber()
169 void CJS_GlobalData::SetGlobalVariableBoolean(const FX_CHAR* propname, in SetGlobalVariableBoolean()
[all …]
DJS_GlobalData.h59 class CJS_GlobalData {
61 static CJS_GlobalData* GetRetainedInstance(CPDFDoc_Environment* pApp);
80 static CJS_GlobalData* g_Instance;
82 CJS_GlobalData();
83 ~CJS_GlobalData();
Dglobal.h14 class CJS_GlobalData; variable
75 CJS_GlobalData* m_pGlobalData;
Dglobal.cpp108 m_pGlobalData = CJS_GlobalData::GetRetainedInstance(pApp); in Initial()