Lines Matching refs:val

2649 function spreadAdapter(val, nodeback) {  argument
2651 if (!util.isArray(val)) return successAdapter.call(promise, val, nodeback);
2653 tryCatch(nodeback).apply(promise._boundValue(), [null].concat(val));
2659 function successAdapter(val, nodeback) { argument
2662 var ret = val === undefined
2664 : tryCatch(nodeback).call(receiver, null, val);
2872 Promise.is = function (val) { argument
2873 return val instanceof Promise;
3486 function toResolutionValue(val) { argument
3487 switch(val) {
3709 var val = util.getDataPropertyOrDefault(obj, key + suffix,
3711 return val ? isPromisified(val) : false;
3930 var val;
3932 val = entriesToMap(this._values);
3934 val = {};
3937 val[this._values[i + keyOffset]] = this._values[i];
3940 this._resolve(val);
4087 var val = promises[i];
4089 if (val === undefined && !(i in promises)) {
4093 Promise.cast(val)._then(fulfill, reject, undefined, ret, null);
5103 function isPrimitive(val) { argument
5104 return val == null || val === true || val === false ||
5105 typeof val === "string" || typeof val === "number";
5168 var isExcludedProto = function(val) { argument
5170 if (excludedPrototypes[i] === val) {
8279 DataProcessor.prototype.setDataColumns = function (val) { argument
8280 this._columns = (typeof val === "string") ? val.split(",") : val;
10571 this.$getRootId = (function(val){ argument
10572 return function(){return val;};
14169 var val = {};
14173 val[mapping[i]] = task[i];
14176 return duration.set_value.call(gantt, node, value, val, section);//set default value
18102 var val = predecessors[i].trim();
18103 if (val) {
18104 predecessors[i] = val;
27881 var val = this._getWorkHours(date);
27883 if (val instanceof Array) {
27884 return val.length > 0;