| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | WatchedLiteralsSolver.cpp | 48 using Variable = uint32_t; typedef 52 static constexpr Variable NullVar = 0; 91 const Variable LargestVar; 240 const Variable v = var(lit); in addClause() 255 llvm::DenseSet<Variable> trueVars; 256 llvm::DenseSet<Variable> falseVars; 272 Variable NextVar = 1; in buildCNF() 278 Variable Var = NextVar; in buildCNF() 316 const Variable Var = GetVar(Val); in buildCNF() 466 std::vector<Variable> LevelVars; [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Variable.h | 25 class Variable : public UserID, public std::enable_shared_from_this<Variable> { 32 Variable(lldb::user_id_t uid, const char *name, const char *mangled, 39 virtual ~Variable(); 145 Variable(const Variable &rhs) = delete; 146 Variable &operator=(const Variable &rhs) = delete;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Variable.cpp | 38 Variable::Variable(lldb::user_id_t uid, const char *name, const char *mangled, in Variable() function in Variable 52 Variable::~Variable() = default; 54 lldb::LanguageType Variable::GetLanguage() const { in GetLanguage() 71 ConstString Variable::GetName() const { in GetName() 80 bool Variable::NameMatches(ConstString name) const { in NameMatches() 96 Type *Variable::GetType() { in GetType() 192 size_t Variable::MemorySize() const { return sizeof(Variable); } in MemorySize() 194 CompilerDeclContext Variable::GetDeclContext() { in GetDeclContext() 201 CompilerDecl Variable::GetDecl() { in GetDecl() 273 bool Variable::IsInScope(StackFrame *frame) { in IsInScope() [all …]
|
| /freebsd-14.2/contrib/bmake/unit-tests/ |
| H A D | cond-undef-lint.exp | 1 make: "cond-undef-lint.mk" line 25: Variable "UNDEF" is undefined 3 make: "cond-undef-lint.mk" line 43: Variable "UNDEF" is undefined 4 make: "cond-undef-lint.mk" line 43: Variable "VAR." is undefined 6 make: "cond-undef-lint.mk" line 56: Variable "VAR.defined" is undefined
|
| H A D | var-recursive.exp | 2 Variable DIRECT is recursive. 6 Variable INDIRECT1 is recursive. 11 Variable V is recursive. 16 In a command near "var-recursive.mk" line 57: Variable VAR is recursive.
|
| H A D | opt-debug-lint.exp | 1 make: "opt-debug-lint.mk" line 21: Variable "X" is undefined 3 make: "opt-debug-lint.mk" line 45: Variable "UNDEF" is undefined
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| H A D | CodeExpansions.h | 36 std::string lookup(StringRef Variable) const { in lookup() argument 37 return Expansions.lookup(Variable); in lookup() 42 const_iterator find(StringRef Variable) const { in find() argument 43 return Expansions.find(Variable); in find()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugProgramInstruction.h | 84 DILocalVariable *Variable; variable 128 DPValue(Metadata *Value, DILocalVariable *Variable, DIExpression *Expression, 132 static DPValue *createDPVAssign(Value *Val, DILocalVariable *Variable, 138 DILocalVariable *Variable, 222 void setVariable(DILocalVariable *NewVar) { Variable = NewVar; } in setVariable() 243 DILocalVariable *getVariable() const { return Variable; } in getVariable() 273 return std::tie(Type, DebugValues, Variable, Expression, DbgLoc) == in isEquivalentTo() 274 std::tie(Other.Type, Other.DebugValues, Other.Variable, in isEquivalentTo() 280 return std::tie(Type, DebugValues, Variable, Expression) == in isIdenticalToWhenDefined() 281 std::tie(Other.Type, Other.DebugValues, Other.Variable, in isIdenticalToWhenDefined()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
| H A D | ThreadSafetyTraverse.h | 279 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) { in reduceLet() 283 Variable *enterScope(Variable &Orig, R_SExpr E0) { return &Orig; } in enterScope() 284 void exitScope(const Variable &Orig) {} in exitScope() 290 Variable *reduceVariableRef(Variable *Ovd) { return Ovd; } in reduceVariableRef() 348 void enterScope(const Variable *V1, const Variable *V2) {} in enterScope() 351 bool compareVariableRefs(const Variable *V1, const Variable *V2) { in compareVariableRefs() 386 void enterScope(const Variable* V1, const Variable* V2) {} in enterScope() 389 bool compareVariableRefs(const Variable* V1, const Variable* V2) { in compareVariableRefs() 633 if (CStyle && V->kind() == Variable::VK_SFun) 712 if (const auto *V = dyn_cast<Variable>(SAP->sfun())) { in printProject() [all …]
|
| H A D | ThreadSafetyTIL.h | 355 class Variable : public SExpr { 379 Variable(const Variable &Vd, SExpr *D) // rewrite constructor in Variable() function 675 Function(Variable *Vd, SExpr *Bd) in Function() 677 Vd->setKind(Variable::VK_Fun); in Function() 682 Vd->setKind(Variable::VK_Fun); in Function() 717 Variable *VarDecl; 726 SFunction(Variable *Vd, SExpr *B) in SFunction() 729 Vd->setKind(Variable::VK_SFun); in SFunction() 736 Vd->setKind(Variable::VK_SFun); in SFunction() 769 Variable *VarDecl; [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 204 case ContextType::Variable: // Variable * in ValueOf() 223 case ContextType::Variable: // Variable * in GetValueByteSize() 254 case ContextType::Variable: { in GetCompilerType() 255 Variable *variable = GetVariable(); in GetCompilerType() 281 case ContextType::Variable: { in GetValueDefaultFormat() 404 Variable *variable = GetVariable(); in GetValueAsData() 445 Variable *variable = GetVariable(); in GetValueAsData() 618 Variable *Value::GetVariable() { in GetVariable() 619 if (m_context_type == ContextType::Variable) in GetVariable() 620 return static_cast<Variable *>(m_context); in GetVariable() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugProgramInstruction.cpp | 18 Variable(DVI->getVariable()), Expression(DVI->getExpression()), 43 : DebugValueUser(DPV.DebugValues), Variable(DPV.getVariable()), in DPValue() 49 : DebugValueUser({Location, nullptr, nullptr}), Variable(DV), in DPValue() 52 DPValue::DPValue(Metadata *Value, DILocalVariable *Variable, in DPValue() argument 56 : DebugValueUser({Value, Address, AssignID}), Variable(Variable), in DPValue() 90 DPValue *DPValue::createDPVAssign(Value *Val, DILocalVariable *Variable, in createDPVAssign() argument 95 return new DPValue(ValueAsMetadata::get(Val), Variable, Expression, AssignID, in createDPVAssign() 100 DILocalVariable *Variable, in createLinkedDPVAssign() argument 107 auto *NewDPVAssign = DPValue::createDPVAssign(Val, Variable, Expression, in createLinkedDPVAssign()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Value.h | 33 class Variable; variable 65 Variable enumerator 126 Variable *GetVariable();
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | CloneDetection.h | 385 const VarDecl *Variable; member 392 SuspiciousCloneInfo(const VarDecl *Variable, const Stmt *Mention, in SuspiciousCloneInfo() 394 : Variable(Variable), Mention(Mention), Suggestion(Suggestion) {} in SuspiciousCloneInfo()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ThreadSafetyTIL.cpp | 84 if (const auto *V = dyn_cast<Variable>(E)) { in getCanonicalVal() 85 if (V->kind() == Variable::VK_Let) { in getCanonicalVal() 106 if (auto *V = dyn_cast<Variable>(E)) { in simplifyToCanonicalVal() 107 if (V->kind() != Variable::VK_Let) in simplifyToCanonicalVal()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | StackFrameLayoutAnalysisPass.cpp | 55 Variable, // a slot used to store a local data (could be a tmp) enumerator 75 SlotTy = SlotType::Variable; in SlotData() 120 case SlotType::Variable: in getTypeString()
|
| /freebsd-14.2/contrib/tcsh/nls/C/ |
| H A D | set1 | 32 30 Variable name must begin with a letter 33 31 Variable name too long 34 32 Variable name must contain alphanumeric characters 89 87 Variable syntax
|
| /freebsd-14.2/contrib/bc/locales/ |
| H A D | de_DE.ISO8859-1.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.utf8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.ISO8859-1.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.ISO8859-15.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_DE.ISO8859-15.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_DE.UTF-8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.UTF-8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_DE.utf8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|