Home
last modified time | relevance | path

Searched refs:VariableDeclaration (Results 1 – 25 of 1075) sorted by relevance

12345678910>>...43

/dports/devel/kdev-php/kdev-php-21.12.3/duchain/declarations/
H A Dvariabledeclaration.cpp15 REGISTER_DUCHAIN_ITEM(VariableDeclaration);
17 VariableDeclaration::VariableDeclaration(VariableDeclarationData& data) : KDevelop::Declaration(dat… in VariableDeclaration() function in Php::VariableDeclaration
21 VariableDeclaration::VariableDeclaration(VariableDeclarationData& data, const KDevelop::RangeInRevi… in VariableDeclaration() function in Php::VariableDeclaration
26 VariableDeclaration::VariableDeclaration(const VariableDeclaration& rhs) in VariableDeclaration() function in Php::VariableDeclaration
31 VariableDeclaration::VariableDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContex… in VariableDeclaration() function in Php::VariableDeclaration
38 VariableDeclaration::~VariableDeclaration() in ~VariableDeclaration()
57 DUCHAIN_D(VariableDeclaration); in isSuperglobal()
63 DUCHAIN_D_DYNAMIC(VariableDeclaration); in setSuperglobal()
67 bool VariableDeclaration::isVariadic() const in isVariadic()
69 DUCHAIN_D(VariableDeclaration); in isVariadic()
[all …]
H A Dvariabledeclaration.h41 class KDEVPHPDUCHAIN_EXPORT VariableDeclaration : public KDevelop::Declaration
44 VariableDeclaration(const VariableDeclaration& rhs);
45 VariableDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContext* context);
46 VariableDeclaration(VariableDeclarationData& data);
47 VariableDeclaration(VariableDeclarationData& data, const KDevelop::RangeInRevision&);
48 ~VariableDeclaration() override;
65 DUCHAIN_DECLARE_DATA(VariableDeclaration)
/dports/devel/umbrello/umbrello-21.12.3/lib/kdev4-php/duchain/declarations/
H A Dvariabledeclaration.cpp16 REGISTER_DUCHAIN_ITEM(VariableDeclaration);
18 VariableDeclaration::VariableDeclaration(VariableDeclarationData& data) : KDevelop::Declaration(dat… in VariableDeclaration() function in Php::VariableDeclaration
22 VariableDeclaration::VariableDeclaration(VariableDeclarationData& data, const KDevelop::RangeInRevi… in VariableDeclaration() function in Php::VariableDeclaration
27 VariableDeclaration::VariableDeclaration(const VariableDeclaration& rhs) in VariableDeclaration() function in Php::VariableDeclaration
32 VariableDeclaration::VariableDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContex… in VariableDeclaration() function in Php::VariableDeclaration
39 VariableDeclaration::~VariableDeclaration() in ~VariableDeclaration()
43 uint VariableDeclaration::additionalIdentity() const in additionalIdentity()
56 bool VariableDeclaration::isSuperglobal() const in isSuperglobal()
58 DUCHAIN_D(VariableDeclaration); in isSuperglobal()
62 void VariableDeclaration::setSuperglobal(bool superglobal) in setSuperglobal()
[all …]
H A Dvariabledeclaration.h40 class KDEVPHPDUCHAIN_EXPORT VariableDeclaration : public KDevelop::Declaration
43 VariableDeclaration(const VariableDeclaration& rhs);
44 VariableDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContext* context);
45 VariableDeclaration(VariableDeclarationData& data);
46 VariableDeclaration(VariableDeclarationData& data, const KDevelop::RangeInRevision&);
47 virtual ~VariableDeclaration();
61 DUCHAIN_DECLARE_DATA(VariableDeclaration)
/dports/devel/umbrello/umbrello-21.12.3/lib/kdev5-php/duchain/declarations/
H A Dvariabledeclaration.cpp16 REGISTER_DUCHAIN_ITEM(VariableDeclaration);
18 VariableDeclaration::VariableDeclaration(VariableDeclarationData& data) : KDevelop::Declaration(dat… in VariableDeclaration() function in Php::VariableDeclaration
22 VariableDeclaration::VariableDeclaration(VariableDeclarationData& data, const KDevelop::RangeInRevi… in VariableDeclaration() function in Php::VariableDeclaration
27 VariableDeclaration::VariableDeclaration(const VariableDeclaration& rhs) in VariableDeclaration() function in Php::VariableDeclaration
32 VariableDeclaration::VariableDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContex… in VariableDeclaration() function in Php::VariableDeclaration
39 VariableDeclaration::~VariableDeclaration() in ~VariableDeclaration()
43 uint VariableDeclaration::additionalIdentity() const in additionalIdentity()
56 bool VariableDeclaration::isSuperglobal() const in isSuperglobal()
58 DUCHAIN_D(VariableDeclaration); in isSuperglobal()
62 void VariableDeclaration::setSuperglobal(bool superglobal) in setSuperglobal()
[all …]
H A Dvariabledeclaration.h40 class KDEVPHPDUCHAIN_EXPORT VariableDeclaration : public KDevelop::Declaration
43 VariableDeclaration(const VariableDeclaration& rhs);
44 VariableDeclaration(const KDevelop::RangeInRevision& range, KDevelop::DUContext* context);
45 VariableDeclaration(VariableDeclarationData& data);
46 VariableDeclaration(VariableDeclarationData& data, const KDevelop::RangeInRevision&);
47 virtual ~VariableDeclaration();
61 DUCHAIN_DECLARE_DATA(VariableDeclaration)
/dports/lang/solidity/solidity_0.8.11/libsolidity/ast/
H A DASTUtils.cpp27 bool isConstantVariableRecursive(VariableDeclaration const& _varDecl) in isConstantVariableRecursive()
31 …auto visitor = [](VariableDeclaration const& _variable, util::CycleDetector<VariableDeclaration>& … in isConstantVariableRecursive()
38 if (auto referencedVarDecl = dynamic_cast<VariableDeclaration const*>( in isConstantVariableRecursive()
45 return util::CycleDetector<VariableDeclaration>(visitor).run(_varDecl) != nullptr; in isConstantVariableRecursive()
48 VariableDeclaration const* rootConstVariableDeclaration(VariableDeclaration const& _varDecl) in rootConstVariableDeclaration()
53 VariableDeclaration const* rootDecl = &_varDecl; in rootConstVariableDeclaration()
57 …auto referencedVarDecl = dynamic_cast<VariableDeclaration const*>(identifier->annotation().referen… in rootConstVariableDeclaration()
H A DAST.cpp637 bool VariableDeclaration::isLValue() const in isLValue()
643 bool VariableDeclaration::isLocalVariable() const in isLocalVariable()
673 bool VariableDeclaration::isLocalOrReturn() const in isLocalOrReturn()
678 bool VariableDeclaration::isReturnParameter() const in isReturnParameter()
695 bool VariableDeclaration::isTryCatchParameter() const in isTryCatchParameter()
736 bool VariableDeclaration::isConstructorParameter() const in isConstructorParameter()
761 bool VariableDeclaration::isStateVariable() const in isStateVariable()
766 bool VariableDeclaration::isFileLevelVariable() const in isFileLevelVariable()
771 set<VariableDeclaration::Location> VariableDeclaration::allowedDataLocations() const in allowedDataLocations()
773 using Location = VariableDeclaration::Location; in allowedDataLocations()
[all …]
/dports/textproc/qt5-xmlpatterns/kde-qtxmlpatterns-5.15.2p2/src/xmlpatterns/expr/
H A Dqvariabledeclaration_p.h73 class VariableDeclaration : public QSharedData
76 typedef QExplicitlySharedDataPointer<VariableDeclaration> Ptr;
77 typedef QStack<VariableDeclaration::Ptr> Stack;
78 typedef QList<VariableDeclaration::Ptr> List;
83 typedef QHash<QXmlName, VariableDeclaration::Ptr> Hash;
113 VariableDeclaration(const QXmlName n, in VariableDeclaration() function
152 static bool contains(const VariableDeclaration::List &list,
177 Q_DISABLE_COPY(VariableDeclaration)
185 static inline QString formatKeyword(const VariableDeclaration::Ptr &var, in formatKeyword()
/dports/lang/solidity/solidity_0.8.11/libsolidity/analysis/
H A DPostTypeChecker.cpp63 bool PostTypeChecker::visit(VariableDeclaration const& _variable) in visit()
68 void PostTypeChecker::endVisit(VariableDeclaration const& _variable) in endVisit()
159 bool visit(VariableDeclaration const& _variable) override in visit()
170 void endVisit(VariableDeclaration const& _variable) override in endVisit()
197 VariableDeclaration const* findCycle(VariableDeclaration const& _startingFrom) in findCycle()
199 …auto visitor = [&](VariableDeclaration const& _variable, util::CycleDetector<VariableDeclaration>&… in findCycle()
207 vector<VariableDeclaration const*> dependencies( in findCycle()
211 …sort(dependencies.begin(), dependencies.end(), [](VariableDeclaration const* _a, VariableDeclarati… in findCycle()
223 VariableDeclaration const* m_currentConstVariable = nullptr;
224 …std::map<VariableDeclaration const*, std::set<VariableDeclaration const*>> m_constVariableDependen…
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/xmlpatterns/expr/
H A Dqvariabledeclaration_p.h77 class VariableDeclaration : public QSharedData
80 typedef QExplicitlySharedDataPointer<VariableDeclaration> Ptr;
81 typedef QStack<VariableDeclaration::Ptr> Stack;
82 typedef QList<VariableDeclaration::Ptr> List;
87 typedef QHash<QXmlName, VariableDeclaration::Ptr> Hash;
117 VariableDeclaration(const QXmlName n, in VariableDeclaration() function
156 static bool contains(const VariableDeclaration::List &list,
181 Q_DISABLE_COPY(VariableDeclaration)
189 static inline QString formatKeyword(const VariableDeclaration::Ptr &var, in formatKeyword()
/dports/lang/solidity/solidity_0.8.11/libsolidity/formal/
H A DEncodingContext.h80 std::shared_ptr<SymbolicVariable> variable(frontend::VariableDeclaration const& _varDecl);
82 …std::map<frontend::VariableDeclaration const*, std::shared_ptr<SymbolicVariable>, IdCompare> const… in variables()
86 bool createVariable(frontend::VariableDeclaration const& _varDecl);
88 bool knownVariable(frontend::VariableDeclaration const& _varDecl);
91 void resetVariable(frontend::VariableDeclaration const& _variable);
93 void resetVariables(std::set<frontend::VariableDeclaration const*> const& _variables);
95 void resetVariables(std::function<bool(frontend::VariableDeclaration const&)> const& _filter);
101 smtutil::Expression newValue(frontend::VariableDeclaration const& _decl);
103 void setZeroValue(frontend::VariableDeclaration const& _decl);
106 void setUnknownValue(frontend::VariableDeclaration const& decl);
[all …]
H A DEncodingContext.cpp54 shared_ptr<SymbolicVariable> EncodingContext::variable(frontend::VariableDeclaration const& _varDec… in variable()
60 bool EncodingContext::createVariable(frontend::VariableDeclaration const& _varDecl) in createVariable()
69 bool EncodingContext::knownVariable(frontend::VariableDeclaration const& _varDecl) in knownVariable()
74 void EncodingContext::resetVariable(frontend::VariableDeclaration const& _variable) in resetVariable()
80 void EncodingContext::resetVariables(set<frontend::VariableDeclaration const*> const& _variables) in resetVariables()
86 void EncodingContext::resetVariables(function<bool(frontend::VariableDeclaration const&)> const& _f… in resetVariables()
97 resetVariables([&](frontend::VariableDeclaration const&) { return true; }); in resetAllVariables()
100 smtutil::Expression EncodingContext::newValue(frontend::VariableDeclaration const& _decl) in newValue()
106 void EncodingContext::setZeroValue(frontend::VariableDeclaration const& _decl) in setZeroValue()
117 void EncodingContext::setUnknownValue(frontend::VariableDeclaration const& _decl) in setUnknownValue()
H A DSMTEncoder.h141 void endVisit(VariableDeclaration const& _node) override;
280 void assignment(VariableDeclaration const& _variable, Expression const& _value);
282 void assignment(VariableDeclaration const& _variable, smtutil::Expression const& _value);
299 using VariableIndices = std::unordered_map<VariableDeclaration const*, unsigned>;
321 void resetReferences(VariableDeclaration const& _varDecl);
335 bool createVariable(VariableDeclaration const& _varDecl);
339 smtutil::Expression currentValue(VariableDeclaration const& _decl) const;
342 smtutil::Expression valueAtIndex(VariableDeclaration const& _decl, unsigned _index) const;
379 std::set<VariableDeclaration const*> touchedVariables(ASTNode const& _node);
386 VariableDeclaration const* identifierToVariable(Expression const& _expr) const;
[all …]
/dports/lang/solidity/solidity_0.8.11/libsolidity/codegen/ir/
H A DIRGenerationContext.h109 IRVariable const& addLocalVariable(VariableDeclaration const& _varDecl);
110 …bool isLocalVariable(VariableDeclaration const& _varDecl) const { return m_localVariables.count(&_… in isLocalVariable()
111 IRVariable const& localVariable(VariableDeclaration const& _varDecl);
116 void registerImmutableVariable(VariableDeclaration const& _varDecl);
119 size_t immutableMemoryOffset(VariableDeclaration const& _variable) const;
125 …void addStateVariable(VariableDeclaration const& _varDecl, u256 _storageOffset, unsigned _byteOffs…
126 …bool isStateVariable(VariableDeclaration const& _varDecl) const { return m_stateVariables.count(&_… in isStateVariable()
127 std::pair<u256, unsigned> storageLocationOfStateVariable(VariableDeclaration const& _varDecl) const in storageLocationOfStateVariable()
191 std::map<VariableDeclaration const*, IRVariable> m_localVariables;
194 std::map<VariableDeclaration const*, size_t> m_immutableVariables;
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/refactoring/rename/
H A DTempDeclarationFinder.java24 import org.eclipse.jdt.core.dom.VariableDeclaration;
39 …public static VariableDeclaration findTempDeclaration(CompilationUnit cu, int selectionOffset, int… in findTempDeclaration()
42 if (selectedNode instanceof VariableDeclaration) in findTempDeclaration()
43 return (VariableDeclaration) selectedNode; in findTempDeclaration()
51 if (declaringNode instanceof VariableDeclaration) in findTempDeclaration()
52 return (VariableDeclaration) declaringNode; in findTempDeclaration()
59 return (VariableDeclaration) vds.fragments().get(0); in findTempDeclaration()
91 if (node instanceof VariableDeclaration) in visitNode()
92 return visitVariableDeclaration((VariableDeclaration)node); in visitNode()
110 private boolean visitVariableDeclaration(VariableDeclaration vd) { in visitVariableDeclaration()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/nashorn/script/basic/parser/
H A DvarDecl.js.EXPECTED5 "type": "VariableDeclaration",
23 "type": "VariableDeclaration",
36 "type": "VariableDeclaration",
54 "type": "VariableDeclaration",
75 "type": "VariableDeclaration",
91 "type": "VariableDeclaration",
107 "type": "VariableDeclaration",
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/nashorn/script/basic/parser/
H A DvarDecl.js.EXPECTED5 "type": "VariableDeclaration",
23 "type": "VariableDeclaration",
36 "type": "VariableDeclaration",
54 "type": "VariableDeclaration",
75 "type": "VariableDeclaration",
91 "type": "VariableDeclaration",
107 "type": "VariableDeclaration",
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/nashorn/script/basic/parser/
H A DvarDecl.js.EXPECTED5 "type": "VariableDeclaration",
23 "type": "VariableDeclaration",
36 "type": "VariableDeclaration",
54 "type": "VariableDeclaration",
75 "type": "VariableDeclaration",
91 "type": "VariableDeclaration",
107 "type": "VariableDeclaration",
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/nashorn/script/basic/parser/
H A DvarDecl.js.EXPECTED5 "type": "VariableDeclaration",
23 "type": "VariableDeclaration",
36 "type": "VariableDeclaration",
54 "type": "VariableDeclaration",
75 "type": "VariableDeclaration",
91 "type": "VariableDeclaration",
107 "type": "VariableDeclaration",
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/nashorn/script/basic/parser/
H A DvarDecl.js.EXPECTED5 "type": "VariableDeclaration",
23 "type": "VariableDeclaration",
36 "type": "VariableDeclaration",
54 "type": "VariableDeclaration",
75 "type": "VariableDeclaration",
91 "type": "VariableDeclaration",
107 "type": "VariableDeclaration",
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/nashorn/test/script/basic/parser/
H A DvarDecl.js.EXPECTED5 "type": "VariableDeclaration",
23 "type": "VariableDeclaration",
36 "type": "VariableDeclaration",
54 "type": "VariableDeclaration",
75 "type": "VariableDeclaration",
91 "type": "VariableDeclaration",
107 "type": "VariableDeclaration",
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/nashorn/test/script/basic/parser/
H A DvarDecl.js.EXPECTED5 "type": "VariableDeclaration",
23 "type": "VariableDeclaration",
36 "type": "VariableDeclaration",
54 "type": "VariableDeclaration",
75 "type": "VariableDeclaration",
91 "type": "VariableDeclaration",
107 "type": "VariableDeclaration",
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/subzero/src/
H A DIceASanInstrumentation.cpp91 auto *RzArray = VariableDeclaration::create(&NewGlobals); in instrumentGlobals()
93 auto *RzSizes = VariableDeclaration::create(&NewGlobals); in instrumentGlobals()
104 for (VariableDeclaration *Global : Globals) { in instrumentGlobals()
106 VariableDeclaration *RzLeft = VariableDeclaration::create(&NewGlobals); in instrumentGlobals()
107 VariableDeclaration *NewGlobal = Global; in instrumentGlobals()
108 VariableDeclaration *RzRight = VariableDeclaration::create(&NewGlobals); in instrumentGlobals()
128 NewGlobal = VariableDeclaration::create(&NewGlobals); in instrumentGlobals()
130 std::vector<VariableDeclaration::Initializer *> GlobalInits = in instrumentGlobals()
132 for (VariableDeclaration::Initializer *Init : GlobalInits) { in instrumentGlobals()
134 llvm::dyn_cast<VariableDeclaration::RelocInitializer>(Init); in instrumentGlobals()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/refactoring/util/
H A DLocalDeclarationAnalyzer.java23 import org.eclipse.jdt.core.dom.VariableDeclaration;
32 private List<VariableDeclaration> fAffectedLocals;
34 public static VariableDeclaration[] perform(ASTNode parent, Selection selection) { in perform()
37 return analyzer.fAffectedLocals.toArray(new VariableDeclaration[analyzer.fAffectedLocals.size()]); in perform()
59 VariableDeclaration declaration= ASTNodes.findVariableDeclaration(binding, node); in handleReferenceToLocal()
64 private void addLocalDeclaration(VariableDeclaration declaration) { in addLocalDeclaration()

12345678910>>...43