Home | History | Annotate | Download | only in scripts

Lines Matching refs:words

11 # must contain exactly two words separated by whitespace: the
57 err('contain exactly two words: an identifier and its replacement.\n')
293 words = line[:i].split()
294 if not words: continue
295 if len(words) == 3 and words[0] == 'struct':
296 words[:2] = [words[0] + ' ' + words[1]]
297 elif len(words) != 2:
301 [value, key] = words
303 [key, value] = words