Home | History | Annotate | Download | only in closure

Lines Matching refs:serialize

111  * @param {*} object The object to serialize.
115 goog.json.serialize = function(object) {
116 return new goog.json.Serializer().serialize(object);
122 * Class that is used to serialize JSON objects to a string.
132 * @param {*} object The object to serialize.
136 goog.json.Serializer.prototype.serialize = function(object) {
146 * @param {*} object The object to serialize.
222 * @param {string} s The string to serialize.
251 * @param {number} n The number to serialize.
262 * @param {Array} arr The array to serialize.
281 * @param {Object} obj The object to serialize.