Searched refs:Variable (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DVariable.h1 //===-- Variable.h ----------------------------------------------*- C++ -*-===//
24 class Variable : public UserID class in namespace:lldb_private
30 Variable (lldb::user_id_t uid,
42 ~Variable();
178 Variable(const Variable& rhs);
179 Variable& operator=(const Variable& rhs);
H A DVariableList.h15 #include "lldb/Symbol/Variable.h"
72 FindIndexForVariable (Variable* variable);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DVariable.cpp1 //===-- Variable.cpp --------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Variable.h"
33 // Variable constructor
35 Variable::Variable function in class:Variable
64 Variable::~Variable()
70 Variable::GetName() const
78 Variable::NameMatches (const RegularExpression& regex) const
86 Variable
[all...]
H A DVariableList.cpp159 VariableList::FindIndexForVariable (Variable* variable)
H A DSymbol.cpp394 ENUM_TO_CSTRING(Variable);
/freebsd-10.0-release/lib/clang/liblldbSymbol/
H A DMakefile32 Variable.cpp \
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h70 const MDNode *Variable; member in struct:llvm::DotDebugLocEntry
87 : Begin(0), End(0), Variable(0), Merged(false),
91 : Begin(B), End(E), Loc(L), Variable(V), Merged(false),
94 : Begin(B), End(E), Variable(0), Merged(false),
97 : Begin(B), End(E), Variable(0), Merged(false),
101 : Begin(B), End(E), Variable(0), Merged(false),
126 DIVariable Var; // Variable Descriptor.
127 DIE *TheDIE; // Variable DIE.
H A DDwarfDebug.cpp581 if (DIE *Variable =
583 Children.push_back(Variable);
584 if (Variables[i]->isObjectPointer()) ObjectPointer = Variable;
1482 // Variable is in a register, we need to check for clobbers.
2431 DIVariable DV(Entry.Variable);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DValue.cpp26 #include "lldb/Symbol/Variable.h"
175 case eContextTypeVariable: // Variable *
196 case eContextTypeVariable: // Variable *
243 Variable *variable = GetVariable();
441 Variable *variable = GetVariable();
483 Variable *variable = GetVariable();
673 Variable *
677 return static_cast<Variable *> (m_context);
716 case eContextTypeVariable: return "Variable *";
H A DValueObjectVariable.cpp27 #include "lldb/Symbol/Variable.h"
121 Variable *variable = m_variable_sp.get();
233 // Copy the Value and set the context to use our Variable
H A DAddress.cpp16 #include "lldb/Symbol/Variable.h"
710 Variable *var = variable_list.GetVariableAtIndex (var_idx).get();
714 s->Printf (" Variable: id = {0x%8.8" PRIx64 "}, name = \"%s\", type= \"%s\", location =",
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp148 const VarDecl *Variable; member in struct:__anon3071::CatchHandler
197 Handler.Variable = CatchDecl;
244 bool EndCatchMightThrow = (Handler.Variable == 0);
252 if (const VarDecl *CatchParam = Handler.Variable) {
H A DCGDecl.cpp1045 assert(emission.Variable && "emission was not valid!");
1050 const VarDecl &D = *emission.Variable;
1197 const VarDecl *var = emission.Variable;
1246 assert(emission.Variable && "emission was not valid!");
1255 const VarDecl &D = *emission.Variable;
H A DCGStmt.cpp1375 const VarDecl *Variable = dyn_cast<VarDecl>(&Value); local
1376 if (!Variable)
1378 if (Variable->getStorageClass() != SC_Register)
1380 AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>();
H A DCodeGenFunction.h2060 const VarDecl *Variable; member in class:clang::CodeGen::AutoVarEmission
2082 AutoVarEmission(Invalid) : Variable(0) {}
2085 : Variable(&variable), Address(0), NRVOFlag(0),
2113 CGF.getByRefValueLLVMField(Variable),
2114 Variable->getNameAsString());
/freebsd-10.0-release/contrib/tcsh/
H A Dtw.color.c61 } Variable; typedef in typeref:struct:__anon4370
63 static Variable variables[] = {
/freebsd-10.0-release/etc/defaults/
H A Dperiodic.conf322 echo "Warning: Variable \$$dailyvar is deprecated," \
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValue.h52 eContextTypeVariable // lldb_private::Variable *
241 Variable *
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h249 class Variable;
369 typedef std::shared_ptr<lldb_private::Variable> VariableSP;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp995 MDNode *Variable = DI->getVariable(); local
999 if (!EmitFuncArgumentDbgValue(V, Variable, Offset, Val)) {
1000 SDV = DAG.getDbgValue(Variable, Val.getNode(),
4352 SelectionDAGBuilder::EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable, argument
4364 DIVariable DV(Variable);
4409 .addReg(Reg, RegState::Debug).addImm(Offset).addMetadata(Variable);
4509 MDNode *Variable = DI.getVariable(); local
4511 if (!Address || !DIVariable(Variable).Verify()) {
4539 (DIVariable(Variable).getTag() == dwarf::DW_TAG_arg_variable ||
4548 SDV = DAG.getDbgValue(Variable, FINod
[all...]
H A DSelectionDAGBuilder.h553 bool EmitFuncArgumentDbgValue(const Value *V, MDNode *Variable,
H A DSelectionDAGISel.cpp419 const MDNode *Variable = local
426 .addImm(Offset).addMetadata(Variable);
447 .addImm(Offset).addMetadata(Variable);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandCompletions.cpp30 #include "lldb/Symbol/Variable.h"
473 return Variable::AutoComplete (interpreter.GetExecutionContext(), partial_name, matches, word_complete);
H A DCommandObjectWatchpoint.cpp27 #include "lldb/Symbol/Variable.h"
1042 Error error (Variable::GetValuesForVariableExpressionPath (command.GetArgumentAtIndex(0),
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1106 Variable, enumerator in enum:__anon3180
1114 ObjectKind = Variable;

Completed in 196 milliseconds

12