• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/arm-uclibc/target/www/

Lines Matching refs:seed

238 	// (You can seed the arguments with an array of args, but this is
3884 function Sizzle( selector, context, results, seed ) {
3900 if ( !xml && !seed ) {
3941 return select( selector.replace( rtrim, "$1" ), context, results, seed, xml );
3972 return markFunction(function( seed, matches ) {
3974 matchIndexes = fn( [], seed.length, argument ),
3979 if ( seed[ (j = matchIndexes[i]) ] ) {
3980 seed[j] = !(matches[j] = seed[j]);
4375 markFunction(function( seed, matches ) {
4377 matched = fn( seed, argument ),
4380 idx = indexOf.call( seed, matched[i] );
4381 seed[ idx ] = !( matches[ idx ] = matched[i] );
4403 markFunction(function( seed, matches, context, xml ) {
4405 unmatched = matcher( seed, null, xml, [] ),
4406 i = seed.length;
4411 seed[i] = !(matches[i] = elem);
4838 return markFunction(function( seed, results, context, xml ) {
4839 // Positional selectors apply to seed elements, so it is invalid to follow them with relative ones
4840 if ( seed && postFinder ) {
4849 // Get initial elements from seed or context
4850 elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [], seed ),
4852 // Prefilter to get matcher input, preserving a map for seed-results synchronization
4853 matcherIn = preFilter && ( seed || !selector ) ?
4858 // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,
4859 postFinder || ( seed ? preFilter : preexisting || postFilter ) ?
4887 // Keep seed and results synchronized
4888 if ( seed ) {
4889 // Ignore postFinder because it can't coexist with seed
4893 seed[ preMap[i] ] = !(results[ preMap[i] ] = elem);
4967 superMatcher = function( seed, context, xml, results, expandContext ) {
4972 unmatched = seed && [],
4975 // We must always have either seed elements or context
4976 elems = seed || byElement && Expr.find["TAG"]( "*", expandContext && context.parentNode || context ),
5008 if ( seed ) {
5021 if ( seed ) {
5039 if ( outermost && !seed && setMatched.length > 0 &&
5088 function multipleContexts( selector, contexts, results, seed ) {
5092 Sizzle( selector, contexts[i], results, seed );
5097 function select( selector, context, results, seed, xml ) {
5102 if ( !seed ) {
5120 // Fetch a seed set for right-to-left matching
5130 if ( (seed = find(
5136 // If seed is empty or no tokens remain, we can return early
5138 selector = seed.length && tokens.join("");
5140 push.apply( results, slice.call( seed, 0 ) );
5154 seed,
5228 select = function( selector, context, results, seed, xml ) {
5232 if ( !seed && !xml && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) {
5276 return oldSelect( selector, context, results, seed, xml );