Lines Matching refs:colon
53 colon = _get_colon(s)
54 return colon in s and s[:1] != colon
59 colon = _get_colon(s)
62 path[:0] + colon #23780: Ensure compatible data type even if p is null.
67 if t[:1] == colon:
69 if colon not in path:
70 path = colon + path
71 if path[-1:] != colon:
72 path = path + colon
85 colon = _get_colon(s)
86 if colon not in s: return s[:0], s
89 if s[i:i+1] == colon: col = i + 1
91 if path and not colon in path:
92 path = path + colon
161 colon = _get_colon(s)
163 if colon not in s:
164 return colon + s
166 comps = s.split(colon)
179 s = colon.join(comps)
182 if s[-1:] == colon and len(comps) > 2 and s != colon*len(s):
205 colon = _get_colon(path)
206 components = path.split(colon)
207 path = components[0] + colon