Lines Matching refs:oss
108 std::ostringstream oss; in Get() local
109 oss << "The value of \"Get property index\" is out of range. It must be >= 0 && <= " in Get()
111 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_st… in Get()
126 std::ostringstream oss; in Set() local
127 oss << "The value of \"Set property index\" is out of range. It must be >= 0 && <= " in Set()
129 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_st… in Set()
210 std::ostringstream oss; in GetOwnProperty() local
211 oss << "The value of \"index\" is out of range. It must be > " << (length - 1) in GetOwnProperty()
213 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_st… in GetOwnProperty()
228 std::ostringstream oss; in GetProperty() local
229 oss << "The value of \"index\" is out of range. It must be >= 0 && <= " << (length - 1) in GetProperty()
231 …JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_st… in GetProperty()