/third_party/alsa-lib/test/ |
H A D | midiloop.c | 73 char *iname = "hw:0,0", *oname = "hw:0,0"; in main() local 97 oname = argv[++i]; in main() 104 iname = oname; in main() 105 if (oname == NULL) in main() 106 oname = iname; in main() 110 fprintf(stderr, " Input: %s Output: %s\n", iname, oname); in main() 119 err = snd_rawmidi_open(NULL, &handle_out, oname, 0); in main() 121 fprintf(stderr,"snd_rawmidi_open %s failed: %d\n",oname,err); in main()
|
/third_party/backends/backend/pixma/scripts/ |
H A D | pixma_gen_options.py | 55 oname = '_group_%d' % g.ngroups 61 oname = temp 64 oname = temp[0:idx] 66 o['name'] = oname 238 oname = o['cname_con'] 241 genMinMaxRange(oname, otype, c) 243 genList(oname, otype, c)
|
/third_party/python/Include/cpython/ |
H A D | abstract.h | 144 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ in _PyObject_VectorcallMethodId() local 145 if (!oname) { in _PyObject_VectorcallMethodId() 148 return PyObject_VectorcallMethod(oname, args, nargsf, kwnames); in _PyObject_VectorcallMethodId()
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | CodeMangler.java | 283 String oname; in process() 286 oname = name.substring(0, ix); in process() 288 oname = name; in process() 290 oname += ".java"; in process() 291 File fout = new File(outdir, oname); in process()
|
/third_party/python/Objects/ |
H A D | object.c | 855 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ in _PyObject_GetAttrId() local 856 if (!oname) in _PyObject_GetAttrId() 858 result = PyObject_GetAttr(v, oname); in _PyObject_GetAttrId() 866 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ in _PyObject_SetAttrId() local 867 if (!oname) in _PyObject_SetAttrId() 869 result = PyObject_SetAttr(v, oname, w); in _PyObject_SetAttrId() 989 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ in _PyObject_LookupAttrId() local 990 if (!oname) { in _PyObject_LookupAttrId() 994 return _PyObject_LookupAttr(v, oname, result); in _PyObject_LookupAttrId()
|
H A D | call.c | 895 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */ in _PyObject_CallMethodIdObjArgs() local 896 if (!oname) { in _PyObject_CallMethodIdObjArgs() 901 int is_method = _PyObject_GetMethod(obj, oname, &callable); in _PyObject_CallMethodIdObjArgs()
|
H A D | typeobject.c | 3874 PyObject *oname; in _PyType_LookupId() local 3875 oname = _PyUnicode_FromId(name); /* borrowed */ in _PyType_LookupId() 3876 if (oname == NULL) in _PyType_LookupId() 3878 return _PyType_Lookup(type, oname); in _PyType_LookupId()
|
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
H A D | command.js | 510 const oname = option.name(); 564 this.on('option:' + oname, (val) => { 570 this.on('optionEnv:' + oname, (val) => {
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
H A D | pngcp.c | 314 # define VL(oname, name, type, search)\ 315 { oname, type, search, VLSIZE(name), VLNAME(name) }, 316 # define VLO(oname, name, search) VL(oname, name, OPTION, search)
|
/third_party/python/Modules/clinic/ |
H A D | posixmodule.c.h | 3405 os_initgroups_impl(PyObject *module, PyObject *oname, int gid); 3411 PyObject *oname = NULL; in os_initgroups() local 3417 if (!PyUnicode_FSConverter(args[0], &oname)) { in os_initgroups() 3424 return_value = os_initgroups_impl(module, oname, gid); in os_initgroups() 3427 /* Cleanup for oname */ in os_initgroups() 3428 Py_XDECREF(oname); in os_initgroups() 3451 os_initgroups_impl(PyObject *module, PyObject *oname, gid_t gid); 3457 PyObject *oname = NULL; in os_initgroups() local 3463 if (!PyUnicode_FSConverter(args[0], &oname)) { in os_initgroups() 3469 return_value = os_initgroups_impl(module, oname, gi in os_initgroups() [all...] |
/third_party/python/Modules/ |
H A D | socketmodule.c | 6900 PyObject *oname; local 6907 PyUnicode_FSConverter, &oname)) 6910 index = if_nametoindex(PyBytes_AS_STRING(oname)); 6911 Py_DECREF(oname);
|
H A D | posixmodule.c | 7810 username as oname: FSConverter 7822 os_initgroups_impl(PyObject *module, PyObject *oname, int gid) in os_initgroups_impl() argument 7828 username as oname: FSConverter in os_initgroups_impl() 7840 os_initgroups_impl(PyObject *module, PyObject *oname, gid_t gid) in os_initgroups_impl() 7844 const char *username = PyBytes_AS_STRING(oname); in os_initgroups_impl()
|
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 214 oname = orig.tzname(None) 218 self.assertEqual(orig.tzname(None), oname) 225 self.assertEqual(derived.tzname(None), oname)
|