Lines Matching refs:sPropName
35 bool TrimPropName(ByteString* sPropName) { in TrimPropName() argument
36 sPropName->Trim(); in TrimPropName()
37 return sPropName->GetLength() != 0; in TrimPropName()
98 ByteString sPropName(propname); in SetGlobalVariableNumber() local
99 if (!TrimPropName(&sPropName)) in SetGlobalVariableNumber()
102 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNumber()
108 pNewData->data.sKey = sPropName; in SetGlobalVariableNumber()
116 ByteString sPropName(propname); in SetGlobalVariableBoolean() local
117 if (!TrimPropName(&sPropName)) in SetGlobalVariableBoolean()
120 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableBoolean()
126 pNewData->data.sKey = sPropName; in SetGlobalVariableBoolean()
134 ByteString sPropName(propname); in SetGlobalVariableString() local
135 if (!TrimPropName(&sPropName)) in SetGlobalVariableString()
138 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableString()
144 pNewData->data.sKey = sPropName; in SetGlobalVariableString()
153 ByteString sPropName(propname); in SetGlobalVariableObject() local
154 if (!TrimPropName(&sPropName)) in SetGlobalVariableObject()
157 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableObject()
163 pNewData->data.sKey = sPropName; in SetGlobalVariableObject()
170 ByteString sPropName(propname); in SetGlobalVariableNull() local
171 if (!TrimPropName(&sPropName)) in SetGlobalVariableNull()
174 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName)) { in SetGlobalVariableNull()
179 pNewData->data.sKey = sPropName; in SetGlobalVariableNull()
186 ByteString sPropName(propname); in SetGlobalVariablePersistent() local
187 if (!TrimPropName(&sPropName)) in SetGlobalVariablePersistent()
190 CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName); in SetGlobalVariablePersistent()
199 ByteString sPropName(propname); in DeleteGlobalVariable() local
200 if (!TrimPropName(&sPropName)) in DeleteGlobalVariable()
203 auto iter = FindGlobalVariable(sPropName); in DeleteGlobalVariable()