Lines Matching refs:pdict
1219 def bind(self,pdict): argument
1221 self.callable = pdict[self.func]
1242 def bind(self,pdict): argument
1244 self.callable = pdict[self.func]
1872 def bind_callables(self,pdict): argument
1874 p.bind(pdict)
2765 def __init__(self,pdict,log=None): argument
2766 self.pdict = pdict
2862 self.start = self.pdict.get('start')
2872 self.error_func = self.pdict.get('p_error')
2896 tokens = self.pdict.get("tokens",None)
2930 self.prec = self.pdict.get("precedence",None)
2966 for name, item in self.pdict.items():
2989 func = self.pdict[name]
3019 for n,v in self.pdict.items():
3059 pdict = dict(_items)
3061 pdict = get_caller_module_dict(2)
3064 pinfo = ParserReflect(pdict,log=errorlog)
3082 lr.bind_callables(pinfo.pdict)
3278 lr.bind_callables(pinfo.pdict)