Lines Matching refs:argList
88 def findArgument(key, argList): argument
91 if not isinstance(argList, list): return None
94 l = argList[:]
103 def processAlternatePrefixes(argList): argument
105 for l in range(0, len(argList)):
106 name = argList[l]
108 argList[l] = name.replace('enable-','with-')
109 if name.find('=') == -1: argList[l] = argList[l]+'=1'
111 argList[l] = name.replace('disable-','with-')
112 if name.find('=') == -1: argList[l] = argList[l]+'=0'
113 elif name.endswith('=1'): argList[l].replace('=1','=0')
115 argList[l] = name.replace('without-','with-')
116 if name.find('=') == -1: argList[l] = argList[l]+'=0'
117 elif name.endswith('=1'): argList[l].replace('=1','=0')