Lines Matching refs:CJS_GlobalData_Element
90 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()
178 auto pNewData = pdfium::MakeUnique<CJS_GlobalData_Element>(); in SetGlobalVariableNull()
190 CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName); in SetGlobalVariablePersistent()
215 CJS_GlobalData_Element* CJS_GlobalData::GetAt(int index) const { in GetAt()