Lines Matching full:mask
267 // If the inputed char doesn't conform to the input mask, stop handling
397 //skip over the next mask character
410 // calculate the number of characters allowed to be entered by input mask
459 UChar mask = m_formatMask[maskIndex];
460 // match the inputed character with input mask
461 switch (mask) {
487 ok = (mask == inChar);
496 UChar mask;
499 mask = m_formatMask[++index];
500 if (mask == '\\')
502 else if (mask == '*' || (WTF::isASCIIDigit(mask) && mask != '0')) {