Lines Matching refs:pTable

430 	if ( !pTable || !bIntlEqual ||  in setupParserTable()
447 if ( !pTable ) in initParserTable()
448 pTable = new UPT_FLAG_TYPE[nDefCnt]; in initParserTable()
449 memcpy( pTable, pDefaultParserTable, sizeof(UPT_FLAG_TYPE) * nDefCnt ); in initParserTable()
478 pTable[cGroupSep] |= TOKEN_VALUE; in initParserTable()
480 pTable[cDecimalSep] |= TOKEN_CHAR_VALUE | TOKEN_VALUE; in initParserTable()
489 pTable[i] &= ~TOKEN_CHAR_WORD; // not allowed as start character in initParserTable()
492 pTable[i] &= ~TOKEN_WORD; // not allowed as cont character in initParserTable()
496 pTable[i] &= ~TOKEN_CHAR_WORD; // not allowed as start character in initParserTable()
499 pTable[i] &= ~TOKEN_WORD; // not allowed as cont character in initParserTable()
503 pTable[i] |= TOKEN_CHAR_WORD; // allowed as start character in initParserTable()
506 pTable[i] &= ~TOKEN_WORD; // not allowed as cont character in initParserTable()
509 pTable[95] &= ~TOKEN_CHAR_WORD; // not allowed as start character in initParserTable()
511 pTable[95] &= ~TOKEN_WORD; // not allowed as cont character in initParserTable()
514 pTable[36] |= TOKEN_CHAR_WORD; // allowed as start character in initParserTable()
516 pTable[36] |= TOKEN_WORD; // allowed as cont character in initParserTable()
519 pTable[46] |= TOKEN_CHAR_WORD; // allowed as start character in initParserTable()
521 pTable[46] |= TOKEN_WORD; // allowed as cont character in initParserTable()
524 pTable[58] |= TOKEN_CHAR_WORD; // allowed as start character in initParserTable()
526 pTable[58] |= TOKEN_WORD; // allowed as cont character in initParserTable()
530 pTable[i] |= TOKEN_CHAR_WORD; // allowed as start character in initParserTable()
533 pTable[i] |= TOKEN_WORD; // allowed as cont character in initParserTable()
537 pTable[i] |= TOKEN_CHAR_WORD; // allowed as start character in initParserTable()
540 pTable[i] |= TOKEN_WORD; // allowed as cont character in initParserTable()
556 pTable[*p] |= TOKEN_CHAR_WORD; in initParserTable()
570 pTable[*p] |= TOKEN_WORD; in initParserTable()
582 if ( pTable ) in destroyParserTable()
583 delete [] pTable; in destroyParserTable()
592 nMask = pTable[ sal_uInt8(c) ]; in getFlags()