Home
last modified time | relevance | path

Searched refs:customdata (Results 1 – 25 of 631) sorted by relevance

12345678910>>...26

/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dattribute.c95 CustomData *customdata = info[domain].customdata; in attribute_customdata_find() local
96 if (customdata && ARRAY_HAS_ITEM(layer, customdata->layers, customdata->totlayer)) { in attribute_customdata_find()
143 CustomData *customdata = info[domain].customdata; in BKE_id_attribute_new() local
184 CustomData *customdata = info[domain].customdata; in BKE_id_attributes_length() local
199 CustomData *customdata = info[domain].customdata; in BKE_id_attribute_domain() local
200 if (customdata && ARRAY_HAS_ITEM(layer, customdata->layers, customdata->totlayer)) { in BKE_id_attribute_domain()
215 CustomData *customdata = info[domain].customdata; in BKE_id_attribute_data_length() local
216 if (customdata && ARRAY_HAS_ITEM(layer, customdata->layers, customdata->totlayer)) { in BKE_id_attribute_data_length()
252 CustomData *customdata = info[domain].customdata; in BKE_id_attributes_active_get() local
277 CustomData *customdata = info[domain].customdata; in BKE_id_attributes_active_set() local
[all …]
/dports/www/moodle311/moodle/lib/classes/task/
H A Dadhoc_task.php38 private $customdata = ''; variable in core\\task\\adhoc_task
67 * @param mixed $customdata (anything that can be handled by json_encode)
69 public function set_custom_data($customdata) { argument
70 $this->customdata = json_encode($customdata);
75 * @param string $customdata json_encoded string
77 public function set_custom_data_as_string($customdata) { argument
78 $this->customdata = $customdata;
86 return json_decode($this->customdata);
94 return $this->customdata;
/dports/www/moodle310/moodle/lib/classes/task/
H A Dadhoc_task.php38 private $customdata = ''; variable in core\\task\\adhoc_task
67 * @param mixed $customdata (anything that can be handled by json_encode)
69 public function set_custom_data($customdata) { argument
70 $this->customdata = json_encode($customdata);
75 * @param string $customdata json_encoded string
77 public function set_custom_data_as_string($customdata) { argument
78 $this->customdata = $customdata;
86 return json_decode($this->customdata);
94 return $this->customdata;
/dports/www/moodle39/moodle/lib/classes/task/
H A Dadhoc_task.php38 private $customdata = ''; variable in core\\task\\adhoc_task
67 * @param mixed $customdata (anything that can be handled by json_encode)
69 public function set_custom_data($customdata) { argument
70 $this->customdata = json_encode($customdata);
75 * @param string $customdata json_encoded string
77 public function set_custom_data_as_string($customdata) { argument
78 $this->customdata = $customdata;
86 return json_decode($this->customdata);
94 return $this->customdata;
/dports/graphics/blender/blender-2.91.0/source/blender/editors/space_clip/
H A Dtracking_ops_plane.c180 SlidePlaneMarkerData *customdata = NULL; in slide_plane_marker_customdata() local
201 customdata->plane_track = plane_track; in slide_plane_marker_customdata()
202 customdata->plane_marker = plane_marker; in slide_plane_marker_customdata()
203 customdata->width = width; in slide_plane_marker_customdata()
204 customdata->height = height; in slide_plane_marker_customdata()
206 customdata->previous_mval[0] = event->mval[0]; in slide_plane_marker_customdata()
209 customdata->corner_index = corner; in slide_plane_marker_customdata()
212 copy_v2_v2(customdata->previous_corner, customdata->corner); in slide_plane_marker_customdata()
213 copy_v2_v2(customdata->old_corner, customdata->corner); in slide_plane_marker_customdata()
216 return customdata; in slide_plane_marker_customdata()
[all …]
/dports/www/moodle310/moodle/lib/classes/message/
H A Dmessage.php133 private $customdata; variable in core\\message\\message
218 * @param mixed $customdata a data structure that must be serialisable using json_encode().
220 protected function set_customdata($customdata) { argument
222 if (!empty($this->courseid) && (is_object($customdata) || is_array($customdata))) {
223 $customdata = (array) $customdata;
224 $customdata['courseid'] = $this->courseid;
226 $this->customdata = json_encode($customdata);
/dports/www/moodle39/moodle/lib/classes/message/
H A Dmessage.php133 private $customdata; variable in core\\message\\message
218 * @param mixed $customdata a data structure that must be serialisable using json_encode().
220 protected function set_customdata($customdata) { argument
222 if (!empty($this->courseid) && (is_object($customdata) || is_array($customdata))) {
223 $customdata = (array) $customdata;
224 $customdata['courseid'] = $this->courseid;
226 $this->customdata = json_encode($customdata);
/dports/www/moodle311/moodle/lib/classes/message/
H A Dmessage.php133 private $customdata; variable in core\\message\\message
218 * @param mixed $customdata a data structure that must be serialisable using json_encode().
220 protected function set_customdata($customdata) { argument
222 if (!empty($this->courseid) && (is_object($customdata) || is_array($customdata))) {
223 $customdata = (array) $customdata;
224 $customdata['courseid'] = $this->courseid;
226 $this->customdata = json_encode($customdata);
/dports/devel/py-pyro/Pyro4-4.77/examples/blob-dispatch/listeners/
H A Dlistener.py3 from customdata import CustomData
20 customdata = blob.deserialized()
21 print("Received custom data (type={}):".format(type(customdata)))
22 print(" a={}, b={}, c={}".format(customdata.a, customdata.b, customdata.c))
/dports/www/moodle310/moodle/mod/workshop/form/comments/
H A Dlib.php141 $customdata = array();
142 $customdata['workshop'] = $this->workshop;
143 $customdata['strategy'] = $this;
144 $customdata['norepeats'] = $norepeats;
146 $customdata['current'] = $fields;
236 $customdata['strategy'] = $this;
237 $customdata['workshop'] = $this->workshop;
238 $customdata['mode'] = $mode;
239 $customdata['options'] = $options;
242 $customdata['nodims'] = $nodimensions;
[all …]
/dports/www/moodle311/moodle/mod/workshop/form/comments/
H A Dlib.php141 $customdata = array();
142 $customdata['workshop'] = $this->workshop;
143 $customdata['strategy'] = $this;
144 $customdata['norepeats'] = $norepeats;
146 $customdata['current'] = $fields;
236 $customdata['strategy'] = $this;
237 $customdata['workshop'] = $this->workshop;
238 $customdata['mode'] = $mode;
239 $customdata['options'] = $options;
242 $customdata['nodims'] = $nodimensions;
[all …]
/dports/www/moodle39/moodle/mod/workshop/form/comments/
H A Dlib.php141 $customdata = array();
142 $customdata['workshop'] = $this->workshop;
143 $customdata['strategy'] = $this;
144 $customdata['norepeats'] = $norepeats;
146 $customdata['current'] = $fields;
236 $customdata['strategy'] = $this;
237 $customdata['workshop'] = $this->workshop;
238 $customdata['mode'] = $mode;
239 $customdata['options'] = $options;
242 $customdata['nodims'] = $nodimensions;
[all …]
/dports/www/moodle310/moodle/contentbank/classes/form/
H A Dedit_content.php55 * @param array $customdata Data to set during instance creation.
58 …public function __construct(string $action = null, array $customdata = null, string $method = 'pos… argument
59 parent::__construct($action, $customdata, $method);
60 $this->contextid = $customdata['contextid'];
61 $this->plugin = $customdata['plugin'];
62 $this->id = $customdata['id'];
/dports/www/moodle311/moodle/contentbank/classes/form/
H A Dedit_content.php55 * @param array $customdata Data to set during instance creation.
58 …public function __construct(string $action = null, array $customdata = null, string $method = 'pos… argument
59 parent::__construct($action, $customdata, $method);
60 $this->contextid = $customdata['contextid'];
61 $this->plugin = $customdata['plugin'];
62 $this->id = $customdata['id'];
/dports/www/moodle39/moodle/contentbank/classes/form/
H A Dedit_content.php55 * @param array $customdata Data to set during instance creation.
58 …public function __construct(string $action = null, array $customdata = null, string $method = 'pos… argument
59 parent::__construct($action, $customdata, $method);
60 $this->contextid = $customdata['contextid'];
61 $this->plugin = $customdata['plugin'];
62 $this->id = $customdata['id'];
/dports/graphics/blender/blender-2.91.0/source/blender/windowmanager/intern/
H A Dwm_gesture_ops.c68 wmGesture *gesture = op->customdata; in gesture_modal_end()
71 op->customdata = NULL; in gesture_modal_end()
142 wmGesture *gesture = op->customdata; in gesture_box_apply_rect()
143 rcti *rect = gesture->customdata; in gesture_box_apply_rect()
208 rcti *rect = gesture->customdata; in WM_gesture_box_modal()
307 rcti *rect = gesture->customdata; in WM_gesture_circle_invoke()
332 rcti *rect = gesture->customdata; in gesture_circle_apply()
361 rcti *rect = gesture->customdata; in WM_gesture_circle_modal()
493 rcti *rect = gesture->customdata; in gesture_tweak_modal()
689 gesture->customdata = MEM_reallocN(gesture->customdata, in WM_gesture_lasso_modal()
[all …]
/dports/www/moodle310/moodle/mod/workshop/form/numerrors/
H A Dlib.php145 $customdata = array();
146 $customdata['workshop'] = $this->workshop;
147 $customdata['strategy'] = $this;
148 $customdata['norepeats'] = $norepeats;
151 $customdata['current'] = $fields;
274 $customdata['workshop'] = $this->workshop;
275 $customdata['strategy'] = $this;
276 $customdata['mode'] = $mode;
277 $customdata['options'] = $options;
280 $customdata['nodims'] = $nodimensions;
[all …]
/dports/www/moodle311/moodle/mod/workshop/form/numerrors/
H A Dlib.php145 $customdata = array();
146 $customdata['workshop'] = $this->workshop;
147 $customdata['strategy'] = $this;
148 $customdata['norepeats'] = $norepeats;
151 $customdata['current'] = $fields;
274 $customdata['workshop'] = $this->workshop;
275 $customdata['strategy'] = $this;
276 $customdata['mode'] = $mode;
277 $customdata['options'] = $options;
280 $customdata['nodims'] = $nodimensions;
[all …]
/dports/www/moodle39/moodle/mod/workshop/form/numerrors/
H A Dlib.php145 $customdata = array();
146 $customdata['workshop'] = $this->workshop;
147 $customdata['strategy'] = $this;
148 $customdata['norepeats'] = $norepeats;
151 $customdata['current'] = $fields;
274 $customdata['workshop'] = $this->workshop;
275 $customdata['strategy'] = $this;
276 $customdata['mode'] = $mode;
277 $customdata['options'] = $options;
280 $customdata['nodims'] = $nodimensions;
[all …]
/dports/graphics/py-plotly/plotly-4.14.3/plotly/graph_objs/
H A D_figurewidget.py750 customdata=customdata,
1220 customdata=customdata,
1555 customdata=customdata,
2115 customdata=customdata,
2456 customdata=customdata,
2724 customdata=customdata,
3053 customdata=customdata,
3399 customdata=customdata,
3785 customdata=customdata,
4246 customdata=customdata,
[all …]
H A D_figure.py750 customdata=customdata,
1220 customdata=customdata,
1555 customdata=customdata,
2115 customdata=customdata,
2456 customdata=customdata,
2724 customdata=customdata,
3053 customdata=customdata,
3399 customdata=customdata,
3785 customdata=customdata,
4246 customdata=customdata,
[all …]
/dports/comms/openobex/openobex-1.7.2-Source/lib/transport/
H A Dcustomtrans.c49 ctrans->customdata = data; in custom_set_data()
57 return ctrans->customdata; in custom_get_data()
65 return (ctrans->connect(self, ctrans->customdata) >= 0); in custom_connect_request()
73 return (ctrans->disconnect(self, ctrans->customdata) >= 0); in custom_disconnect()
81 return (ctrans->listen(self, ctrans->customdata) >= 0); in custom_listen()
98 int res = ctrans->handleinput(self, ctrans->customdata, (int)((trans->timeout+999)/1000)); in custom_handle_input()
113 return ctrans->write(self, ctrans->customdata, buf_get(msg), in custom_write()
123 return ctrans->read(self, ctrans->customdata, buf, size); in custom_read()
/dports/www/moodle310/moodle/mod/workshop/form/accumulative/
H A Dlib.php141 $customdata = array();
142 $customdata['workshop'] = $this->workshop;
143 $customdata['strategy'] = $this;
144 $customdata['norepeats'] = $norepeats;
146 $customdata['current'] = $fields;
237 $customdata['strategy'] = $this;
238 $customdata['workshop'] = $this->workshop;
239 $customdata['mode'] = $mode;
240 $customdata['options'] = $options;
243 $customdata['nodims'] = $nodimensions;
[all …]
/dports/www/moodle311/moodle/mod/workshop/form/accumulative/
H A Dlib.php141 $customdata = array();
142 $customdata['workshop'] = $this->workshop;
143 $customdata['strategy'] = $this;
144 $customdata['norepeats'] = $norepeats;
146 $customdata['current'] = $fields;
237 $customdata['strategy'] = $this;
238 $customdata['workshop'] = $this->workshop;
239 $customdata['mode'] = $mode;
240 $customdata['options'] = $options;
243 $customdata['nodims'] = $nodimensions;
[all …]
/dports/www/moodle39/moodle/mod/workshop/form/accumulative/
H A Dlib.php141 $customdata = array();
142 $customdata['workshop'] = $this->workshop;
143 $customdata['strategy'] = $this;
144 $customdata['norepeats'] = $norepeats;
146 $customdata['current'] = $fields;
237 $customdata['strategy'] = $this;
238 $customdata['workshop'] = $this->workshop;
239 $customdata['mode'] = $mode;
240 $customdata['options'] = $options;
243 $customdata['nodims'] = $nodimensions;
[all …]

12345678910>>...26