Home
last modified time | relevance | path

Searched refs:p_object (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/tests/jerry/fail/
Dregression-test-issue-2775.js39 p_object = { "a" : 1 , "b" : true , "c" : "foo" , "d" : null , "e" : undefined }
40 print ( JSON . stringify ( p_object ) == '{"a":1,"b":true,"c":"foo","d":null}' )
Dregression-test-issue-2774.js42 p_object = { $ : 1 , "b" : 0 , "" : 0 , "d" : 0 , "e" : undefined }
43 print ( JSON . stringify ( p_object ) == '{"a":1,"b":true,"c":"foo","d":null}' )
/third_party/jerryscript/tests/jerry/
Djson-stringify.js53 p_object = { "a": 1, "b": true, "c": "foo", "d": null, "e": undefined }; variable
54 assert (JSON.stringify (p_object) == '{"a":1,"b":true,"c":"foo","d":null}');
/third_party/node/deps/v8/tools/v8windbg/base/
Dutilities.cc14 HRESULT BoxObject(IDataModelManager* p_manager, IUnknown* p_object, in BoxObject() argument
20 vt_val.punkVal = p_object; in BoxObject()