Lines Matching refs:symbol
2 Test symbol table access for main.m.
30 """Test symbol table access with Python APIs."""
37 """Test symbol table access with Python APIs."""
42 """Test symbol table access with Python APIs."""
53 # Exercise Python APIs to access the symbol table entries.
62 # Create the set of known symbols. As we iterate through the symbol
63 # table, remove the symbol from the set if it is a known symbol.
65 for symbol in module:
66 self.assertTrue(symbol, VALID_SYMBOL)
67 #print "symbol:", symbol
68 name = symbol.GetName()