Lines Matching refs:SubString

803     char                    *SubString;  in AsConvertToLineFeeds()  local
808 SubString = Buffer; in AsConvertToLineFeeds()
810 while (SubString) in AsConvertToLineFeeds()
814 SubString = strstr (SubBuffer, "\r\n"); in AsConvertToLineFeeds()
815 if (!SubString) in AsConvertToLineFeeds()
820 SubBuffer = AsReplaceData (SubString, 1, NULL, 0); in AsConvertToLineFeeds()
837 char *SubString; in AsInsertCarriageReturns() local
842 SubString = Buffer; in AsInsertCarriageReturns()
844 while (SubString) in AsInsertCarriageReturns()
848 SubString = strstr (SubBuffer, "\n"); in AsInsertCarriageReturns()
849 if (!SubString) in AsInsertCarriageReturns()
854 SubBuffer = AsInsertData (SubString, "\r", 1); in AsInsertCarriageReturns()
1500 char *SubString; in AsInsertPrefix() local
1533 SubString = Buffer; in AsInsertPrefix()
1538 while (SubString) in AsInsertPrefix()
1542 SubString = strstr (SubBuffer, LowerKeyword); in AsInsertPrefix()
1543 if (!SubString) in AsInsertPrefix()
1548 SubBuffer = SubString; in AsInsertPrefix()
1552 if (AsMatchExactWord (SubString, KeywordLength)) in AsInsertPrefix()
1562 LineStart = SubString; in AsInsertPrefix()
1634 if (*(SubString - 2) == '}') in AsInsertPrefix()
1645 EndKeyword = SubString + strlen (LowerKeyword); in AsInsertPrefix()
1656 SubBuffer = SubString + InsertLength; in AsInsertPrefix()
1662 memmove (SubBuffer, SubString, KeywordLength); in AsInsertPrefix()
1666 memmove (SubString, InsertString, InsertLength); in AsInsertPrefix()
1670 AsInsertData (SubString, InsertString, InsertLength); in AsInsertPrefix()