Home
last modified time | relevance | path

Searched refs:Variable (Results 1 – 25 of 180) sorted by relevance

12345678

/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DVariable.cpp42 Variable::Variable( in Variable() function in Variable
59 Variable::~Variable() {} in ~Variable()
61 lldb::LanguageType Variable::GetLanguage() const { in GetLanguage()
69 ConstString Variable::GetName() const { in GetName()
97 Type *Variable::GetType() { in GetType()
103 void Variable::Dump(Stream *s, bool show_context) const { in Dump()
203 size_t Variable::MemorySize() const { return sizeof(Variable); } in MemorySize()
205 CompilerDeclContext Variable::GetDeclContext() { in GetDeclContext()
212 CompilerDecl Variable::GetDecl() { in GetDecl()
281 bool Variable::IsInScope(StackFrame *frame) { in IsInScope()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DVariable.h27 class Variable : public UserID, public std::enable_shared_from_this<Variable> {
34 Variable(lldb::user_id_t uid, const char *name,
43 virtual ~Variable();
135 Variable(const Variable &rhs);
136 Variable &operator=(const Variable &rhs);
H A DBlock.h279 const std::function<bool(Variable *)> &filter,
312 const std::function<bool(Variable *)> &filter,
H A DVariableList.h64 uint32_t FindIndexForVariable(Variable *variable);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h280 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) { in reduceLet()
284 Variable *enterScope(Variable &Orig, R_SExpr E0) { return &Orig; } in enterScope()
285 void exitScope(const Variable &Orig) {} in exitScope()
291 Variable *reduceVariableRef(Variable *Ovd) { return Ovd; } in reduceVariableRef()
349 void enterScope(const Variable *V1, const Variable *V2) {} in enterScope()
352 bool compareVariableRefs(const Variable *V1, const Variable *V2) { in compareVariableRefs()
387 void enterScope(const Variable* V1, const Variable* V2) {} in enterScope()
390 bool compareVariableRefs(const Variable* V1, const Variable* V2) { in compareVariableRefs()
631 if (CStyle && V->kind() == Variable::VK_SFun)
710 if (const auto *V = dyn_cast<Variable>(SAP->sfun())) { in printProject()
[all …]
H A DThreadSafetyTIL.h356 class Variable : public SExpr {
380 Variable(const Variable &Vd, SExpr *D) // rewrite constructor in Variable() function
665 Function(Variable *Vd, SExpr *Bd) in Function()
667 Vd->setKind(Variable::VK_Fun); in Function()
672 Vd->setKind(Variable::VK_Fun); in Function()
707 Variable *VarDecl;
716 SFunction(Variable *Vd, SExpr *B) in SFunction()
719 Vd->setKind(Variable::VK_SFun); in SFunction()
726 Vd->setKind(Variable::VK_SFun); in SFunction()
759 Variable *VarDecl;
[all …]
H A DThreadSafetyCommon.h366 SelfVar = new (Arena) til::Variable(nullptr); in SExprBuilder()
367 SelfVar->setKind(til::Variable::VK_SFun); in SExprBuilder()
491 til::Variable *SelfVar = nullptr;
H A DThreadSafetyOps.def23 TIL_OPCODE_DEF(Variable)
/freebsd-12.1/contrib/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp90 MachineIRBuilder::buildDirectDbgValue(unsigned Reg, const MDNode *Variable, in buildDirectDbgValue() argument
92 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildDirectDbgValue()
99 /*IsIndirect*/ false, Reg, Variable, Expr)); in buildDirectDbgValue()
103 MachineIRBuilder::buildIndirectDbgValue(unsigned Reg, const MDNode *Variable, in buildIndirectDbgValue() argument
105 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildIndirectDbgValue()
112 /*IsIndirect*/ true, Reg, Variable, Expr)); in buildIndirectDbgValue()
116 const MDNode *Variable, in buildFIDbgValue() argument
118 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildFIDbgValue()
126 .addMetadata(Variable) in buildFIDbgValue()
133 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildConstDbgValue()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCloneDetection.h394 const VarDecl *Variable; member
401 SuspiciousCloneInfo(const VarDecl *Variable, const Stmt *Mention, in SuspiciousCloneInfo()
403 : Variable(Variable), Mention(Mention), Suggestion(Suggestion) {} in SuspiciousCloneInfo()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp85 if (const auto *V = dyn_cast<Variable>(E)) { in getCanonicalVal()
86 if (V->kind() == Variable::VK_Let) { in getCanonicalVal()
107 if (auto *V = dyn_cast<Variable>(E)) { in simplifyToCanonicalVal()
108 if (V->kind() != Variable::VK_Let) in simplifyToCanonicalVal()
/freebsd-12.1/contrib/tcsh/nls/C/
H A Dset133 30 Variable name must begin with a letter
34 31 Variable name too long
35 32 Variable name must contain alphanumeric characters
90 87 Variable syntax
/freebsd-12.1/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp269 class Variable { class
274 Variable() : T(Type::getVoid()), N("") {} in Variable() function in __anoneec6fbfe0111::Variable
317 std::map<std::string, Variable> Variables;
329 Variable RetVar;
479 void emitReverseVariable(Variable &Dest, Variable &Src);
1240 Variable &V = Variables[Name]; in emitPrototype()
1272 void Intrinsic::emitReverseVariable(Variable &Dest, Variable &Src) { in emitReverseVariable()
1305 Variable &V = Variables[Name]; in emitArgumentReversal()
1345 Variable &V = Variables[Name]; in emitShadowedArgs()
1397 Variable &V = Variables["p" + utostr(I)]; in emitBodyAsBuiltinCall()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp121 const VarDecl *Variable; member
174 Handler.Variable = CatchDecl; in EmitTryCatchStmt()
251 bool EndCatchMightThrow = (Handler.Variable == nullptr); in EmitTryCatchStmt()
259 if (const VarDecl *CatchParam = Handler.Variable) { in EmitTryCatchStmt()
/freebsd-12.1/contrib/tcsh/nls/german/
H A Dset129 26 Undefinierte Variable
81 78 Keine $home-Variable gesetzt
111 108 Keine $watch-Variable gesetzt
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DValue.cpp260 Variable *variable = GetVariable(); in GetCompilerType()
410 Variable *variable = GetVariable(); in GetValueAsData()
451 Variable *variable = GetVariable(); in GetValueAsData()
626 Variable *Value::GetVariable() { in GetVariable()
628 return static_cast<Variable *>(m_context); in GetVariable()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineInstr.cpp1989 unsigned Reg, const MDNode *Variable, in BuildMI() argument
1991 assert(isa<DILocalVariable>(Variable) && "not a variable"); in BuildMI()
1993 assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) && in BuildMI()
2000 return MIB.addMetadata(Variable).addMetadata(Expr); in BuildMI()
2005 MachineOperand &MO, const MDNode *Variable, in BuildMI() argument
2007 assert(isa<DILocalVariable>(Variable) && "not a variable"); in BuildMI()
2009 assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) && in BuildMI()
2012 return BuildMI(MF, DL, MCID, IsIndirect, MO.getReg(), Variable, Expr); in BuildMI()
2019 return MIB.addMetadata(Variable).addMetadata(Expr); in BuildMI()
2028 MachineInstr *MI = BuildMI(MF, DL, MCID, IsIndirect, Reg, Variable, Expr); in BuildMI()
[all …]
H A DLiveDebugVariables.cpp156 const DILocalVariable *Variable; ///< The debug info variable we are part of. member in __anon9d48ada90211::UserValue
189 : Variable(var), Expression(expr), dl(std::move(L)), leader(this), in UserValue()
208 return Var == Variable && Expr == Expression && dl->getInlinedAt() == IA; in match()
464 auto *DV = cast<DILocalVariable>(Variable); in print()
1221 assert(cast<DILocalVariable>(Variable) in insertDebugValue()
1242 IsIndirect, MO, Variable, Expr); in insertDebugValue()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/GlobalISel/
H A DMachineIRBuilder.h313 MachineInstrBuilder buildDirectDbgValue(unsigned Reg, const MDNode *Variable,
320 const MDNode *Variable,
326 MachineInstrBuilder buildFIDbgValue(int FI, const MDNode *Variable,
332 const MDNode *Variable,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DInitialization.h180 VD Variable; member
213 : Kind(EK), Type(Var->getType()), Variable{Var, false, false} {} in Kind()
229 Variable{Member, Implicit, DefaultMemberInit} {} in InitializedEntity()
471 return getKind() == EK_Member && Variable.IsImplicitFieldInit; in isImplicitMemberInitializer()
477 return getKind() == EK_Member && Variable.IsDefaultMemberInit; in isDefaultMemberInitializer()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCloneChecker.cpp183 Pair.FirstCloneInfo.Variable->getNameAsString() + "' here?", in reportSuspiciousClones()
189 Pair.SecondCloneInfo.Variable->getNameAsString() + "' here", in reportSuspiciousClones()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DValue.h44 class Variable; variable
215 Variable *GetVariable();
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h422 unsigned Reg, const MDNode *Variable,
429 MachineOperand &MO, const MDNode *Variable,
438 unsigned Reg, const MDNode *Variable,
446 MachineOperand &MO, const MDNode *Variable,
/freebsd-12.1/contrib/amd/doc/
H A Dam-utils.texi1432 @node autodir Selector Variable, byte Selector Variable, arch Selector Variable, Selectors
1501 @node host Selector Variable, hostd Selector Variable, dollar Selector Variable, Selectors
1519 @node hostd Selector Variable, karch Selector Variable, host Selector Variable, Selectors
1533 @node karch Selector Variable, os Selector Variable, hostd Selector Variable, Selectors
1550 @node os Selector Variable, osver Selector Variable, karch Selector Variable, Selectors
1564 @node osver Selector Variable, full_os Selector Variable, os Selector Variable, Selectors
1617 @node key Selector Variable, map Selector Variable, vendor Selector Variable, Selectors
1633 @node map Selector Variable, netnumber Selector Variable, key Selector Variable, Selectors
1674 @node path Selector Variable, wire Selector Variable, network Selector Variable, Selectors
1686 @node wire Selector Variable, uid Selector Variable, path Selector Variable, Selectors
[all …]
/freebsd-12.1/contrib/libc++/include/
H A D__threading_support58 // Condition Variable
91 // Condition Variable
275 // Condition Variable

12345678