Home
last modified time | relevance | path

Searched refs:m_copy (Results 176 – 200 of 311) sorted by relevance

12345678910>>...13

/dports/cad/qelectrotech/qet-0.7.0/sources/
H A Dqetdiagrameditor.cpp281 m_copy = new QAction(QET::Icons::EditCopy, tr("Cop&ier"), this); in setUpActions()
285 m_copy -> setShortcut(QKeySequence::Copy); in setUpActions()
289m_copy -> setStatusTip(tr("Copie les éléments sélectionnés dans le presse-papier", "status bar ti… in setUpActions()
296 connect(m_copy, &QAction::triggered, [this]() { in setUpActions()
653 main_tool_bar -> addAction(m_copy); in setUpToolBar()
723 menu_edition -> addAction(m_copy); in setUpMenu()
1481 …action_list << m_conductor_reset << m_find_element << m_cut << m_copy << m_delete_selection << m_r… in slot_updateComplexActions()
1505 m_copy -> setEnabled(copiable_items); in slot_updateComplexActions()
H A Dqetdiagrameditor.h153 QAction *m_copy; ///< Copy selection to clipboard variable
/dports/graphics/aseprite/aseprite-1.2.9/src/app/ui/
H A Dpalette_view.h157 bool m_copy; variable
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dimport.c681 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
685 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
690 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
691 if (def->m_base.m_copy == NULL) in _PyImport_FixupExtensionObject()
741 if (def->m_base.m_copy == NULL) in _PyImport_FindExtensionObjectEx()
749 if (PyDict_Update(mdict, def->m_base.m_copy)) in _PyImport_FindExtensionObjectEx()
/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dimport.c681 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
685 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
690 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
691 if (def->m_base.m_copy == NULL) in _PyImport_FixupExtensionObject()
741 if (def->m_base.m_copy == NULL) in _PyImport_FindExtensionObjectEx()
749 if (PyDict_Update(mdict, def->m_base.m_copy)) in _PyImport_FindExtensionObjectEx()
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dimport.c681 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
685 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
690 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
691 if (def->m_base.m_copy == NULL) in _PyImport_FixupExtensionObject()
741 if (def->m_base.m_copy == NULL) in _PyImport_FindExtensionObjectEx()
749 if (PyDict_Update(mdict, def->m_base.m_copy)) in _PyImport_FindExtensionObjectEx()
/dports/lang/python37/Python-3.7.12/Python/
H A Dimport.c661 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
665 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
670 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
671 if (def->m_base.m_copy == NULL) in _PyImport_FixupExtensionObject()
721 if (def->m_base.m_copy == NULL) in _PyImport_FindExtensionObjectEx()
729 if (PyDict_Update(mdict, def->m_base.m_copy)) in _PyImport_FindExtensionObjectEx()
/dports/lang/python38/Python-3.8.12/Python/
H A Dimport.c681 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
685 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
690 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
691 if (def->m_base.m_copy == NULL) in _PyImport_FixupExtensionObject()
741 if (def->m_base.m_copy == NULL) in _PyImport_FindExtensionObjectEx()
749 if (PyDict_Update(mdict, def->m_base.m_copy)) in _PyImport_FindExtensionObjectEx()
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Python/
H A Dimport.c681 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
685 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
690 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
691 if (def->m_base.m_copy == NULL) in _PyImport_FixupExtensionObject()
741 if (def->m_base.m_copy == NULL) in _PyImport_FindExtensionObjectEx()
749 if (PyDict_Update(mdict, def->m_base.m_copy)) in _PyImport_FindExtensionObjectEx()
/dports/emulators/pcem/pcem_emulator-pcem-faf5d6423060/src/slirp/
H A Dmbuf.c206 m_copy(n, m, off, len) in m_copy() function
/dports/misc/rump/buildrump.sh-b914579/src/sys/net/
H A Draw_usrreq.c112 if ((n = m_copy(m, 0, M_COPYALL)) == NULL) in raw_input()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/help/
H A Dhelpwidget.h170 QAction *m_copy = nullptr; variable
H A Dhelpwidget.cpp420 m_copy = new QAction(this); in HelpWidget()
421 Core::ActionManager::registerAction(m_copy, Core::Constants::COPY, context); in HelpWidget()
422 connect(m_copy, &QAction::triggered, this, &HelpWidget::copy); in HelpWidget()
551 Core::ActionManager::unregisterAction(m_copy, Core::Constants::COPY); in ~HelpWidget()
/dports/net/vde2/vde2-2.3.2/src/slirpvde/
H A Dmbuf.c179 m_copy(struct mbuf *n, struct mbuf *m, int off, int len) in m_copy() function
/dports/net/vde/vde-1.5.7/slirpvde/
H A Dmbuf.c203 m_copy(n, m, off, len) in m_copy() function
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/ipf/netinet/
H A Dip_compat.h711 # define M_COPY(m) m_copy((m), 0, M_COPYALL)
786 # define M_COPY(m) m_copy((m), 0, M_COPYALL)
787 # define M_DUP(m) m_copy((m), 0, M_COPYALL)
931 # define M_COPY(x) m_copy((x), 0, M_COPYALL)
1143 # define M_COPY(x) m_copy((x), 0, M_COPYALL)
1200 # define M_COPY(m) m_copy((m), 0, M_COPYALL)
1236 # define M_COPY(m) m_copy((m), 0, M_COPYALL)
1262 # define M_COPY(m) m_copy((m), 0, M_COPYALL)
1566 # define M_COPY(m) m_copy((m), 0, M_COPYALL)
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/slirp/
H A Dmbuf.c198 m_copy(struct mbuf *n, struct mbuf *m, int off, int len) in m_copy() function
/dports/emulators/fs-uae/fs-uae-3.1.35/src/slirp/
H A Dmbuf.cpp212 int m_copy(struct mbuf *n, struct mbuf *m, int off, int len) in m_copy() function
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dimport.c448 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
452 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
458 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
459 if (def->m_base.m_copy == NULL) { in _PyImport_FixupExtensionObject()
521 if (def->m_base.m_copy == NULL) in import_find_extension()
531 if (PyDict_Update(mdict, def->m_base.m_copy)) { in import_find_extension()
/dports/lang/python39/Python-3.9.9/Python/
H A Dimport.c717 if (def->m_base.m_copy) { in _PyImport_FixupExtensionObject()
721 Py_CLEAR(def->m_base.m_copy); in _PyImport_FixupExtensionObject()
727 def->m_base.m_copy = PyDict_Copy(dict); in _PyImport_FixupExtensionObject()
728 if (def->m_base.m_copy == NULL) { in _PyImport_FixupExtensionObject()
790 if (def->m_base.m_copy == NULL) in import_find_extension()
798 if (PyDict_Update(mdict, def->m_base.m_copy)) in import_find_extension()
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/network/
H A Dmulti_obj.cpp1951 matrix m_copy; in multi_oo_calc_interp_splines() local
1974 m_copy = *cur_orient; in multi_oo_calc_interp_splines()
1976 …physics_sim(&c, &m_copy, &p_copy, avg_diff * oo_error); // next point, assuming we followed our … in multi_oo_calc_interp_splines()
1983 m_copy = *new_orient; in multi_oo_calc_interp_splines()
1985 physics_sim(&c, &m_copy, &p_copy, avg_diff); // next point, given this new info in multi_oo_calc_interp_splines()
/dports/math/py-theano/Theano-1.0.5/theano/compile/tests/
H A Dtest_pfunc.py749 m_copy = m.copy()
750 vals = f(m, m_copy)
788 m_copy = m.copy()
790 vals = f(v, v_copy, m, m_copy)
/dports/misc/rump/buildrump.sh-b914579/src/sys/netipsec/
H A Dkeysock.c362 if ((n = m_copy(m, 0, (int)M_COPYALL)) != NULL) { in key_sendup_mbuf()
400 if ((n = m_copy(m, 0, (int)M_COPYALL)) == NULL) { in key_sendup_mbuf()
/dports/emulators/qemu60/qemu-6.0.0/slirp/src/
H A Dmbuf.c186 int m_copy(struct mbuf *n, struct mbuf *m, int off, int len) in m_copy() function
/dports/emulators/qemu-utils/qemu-4.2.1/slirp/src/
H A Dmbuf.c186 int m_copy(struct mbuf *n, struct mbuf *m, int off, int len) in m_copy() function

12345678910>>...13