Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
Dcjs_globaldata.h18 class CJS_GlobalData_Element {
20 CJS_GlobalData_Element() {} in CJS_GlobalData_Element() function
21 ~CJS_GlobalData_Element() {} in ~CJS_GlobalData_Element()
44 CJS_GlobalData_Element* GetAt(int index) const;
48 std::vector<std::unique_ptr<CJS_GlobalData_Element>>::iterator;
50 std::vector<std::unique_ptr<CJS_GlobalData_Element>>::const_iterator;
58 CJS_GlobalData_Element* GetGlobalVariable(const ByteString& sPropname);
73 std::vector<std::unique_ptr<CJS_GlobalData_Element>> m_arrayGlobalData;
Dcjs_globaldata.cpp90 CJS_GlobalData_Element* CJS_GlobalData::GetGlobalVariable( in GetGlobalVariable()
102 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNumber()
107 auto pNewData = pdfium::MakeUnique<CJS_GlobalData_Element>(); in SetGlobalVariableNumber()
120 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableBoolean()
125 auto pNewData = pdfium::MakeUnique<CJS_GlobalData_Element>(); in SetGlobalVariableBoolean()
138 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableString()
143 auto pNewData = pdfium::MakeUnique<CJS_GlobalData_Element>(); in SetGlobalVariableString()
157 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableObject()
162 auto pNewData = pdfium::MakeUnique<CJS_GlobalData_Element>(); in SetGlobalVariableObject()
174 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNull()
[all …]
Dcjs_global.cpp367 CJS_GlobalData_Element* pData = m_pGlobalData->GetAt(i); in UpdateGlobalPersistentVariables()