Lines Matching refs:indexOf
47 …(singleSelector.indexOf(Marker.COLON) > -1 && !areMergeable(singleSelector, extractPseudoFrom(sing…
152 name = match.indexOf(Marker.OPEN_ROUND_BRACKET) > -1 ?
153 match.substring(0, match.indexOf(Marker.OPEN_ROUND_BRACKET)) :
156 … if (mergeablePseudoClasses.indexOf(name) === -1 && mergeablePseudoElements.indexOf(name) === -1) {
174 bracketOpensAt = match.indexOf(Marker.OPEN_ROUND_BRACKET);
180 if (hasArguments && PSEUDO_CLASSES_WITH_ARGUMENTS.indexOf(name) == -1) {
184 if (!hasArguments && PSEUDO_CLASSES_WITH_ARGUMENTS.indexOf(name) > -1) {
211 matchAt = selector.indexOf(match, positionInSelector);
212 nextMatchAt = selector.indexOf(match, matchAt + 1);
217 name = match.indexOf(Marker.OPEN_ROUND_BRACKET) > -1 ?
218 match.substring(0, match.indexOf(Marker.OPEN_ROUND_BRACKET)) :
220 nextName = nextMatch.indexOf(Marker.OPEN_ROUND_BRACKET) > -1 ?
221 nextMatch.substring(0, nextMatch.indexOf(Marker.OPEN_ROUND_BRACKET)) :
242 unmixableMatches += UNMIXABLE_PSEUDO_ELEMENTS.indexOf(match) > -1 ? 1 : 0;
244 unmixableMatches += UNMIXABLE_PSEUDO_CLASSES.indexOf(match) > -1 ? 1 : 0;