Lines Matching refs:ppos
157 const sal_Unicode* ppos = path + 2; in parse_UNC_path() local
159 puncc->server_.begin_ = ppos; in parse_UNC_path()
160 while ((ppos < pend) && (*ppos != BACKSLASH)) in parse_UNC_path()
161 ppos++; in parse_UNC_path()
163 puncc->server_.end_ = ppos; in parse_UNC_path()
165 if (BACKSLASH == *ppos) in parse_UNC_path()
167 puncc->share_.begin_ = ++ppos; in parse_UNC_path()
168 while ((ppos < pend) && (*ppos != BACKSLASH)) in parse_UNC_path()
169 ppos++; in parse_UNC_path()
171 puncc->share_.end_ = ppos; in parse_UNC_path()
173 if (BACKSLASH == *ppos) in parse_UNC_path()
175 … puncc->resource_.begin_ = ++ppos; in parse_UNC_path()
176 while (ppos < pend) in parse_UNC_path()
177 ppos++; in parse_UNC_path()
179 puncc->resource_.end_ = ppos; in parse_UNC_path()