Home | History | Annotate | Download | only in python

Lines Matching refs:theclass

170   enum address_class theclass;
174 theclass = symbol->aclass ();
176 return PyBool_FromLong (theclass == LOC_CONST || theclass == LOC_CONST_BYTES);
183 enum address_class theclass;
187 theclass = symbol->aclass ();
189 return PyBool_FromLong (theclass == LOC_BLOCK);
196 enum address_class theclass;
200 theclass = symbol->aclass ();
203 && (theclass == LOC_LOCAL || theclass == LOC_REGISTER
204 || theclass == LOC_STATIC || theclass == LOC_COMPUTED
205 || theclass == LOC_OPTIMIZED_OUT));