Lines Matching refs:obj

229 	function isUndefined$1(obj) {  argument
230 return obj === undefined;
232 function isDefined(obj) { argument
233 return obj !== undefined;
235 function isNil(obj) { argument
236 return obj == null;
238 function isArray$2(obj) { argument
239 return nativeToString.call(obj) === '[object Array]';
241 function isObject(obj) { argument
242 return nativeToString.call(obj) === '[object Object]';
244 function isNumber(obj) { argument
245 return nativeToString.call(obj) === '[object Number]';
247 function isFunction(obj) { argument
248 var tag = nativeToString.call(obj);
251 function isString(obj) { argument
252 return nativeToString.call(obj) === '[object String]';
260 function ensureArray(obj) { argument
261 if (isArray$2(obj)) {
706 var obj = Object(target);
708 if (prop in obj) {
725 var obj = Object(target);
726 forEach(obj, function (prop, key) {
761 var indexof = function(arr, obj){ argument
762 if (indexOf$1) return arr.indexOf(obj);
764 if (arr[i] === obj) return i;
1426 function index(arr, obj) { argument
1428 return arr.indexOf(obj);
1433 if (arr[i] === obj) {
1995 function isArray$1(obj) { argument
1996 return Object.prototype.toString.call(obj) === '[object Array]';
1999 function hasOwnProp(obj, prop) { argument
2000 return Object.prototype.hasOwnProperty.call(obj, prop);
3205 function hasProperty(obj, property) { argument
3206 return Object.prototype.hasOwnProperty.call(obj, property);
3209 function clone(obj) { argument
3211 if (typeof obj == 'function' || Object(obj) !== obj) {
3212 return obj;
3215 var res = new obj.constructor;
3217 for (var key in obj) {
3218 if (hasProperty(obj, key)) {
3219 res[key] = clone(obj[key]);
10263 .on('openTag', function(obj, decodeStr, selfClosing, getContext) { argument
10266 var attrs = obj.attrs || {};
10277 name: obj.name,
10278 originalName: obj.originalName,
10280 ns: obj.ns
18455 var obj = getSemantic(element);
18482 if (obj.isForCompensation) {
18486 if (obj.$type === 'bpmn:AdHocSubProcess') {
18490 var loopCharacteristics = obj.loopCharacteristics,
19511 function replacer(all, key, obj) { argument
19512 var res = obj;
19522 res = (res == null || res == obj ? all : res) + '';
19527 function format(str, obj) { argument
19529 return replacer(all, key, obj);
22780 function each(obj, iterator, context) { argument
22783 if (!obj) {
22787 if (obj.forEach) {
22788 obj.forEach(iterator, context);
22789 } else if (obj.length !== undefined$1) {
22791 while (i < obj.length) {
22792 iterator.call(context, obj[i], i, obj);
22796 for (i in obj) {
22797 obj.hasOwnProperty(i) && iterator.call(context, obj[i], i, obj);
23029 function toArray(obj) { argument
23030 return Array.prototype.slice.call(obj, 0); argument
23073 function prefixed(obj, property) { argument
23082 if (prop in obj) {
41441 function copy(obj) { argument
41442 return assign({}, obj);