Lines Matching refs:expand
323 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
326 function toggleInherited(linkObj, expand) {
332 if ( (expand == null && a.hasClass("closed")) || expand ) {
338 } else if ( (expand == null && a.hasClass("opened")) || (expand == false) ) {
350 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
353 function toggleAllInherited(linkObj, expand) {
357 if ( (expand == null && a.text() == "[Expand]") || expand ) {
362 } else if ( (expand == null && a.text() == "[Collapse]") || (expand == false) ) {
366 a.text("[Expand]");
376 if (a.text() == "[Expand All]") {
385 a.text("[Expand All]");
390 /* Expand all inherited members in the class. Used when initiating page search */
401 * - Listen for Ctrl+F (Cmd on Mac) and expand all inherited members (to aid page search)