Lines Matching refs:path
124 rtl::OUString const & path, sal_Int32 index, rtl::OUString * name, in parseSegment() argument
128 index >= 0 && index <= path.getLength() && name != 0 && in parseSegment()
131 while (i < path.getLength() && path[i] != '/' && path[i] != '[') { in parseSegment()
134 if (i == path.getLength() || path[i] == '/') { in parseSegment()
135 *name = path.copy(index, i - index); in parseSegment()
140 if (i - index == 1 && path[index] == '*') { in parseSegment()
143 *templateName = path.copy(index, i - index); in parseSegment()
146 if (++i == path.getLength()) { in parseSegment()
149 sal_Unicode del = path[i++]; in parseSegment()
153 sal_Int32 j = path.indexOf(del, i); in parseSegment()
154 if (j == -1 || j + 1 == path.getLength() || path[j + 1] != ']' || in parseSegment()
155 !decode(path, i, j, name)) in parseSegment()
207 rtl::OUString * canonicRepresentation, Path * path, int * finalizedLayer) in resolvePathRepresentation() argument
229 if (path != 0) { in resolvePathRepresentation()
230 path->clear(); in resolvePathRepresentation()
242 if (path != 0) { in resolvePathRepresentation()
243 path->push_back(seg); in resolvePathRepresentation()