Lines Matching refs:expand
302 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
305 function toggleInherited(linkObj, expand) {
311 if ( (expand == null && a.hasClass("closed")) || expand ) {
317 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
329 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
332 function toggleAllInherited(linkObj, expand) {
336 if ( (expand == null && a.text() == "[Expand]") || expand ) {
341 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
345 a.text("[Expand]");
355 if (a.text() == "[Expand All]") {
364 a.text("[Expand All]");
369 /* Expand all inherited members in the class. Used when initiating page search */
380 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)