Lines Matching refs:szPropName
118 bool CFXJSE_Value::SetObjectProperty(const ByteStringView& szPropName, in SetObjectProperty() argument
130 v8::String::NewFromUtf8(m_pIsolate, szPropName.unterminated_c_str(), in SetObjectProperty()
132 szPropName.GetLength()), in SetObjectProperty()
136 bool CFXJSE_Value::GetObjectProperty(const ByteStringView& szPropName, in GetObjectProperty() argument
147 m_pIsolate, szPropName.unterminated_c_str(), in GetObjectProperty()
148 v8::String::kNormalString, szPropName.GetLength())); in GetObjectProperty()
179 bool CFXJSE_Value::DeleteObjectProperty(const ByteStringView& szPropName) { in DeleteObjectProperty() argument
187 m_pIsolate, szPropName.unterminated_c_str(), v8::String::kNormalString, in DeleteObjectProperty()
188 szPropName.GetLength())); in DeleteObjectProperty()
192 bool CFXJSE_Value::HasObjectOwnProperty(const ByteStringView& szPropName, in HasObjectOwnProperty() argument
201 m_pIsolate, szPropName.unterminated_c_str(), v8::String::kNormalString, in HasObjectOwnProperty()
202 szPropName.GetLength()); in HasObjectOwnProperty()
210 bool CFXJSE_Value::SetObjectOwnProperty(const ByteStringView& szPropName, in SetObjectOwnProperty() argument
224 v8::String::NewFromUtf8(m_pIsolate, szPropName.unterminated_c_str(), in SetObjectOwnProperty()
226 szPropName.GetLength()), in SetObjectOwnProperty()