Lines Matching refs:match
756 var m, i, elem, nid, match, groups, newSelector,
780 if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) {
783 if ( ( m = match[ 1 ] ) ) {
816 } else if ( match[ 2 ] ) {
821 } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName &&
1760 match: matchExpr,
1774 "ATTR": function( match ) { argument
1775 match[ 1 ] = match[ 1 ].replace( runescape, funescape );
1778 match[ 3 ] = ( match[ 3 ] || match[ 4 ] ||
1779 match[ 5 ] || "" ).replace( runescape, funescape );
1781 if ( match[ 2 ] === "~=" ) {
1782 match[ 3 ] = " " + match[ 3 ] + " ";
1785 return match.slice( 0, 4 );
1788 "CHILD": function( match ) { argument
1800 match[ 1 ] = match[ 1 ].toLowerCase();
1802 if ( match[ 1 ].slice( 0, 3 ) === "nth" ) {
1805 if ( !match[ 3 ] ) {
1806 Sizzle.error( match[ 0 ] );
1811 match[ 4 ] = +( match[ 4 ] ?
1812 match[ 5 ] + ( match[ 6 ] || 1 ) :
1813 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) );
1814 match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" );
1817 } else if ( match[ 3 ] ) {
1818 Sizzle.error( match[ 0 ] );
1821 return match;
1824 "PSEUDO": function( match ) { argument
1826 unquoted = !match[ 6 ] && match[ 2 ];
1828 if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) {
1833 if ( match[ 3 ] ) {
1834 match[ 2 ] = match[ 4 ] || match[ 5 ] || "";
1846 match[ 0 ] = match[ 0 ].slice( 0, excess );
1847 match[ 2 ] = unquoted.slice( 0, excess );
1851 return match.slice( 0, 3 );
2314 var matched, match, tokens, type,
2329 if ( !matched || ( match = rcomma.exec( soFar ) ) ) {
2330 if ( match ) {
2333 soFar = soFar.slice( match[ 0 ].length ) || soFar;
2341 if ( ( match = rcombinators.exec( soFar ) ) ) {
2342 matched = match.shift();
2347 type: match[ 0 ].replace( rtrim, " " )
2354 if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] ||
2355 ( match = preFilters[ type ]( match ) ) ) ) {
2356 matched = match.shift();
2360 matches: match
2792 compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { argument
2801 if ( !match ) {
2802 match = tokenize( selector );
2804 i = match.length;
2806 cached = matcherFromTokens( match[ i ] );
2838 match = !seed && tokenize( ( selector = compiled.selector || selector ) );
2844 if ( match.length === 1 ) {
2847 tokens = match[ 0 ] = match[ 0 ].slice( 0 );
2898 ( compiled || compile( selector, match ) )(
3021 var rneedsContext = jQuery.expr.match.needsContext;
3134 var match, elem;
3152 match = [ null, selector, null ];
3155 match = rquickExpr.exec( selector );
3159 if ( match && ( match[ 1 ] || !context ) ) {
3162 if ( match[ 1 ] ) {
3168 match[ 1 ],
3174 if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {
3175 for ( match in context ) {
3178 if ( isFunction( this[ match ] ) ) {
3179 this[ match ]( context[ match ] );
3183 this.attr( match, context[ match ] );
3192 elem = document.getElementById( match[ 2 ] );
3425 jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) {
4353 ( key.match( rnothtmlwhite ) || [] );
5238 types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
5267 needsContext: selector && jQuery.expr.match.needsContext.test( selector ),
5320 types = ( types || "" ).match( rnothtmlwhite ) || [ "" ];
7673 props = props.match( rnothtmlwhite );
8012 ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );
8062 attrNames = value && value.match( rnothtmlwhite );
8086 jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) {
8249 var tokens = value.match( rnothtmlwhite ) || [];
8263 return value.match( rnothtmlwhite ) || [];
9051 dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || [];
9440 var match;
9444 while ( ( match = rheaders.exec( responseHeadersString ) ) ) {
9445 responseHeaders[ match[ 1 ].toLowerCase() + " " ] =
9446 ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] )
9447 .concat( match[ 2 ] );
9450 match = responseHeaders[ key.toLowerCase() + " " ];
9452 return match == null ? null : match.join( ", " );
9521 s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ];