Lines Matching refs:newState
667 render(newState) {
669 if (!newState.file || !CallTreeView.isCallTreeMode(newState.mode)) {
675 this.currentState = newState;
677 if (newState.file === oldState.file &&
678 newState.start === oldState.start &&
679 newState.end === oldState.end &&
680 newState.mode === oldState.mode &&
681 newState.callTree.attribution === oldState.callTree.attribution &&
682 newState.callTree.categories === oldState.callTree.categories &&
683 newState.callTree.sort === oldState.callTree.sort) {
696 this.fillSelects(newState.mode, newState.callTree);
892 render(newState) {
895 if (!newState.file) {
906 newState.file === oldState.file &&
907 newState.currentCodeId === oldState.currentCodeId &&
908 newState.start === oldState.start &&
909 newState.end === oldState.end) {
914 this.currentState = newState;
1152 render(newState) {
1153 if (!newState.file) {
1168 render(newState) {
1171 if (!newState.file || newState.mode !== "summary") {
1177 this.currentState = newState;
1179 if (newState.file === oldState.file &&
1180 newState.start === oldState.start &&
1181 newState.end === oldState.end) {
1191 this.currentState.file, newState.start, newState.end);
1360 render(newState) {
1362 if (!newState.file || !newState.viewingSource) {
1369 if (newState.file === oldState.file &&
1370 newState.currentCodeId === oldState.currentCodeId &&
1371 newState.viewingSource === oldState.viewingSource) {
1376 this.currentState = newState;
1568 render(newState) {
1569 this.element.style.display = newState.file ? "none" : "inherit";