Lines Matching +full:- +full:- +full:-
3 # Mini-Kconfig parser
12 # the top-level directory.
27 # -------------------------------------------
35 # -------------------------------------------
172 return -1
210 # semantic analysis -------------
231 debug_print(i, "->", [str(x) for x in self.referenced_vars[i].outgoing])
233 # The reverse of the depth-first order is the topological sort
248 self.clauses.sort(key=lambda x: (-dfo[x.dest], -x.priority()))
263 # semantic actions -------------
299 # -------------------------------------------
302 # -------------------------------------------
306 TOK_NONE = -1
356 if self.src == '' or self.src[-1] != '\n':
370 # file management -----
385 col += 8 - ((col - 1) % 8)
405 fp = open(incl_abs_fname, 'rt', encoding='utf-8')
416 # recursive descent parser -----
578 # scanner -----
668 if argv[1] == '--defconfig':
670 elif argv[1] == '--randconfig':
674 elif argv[1] == '--allyesconfig':
677 elif argv[1] == '--allnoconfig':
685 if argv[1].startswith('-'):
693 m = re.match(r'^(CONFIG_[A-Z0-9_]+)=([yn]?)$', arg)
699 fp = open(arg, 'rt', encoding='utf-8')
708 deps = open(argv[2], 'wt', encoding='utf-8')