Lines Matching refs:pIndex
40 static String parseString(const String & rCmd, sal_uInt16 * pIndex) in PRV_SV_IMPL_OWNER_LIST()
44 if(rCmd.GetChar( *pIndex ) == '\"') { in PRV_SV_IMPL_OWNER_LIST()
45 (*pIndex) ++; in PRV_SV_IMPL_OWNER_LIST()
47 sal_uInt16 begin = *pIndex; in PRV_SV_IMPL_OWNER_LIST()
49 while(*pIndex < rCmd.Len() && rCmd.GetChar((*pIndex) ++) != '\"') ; in PRV_SV_IMPL_OWNER_LIST()
51 result = String(rCmd.Copy(begin, *pIndex - begin - 1)); in PRV_SV_IMPL_OWNER_LIST()
57 static String parseWord(const String & rCmd, sal_uInt16 * pIndex) in parseWord() argument
59 sal_uInt16 begin = *pIndex; in parseWord()
61 while(*pIndex < rCmd.Len() && !isspace(rCmd.GetChar(*pIndex)) && rCmd.GetChar(*pIndex) != '=') in parseWord()
62 (*pIndex) ++; in parseWord()
64 return String(rCmd.Copy(begin, *pIndex - begin)); in parseWord()
67 static void eatSpace(const String & rCmd, sal_uInt16 * pIndex) in eatSpace() argument
69 while(*pIndex < rCmd.Len() && isspace(rCmd.GetChar(*pIndex))) in eatSpace()
70 (*pIndex) ++; in eatSpace()