Lines Matching refs:i
279 for( int i = 0 ; i < 256 ; ++i ) in LetterTable() local
280 IsLetterTab[i] = false; in LetterTable()
428 for( int i = 0 ; i < nCount ; i++ ) in getNextToken() local
430 if( rpStartPos[i] > 255 ) in getNextToken()
709 sal_uInt16 i; in SimpleTokenizer_Impl() local
713 for( i = 'a' ; i <= 'z' ; i++ ) in SimpleTokenizer_Impl()
714 aCharTypeTab[i] |= nHelpMask; in SimpleTokenizer_Impl()
715 for( i = 'A' ; i <= 'Z' ; i++ ) in SimpleTokenizer_Impl()
716 aCharTypeTab[i] |= nHelpMask; in SimpleTokenizer_Impl()
725 for( i = '0' ; i <= '9' ; i++ ) in SimpleTokenizer_Impl()
726 aCharTypeTab[i] |= nHelpMask; in SimpleTokenizer_Impl()
735 for( i = 'a' ; i <= 'f' ; i++ ) in SimpleTokenizer_Impl()
736 aCharTypeTab[i] |= CHAR_IN_HEX_NUMBER; in SimpleTokenizer_Impl()
737 for( i = 'A' ; i <= 'F' ; i++ ) in SimpleTokenizer_Impl()
738 aCharTypeTab[i] |= CHAR_IN_HEX_NUMBER; in SimpleTokenizer_Impl()
741 for( i = '0' ; i <= '7' ; i++ ) in SimpleTokenizer_Impl()
742 aCharTypeTab[i] |= CHAR_IN_OCT_NUMBER; in SimpleTokenizer_Impl()
892 for( sal_uInt32 i=0 ; i < nArrayLength ; i++ ) in notifyChange() local
893 m_pSimpleTokenizer->parseLine(nLine+i, &pChangedLines[i]); in notifyChange()