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

1234

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h32 std::string lookup(StringRef Variable) const {
33 return Expansions.lookup(Variable);
38 const_iterator find(StringRef Variable) const {
39 return Expansions.find(Variable);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariable.h1 //===-- Variable.h -----------------------------------------------*- C++-*-===//
25 class Variable : public UserID, public std::enable_shared_from_this<Variable> { class in namespace:lldb_private
32 Variable(lldb::user_id_t uid, const char *name, const char *mangled,
38 virtual ~Variable();
138 Variable(const Variable &rhs) = delete;
139 Variable &operator=(const Variable &rhs) = delete;
H A DVariableList.h13 #include "lldb/Symbol/Variable.h"
63 uint32_t FindIndexForVariable(Variable *variable);
H A DBlock.h237 const std::function<bool(Variable *)> &filter,
268 const std::function<bool(Variable *)> &filter,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.h13 #include "lldb/Symbol/Variable.h"
45 const lldb_private::Variable::RangeList &ranges,
H A DPDBLocationToDWARFExpression.cpp15 #include "lldb/Symbol/Variable.h"
32 const Variable::RangeList &ranges) {
68 const Variable::RangeList &ranges, bool &is_constant) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp1 //===-- Variable.cpp --------------------------------------------*- C++ -*-===//
9 #include "lldb/Symbol/Variable.h"
38 Variable::Variable(lldb::user_id_t uid, const char *name, const char *mangled, function in class:Variable
51 Variable::~Variable() {}
53 lldb::LanguageType Variable::GetLanguage() const {
70 ConstString Variable::GetName() const {
77 ConstString Variable::GetUnqualifiedName() const { return m_name; }
79 bool Variable
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h200 R_SExpr reduceFunction(Function &Orig, Variable *Nvd, R_SExpr E0) {
204 R_SExpr reduceSFunction(SFunction &Orig, Variable *Nvd, R_SExpr E0) {
279 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) {
283 Variable *enterScope(Variable &Orig, R_SExpr E0) { return &Orig; }
284 void exitScope(const Variable &Orig) {}
290 Variable *reduceVariableRef(Variable *Ovd) { return Ovd; }
348 void enterScope(const Variable *V1, const Variable *V
[all...]
H A DThreadSafetyTIL.h345 /// There are two distinct places in which a Variable can appear in the AST.
355 class Variable : public SExpr { class in namespace:clang::threadSafety
368 Variable(StringRef s, SExpr *D = nullptr) function in class:clang::threadSafety::Variable
373 Variable(SExpr *D, const ValueDecl *Cvd = nullptr) function in class:clang::threadSafety::Variable
379 Variable(const Variable &Vd, SExpr *D) // rewrite constructor function in class:clang::threadSafety::Variable
413 typename C::CType compare(const Variable* E, C& Cmp) const {
664 Function(Variable *Vd, SExpr *Bd)
666 Vd->setKind(Variable::VK_Fun);
669 Function(const Function &F, Variable *V
[all...]
H A DThreadSafetyCommon.h365 SelfVar = new (Arena) til::Variable(nullptr);
366 SelfVar->setKind(til::Variable::VK_SFun);
489 // Variable to use for 'this'. May be null.
490 til::Variable *SelfVar = nullptr;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCloneDetection.h393 const VarDecl *Variable; member in struct:clang::VariablePattern::SuspiciousClonePair::SuspiciousCloneInfo
400 SuspiciousCloneInfo(const VarDecl *Variable, const Stmt *Mention, argument
402 : Variable(Variable), Mention(Mention), Suggestion(Suggestion) {}
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp84 if (const auto *V = dyn_cast<Variable>(E)) {
85 if (V->kind() == Variable::VK_Let) {
106 if (auto *V = dyn_cast<Variable>(E)) {
107 if (V->kind() != Variable::VK_Let)
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCloneChecker.cpp175 Pair.FirstCloneInfo.Variable->getNameAsString() + "' here?",
181 Pair.SecondCloneInfo.Variable->getNameAsString() + "' here",
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h40 Variable, member in class:clang::index::SymbolKind
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp119 const VarDecl *Variable; member in struct:__anon490::CatchHandler
171 Handler.Variable = CatchDecl;
248 bool EndCatchMightThrow = (Handler.Variable == nullptr);
256 if (const VarDecl *CatchParam = Handler.Variable) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheckImpl.h128 NumericVariable *Variable; member in class:llvm::NumericVariableUse
131 NumericVariableUse(StringRef Name, NumericVariable *Variable) argument
132 : Name(Name), Variable(Variable) {}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp90 MachineIRBuilder::buildDirectDbgValue(Register Reg, const MDNode *Variable, argument
92 assert(isa<DILocalVariable>(Variable) && "not a variable");
95 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) &&
99 /*IsIndirect*/ false, Reg, Variable, Expr));
103 MachineIRBuilder::buildIndirectDbgValue(Register Reg, const MDNode *Variable, argument
105 assert(isa<DILocalVariable>(Variable) && "not a variable");
108 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) &&
112 /*IsIndirect*/ true, Reg, Variable, Expr));
116 const MDNode *Variable,
118 assert(isa<DILocalVariable>(Variable)
115 buildFIDbgValue(int FI, const MDNode *Variable, const MDNode *Expr) argument
130 buildConstDbgValue(const Constant &C, const MDNode *Variable, const MDNode *Expr) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-enumerations.h210 Variable = 1 << 7, member in class:lldb_private::TypeValidatorResult::CompilerContextKind
/freebsd-11-stable/etc/defaults/
H A Dperiodic.conf334 echo "Warning: Variable \$$dailyvar is deprecated," \
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h33 class Variable;
62 eContextTypeVariable // lldb_private::Variable *
204 Variable *GetVariable();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h179 VD Variable; member in union:clang::__anon209
212 : Kind(EK), Type(Var->getType()), Variable{Var, false, false} {}
228 Variable{Member, Implicit, DefaultMemberInit} {}
472 return getKind() == EK_Member && Variable.IsImplicitFieldInit;
478 return getKind() == EK_Member && Variable.IsDefaultMemberInit;
1052 /// Variable-length array must not have an initializer.
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp277 // Variable
281 class Variable { class in namespace:__anon964
286 Variable() : T(Type::getVoid()), N("") {} function in class:__anon964::Variable
287 Variable(Type T, std::string N) : T(std::move(T)), N(std::move(N)) {} function in class:__anon964::Variable
331 std::map<std::string, Variable> Variables;
343 Variable RetVar;
500 void emitReverseVariable(Variable &Dest, Variable &Src);
1083 "Variable not defined!");
1100 Variables[Name] = Variable(Type
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp17 #include "lldb/Symbol/Variable.h"
204 case eContextTypeVariable: // Variable *
223 case eContextTypeVariable: // Variable *
255 Variable *variable = GetVariable();
410 Variable *variable = GetVariable();
451 Variable *variable = GetVariable();
629 Variable *Value::GetVariable() {
631 return static_cast<Variable *>(m_context);
670 return "Variable *";
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp30 static Variable::RangeList
37 Variable::RangeList result;
514 const Variable::RangeList &ranges) {
518 using RangeListEntry = Variable::RangeList::Entry;
547 const Variable::RangeList &ranges,
618 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps);
659 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps);
H A DPdbUtil.h13 #include "lldb/Symbol/Variable.h"
107 llvm::Optional<Variable::RangeList> ranges;

Completed in 158 milliseconds

1234