Lines Matching refs:sPropName

151   CFX_ByteString sPropName = propname;  in SetGlobalVariableNumber()  local
152 sPropName.TrimLeft(); in SetGlobalVariableNumber()
153 sPropName.TrimRight(); in SetGlobalVariableNumber()
154 if (sPropName.GetLength() == 0) in SetGlobalVariableNumber()
157 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNumber()
162 pNewData->data.sKey = sPropName; in SetGlobalVariableNumber()
172 CFX_ByteString sPropName = propname; in SetGlobalVariableBoolean() local
174 sPropName.TrimLeft(); in SetGlobalVariableBoolean()
175 sPropName.TrimRight(); in SetGlobalVariableBoolean()
177 if (sPropName.GetLength() == 0) in SetGlobalVariableBoolean()
180 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableBoolean()
185 pNewData->data.sKey = sPropName; in SetGlobalVariableBoolean()
196 CFX_ByteString sPropName = propname; in SetGlobalVariableString() local
198 sPropName.TrimLeft(); in SetGlobalVariableString()
199 sPropName.TrimRight(); in SetGlobalVariableString()
201 if (sPropName.GetLength() == 0) in SetGlobalVariableString()
204 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableString()
209 pNewData->data.sKey = sPropName; in SetGlobalVariableString()
221 CFX_ByteString sPropName = propname; in SetGlobalVariableObject() local
223 sPropName.TrimLeft(); in SetGlobalVariableObject()
224 sPropName.TrimRight(); in SetGlobalVariableObject()
226 if (sPropName.GetLength() == 0) in SetGlobalVariableObject()
229 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableObject()
234 pNewData->data.sKey = sPropName; in SetGlobalVariableObject()
244 CFX_ByteString sPropName = propname; in SetGlobalVariableNull() local
246 sPropName.TrimLeft(); in SetGlobalVariableNull()
247 sPropName.TrimRight(); in SetGlobalVariableNull()
249 if (sPropName.GetLength() == 0) in SetGlobalVariableNull()
252 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNull()
256 pNewData->data.sKey = sPropName; in SetGlobalVariableNull()
266 CFX_ByteString sPropName = propname; in SetGlobalVariablePersistent() local
268 sPropName.TrimLeft(); in SetGlobalVariablePersistent()
269 sPropName.TrimRight(); in SetGlobalVariablePersistent()
271 if (sPropName.GetLength() == 0) in SetGlobalVariablePersistent()
274 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariablePersistent()
284 CFX_ByteString sPropName = propname; in DeleteGlobalVariable() local
286 sPropName.TrimLeft(); in DeleteGlobalVariable()
287 sPropName.TrimRight(); in DeleteGlobalVariable()
289 if (sPropName.GetLength() == 0) in DeleteGlobalVariable()
292 int nFind = FindGlobalVariable(sPropName); in DeleteGlobalVariable()