Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/src/javascript/
DJS_GlobalData.cpp133 CJS_GlobalData_Element* pTemp = m_arrayGlobalData.GetAt(i); in FindGlobalVariable()
140 CJS_GlobalData_Element* CJS_GlobalData::GetGlobalVariable( in GetGlobalVariable()
157 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNumber()
161 CJS_GlobalData_Element* pNewData = new CJS_GlobalData_Element; in SetGlobalVariableNumber()
180 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableBoolean()
184 CJS_GlobalData_Element* pNewData = new CJS_GlobalData_Element; in SetGlobalVariableBoolean()
204 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableString()
208 CJS_GlobalData_Element* pNewData = new CJS_GlobalData_Element; in SetGlobalVariableString()
229 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableObject()
233 CJS_GlobalData_Element* pNewData = new CJS_GlobalData_Element; in SetGlobalVariableObject()
[all …]
DJS_GlobalData.h50 class CJS_GlobalData_Element {
52 CJS_GlobalData_Element() {} in CJS_GlobalData_Element() function
53 virtual ~CJS_GlobalData_Element() {} in ~CJS_GlobalData_Element()
77 CJS_GlobalData_Element* GetAt(int index) const;
88 CJS_GlobalData_Element* GetGlobalVariable(const FX_CHAR* propname);
102 CFX_ArrayTemplate<CJS_GlobalData_Element*> m_arrayGlobalData;
Dglobal.cpp231 CJS_GlobalData_Element* pData = m_pGlobalData->GetAt(i); in UpdateGlobalPersistentVariables()