reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/lib/AST/Interp/ByteCodeExprGen.h
   35 template <class Emitter> class VariableScope;

References

tools/clang/lib/AST/Interp/ByteCodeExprGen.cpp
  569   for (VariableScope<Emitter> *C = VarScope; C; C = C->getParent())
tools/clang/lib/AST/Interp/ByteCodeExprGen.h
  224   VariableScope<Emitter> *VarScope = nullptr;
  263   VariableScope *getParent() { return Parent; }
  274   VariableScope *Parent;
  281 template <class Emitter> class LocalScope : public VariableScope<Emitter> {
  283   LocalScope(ByteCodeExprGen<Emitter> *Ctx) : VariableScope<Emitter>(Ctx) {}