/external/sonivox/jet_tools/JetCreator/ |
D | JetDialogs.py | 44 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 …]
|
D | JetCreator.py | 415 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/ |
D | splines.cpp | 52 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/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | RoundRectangle.java | 325 double ctrls[] = ctrlpts[index]; in getPathIterator() local 326 for (int i = 0; i < ctrls.length; i += 4) { in getPathIterator() 327 coords[nc++] = (float) (x + ctrls[i] * width + ctrls[i + 1] / 2d); in getPathIterator() 328 coords[nc++] = (float) (y + ctrls[i + 2] * height + ctrls[i + 3] / 2d); in getPathIterator() 342 double ctrls[] = ctrlpts[index]; in getPathIterator() local 343 for (int i = 0; i < ctrls.length; i += 4) { in getPathIterator() 344 coords[nc++] = x + ctrls[i] * width + ctrls[i + 1] / 2d; in getPathIterator() 345 coords[nc++] = y + ctrls[i + 2] * height + ctrls[i + 3] / 2d; in getPathIterator()
|
/external/libxkbcommon/xkbcommon/src/xkbcomp/ |
D | keymap-dump.c | 268 if (led->ctrls) { in write_led_map() 270 ControlMaskText(keymap->ctx, led->ctrls)); in write_led_map() 382 ControlMaskText(keymap->ctx, action->ctrls.ctrls), in write_action() 383 … (action->type == ACTION_TYPE_CTRL_LOCK) ? affect_lock_text(action->ctrls.flags) : "", in write_action() 446 led->mods.mods || led->ctrls) in write_compat()
|
D | compat.c | 322 old->led.ctrls == new->led.ctrls && in AddLedMap() 351 old->led.ctrls = new->led.ctrls; in AddLedMap() 567 ledi->led.ctrls = mask; in SetLedMapField()
|
D | action.c | 622 struct xkb_controls_action *act = &action->ctrls; in HandleSetLockControls() 634 act->ctrls = mask; in HandleSetLockControls()
|
/external/eigen/unsupported/Eigen/src/Splines/ |
D | Spline.h | 81 …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()
|
D | SplineFitting.h | 315 ControlPointVectorType ctrls = qr.solve(MatrixType(pts.transpose())).transpose(); in Interpolate() local 317 return SplineType(knots, ctrls); in Interpolate()
|
/external/libxkbcommon/xkbcommon/src/ |
D | keymap.h | 200 enum xkb_action_controls ctrls; member 238 struct xkb_controls_action ctrls; member 277 enum xkb_action_controls ctrls; member
|
D | state.c | 658 if (led->ctrls & state->keymap->enabled_ctrls) { in xkb_state_led_update_all()
|
/external/v8/src/runtime/ |
D | runtime-test.cc | 44 const WasmCompileControls& ctrls = g_PerIsolateWasmControls.Get().at(isolate); in IsWasmCompileAllowed() local 45 return (is_async && ctrls.AllowAnySizeForAsync) || in IsWasmCompileAllowed() 48 ctrls.MaxWasmBufferSize); in IsWasmCompileAllowed() 56 const WasmCompileControls& ctrls = g_PerIsolateWasmControls.Get().at(isolate); in IsWasmInstantiateAllowed() local 57 if (is_async && ctrls.AllowAnySizeForAsync) return true; in IsWasmInstantiateAllowed() 64 ctrls.MaxWasmBufferSize; in IsWasmInstantiateAllowed()
|
/external/libxkbcommon/xkbcommon/src/x11/ |
D | keymap.c | 280 action->ctrls.ctrls = translate_controls_mask(mask); in translate_action() 288 action->ctrls.ctrls = translate_controls_mask(mask); in translate_action() 736 led->ctrls = translate_controls_mask(wire->ctrls); in get_indicators()
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | analyzer_cli.py | 1484 def _format_neighbors(self, neighbor_type, non_ctrls, ctrls): argument 1503 (len(non_ctrls), neighbor_type, len(ctrls), neighbor_type)) 1513 if ctrls: 1515 lines.append(" %d control %s(s):" % (len(ctrls), neighbor_type)) 1516 for ctrl in ctrls:
|