Lines Matching refs:expand
105 expand();
109 var expand = function() {
427 // Set up expand/collapse behavior
721 // now expand me
729 // Stop expand/collapse behavior when clicking on nav section links
780 // Traverse up the tree and expand all parent nav-sections
3355 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
3358 function toggleInherited(linkObj, expand) {
3364 if ( (expand == null && a.hasClass("closed")) || expand ) {
3370 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
3382 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
3385 function toggleAllInherited(linkObj, expand) {
3389 if ( (expand == null && a.text() == "[Expand]") || expand ) {
3394 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
3398 a.text("[Expand]");
3408 if (a.text() == "[Expand All]") {
3417 a.text("[Expand All]");
3422 /* Expand all inherited members in the class. Used when initiating page search */
3433 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)