Lines Matching refs:result
11 int32_t result;
13 CFNumberGetValue(num, kCFNumberSInt32Type, &result);
14 return result;
30 PyObject* result;
46 result = PyUnicode_DecodeUTF8(
50 return result;
61 PyObject* result = NULL;
73 result = PyDict_New();
74 if (result == NULL) goto error;
86 r = PyDict_SetItemString(result, "exclude_simple", v);
98 r = PyDict_SetItemString(result, "exceptions", v);
122 return result;
126 Py_XDECREF(result);
174 PyObject* result = NULL;
186 result = PyDict_New();
187 if (result == NULL) goto error;
189 r = set_proxy(result, "http", proxyDict,
194 r = set_proxy(result, "https", proxyDict,
199 r = set_proxy(result, "ftp", proxyDict,
204 r = set_proxy(result, "gopher", proxyDict,
211 return result;
214 Py_XDECREF(result);