Home
last modified time | relevance | path

Searched refs:ctrls (Results 1 – 7 of 7) sorted by relevance

/external/sonivox/jet_tools/JetCreator/
DJetDialogs.py44 ctrls = getattr(JetDefs, ctrlList)
45 self.ctrls = {}
46 for Lbl, Text, Row, Col, Len, Min, Max, Id, Lst, Fct, Enabled, HelpText in ctrls:
50 self.ctrls[Text] = wx.Button(panel, Id, Lbl, wx.Point(Col, Row), size=Len)
52 … self.ctrls[Text].Bind(wx.EVT_BUTTON, getattr(callbackClass, Fct), self.ctrls[Text], id=Id)
54 self.ctrls[Text].SetDefault()
58 … self.ctrls[Text] = wx.TextCtrl(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET +3), wx.Size(Len,-1))
60 …self.ctrls[Text] = JetSpinOneBased(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1)…
62 …self.ctrls[Text] = JetSpin(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), min=Mi…
64 …self.ctrls[Text] = wx.ComboBox(panel, Id, "", wx.Point(Col, Row + LBL_OFFSET), wx.Size(Len,-1), Ls…
[all …]
DJetCreator.py415 dlg.je.ctrls[JetDefs.F_MIDIFILE].Append(filename)
417 dlg.je.ctrls[JetDefs.F_DLSFILE].Append(library)
469 dlg.je.ctrls[JetDefs.F_MIDIFILE].Append(filename)
471 dlg.je.ctrls[JetDefs.F_DLSFILE].Append(library)
1140 self.jet_file.config.filename = dlg.je.ctrls[JetDefs.F_JETFILENAME].GetValue()
1141 self.jet_file.config.copyright = dlg.je.ctrls[JetDefs.F_COPYRIGHT].GetValue()
1142 … self.jet_file.config.chase_controllers = dlg.je.ctrls[JetDefs.F_CHASECONTROLLERS].GetValue()
1143 … self.jet_file.config.delete_empty_tracks = dlg.je.ctrls[JetDefs.F_DELETEEMPTYTRACKS].GetValue()
/external/eigen/unsupported/test/
Dsplines.cpp52 MatrixXd ctrls(8,2); in closed_spline2d() local
53 ctrls << -0.370967741935484, 0.236842105263158, in closed_spline2d()
61 ctrls.transposeInPlace(); in closed_spline2d()
63 return Spline<double, 2, Dynamic>(knots, ctrls); in closed_spline2d()
82 MatrixXd ctrls(8,3); in spline3d() local
83 ctrls << 0.959743958516081, 0.340385726666133, 0.585267750979777, in spline3d()
91 ctrls.transposeInPlace(); in spline3d()
93 return Spline<double, 3, Dynamic>(knots, ctrls); in spline3d()
/external/eigen/unsupported/Eigen/src/Splines/
DSpline.h81 …line(const OtherVectorType& knots, const OtherArrayType& ctrls) : m_knots(knots), m_ctrls(ctrls) {} in Spline() argument
89 m_knots(spline.knots()), m_ctrls(spline.ctrls()) {} in Spline()
99 const ControlPointVectorType& ctrls() const { return m_ctrls; } in ctrls() function
306 …const Block<const ControlPointVectorType,Dimension,Order> ctrl_pts(ctrls(),0,span-p,Dimension,p+1); in operator()
337 …const Block<const ControlPointVectorType,Dimension,Order> ctrl_pts(spline.ctrls(),0,span-p,Dimensi… in derivativesImpl()
DSplineFitting.h315 ControlPointVectorType ctrls = qr.solve(MatrixType(pts.transpose())).transpose(); in Interpolate() local
317 return SplineType(knots, ctrls); in Interpolate()
/external/v4l2_codec2/vda/
Dv4l2_slice_video_decode_accelerator.cc1934 std::vector<struct v4l2_ext_control> ctrls; in SubmitFrameMetadata() local
1989 ctrls.push_back(ctrl); in SubmitFrameMetadata()
2029 ctrls.push_back(ctrl); in SubmitFrameMetadata()
2077 ctrls.push_back(ctrl); in SubmitFrameMetadata()
2084 ext_ctrls.count = ctrls.size(); in SubmitFrameMetadata()
2085 ext_ctrls.controls = &ctrls[0]; in SubmitFrameMetadata()
2278 std::vector<struct v4l2_ext_control> ctrls; in SubmitDecode() local
2284 ctrls.push_back(ctrl); in SubmitDecode()
2290 ctrls.push_back(ctrl); in SubmitDecode()
2294 ext_ctrls.count = ctrls.size(); in SubmitDecode()
[all …]
/external/v8/src/runtime/
Druntime-test.cc39 const WasmCompileControls& ctrls = g_PerIsolateWasmControls.Get().at(isolate); in IsWasmCompileAllowed() local
40 return (is_async && ctrls.AllowAnySizeForAsync) || in IsWasmCompileAllowed()
42 ctrls.MaxWasmBufferSize); in IsWasmCompileAllowed()
50 const WasmCompileControls& ctrls = g_PerIsolateWasmControls.Get().at(isolate); in IsWasmInstantiateAllowed() local
51 if (is_async && ctrls.AllowAnySizeForAsync) return true; in IsWasmInstantiateAllowed()
58 ctrls.MaxWasmBufferSize; in IsWasmInstantiateAllowed()