Home
last modified time | relevance | path

Searched refs:dsources (Results 1 – 25 of 55) sorted by relevance

123

/dports/databases/p5-DBD-Multi/DBD-Multi-0.16/lib/DBD/
H A DMulti.pm62 dsources => [ @dsns ],
303 my $dsources = $self->dsources;
307 $dsources->{$pri}->{$dsource_id} = 1;
345 my $dsources = $self->dsources;
363 my ($self, $dsources) = @_;
364 my @dsources = sort { $a <=> $b } keys %{$dsources};
369 return if @used == @dsources && @failed == @dsources;
372 delete @{$self->used}{@dsources} if @used == @dsources;
387 my $dsources = $self->dsources;
388 $self->dsources({});
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/editors/animation/
H A Dkeyingsets.c887 ListBase *dsources) in RKS_ITER_overrides_list() argument
891 for (ds = dsources->first; ds; ds = ds->next) { in RKS_ITER_overrides_list()
898 void ANIM_relative_keyingset_add_source(ListBase *dsources, ID *id, StructRNA *srna, void *data) in ANIM_relative_keyingset_add_source() argument
906 if (dsources == NULL) { in ANIM_relative_keyingset_add_source()
915 BLI_addtail(dsources, ds); in ANIM_relative_keyingset_add_source()
936 eModifyKey_Returns ANIM_validate_keyingset(bContext *C, ListBase *dsources, KeyingSet *ks) in ANIM_validate_keyingset() argument
963 if (dsources) { in ANIM_validate_keyingset()
964 RKS_ITER_overrides_list(ksi, C, ks, dsources); in ANIM_validate_keyingset()
1029 bContext *C, ListBase *dsources, bAction *act, KeyingSet *ks, short mode, float cfra) in ANIM_apply_keyingset() argument
1058 const eModifyKey_Returns error = ANIM_validate_keyingset(C, dsources, ks); in ANIM_apply_keyingset()
H A Dkeyframing.c3009 ListBase dsources = {NULL, NULL}; in ED_autokeyframe_object() local
3016 ANIM_relative_keyingset_add_source(&dsources, &ob->id, NULL, NULL); in ED_autokeyframe_object()
3017 ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, (float)CFRA); in ED_autokeyframe_object()
3018 BLI_freelistN(&dsources); in ED_autokeyframe_object()
3029 ListBase dsources = {NULL, NULL}; in ED_autokeyframe_pchan() local
3036 ANIM_relative_keyingset_add_source(&dsources, &ob->id, &RNA_PoseBone, pchan); in ED_autokeyframe_pchan()
3037 ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, (float)CFRA); in ED_autokeyframe_pchan()
3038 BLI_freelistN(&dsources); in ED_autokeyframe_pchan()
/dports/graphics/blender/blender-2.91.0/source/blender/editors/armature/
H A Dpose_utils.c301 ListBase dsources = {NULL, NULL}; in poseAnim_mapping_autoKeyframe() local
316 ANIM_relative_keyingset_add_source(&dsources, &pfl->ob->id, &RNA_PoseBone, pchan); in poseAnim_mapping_autoKeyframe()
325 ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, cframe); in poseAnim_mapping_autoKeyframe()
326 BLI_freelistN(&dsources); in poseAnim_mapping_autoKeyframe()
H A Dpose_transform.c1113 ListBase dsources = {NULL, NULL}; in pose_clear_transform_generic_exec() local
1128 ANIM_relative_keyingset_add_source(&dsources, &ob_iter->id, &RNA_PoseBone, pchan); in pose_clear_transform_generic_exec()
1148 if (!BLI_listbase_is_empty(&dsources)) { in pose_clear_transform_generic_exec()
1153 ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, (float)CFRA); in pose_clear_transform_generic_exec()
1160 BLI_freelistN(&dsources); in pose_clear_transform_generic_exec()
H A Dpose_lib.c1097 ListBase dsources = {NULL, NULL}; in poselib_keytag_pose() local
1110 ANIM_relative_keyingset_add_source(&dsources, &pld->ob->id, &RNA_PoseBone, pchan); in poselib_keytag_pose()
1130 ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, (float)CFRA); in poselib_keytag_pose()
1131 BLI_freelistN(&dsources); in poselib_keytag_pose()
/dports/graphics/blender/blender-2.91.0/source/blender/editors/include/
H A DED_keyframing.h210 void ANIM_relative_keyingset_add_source(ListBase *dsources,
232 ListBase *dsources,
237 ListBase *dsources,
/dports/graphics/blender/blender-2.91.0/source/blender/editors/transform/
H A Dtransform_convert_object.c799 ListBase dsources = {NULL, NULL}; in autokeyframe_object() local
809 ANIM_relative_keyingset_add_source(&dsources, id, NULL, NULL); in autokeyframe_object()
817 C, &dsources, NULL, active_ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_object()
882 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_object()
887 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_object()
892 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_object()
899 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_object()
903 BLI_freelistN(&dsources); in autokeyframe_object()
H A Dtransform_convert_armature.c140 ListBase dsources = {NULL, NULL}; in autokeyframe_pose() local
146 ANIM_relative_keyingset_add_source(&dsources, id, &RNA_PoseBone, pchan); in autokeyframe_pose()
152 C, &dsources, NULL, active_ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_pose()
227 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_pose()
232 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_pose()
237 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_pose()
244 C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, anim_eval_context.eval_time); in autokeyframe_pose()
248 BLI_freelistN(&dsources); in autokeyframe_pose()
/dports/lang/racket/racket-8.3/collects/racket/private/
H A Dunit-utils.rkt76 (define-for-syntax (check-duplicate-sigs tagged-siginfos sources tagged-deps dsources)
95 dsources))
/dports/lang/racket-minimal/racket-8.3/collects/racket/private/
H A Dunit-utils.rkt76 (define-for-syntax (check-duplicate-sigs tagged-siginfos sources tagged-deps dsources)
95 dsources))
/dports/databases/p5-DBD-LDAP/DBD-LDAP-1.00/lib/DBD/
H A DLDAP.pm598 my (@dsources) = ();
626 unless (@dsources)
643 return (@dsources);
/dports/graphics/blender/blender-2.91.0/source/blender/editors/space_view3d/
H A Dview3d_utils.c614 ListBase dsources = {NULL, NULL}; in ED_view3d_camera_autokey() local
617 ANIM_relative_keyingset_add_source(&dsources, id_key, NULL, NULL); in ED_view3d_camera_autokey()
626 ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, cfra); in ED_view3d_camera_autokey()
630 ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, cfra); in ED_view3d_camera_autokey()
634 BLI_freelistN(&dsources); in ED_view3d_camera_autokey()
/dports/devel/gprbuild/gprbuild-376670f/doc/gprbuild_ug/
H A Dcompanion_tools.rst2477 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/devel/avr-gcc/gcc-10.2.0/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/lang/gnat_util/gcc-6-20180516/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst860 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"
/dports/lang/gcc10/gcc-10.3.0/gcc/ada/doc/gnat_ugn/
H A Dthe_gnat_compilation_model.rst862 -dsources -dsources/plus -Dcommon_dirs.txt "body_*" "spec_*"

123