Home
last modified time | relevance | path

Searched refs:id_obj (Results 1 – 3 of 3) sorted by relevance

/third_party/node/test/parallel/
Dtest-emit-after-uncaught-exception.js7 const id_obj = {}; constant
11 before(id) { if (collect) id_obj[id] = true; },
12 after(id) { delete id_obj[id]; },
22 assert.strictEqual(Object.keys(id_obj).length, 0);
/third_party/python/Modules/
D_lzmamodule.c343 PyObject *id_obj; in lzma_filter_converter() local
350 id_obj = PyMapping_GetItemString(spec, "id"); in lzma_filter_converter()
351 if (id_obj == NULL) { in lzma_filter_converter()
357 f->id = PyLong_AsUnsignedLongLong(id_obj); in lzma_filter_converter()
358 Py_DECREF(id_obj); in lzma_filter_converter()
D_xxsubinterpretersmodule.c2360 PyObject *ids, *id_obj; in channel_list_interpreters() local
2383 id_obj = _PyInterpreterState_GetIDObject(interp); in channel_list_interpreters()
2384 if (id_obj == NULL) { in channel_list_interpreters()
2387 res = PyList_Insert(ids, 0, id_obj); in channel_list_interpreters()
2388 Py_DECREF(id_obj); in channel_list_interpreters()