/third_party/node/deps/npm/node_modules/json-parse-even-better-errors/lib/ |
D | index.js | 95 const parseJson = (txt, reviver) => { argument 96 const result = JSON.parse(txt, reviver) 111 const parseJsonError = (raw, reviver, context) => { 114 return parseJson(txt, reviver) 129 parseJsonError.noExceptions = (raw, reviver) => { argument 131 return parseJson(stripBOM(raw), reviver)
|
/third_party/node/deps/npm/node_modules/parse-conflict-json/lib/ |
D | index.js | 26 const parseConflictJSON = (str, reviver, prefer) => { argument 67 const parent = parseJSON(pieces.parent, reviver) 68 const ours = parseJSON(pieces.ours, reviver) 69 const theirs = parseJSON(pieces.theirs, reviver)
|
/third_party/node/deps/v8/src/builtins/ |
D | builtins-json.cc | 19 Handle<Object> reviver = args.atOrUndefined(isolate, 2); in BUILTIN() local 26 ? JsonParser<uint8_t>::Parse(isolate, string, reviver) in BUILTIN() 27 : JsonParser<uint16_t>::Parse(isolate, string, reviver)); in BUILTIN()
|
/third_party/node/deps/v8/src/json/ |
D | json-parser.h | 108 Handle<Object> reviver); 111 JsonParseInternalizer(Isolate* isolate, Handle<JSReceiver> reviver) in JsonParseInternalizer() argument 112 : isolate_(isolate), reviver_(reviver) {} in JsonParseInternalizer() 148 Isolate* isolate, Handle<String> source, Handle<Object> reviver) { in Parse() argument 154 if (reviver->IsCallable()) { in Parse() 155 return JsonParseInternalizer::Internalize(isolate, result, reviver); in Parse()
|
D | json-parser.cc | 126 Handle<Object> reviver) { in Internalize() argument 127 DCHECK(reviver->IsCallable()); in Internalize() 129 Handle<JSReceiver>::cast(reviver)); in Internalize()
|
/third_party/typescript/tests/baselines/reference/ |
D | controlFlowIfStatement.types | 104 >JSON.parse : (text: string, reviver?: (this: any, key: string, value: any) => any) => any 106 >parse : (text: string, reviver?: (this: any, key: string, value: any) => any) => any
|
D | 1.0lib-noErrors.js | 939 parse(text: string, reviver?: (key: any, value: any) => any): any;
|
D | 1.0lib-noErrors.types | 1551 …* @param reviver A function that transforms the results. This function is called for each member o… 1554 parse(text: string, reviver?: (key: any, value: any) => any): any; 1555 >parse : (text: string, reviver?: (key: any, value: any) => any) => any 1557 >reviver : (key: any, value: any) => any
|
D | 1.0lib-noErrors.symbols | 1648 …* @param reviver A function that transforms the results. This function is called for each member o… 1651 parse(text: string, reviver?: (key: any, value: any) => any): any; 1654 >reviver : Symbol(reviver, Decl(1.0lib-noErrors.ts, 937, 23))
|
D | complexRecursiveCollections.js | 29 …export function fromJS(jsValue: any, reviver?: (key: string | number, sequence: Collection.Keyed<s…
|
D | complexRecursiveCollections.types | 87 …export function fromJS(jsValue: any, reviver?: (key: string | number, sequence: Collection.Keyed<s… 88 >fromJS : (jsValue: any, reviver?: (key: string | number, sequence: Collection.Keyed<string, any> |… 90 >reviver : (key: string | number, sequence: Collection.Keyed<string, any> | Collection.Indexed<any>…
|
D | complexRecursiveCollections.errors.txt | 41 …export function fromJS(jsValue: any, reviver?: (key: string | number, sequence: Collection.Keyed<s…
|
D | complexRecursiveCollections.symbols | 166 …export function fromJS(jsValue: any, reviver?: (key: string | number, sequence: Collection.Keyed<s… 169 >reviver : Symbol(reviver, Decl(immutable.ts, 4, 38))
|
/third_party/typescript/tests/cases/conformance/decorators/ |
D | 1.0lib-noErrors.ts | 939 parse(text: string, reviver?: (key: any, value: any) => any): any;
|
/third_party/typescript/tests/cases/compiler/ |
D | complexRecursiveCollections.ts | 29 …export function fromJS(jsValue: any, reviver?: (key: string | number, sequence: Collection.Keyed<s…
|
/third_party/typescript/src/lib/ |
D | es5.d.ts | 1119 parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;
|
/third_party/typescript/lib/ |
D | lib.es5.d.ts | 1139 parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 977 parse(text: string, reviver?: (key: any, value: any) => any): any;
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 102221 JS_ParseJSONWithReviver(JSContext* cx, const char16_t* chars, uint32_t len, JS::HandleValue reviver, 102225 JS_ParseJSONWithReviver(JSContext* cx, JS::HandleString str, JS::HandleValue reviver,
|