Lines Matching refs:state

2345 this.getNextByClass = function(root, state)  argument
2347 var iter = function iter(node) { return node.nodeType == 1 && FBL.hasClass(node, state); };
2351 this.getPreviousByClass = function(root, state) argument
2353 var iter = function iter(node) { return node.nodeType == 1 && FBL.hasClass(node, state); };
5935 var state = this.getState(t);
5937 if (fn = o["on" + state]) fn(this.getResponse(o), o);
5939 if (state == "Complete")
6879 destroy: function(state) // Panel may store info on state argument
7002 show: function(state) argument
7025 hide: function(state) argument
7844 this.state = "unpressed";
7886 state: null,
7928 changeState: function(state) argument
7930 this.state = state;
7931 this.changeDisplay(state);
7961 if (this.state == "pressed")
22447 ishow: function(state) argument
22450 FBTrace.sysout("Console.panel show; " + this.context.getName(), state);
22460 if (state && state.wasScrolledToBottom)
22462 this.wasScrolledToBottom = state.wasScrolledToBottom;
22463 delete state.wasScrolledToBottom;
22475 this.hide(state);
22480 ihide: function(state) argument
22483 FBTrace.sysout("Console.panel hide; " + this.context.getName(), state);
22493 destroy: function(state) argument
22498 if (state)
22499 state.wasScrolledToBottom = this.wasScrolledToBottom;
27364 destroy: function(state) argument
27391 ishow: function(state) argument
27399 restoreObjects(this, state);
27404 if (state && state.scrollTop)
27405 this.panelNode.scrollTop = state.scrollTop;
28101 ishow: function(state) argument
28184 var state = safeGetContentState(this.selection);
28187 ret.push({label: ":active", type: "checkbox", checked: state & STATE_ACTIVE,
28188 … command: bindFixed(this.updateContentState, this, STATE_ACTIVE, state & STATE_ACTIVE)});
28189 ret.push({label: ":hover", type: "checkbox", checked: state & STATE_HOVER,
28190 command: bindFixed(this.updateContentState, this, STATE_HOVER, state & STATE_HOVER)});
28195 updateContentState: function(state, remove) argument
28197 …ils.setContentState(remove ? this.selection.ownerDocument.documentElement : this.selection, state);
28233 contentStateCheck: function(state) argument
28235 if (!state || this.contentState & state)
29879 ishow: function(state) argument
29883 if (!state)
29888 if (state.viewPath)
29889 this.viewPath = state.viewPath;
29890 if (state.propertyPath)
29891 this.propertyPath = state.propertyPath;
29896 if (state.firstSelection)
29898 var restored = state.firstSelection(this.context);
29944 var selection = state.pathIndex <= this.objectPath.length-1
29945 ? this.getPathObject(state.pathIndex)