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

1234

/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dcond-undef-lint.exp1 make: "cond-undef-lint.mk" line 23: Variable "UNDEF" is undefined
2 make: "cond-undef-lint.mk" line 38: Variable "UNDEF" is undefined
3 make: "cond-undef-lint.mk" line 38: Variable "VAR." is undefined
4 make: "cond-undef-lint.mk" line 49: Variable "VAR.defined" is undefined
H A Dvar-recursive.exp2 Variable DIRECT is recursive.
5 Variable INDIRECT1 is recursive.
9 Variable V is recursive.
H A Dopt-debug-lint.exp1 make: "opt-debug-lint.mk" line 19: Variable "X" is undefined
2 make: "opt-debug-lint.mk" line 41: Variable "UNDEF" is undefined
H A Dcond-token-var.mk8 # expression. Variable expressions can get more complicated by adding
H A Drecursive.mk21 # On 2020-08-06, make reported: "Variable am__v_lt_ is recursive."
/freebsd-13-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-13-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-13-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-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp1 //===-- Variable.cpp ------------------------------------------------------===//
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-13-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...]
/freebsd-13-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-13-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-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCloneChecker.cpp175 Pair.FirstCloneInfo.Variable->getNameAsString() + "' here?",
181 Pair.SecondCloneInfo.Variable->getNameAsString() + "' here",
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCUDARuntime.h48 Variable, // Variable enumerator in enum:clang::CodeGen::CGCUDARuntime::DeviceVarFlags::DeviceVarKind
H A DCGObjCRuntime.cpp120 const VarDecl *Variable; member in struct:__anon1748::CatchHandler
172 Handler.Variable = CatchDecl;
249 bool EndCatchMightThrow = (Handler.Variable == nullptr);
257 if (const VarDecl *CatchParam = Handler.Variable) {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-enumerations.h198 Variable = 1 << 7, member in class:lldb_private::TypeValidatorResult::CompilerContextKind
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Index/
H A DIndexSymbol.h40 Variable, member in class:clang::index::SymbolKind
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp52 MachineIRBuilder::buildDirectDbgValue(Register Reg, const MDNode *Variable, argument
54 assert(isa<DILocalVariable>(Variable) && "not a variable");
57 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) &&
61 /*IsIndirect*/ false, Reg, Variable, Expr));
65 MachineIRBuilder::buildIndirectDbgValue(Register Reg, const MDNode *Variable, argument
67 assert(isa<DILocalVariable>(Variable) && "not a variable");
70 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) &&
74 /*IsIndirect*/ true, Reg, Variable, Expr));
78 const MDNode *Variable,
80 assert(isa<DILocalVariable>(Variable)
77 buildFIDbgValue(int FI, const MDNode *Variable, const MDNode *Expr) argument
92 buildConstDbgValue(const Constant &C, const MDNode *Variable, const MDNode *Expr) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h33 class Variable;
62 eContextTypeVariable // lldb_private::Variable *
204 Variable *GetVariable();
/freebsd-13-stable/usr.sbin/periodic/
H A Dperiodic.conf349 echo "Warning: Variable \$$dailyvar is deprecated," \
/freebsd-13-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 *";

Completed in 244 milliseconds

1234