Home
last modified time | relevance | path

Searched refs:empty_array (Results 1 – 11 of 11) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
DtypedArray-tostring.js19 var empty_array = new Uint32Array(); variable
24 assert(empty_array.toString() === "");
DtypedArray-join.js19 var empty_array = new Uint32Array(); variable
24 assert(empty_array.join('_') === "");
DtypedArray-stringify.js18 var empty_array = new Uint32Array(); variable
23 assert((JSON.stringify(empty_array)) === '{}');
/third_party/jerryscript/tests/jerry/fail/
Dregression-test-issue-2775.js53 empty_array = [ ]
54 print ( JSON . stringify ( empty_array ) == '[]' )
Dregression-test-issue-2774.js56 empty_array = [ ]
/third_party/jerryscript/tests/jerry/
Djson-stringify.js77 empty_array = [];
78 assert (JSON.stringify (empty_array) == '[]');
/third_party/node/deps/v8/src/web-snapshot/
Dweb-snapshot.cc1251 Handle<FixedArray> empty_array = factory()->empty_fixed_array(); in WebSnapshotDeserializer() local
1252 strings_handle_ = empty_array; in WebSnapshotDeserializer()
1253 maps_handle_ = empty_array; in WebSnapshotDeserializer()
1254 contexts_handle_ = empty_array; in WebSnapshotDeserializer()
1255 functions_handle_ = empty_array; in WebSnapshotDeserializer()
1256 classes_handle_ = empty_array; in WebSnapshotDeserializer()
1257 arrays_handle_ = empty_array; in WebSnapshotDeserializer()
1258 objects_handle_ = empty_array; in WebSnapshotDeserializer()
1259 external_references_handle_ = empty_array; in WebSnapshotDeserializer()
/third_party/python/Modules/
D_json.c1660 PyObject *empty_array = _PyUnicode_FromId(&PyId_empty_array); // borrowed ref in encoder_listencode_list() local
1665 if (open_array == NULL || close_array == NULL || empty_array == NULL) { in encoder_listencode_list()
1674 return _PyAccu_Accumulate(acc, empty_array); in encoder_listencode_list()
/third_party/node/deps/v8/src/builtins/
Dbuiltins-object-gen.cc194 TNode<JSArray> empty_array = AllocateJSArray( in GetOwnValuesOrEntries() local
196 Return(empty_array); in GetOwnValuesOrEntries()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc4045 TNode<FixedArray> empty_array = EmptyFixedArrayConstant(); in AllocateUninitializedJSArrayWithElements() local
4046 array = AllocateJSArray(array_map, empty_array, length, allocation_site, in AllocateUninitializedJSArrayWithElements()
4048 return {array.value(), empty_array}; in AllocateUninitializedJSArrayWithElements()
4057 TNode<FixedArray> empty_array = EmptyFixedArrayConstant(); in AllocateUninitializedJSArrayWithElements() local
4058 array = AllocateJSArray(array_map, empty_array, length, allocation_site, in AllocateUninitializedJSArrayWithElements()
4060 elements = empty_array; in AllocateUninitializedJSArrayWithElements()
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv2691 Modules/_json.c encoder_listencode_list empty_array -