Home | History | Annotate | Download | only in sepolgen

Lines Matching refs:ldict

1978             ldict = module.__dict__
1981 ldict = { }
1983 ldict[i[0]] = i[1]
1997 ldict = f.f_globals # Grab its globals dictionary
2001 start = ldict.get("start",None)
2020 m.func = ldict[p[2]]
2028 tokens = ldict.get("tokens",None)
2036 requires = ldict.get("require",None)
2067 prec = ldict.get("precedence",None)
2079 ef = ldict.get('p_error',None)
2099 symbols = [ldict[f] for f in ldict.keys()
2100 if (type(ldict[f]) in (types.FunctionType, types.MethodType) and ldict[f].__name__[:2] == 'p_'
2101 and ldict[f].__name__ != 'p_error')]
2135 validate_dict(ldict)
2142 otherfunc = [ldict[f] for f in ldict.keys()
2143 if (type(f) in (types.FunctionType,types.MethodType) and ldict[f].__name__[:2] != 'p_')]