Lines Matching refs:SubString
765 char *SubString; in AsConvertToLineFeeds() local
770 SubString = Buffer; in AsConvertToLineFeeds()
772 while (SubString) in AsConvertToLineFeeds()
776 SubString = strstr (SubBuffer, "\r\n"); in AsConvertToLineFeeds()
777 if (!SubString) in AsConvertToLineFeeds()
782 SubBuffer = AsReplaceData (SubString, 1, NULL, 0); in AsConvertToLineFeeds()
799 char *SubString; in AsInsertCarriageReturns() local
804 SubString = Buffer; in AsInsertCarriageReturns()
806 while (SubString) in AsInsertCarriageReturns()
810 SubString = strstr (SubBuffer, "\n"); in AsInsertCarriageReturns()
811 if (!SubString) in AsInsertCarriageReturns()
816 SubBuffer = AsInsertData (SubString, "\r", 1); in AsInsertCarriageReturns()
1467 char *SubString; in AsInsertPrefix() local
1498 SubString = Buffer; in AsInsertPrefix()
1503 while (SubString) in AsInsertPrefix()
1507 SubString = strstr (SubBuffer, LowerKeyword); in AsInsertPrefix()
1508 if (!SubString) in AsInsertPrefix()
1513 SubBuffer = SubString; in AsInsertPrefix()
1517 if (AsMatchExactWord (SubString, KeywordLength)) in AsInsertPrefix()
1521 if (!strncmp (SubString - InsertLength, InsertString, InsertLength)) in AsInsertPrefix()
1540 if (*(SubString - 2) == '}') in AsInsertPrefix()
1551 EndKeyword = SubString + strlen (LowerKeyword); in AsInsertPrefix()
1562 SubBuffer = SubString + InsertLength; in AsInsertPrefix()
1568 memmove (SubBuffer, SubString, KeywordLength); in AsInsertPrefix()
1572 memmove (SubString, InsertString, InsertLength); in AsInsertPrefix()
1576 AsInsertData (SubString, InsertString, InsertLength); in AsInsertPrefix()