Home | History | Annotate | Download | only in lib

Lines Matching defs:mixin

349         dojo.mixin = function(/*Object*/obj, /*Object...*/props){
354 // `dojo.mixin` can mix multiple source objects into a
356 // `for...in` iteration, `dojo.mixin` is also smart about avoiding
367 // | var copy = dojo.mixin({}, source);
371 // often simplest to call `dojo.mixin` on the `this` object:
375 // | dojo.mixin(this, properties);
388 // | var flattened = dojo.mixin(
560 d.mixin(d, {
2248 dojo.mixin(dojo, {
2500 err("mixin #" + i + " is unknown. Did you use dojo.require to pull it in?", className);
2502 err("mixin #" + i + " is not a callable constructor.", className);
2710 // implementation of safe mixin function
3056 // Mixin ancestors provide a type of multiple inheritance.
3057 // Prototypes of mixin ancestors are copied to the new class:
3058 // changes to mixin prototypes will not affect classes to which
4986 dojo.mixin(del, {
5146 var faux = dojo.mixin({}, evt, props);
5158 dojo.mixin(del, {
5185 dojo.mixin(del, {
10241 ioArgs.query = _d.objectToQuery(_d.mixin.apply(null, miArgs));