Lines Matching defs:oss
104 std::ostringstream oss;
105 oss << "The value of \"Get property index\" is out of range. It must be >= 0 && <= "
107 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_str());
126 std::ostringstream oss;
127 oss << "The value of \"Set property index\" is out of range. It must be >= 0 && <= "
129 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_str());
215 std::ostringstream oss;
216 oss << "The value of \"index\" is out of range. It must be > " << (length - 1)
218 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_str());
246 std::ostringstream oss;
247 oss << "The value of \"index\" is out of range. It must be >= 0 && <= " << (length - 1)
249 JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::RANGE_ERROR, oss.str().c_str());