| /freebsd-13.1/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(); 141 Variable(const Variable &rhs) = delete; 142 Variable &operator=(const Variable &rhs) = delete;
|
| /freebsd-13.1/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() 202 size_t Variable::MemorySize() const { return sizeof(Variable); } in MemorySize() 204 CompilerDeclContext Variable::GetDeclContext() { in GetDeclContext() 211 CompilerDecl Variable::GetDecl() { in GetDecl() 280 bool Variable::IsInScope(StackFrame *frame) { in IsInScope() [all …]
|
| /freebsd-13.1/contrib/bmake/unit-tests/ |
| H A D | cond-undef-lint.exp | 1 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 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 55: Variable VAR is recursive.
|
| H A D | opt-debug-lint.exp | 1 make: "opt-debug-lint.mk" line 19: Variable "X" is undefined 2 make: "opt-debug-lint.mk" line 41: Variable "UNDEF" is undefined
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| H A D | CodeExpansions.h | 32 std::string lookup(StringRef Variable) const { in lookup() argument 33 return Expansions.lookup(Variable); in lookup() 38 const_iterator find(StringRef Variable) const { in find() argument 39 return Expansions.find(Variable); in find()
|
| /freebsd-13.1/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() 630 if (CStyle && V->kind() == Variable::VK_SFun) 709 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 666 Function(Variable *Vd, SExpr *Bd) in Function() 668 Vd->setKind(Variable::VK_Fun); in Function() 673 Vd->setKind(Variable::VK_Fun); in Function() 708 Variable *VarDecl; 717 SFunction(Variable *Vd, SExpr *B) in SFunction() 720 Vd->setKind(Variable::VK_SFun); in SFunction() 727 Vd->setKind(Variable::VK_SFun); in SFunction() 760 Variable *VarDecl; [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | Value.cpp | 190 case ContextType::Variable: // Variable * in ValueOf() 209 case ContextType::Variable: // Variable * in GetValueByteSize() 240 case ContextType::Variable: { in GetCompilerType() 241 Variable *variable = GetVariable(); in GetCompilerType() 267 case ContextType::Variable: { in GetValueDefaultFormat() 390 Variable *variable = GetVariable(); in GetValueAsData() 431 Variable *variable = GetVariable(); in GetValueAsData() 604 Variable *Value::GetVariable() { in GetVariable() 605 if (m_context_type == ContextType::Variable) in GetVariable() 606 return static_cast<Variable *>(m_context); in GetVariable() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Value.h | 33 class Variable; variable 65 Variable enumerator 126 Variable *GetVariable();
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | CloneDetection.h | 393 const VarDecl *Variable; member 400 SuspiciousCloneInfo(const VarDecl *Variable, const Stmt *Mention, in SuspiciousCloneInfo() 402 : Variable(Variable), Mention(Mention), Suggestion(Suggestion) {} in SuspiciousCloneInfo()
|
| /freebsd-13.1/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-13.1/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-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | MachineIRBuilder.cpp | 52 MachineIRBuilder::buildDirectDbgValue(Register Reg, const MDNode *Variable, in buildDirectDbgValue() argument 54 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildDirectDbgValue() 57 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) && in buildDirectDbgValue() 61 /*IsIndirect*/ false, Reg, Variable, Expr)); in buildDirectDbgValue() 65 MachineIRBuilder::buildIndirectDbgValue(Register Reg, const MDNode *Variable, in buildIndirectDbgValue() argument 67 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildIndirectDbgValue() 74 /*IsIndirect*/ true, Reg, Variable, Expr)); in buildIndirectDbgValue() 80 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildFIDbgValue() 88 .addMetadata(Variable) in buildFIDbgValue() 95 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildConstDbgValue() [all …]
|
| /freebsd-13.1/contrib/bc/locales/ |
| H A D | de_CH.ISO8859-1.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.ISO8859-15.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_DE.UTF-8.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_DE.utf8.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.ISO8859-15.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.ISO8859-1.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.UTF-8.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_AT.utf8.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_DE.ISO8859-1.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.UTF-8.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|
| H A D | de_CH.utf8.msg | 66 11 "keine automatische Variable gefunden" 67 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 70 15 "Variable kann keine Referenz sein: %s" 95 6 "Variable oder Feld-Element hat den falschen Typ"
|