Searched refs:pUtf8 (Results 1 – 5 of 5) sorted by relevance
/trunk/main/pyuno/source/module/ |
H A D | pyuno_util.cxx | 91 char *pUtf8 = PyUnicode_AsUTF8AndSize(pystr, &size); in pyString2ustring() 92 ret = OUString(pUtf8, size, RTL_TEXTENCODING_UTF8); in pyString2ustring() 94 PyObject* pUtf8 = PyUnicode_AsUTF8String(pystr); in pyString2ustring() 95 ret = OUString(PyBytes_AsString(pUtf8), PyBytes_Size(pUtf8), RTL_TEXTENCODING_UTF8); in pyString2ustring() 96 Py_DECREF(pUtf8); in pyString2ustring()
|
H A D | pyuno_type.cxx | 286 PyRef pUtf8( PyUnicode_AsUTF8String( target ), SAL_NO_ACQUIRE ); in importToGlobal() local 287 const char *targetName = PyBytes_AsString( pUtf8.get() ); in importToGlobal() 317 PyRef *pUtf8( PyUnicode_AsUTF8String( str ), SAL_NO_ACQUIRE ); in importToGlobal() local 318 const char *name = PyBytes_AsString( pUtf8.get() ); in importToGlobal()
|
H A D | pyuno.cxx | 456 PyRef pUtf8(PyUnicode_AsUTF8String(attr_name), SAL_NO_ACQUIRE); in PyUNO_getattr() local 457 char *name = PyBytes_AsString(pUtf8.get()); in PyUNO_getattr() 574 PyRef pUtf8(PyUnicode_AsUTF8String(attr_name), SAL_NO_ACQUIRE); in PyUNO_setattr() local 575 char *name = PyBytes_AsString(pUtf8.get()); in PyUNO_setattr()
|
H A D | pyuno_module.cxx | 613 PyRef pUtf8(PyUnicode_AsUTF8String( PyTuple_GetItem( args, 1 ) ), SAL_NO_ACQUIRE); in invoke() 614 const char *name = PyBytes_AsString( pUtf8.get() ); in invoke()
|
/trunk/main/rsc/source/tools/ |
H A D | rscchar.cxx | 176 char * pUtf8 = (char *)rtl_allocateMemory( nUniSize * 6 ); in MakeUTF8() local 179 pUtf8, nUniSize * 6, in MakeUTF8() 189 return pUtf8; in MakeUTF8()
|
Completed in 36 milliseconds