Home | History | Annotate | Download | only in js

Lines Matching refs:expand

90       expand();
94 var expand = function() {
386 // Set up expand/collapse behavior
539 // now expand me
547 // Stop expand/collapse behavior when clicking on nav section links
598 // Traverse up the tree and expand all parent nav-sections
3159 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
3162 function toggleInherited(linkObj, expand) {
3168 if ( (expand == null && a.hasClass("closed")) || expand ) {
3174 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
3186 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
3189 function toggleAllInherited(linkObj, expand) {
3193 if ( (expand == null && a.text() == "[Expand]") || expand ) {
3198 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
3202 a.text("[Expand]");
3212 if (a.text() == "[Expand All]") {
3221 a.text("[Expand All]");
3226 /* Expand all inherited members in the class. Used when initiating page search */
3237 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)