Home | History | Annotate | Download | only in Core

Lines Matching refs:variable

26 #include "lldb/Symbol/Variable.h"
175 case eContextTypeVariable: // Variable *
196 case eContextTypeVariable: // Variable *
243 Variable *variable = GetVariable();
244 if (variable)
246 Type *variable_type = variable->GetType();
440 // we can resolve a file address, is a variable.
441 Variable *variable = GetVariable();
442 if (variable)
445 variable->CalculateSymbolContext(&var_sc);
483 Variable *variable = GetVariable();
487 if (variable)
488 error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%" PRIx64 " for variable '%s' in %s",
490 variable->GetName().AsCString(""),
499 if (variable)
500 error.SetErrorStringWithFormat ("unable to resolve the module for file address 0x%" PRIx64 " for variable '%s'",
502 variable->GetName().AsCString(""));
673 Variable *
677 return static_cast<Variable *> (m_context);
716 case eContextTypeVariable: return "Variable *";