Lines Matching refs:parse
16 and parse.
99 JSON.parse(text, reviver)
111 // Parse the text. Values that look like ISO date strings will
114 myData = JSON.parse(text, function (key, value) {
127 myData = JSON.parse('["Date(09/09/2001)"]', function (key, value) {
158 lastIndex, length, parse, prototype, push, replace, slice, stringify,
400 // If the JSON object does not yet have a parse method, give it one.
402 if (typeof JSON.parse !== 'function') {
403 JSON.parse = function (text, reviver) {
405 // The parse method takes a text and an optional reviver function, and returns
478 throw new SyntaxError('JSON.parse');