Lines Matching refs:SubString

911     char                    *SubString;  in AsConvertToLineFeeds()  local
916 SubString = Buffer; in AsConvertToLineFeeds()
918 while (SubString) in AsConvertToLineFeeds()
922 SubString = strstr (SubBuffer, "\r\n"); in AsConvertToLineFeeds()
923 if (!SubString) in AsConvertToLineFeeds()
928 SubBuffer = AsReplaceData (SubString, 1, NULL, 0); in AsConvertToLineFeeds()
945 char *SubString; in AsInsertCarriageReturns() local
950 SubString = Buffer; in AsInsertCarriageReturns()
952 while (SubString) in AsInsertCarriageReturns()
956 SubString = strstr (SubBuffer, "\n"); in AsInsertCarriageReturns()
957 if (!SubString) in AsInsertCarriageReturns()
962 SubBuffer = AsInsertData (SubString, "\r", 1); in AsInsertCarriageReturns()
1613 char *SubString; in AsInsertPrefix() local
1644 SubString = Buffer; in AsInsertPrefix()
1649 while (SubString) in AsInsertPrefix()
1653 SubString = strstr (SubBuffer, LowerKeyword); in AsInsertPrefix()
1654 if (!SubString) in AsInsertPrefix()
1659 SubBuffer = SubString; in AsInsertPrefix()
1663 if (AsMatchExactWord (SubString, KeywordLength)) in AsInsertPrefix()
1667 if (!strncmp (SubString - InsertLength, InsertString, InsertLength)) in AsInsertPrefix()
1686 if (*(SubString - 2) == '}') in AsInsertPrefix()
1697 EndKeyword = SubString + strlen (LowerKeyword); in AsInsertPrefix()
1708 SubBuffer = SubString + InsertLength; in AsInsertPrefix()
1714 memmove (SubBuffer, SubString, KeywordLength); in AsInsertPrefix()
1718 memmove (SubString, InsertString, InsertLength); in AsInsertPrefix()
1722 AsInsertData (SubString, InsertString, InsertLength); in AsInsertPrefix()