Searched defs:walk (Results 1 - 5 of 5) sorted by relevance

/httpd/docs/manual/style/scripts/
H A Dprettify.js537 function walk(node) {
542 walk(child);
573 walk(node);
979 function walk(node) {
991 walk(child);
1067 walk(listItems[i]);
H A Dprettify.min.js40 function extractSourceSpans(node,isPreformatted){var nocode=/(?:^|\s)nocode(?:\s|$)/;var chunks=[];var length=0;var spans=[];var k=0;function walk(node){switch(node.nodeType){case 1:if(nocode.test(node.className)){return;}
41 for(var child=node.firstChild;child;child=child.nextSibling){walk(child);}
46 walk(node);return{sourceCode:chunks.join('').replace(/\n$/,''),spans:spans};}
82 var listItems=[li];function walk(node){switch(node.nodeType){case 1:if(nocode.test(node.className)){break;}
83 if('br'===node.nodeName){breakAfter(node);if(node.parentNode){node.parentNode.removeChild(node);}}else{for(var child=node.firstChild;child;child=child.nextSibling){walk(child);}}
92 for(var i=0;i<listItems.length;++i){walk(listItems[i]);}
/httpd/server/
H A Dlisten.c411 ap_listen_rec **walk, *last; local
417 for (walk = &old_listeners; *walk;) {
418 sa = (*walk)->bind_addr;
431 new = *walk;
432 *walk = new->next;
440 walk = &(*walk)->next;
/httpd/modules/arch/netware/
H A Dmod_nw_ssl.c476 ap_listen_rec **walk; local
518 for (walk = &nw_old_listeners; *walk;) {
519 sa = (*walk)->bind_addr;
531 new = *walk;
532 *walk = new->next;
540 walk = &(*walk)->next;
646 ap_listen_rec **walk; local
659 for (walk
739 ap_listen_rec *walk; local
[all...]
/httpd/modules/dav/main/
H A Dmod_dav.h1651 #define DAV_WALKTYPE_NORMAL 0x0002 /* walk normal files */
1652 #define DAV_WALKTYPE_LOCKNULL 0x0004 /* walk locknull resources */
1654 /* callback function and a client context for the walk */
1658 /* what pool to use for allocations needed by walk logic */
1661 /* beginning root of the walk */
1945 * Control of the walk and the callback are specified by 'params'.
1953 dav_error * (*walk)(const dav_walk_params *params, int depth, member in struct:dav_hooks_repository

Completed in 813 milliseconds