Lines Matching refs:node

298             var visitorFunc = function (node) {  argument
299 var box = node.Element;
305 if (node.State.IsHidden) {
322 branchOptimizerAllLinear: function(node) { argument
323 return node.getIsAssistantRoot() ? null : "linear";
326 branchOptimizerAllHanger2: function(node) { argument
327 return node.getIsAssistantRoot() ? null : "hanger2";
330 branchOptimizerAllHanger4: function(node) { argument
331 return node.getIsAssistantRoot() ? null : "hanger4";
334 branchOptimizerAllFishbone1: function(node) { argument
335 return node.getIsAssistantRoot() ? null : "fishbone1";
338 branchOptimizerAllFishbone2: function (node) { argument
339 return node.getIsAssistantRoot() ? null : "fishbone2";
342 branchOptimizerAllSingleColumnLeft: function (node) { argument
343 return node.getIsAssistantRoot() ? null : "singleColumnRight";
346 branchOptimizerAllSingleColumnRight: function (node) { argument
347 return node.getIsAssistantRoot() ? null : "singleColumnLeft";
350 branchOptimizerStackers: function(node) { argument
351 if (node.getIsAssistantRoot()) {
354 … return node.Level === 0 // this is Node for boxContainer.SystemRoot, which is not visible itself
356 … : node.Level === 1 // this is children of SystemRoot - they appear as roots in the diagram
362 branchOptimizerSmart: function(node) { argument
363 if (node.getIsAssistantRoot()) {
367 var childCount = node.getChildCount();
375 if (node.Children.getItem(i).getChildCount() > 0) {
424 var visitorVertexFunc = function (node) argument
426 if (node.State.IsHidden) {
430 var box = node.Element;
435 geo.x = node.State.TopLeft.X + offsetx;
436 geo.y = node.State.TopLeft.Y;
443 var visitorEdgeFunc = function (node) argument
448 if (node.State.Connector != null) {
450 var cell = cells[node.Element.DataId];
457 for (var ix = 0; ix < node.State.Connector.Segments.length; ix++)
459 var edge = node.State.Connector.Segments[ix];
474 for (var ix = 0; ix < node.State.Connector.Segments.length; ix++)
476 var edge = node.State.Connector.Segments[ix];
507 for (var j = ix + 1; j < node.State.Connector.Segments.length; j++)
509 var e2 = node.State.Connector.Segments[j];