Lines Matching refs:symbol
23 with standard-library system symbol names.
114 def _AddSystemSymbol(item, symbol):
117 exports.add(symbol)
127 # One double-quote-enclosed symbol on the line, allows spaces in a symbol name.
128 symbol = line[1:-1]
129 if line.startswith('"') and line.endswith('"') and '"' not in symbol:
130 _AddSystemSymbol(item, symbol)
132 sys.exit("Error:%d: invalid quoted symbol name %s" % (_line_number, line))
135 for symbol in line.split(): _AddSystemSymbol(item, symbol)