Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/javascript/
DJS_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 CFX_ByteString& sPropname);
73 std::vector<std::unique_ptr<CJS_GlobalData_Element>> m_arrayGlobalData;
DJS_GlobalData.cpp90 CJS_GlobalData_Element* CJS_GlobalData::GetGlobalVariable( in GetGlobalVariable()
102 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNumber()
107 std::unique_ptr<CJS_GlobalData_Element> pNewData(new CJS_GlobalData_Element); in SetGlobalVariableNumber()
120 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableBoolean()
125 std::unique_ptr<CJS_GlobalData_Element> pNewData(new CJS_GlobalData_Element); in SetGlobalVariableBoolean()
138 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableString()
143 std::unique_ptr<CJS_GlobalData_Element> pNewData(new CJS_GlobalData_Element); in SetGlobalVariableString()
157 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableObject()
162 std::unique_ptr<CJS_GlobalData_Element> pNewData(new CJS_GlobalData_Element); in SetGlobalVariableObject()
174 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNull()
[all …]
Dglobal.cpp185 CJS_GlobalData_Element* pData = m_pGlobalData->GetAt(i); in UpdateGlobalPersistentVariables()