Lines Matching refs:path
7 path = None variable in FileContextsNode
16 def __init__(self, path, fileType, context, meta, stemLen, strLen, line): argument
17 self.path = path
29 def getStemLen(path): argument
33 while i < len(path):
34 if path[i] == "\\":
36 elif path[i] in metaChars:
43 def getIsMeta(path): argument
49 if c in path:
52 if c in path:
62 path = split[0].strip()
67 meta = getIsMeta(path)
68 stemLen = getStemLen(path)
69 strLen = len(path.replace("\\", ""))
71 return FileContextsNode(path, fileType, context, meta, stemLen, strLen, line)
116 if not os.path.exists(f):