Home
last modified time | relevance | path

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

/external/clang/test/SemaObjC/
Dcomptypes-10.m17 NSObject <NSCopying> *foo(id <NSCopying> bar, id id_obj)
22 NSObject <NSCopying> *I = id_obj;
23 NSObject *I1 = id_obj;
26 gorf(id_obj);
/external/llvm-project/clang/test/SemaObjC/
Dcomptypes-10.m17 NSObject <NSCopying> *foo(id <NSCopying> bar, id id_obj)
22 NSObject <NSCopying> *I = id_obj;
23 NSObject *I1 = id_obj;
26 gorf(id_obj);
/external/python/cpython3/Modules/
D_lzmamodule.c292 PyObject *id_obj; in lzma_filter_converter() local
299 id_obj = PyMapping_GetItemString(spec, "id"); in lzma_filter_converter()
300 if (id_obj == NULL) { in lzma_filter_converter()
306 f->id = PyLong_AsUnsignedLongLong(id_obj); in lzma_filter_converter()
307 Py_DECREF(id_obj); in lzma_filter_converter()
D_xxsubinterpretersmodule.c2353 PyObject *ids, *id_obj; in channel_list_interpreters() local
2376 id_obj = _PyInterpreterState_GetIDObject(interp); in channel_list_interpreters()
2377 if (id_obj == NULL) { in channel_list_interpreters()
2380 res = PyList_Insert(ids, 0, id_obj); in channel_list_interpreters()
2381 Py_DECREF(id_obj); in channel_list_interpreters()