Lines Matching refs:name

1679 			if (attr.name.length > 2 && attr.name.toLowerCase().substring(0, 2) == 'on')
1681 all[i].removeAttribute(attr.name);
3491 Graph.prototype.getGlobalVariable = function(name) argument
3495 if (name == 'date')
3499 else if (name == 'time')
3503 else if (name == 'timestamp')
3507 else if (name.substring(0, 5) == 'date{')
3509 var fmt = name.substring(5, name.length - 1);
3761 var name = val.substring(1, val.length - 1);
3764 if (name == 'id')
3768 else if (name.indexOf('{') < 0)
3778 tmp = current.getAttribute(name + '_' + Graph.diagramLanguage);
3783 tmp = (current.hasAttribute(name)) ? ((current.getAttribute(name) != null) ?
3784 current.getAttribute(name) : '') : null;
3794 tmp = this.getGlobalVariable(name);
3799 tmp = vars[name];
4205 var name = cell.getAttribute('placeholder');
4212 result = (current.hasAttribute(name)) ? ((current.getAttribute(name) != null) ?
4213 current.getAttribute(name) : '') : null;
4760 temp.push({name: attrs[i].nodeName, value: attrs[i].nodeValue});
4767 if (a.name < b.name)
4771 else if (a.name > b.name)
4783 if (temp[i].name != 'link' || !this.isCustomLink(temp[i].value))
4785 tip += ((temp[i].name != 'link') ? '<b>' + temp[i].name + ':</b> ' : '') +
6981 mxStencilRegistry.getStencil = function(name) argument
6983 var result = mxStencilRegistry.stencils[name];
6985 …if (result == null && mxCellRenderer.defaultShapes[name] == null && mxStencilRegistry.dynamicLoadi…
6987 var basename = mxStencilRegistry.getBasenameForStencil(name);
7028 console.log('error in getStencil:', name, basename, libs, fname, e);
7052 result = mxStencilRegistry.stencils[name];
7061 mxStencilRegistry.getBasenameForStencil = function(name) argument
7065 if (name != null && typeof name === 'string')
7067 var parts = name.split('.');
7183 var name = root.getAttribute('name');
7185 if (name != null)
7187 packageName = name + '.';
7194 name = shape.getAttribute('name');
7196 if (name != null)
7199 var stencilName = name.replace(/ /g,"_");
7214 postStencilLoad(packageName, stencilName, name, w, h);
8648 var name = cell.getAttribute('placeholder');
8654 typeof(current.value) == 'object' && current.hasAttribute(name)))
8656 this.setAttributeForCell(current, name, value);
10077 Graph.prototype.getParentByName = function(node, name, stopAt) argument
10081 if (node.nodeName == name)
12208 var name = this.state.style['shape'];
12210 if (mxCellRenderer.defaultShapes[name] == null &&
12211 mxStencilRegistry.getStencil(name) == null)
12213 name = mxConstants.SHAPE_RECTANGLE;