Lines Matching refs:newObj
728 PyObject *newObj; in VimToPython() local
795 if (!(newObj = VimToPython(&curr->li_tv, depth + 1, lookup_dict))) in VimToPython()
800 if (PyList_Append(ret, newObj)) in VimToPython()
802 Py_DECREF(newObj); in VimToPython()
806 Py_DECREF(newObj); in VimToPython()
838 if (!(newObj = VimToPython(&di->di_tv, depth + 1, lookup_dict))) in VimToPython()
843 if (PyDict_SetItemString(ret, (char *)hi->hi_key, newObj)) in VimToPython()
846 Py_DECREF(newObj); in VimToPython()
1950 PyObject *newObj; in DictionaryListObjects() local
1957 if (!(newObj = hiconvert(hi))) in DictionaryListObjects()
1962 PyList_SET_ITEM(ret, i, newObj); in DictionaryListObjects()