Home
last modified time | relevance | path

Searched refs:fxs (Results 1 – 25 of 259) sorted by relevance

1234567891011

/dports/print/photoprint/photoprint-0.4.2-pre2/effects/
H A Ddialogcheck.cpp36 EffectListSource fxs; in main() local
37 fxs.CreateEffect(0,header); in main()
38 fxs.CreateEffect(1,header); in main()
39 fxs.CreateEffect(2,header); in main()
40 PPEffect *e=header.Find(fxs.GetID(1)); in main()
45 fxs.CreateEffect(1,header); in main()
46 e=header.Find(fxs.GetID(1)); in main()
51 fxs.CreateEffect(1,header); in main()
52 e=header.Find(fxs.GetID(1)); in main()
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/include/toonz/
H A Dfxcommand.h63 DVAPI void insertFx(TFx *newFx, const QList<TFxP> &fxs,
66 DVAPI void addFx(TFx *newFx, const QList<TFxP> &fxs, TApplication *app,
68 DVAPI void replaceFx(TFx *newFx, const QList<TFxP> &fxs,
72 DVAPI void makeMacroFx(const std::vector<TFxP> &fxs, TApplication *app);
78 DVAPI void disconnectNodesFromXsheet(const std::list<TFxP> &fxs,
82 DVAPI void connectFxs(const Link &link, const std::list<TFxP> &fxs,
87 DVAPI void connectNodesToXsheet(const std::list<TFxP> &fxs,
89 DVAPI void deleteSelection(const std::list<TFxP> &fxs,
93 DVAPI void pasteFxs(const std::list<TFxP> &fxs,
101 DVAPI void addPasteFxs(TFx *inFx, const std::list<TFxP> &fxs,
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/common/tfx/
H A Dtmacrofx.cpp34 std::find_if(fxs.begin(), fxs.end(), MatchesFx(root)); in pushParents()
35 if (found == fxs.end()) fxs.push_back(root); in pushParents()
45 std::find_if(fxs.begin(), fxs.end(), MatchesFx(root)); in pushParents()
46 if (found == fxs.end()) fxs.push_back(root); in pushParents()
57 TFxP fx = fxs[i]; in sortFxs()
66 std::find_if(fxs.begin(), fxs.end(), MatchesFx(connectedFx)); in sortFxs()
97 if (fxs.size() == 1) in analyze()
119 if (std::find_if(fxs.begin(), fxs.end(), MatchesFx(inputPortFx)) != in analyze()
120 fxs.end()) in analyze()
134 if (std::find_if(fxs.begin(), fxs.end(), MatchesFx(outputFx)) != in analyze()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzqt/
H A Dfxselection.cpp199 QList<TFxP> fxs; in pasteSelection() local
203 if (fxs.isEmpty() && columns.isEmpty()) return; in pasteSelection()
232 for (int i = 0; i < (int)fxs.size(); i++) select(fxs[i]); in pasteSelection()
233 m_schematicScene->selectNodes(fxs); in pasteSelection()
267 QList<TFxP> fxs; in insertPasteSelection() local
272 if (fxs.empty() && columns.empty()) return true; in insertPasteSelection()
316 QList<TFxP> fxs; in addPasteSelection() local
328 TFxCommand::addPasteFxs(inFx, fxs.toStdList(), in addPasteSelection()
360 QList<TFxP> fxs; in replacePasteSelection() local
481 QList<TFx *> fxs; in getBoundingFxs() local
[all …]
H A Dfxschematicscene.cpp149 for (i = 0; i < fxs.size(); i++) { in getRoots()
150 TFx *fx = fxs[i].getPointer(); in getRoots()
156 std::find_if(fxs.begin(), fxs.end(), MatchesFx(outFx)) != fxs.end() && in getRoots()
719 TFx *fx = fxs[k].getPointer(); in placeNode()
1388 if (fxs.empty()) return; in onDuplicateFx()
1392 int i, size = fxs.size(); in onDuplicateFx()
1403 if (fxs.empty()) return; in onUnlinkFx()
1407 int i, size = fxs.size(); in onUnlinkFx()
1505 emit doCollapse(fxs); in onCollapse()
1817 for (i = 0; i < fxs.size(); i++) { in onEditGroup()
[all …]
H A Dschematicgroupeditor.cpp222 QList<TFxP> fxs = groupNode->getGroupedFxs(); in closeEditor() local
223 assert(!fxs.isEmpty()); in closeEditor()
225 for (j = 0; j < fxs.size(); j++) { in closeEditor()
226 fxs[j]->getAttributes()->closeEditingGroup(m_groupId); in closeEditor()
227 TMacroFx *macro = dynamic_cast<TMacroFx *>(fxs[j].getPointer()); in closeEditor()
255 QList<TFxP> fxs; in onNameChanged() local
262 fxs.append(groupNode->getGroupedFxs()); in onNameChanged()
264 fxs.append(node->getFx()); in onNameChanged()
269 TFxCommand::renameGroup(fxs.toStdList(), m_groupName.toStdWString(), true, in onNameChanged()
362 QList<TFxP> fxs; in onNameChanged() local
H A Daddfxcontextmenu.cpp89 std::vector<TFxP> fxs; in createMacroFxByPath() local
90 fxs = fx->getFxs(); in createMacroFxByPath()
93 for (i = 0; i < (int)fxs.size(); i++) { in createMacroFxByPath()
94 std::wstring oldId = fxs[i]->getFxId(); in createMacroFxByPath()
95 fxDag->assignUniqueId(fxs[i].getPointer()); in createMacroFxByPath()
96 std::wstring newId = fxs[i]->getFxId(); in createMacroFxByPath()
531 QList<TFxP> fxs = m_selection->getFxs(); in onInsertFx() local
533 TFxCommand::insertFx(fx, fxs, links, m_app, in onInsertFx()
550 QList<TFxP> fxs = m_selection->getFxs(); in onAddFx() local
559 TFxCommand::addFx(fx, fxs, m_app, in onAddFx()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonz/
H A Dfxschematicnodeselection.cpp34 DeleteFxsUndo(const QList<TFx *> &fxs) { in DeleteFxsUndo() argument
37 for (int i = 0; i < (int)fxs.size(); i++) { in DeleteFxsUndo()
38 TFx *fx = fxs[i]; in DeleteFxsUndo()
184 QList<TFx *> fxs; in deleteSelection() local
191 fxs.push_back((*it)->getFx()); in deleteSelection()
194 removeFxs(fxs); in deleteSelection()
199 void FxSchematicNodeSelection::removeFxs(const QList<TFx *> &fxs) { in removeFxs() argument
200 TUndoManager::manager()->add(new DeleteFxsUndo(fxs)); in removeFxs()
201 for (int i = 0; i < (int)fxs.size(); i++) TFxCommand::removeFx(fxs[i]); in removeFxs()
H A Dinsertfxpopup.cpp105 std::vector<TFxP> fxs; in createMacroFxByPath() local
106 fxs = fx->getFxs(); in createMacroFxByPath()
109 for (i = 0; i < fxs.size(); i++) { in createMacroFxByPath()
110 std::wstring oldId = fxs[i]->getFxId(); in createMacroFxByPath()
111 fxDag->assignUniqueId(fxs[i].getPointer()); in createMacroFxByPath()
112 oldNewId[oldId] = fxs[i]->getFxId(); in createMacroFxByPath()
447 QList<TFxP> fxs; in onInsert() local
452 fxs = selection->getFxs(); in onInsert()
455 TFxCommand::insertFx(fx, fxs, links, app, in onInsert()
469 QList<TFxP> fxs; in onAdd() local
[all …]
H A Dsubscenecommand.cpp261 for (auto const &fx : fxs) { in getFxConnections()
424 if (fxs.contains(fx)) return; in bringFxOut()
487 return fxs[innerFx].first; in explodeFxSubTree()
495 sortedFx.insert(fxs[terminalFx].second, fxs[terminalFx].first); in explodeFxSubTree()
895 for (it = fxs.begin(); it != fxs.end(); it++) { in explodeFxs()
915 for (it = fxs.begin(); it != fxs.end(); it++) { in explodeFxs()
978 for (auto it = fxs.constBegin(); it != fxs.constEnd(); ++it) { in explode()
1512 for (it = fxs.begin(); it != fxs.end(); it++) { in collapseColumns()
1526 for (it2 = fxs.begin(); it2 != fxs.end(); it2++) removeFx(xsh, *it2); in collapseColumns()
1711 , m_fxs(fxs) in CollapseFxUndo()
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzlib/
H A Dfxcommand.cpp1380 initialize(fxs); in MakeMacroUndo()
1508 if (fxs.empty()) return; in makeMacroFx()
1651 : m_fxs(fxs.begin(), fxs.end()), m_xshHandle(xshHandle) { in ConnectNodesToXsheetUndo()
1700 : m_fxs(fxs.begin(), fxs.end()), m_xshHandle(xshHandle) {} in ConnectNodesToXsheetUndo()
2454 : m_fxs(fxs) in UndoPasteFxs()
2612 std::vector<TFx *> fxs; in initialize() local
2615 for_each_fx([&fxs](TFx *fx) { fxs.push_back(fx); }); in initialize()
2620 TFx *fx = fxs[f]; in initialize()
3087 : m_fxs(fxs) in UndoDisconnectFxs()
3575 : m_groupData(fxs.begin(), fxs.end()), m_xshHandle(xshHandle) { in UndoGroupFxs()
[all …]
H A Dfxdag.cpp185 void FxDag::getFxs(std::vector<TFx *> &fxs) const { in getFxs()
188 fxs.insert(fxs.end(), fxSet.begin(), fxSet.end()); in getFxs()
281 std::vector<TFxP> fxs = macroFx->getFxs(); in loadData() local
283 for (j = 0; j < (int)fxs.size(); j++) { in loadData()
284 TFxP inMacroFx = fxs[j]; in loadData()
H A Dmultimediarenderer.cpp143 TFxSet *fxs = xsh->getFxDag()->getTerminalFxs(); in scanSceneForColumns() local
146 for (int i = 0; i < fxs->getFxCount(); ++i) { in scanSceneForColumns()
147 TFx *fx = fxs->getFx(i); in scanSceneForColumns()
183 TFxSet *fxs = xsh->getFxDag()->getTerminalFxs(); in scanSceneForLayers() local
187 for (int i = 0; i < fxs->getFxCount(); ++i) { in scanSceneForLayers()
188 TFx *fx = fxs->getFx(i); in scanSceneForLayers()
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/inspection/_plot/
H A Dpartial_dependence.py384 for fxs in features:
385 if isinstance(fxs, (numbers.Integral, str)):
386 fxs = (fxs,)
388 fxs = tuple(convert_feature(fx) for fx in fxs)
394 if not 1 <= np.size(fxs) <= 2:
399 if kind != "average" and np.size(fxs) > 1:
404 tmp_features.append(fxs)
440 fxs,
447 for fxs in features
/dports/net/freeswitch/freeswitch-1.10.3.-release/conf/insideout/
H A Dopenzap.conf4 fxs-channel => 1:3-4
12 fxs-channel => 1
/dports/audio/muse-sequencer/muse-4.0.0/src/share/pybridge/examples/
H A Deffecttoggle.py30 fxs = muse.getTrackEffects(trackname) variable
31 print (fxs)
/dports/net-mgmt/netdisco-mibs/netdisco-mibs-4.010/huawei/
H A Dhuawei-vo-analog-if.mib102 fxs(1),
110 fxs : the type of the voice port is FXS.
177 about configuration parameters for analog fxs voice interface."
186 "An entry in the voice analog interface fxs configuration table.
206 number of the fxs voice port."
231 "The voice analog interface fxs timer table contains information
232 about timer parameters for analog fxs voice interface."
241 "An entry in the voice analog interface fxs configuration table.
263 number of the fxs voice port."
273 fxs interface. The default value is 120 milliseconds"
[all …]
/dports/net-mgmt/observium/observium/mibs/h3c/
H A DHUAWEI-VO-ANALOG-IF-MIB102 fxs(1),
110 fxs : the type of the voice port is FXS.
177 about configuration parameters for analog fxs voice interface."
186 "An entry in the voice analog interface fxs configuration table.
206 number of the fxs voice port."
231 "The voice analog interface fxs timer table contains information
232 about timer parameters for analog fxs voice interface."
241 "An entry in the voice analog interface fxs configuration table.
263 number of the fxs voice port."
273 fxs interface. The default value is 120 milliseconds"
[all …]
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/include/
H A Dtmacrofx.h37 static bool analyze(const std::vector<TFxP> &fxs, TFxP &root,
40 static bool analyze(const std::vector<TFxP> &fxs);
42 static TMacroFx *create(const std::vector<TFxP> &fxs);
/dports/lang/slib/slib-3b6/
H A Dlimit.scm88 (fxs (list val lval))
95 ((bounded) (invintp val lval (caddr fxs)))
98 (else (extrapolate-0 fxs))))))
111 (loop (cdr sequence) (cons val fxs) trend delta (+ -1 jdx)))
114 (loop (cdr sequence) (cons val fxs)
/dports/emulators/mess/mame-mame0226/3rdparty/sol2/sol/
H A Dfunction_types_overloaded.hpp40 overloaded_function(Functions... fxs) in overloaded_function()
41 : overloads(fxs...) { in overloaded_function()
/dports/emulators/mame/mame-mame0226/3rdparty/sol2/sol/
H A Dfunction_types_overloaded.hpp40 overloaded_function(Functions... fxs) in overloaded_function()
41 : overloads(fxs...) { in overloaded_function()
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/sol2/sol/
H A Dfunction_types_overloaded.hpp43 overloaded_function(Functions... fxs) in overloaded_function()
44 : overloads(fxs...) { in overloaded_function()
/dports/devel/sol2/sol2-4.0.0-alpha/include/sol/
H A Dfunction_types_overloaded.hpp41 overloaded_function(Functions... fxs) : overloads(fxs...) { in overloaded_function()
/dports/games/maxr/maxr-0.2.9/src/game/logic/
H A Dfxeffects.cpp72 fxs.push_back (std::move (fx)); in push_back()
77 fxs.insert (fxs.begin(), std::move (fx)); in push_front()
82 return fxs.size(); in size()
87 for (auto it = fxs.begin(); it != fxs.end();) in run()
94 it = fxs.erase (it); in run()

1234567891011