Lines Matching refs:expand
68 expand();
72 var expand = function() {
149 // Traverse up the tree and expand all parent nav-sections
302 // Set up expand/collapse behavior
321 // now expand me
421 // Stop expand/collapse behavior when clicking on nav section links (since we're navigating away
2345 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2348 function toggleInherited(linkObj, expand) {
2354 if ( (expand == null && a.hasClass("closed")) || expand ) {
2360 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
2372 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
2375 function toggleAllInherited(linkObj, expand) {
2379 if ( (expand == null && a.text() == "[Expand]") || expand ) {
2384 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
2388 a.text("[Expand]");
2398 if (a.text() == "[Expand All]") {
2407 a.text("[Expand All]");
2412 /* Expand all inherited members in the class. Used when initiating page search */
2423 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)