Lines Matching refs:close
91 * Delimiter string used in patterns to close a category reference:
810 * to close over case BEFORE COMPLEMENTING. This makes
1221 // Look for the matching close delimiter, either :] or }
1222 int32_t close;
1224 close = pattern.indexOf(POSIX_CLOSE, 2, pos);
1226 close = pattern.indexOf(CLOSE_BRACE, pos);
1228 if (close < 0) {
1229 // Syntax error; close delimiter missing
1238 if (equals >= 0 && equals < close && !isName) {
1241 pattern.extractBetween(equals+1, close, valueName);
1246 pattern.extractBetween(pos, close, propName);
1267 // Move to the limit position after the close delimiter if the
1269 ppos.setIndex(close + (posix ? 2 : 1));