Home
last modified time | relevance | path

Searched refs:ObjectValue (Results 1 – 25 of 1547) sorted by relevance

12345678910>>...62

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/qmljs/
H A Dqmljsvalueowner.h49 class ObjectValue; variable
82 ObjectValue *newObject();
85 const ObjectValue *qmlFontObject();
86 const ObjectValue *qmlPaletteObject();
87 const ObjectValue *qmlPointObject();
88 const ObjectValue *qmlSizeObject();
89 const ObjectValue *qmlRectObject();
90 const ObjectValue *qmlVector2DObject();
91 const ObjectValue *qmlVector3DObject();
101 const ObjectValue *mathObject() const;
[all …]
H A Dqmljsscopechain.h37 class ObjectValue; variable
53 const ObjectValue *idScope() const;
54 const ObjectValue *rootObjectScope() const;
78 const ObjectValue *globalScope() const;
96 QList<const ObjectValue *> jsScopes() const;
98 void appendJsScope(const ObjectValue *scope);
100 QList<const ObjectValue *> all() const;
112 const ObjectValue *m_globalScope;
113 const ObjectValue *m_cppContextProperties;
118 QList<const ObjectValue *> m_jsScopes;
[all …]
H A Dqmljsbind.h52 ObjectValue *idEnvironment() const;
53 ObjectValue *rootObjectValue() const;
55 ObjectValue *findQmlObject(AST::Node *node) const;
56 bool usesQmlPrototype(ObjectValue *prototype,
89 ObjectValue *switchObjectValue(ObjectValue *newObjectValue);
98 ObjectValue *_currentObjectValue;
99 ObjectValue *_idEnvironment;
100 ObjectValue *_rootObjectValue;
103 QHash<AST::Node *, ObjectValue *> _qmlObjects;
106 QHash<AST::Node *, ObjectValue *> _attachedJSScopes;
[all …]
H A Dqmljsscopebuilder.cpp70 const ObjectValue *owner = nullptr; in push()
83 if (const ObjectValue *scope = qmlObject->signalScope(name)) in push()
127 QList<const ObjectValue *> jsScopes = _scopeChain->jsScopes(); in pop()
149 QList<const ObjectValue *> qmlScopeObjects; in setQmlScopeObject()
157 const ObjectValue *object = v->asObjectValue(); in setQmlScopeObject()
177 const ObjectValue *prototype = iter.next(); in setQmlScopeObject()
204 if (const ObjectValue *target = value_cast<ObjectValue>(targetValue)) in setQmlScopeObject()
221 foreach (const ObjectValue *scopeObject, _scopeChain->qmlScopeObjects()) { in scopeObjectLookup()
222 const ObjectValue *object = scopeObject; in scopeObjectLookup()
246 const ObjectValue *object) in isPropertyChangesObject()
[all …]
H A Dqmljsvalueowner.cpp76 ObjectValue *_objectPrototype;
81 ObjectValue *_arrayPrototype;
82 ObjectValue *_datePrototype;
94 ObjectValue *_globalObject;
95 ObjectValue *_mathObject;
96 ObjectValue *_qtObject;
97 ObjectValue *_qmlFontObject;
99 ObjectValue *_qmlPointObject;
100 ObjectValue *_qmlSizeObject;
101 ObjectValue *_qmlRectObject;
[all …]
H A Dqmljsscopechain.cpp77 const ObjectValue *QmlComponentChain::idScope() const in idScope()
121 QList<const ObjectValue *> scopes = all(); in lookup()
123 const ObjectValue *scope = scopes.at(index); in lookup()
145 const ObjectValue *ScopeChain::globalScope() const in globalScope()
156 const ObjectValue *ScopeChain::cppContextProperties() const in cppContextProperties()
211 QList<const ObjectValue *> ScopeChain::jsScopes() const in jsScopes()
222 void ScopeChain::appendJsScope(const ObjectValue *scope) in appendJsScope()
228 QList<const ObjectValue *> ScopeChain::all() const in all()
245 if (const ObjectValue *ids = chain->idScope()) in collectScopes()
267 ObjectValue *root = nullptr; in update()
[all …]
H A Dqmljsbind.cpp84 ObjectValue *Bind::idEnvironment() const in idEnvironment()
89 ObjectValue *Bind::rootObjectValue() const in rootObjectValue()
94 ObjectValue *Bind::findQmlObject(AST::Node *node) const in findQmlObject()
99 bool Bind::usesQmlPrototype(ObjectValue *prototype, in usesQmlPrototype()
121 ObjectValue *Bind::findAttachedJSScope(AST::Node *node) const in findAttachedJSScope()
131 ObjectValue *Bind::switchObjectValue(ObjectValue *newObjectValue) in switchObjectValue()
133 ObjectValue *oldObjectValue = _currentObjectValue; in switchObjectValue()
140 ObjectValue *parentObjectValue = nullptr; in bindObject()
155 ObjectValue *nextRoot = _rootObjectValue; in bindObject()
273 ObjectValue *parent = switchObjectValue(blockScope); in visit()
[all …]
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/qmljs/3rdparty/qtcreator-libs/qmljs/
H A Dqmljsvalueowner.h48 class ObjectValue; variable
81 ObjectValue *newObject();
84 const ObjectValue *qmlFontObject();
85 const ObjectValue *qmlPointObject();
86 const ObjectValue *qmlSizeObject();
87 const ObjectValue *qmlRectObject();
88 const ObjectValue *qmlVector2DObject();
89 const ObjectValue *qmlVector3DObject();
90 const ObjectValue *qmlVector4DObject();
99 const ObjectValue *mathObject() const;
[all …]
H A Dqmljsscopechain.h37 class ObjectValue; variable
53 const ObjectValue *idScope() const;
54 const ObjectValue *rootObjectScope() const;
78 const ObjectValue *globalScope() const;
96 QList<const ObjectValue *> jsScopes() const;
98 void appendJsScope(const ObjectValue *scope);
100 QList<const ObjectValue *> all() const;
112 const ObjectValue *m_globalScope;
113 const ObjectValue *m_cppContextProperties;
118 QList<const ObjectValue *> m_jsScopes;
[all …]
H A Dqmljsbind.h52 ObjectValue *idEnvironment() const;
53 ObjectValue *rootObjectValue() const;
55 ObjectValue *findQmlObject(AST::Node *node) const;
56 bool usesQmlPrototype(ObjectValue *prototype,
59 ObjectValue *findAttachedJSScope(AST::Node *node) const;
83 ObjectValue *switchObjectValue(ObjectValue *newObjectValue);
90 ObjectValue *_currentObjectValue;
91 ObjectValue *_idEnvironment;
92 ObjectValue *_rootObjectValue;
94 QHash<AST::Node *, ObjectValue *> _qmlObjects;
[all …]
H A Dqmljsscopebuilder.cpp70 const ObjectValue *owner = 0; in push()
83 if (const ObjectValue *scope = qmlObject->signalScope(name)) in push()
127 QList<const ObjectValue *> jsScopes = _scopeChain->jsScopes(); in pop()
149 QList<const ObjectValue *> qmlScopeObjects; in setQmlScopeObject()
157 const ObjectValue *object = v->asObjectValue(); in setQmlScopeObject()
177 const ObjectValue *prototype = iter.next(); in setQmlScopeObject()
204 if (const ObjectValue *target = value_cast<ObjectValue>(targetValue)) in setQmlScopeObject()
221 foreach (const ObjectValue *scopeObject, _scopeChain->qmlScopeObjects()) { in scopeObjectLookup()
222 const ObjectValue *object = scopeObject; in scopeObjectLookup()
246 const ObjectValue *object) in isPropertyChangesObject()
[all …]
H A Dqmljsbind.cpp79 ObjectValue *Bind::idEnvironment() const in idEnvironment()
84 ObjectValue *Bind::rootObjectValue() const in rootObjectValue()
89 ObjectValue *Bind::findQmlObject(AST::Node *node) const in findQmlObject()
94 bool Bind::usesQmlPrototype(ObjectValue *prototype, in usesQmlPrototype()
116 ObjectValue *Bind::findAttachedJSScope(AST::Node *node) const in findAttachedJSScope()
126 ObjectValue *Bind::switchObjectValue(ObjectValue *newObjectValue) in switchObjectValue()
128 ObjectValue *oldObjectValue = _currentObjectValue; in switchObjectValue()
135 ObjectValue *parentObjectValue = 0; in bindObject()
228 ObjectValue *parent = switchObjectValue(blockScope); in visit()
249 ObjectValue *oldObjectValue = switchObjectValue(0); in visit()
[all …]
H A Dqmljsscopechain.cpp77 const ObjectValue *QmlComponentChain::idScope() const in idScope()
121 QList<const ObjectValue *> scopes = all(); in lookup()
123 const ObjectValue *scope = scopes.at(index); in lookup()
145 const ObjectValue *ScopeChain::globalScope() const in globalScope()
156 const ObjectValue *ScopeChain::cppContextProperties() const in cppContextProperties()
211 QList<const ObjectValue *> ScopeChain::jsScopes() const in jsScopes()
222 void ScopeChain::appendJsScope(const ObjectValue *scope) in appendJsScope()
228 QList<const ObjectValue *> ScopeChain::all() const in all()
245 if (const ObjectValue *ids = chain->idScope()) in collectScopes()
267 ObjectValue *root = 0; in update()
[all …]
H A Dqmljsvalueowner.cpp76 ObjectValue *_objectPrototype;
81 ObjectValue *_arrayPrototype;
82 ObjectValue *_datePrototype;
94 ObjectValue *_globalObject;
95 ObjectValue *_mathObject;
96 ObjectValue *_qtObject;
97 ObjectValue *_qmlFontObject;
98 ObjectValue *_qmlPointObject;
99 ObjectValue *_qmlSizeObject;
100 ObjectValue *_qmlRectObject;
[all …]
/dports/lang/nyan/nyan-3c263e2/nyan/value/
H A Dobject.cpp13 ObjectValue::ObjectValue(const fqon_t &name) in ObjectValue() function in nyan::ObjectValue
18 ValueHolder ObjectValue::copy() const { in copy()
19 return {std::make_shared<ObjectValue>(*this)}; in copy()
24 const ObjectValue &change = dynamic_cast<const ObjectValue &>(value); in apply_value()
36 std::string ObjectValue::str() const { in str()
41 std::string ObjectValue::repr() const { in repr()
46 size_t ObjectValue::hash() const { in hash()
51 const fqon_t &ObjectValue::get() const { in get()
56 bool ObjectValue::equals(const Value &other) const { in equals()
57 auto &other_val = dynamic_cast<const ObjectValue &>(other); in equals()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skottie/src/layers/shapelayer/
H A DShapeLayer.h19 class ObjectValue; variable
51 static sk_sp<sksg::PaintNode> AttachColorFill(const skjson::ObjectValue&,
61 const skjson::ObjectValue&, const AnimationBuilder*,
64 const skjson::ObjectValue&,
68 const skjson::ObjectValue&, const AnimationBuilder*,
71 const skjson::ObjectValue&, const AnimationBuilder*,
74 const skjson::ObjectValue&, const AnimationBuilder*,
77 const skjson::ObjectValue&, const AnimationBuilder*,
81 const skjson::ObjectValue&,
86 static sk_sp<sksg::PaintNode> AttachFill(const skjson::ObjectValue&,
[all …]
/dports/net/linknx/linknx-0.0.1.32/src/
H A Dobjectcontroller.h43 class ObjectValue
46 virtual ~ObjectValue() {}; in ~ObjectValue()
50 virtual bool set(ObjectValue* value) = 0;
71 virtual ObjectValue* get();
211 virtual bool set(ObjectValue* value);
308 virtual bool set(ObjectValue* value);
355 virtual bool set(ObjectValue* value);
455 virtual bool set(ObjectValue* value);
498 virtual bool set(ObjectValue* value);
545 virtual bool set(ObjectValue* value);
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skottie/src/layers/shapelayer/
H A DShapeLayer.h19 class ObjectValue; variable
51 static sk_sp<sksg::PaintNode> AttachColorFill(const skjson::ObjectValue&,
53 static sk_sp<sksg::PaintNode> AttachColorStroke(const skjson::ObjectValue&,
55 static sk_sp<sksg::PaintNode> AttachGradientFill(const skjson::ObjectValue&,
61 const skjson::ObjectValue&, const AnimationBuilder*,
64 const skjson::ObjectValue&,
68 const skjson::ObjectValue&, const AnimationBuilder*,
71 const skjson::ObjectValue&, const AnimationBuilder*,
75 const skjson::ObjectValue&,
80 static sk_sp<sksg::PaintNode> AttachFill(const skjson::ObjectValue&,
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skottie/src/
H A DSkottiePriv.h29 class ObjectValue; variable
64 AnimationInfo parse(const skjson::ObjectValue&);
85 sk_sp<sksg::Transform> attachCamera(const skjson::ObjectValue& jlayer,
86 const skjson::ObjectValue& jtransform,
90 sk_sp<sksg::RenderNode> attachOpacity(const skjson::ObjectValue&,
166 void updateContext(PropertyObserver*, const skjson::ObjectValue&);
187 void parseFonts (const skjson::ObjectValue* jfonts,
196 sk_sp<sksg::RenderNode> attachBlendMode(const skjson::ObjectValue&,
201 const FootageAssetInfo* loadFootageAsset(const skjson::ObjectValue&) const;
255 const skjson::ObjectValue* fAsset;
[all …]
H A DTransform.h20 class ObjectValue; variable
31 const skjson::ObjectValue* janchor_point,
32 const skjson::ObjectValue* jposition,
33 const skjson::ObjectValue* jscale,
34 const skjson::ObjectValue* jrotation,
35 const skjson::ObjectValue* jskew,
36 const skjson::ObjectValue* jskew_axis,
78 TransformAdapter3D(const skjson::ObjectValue&, const AnimationBuilder&);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skottie/src/
H A DSkottiePriv.h29 class ObjectValue; variable
64 AnimationInfo parse(const skjson::ObjectValue&);
81 sk_sp<sksg::Transform> attachCamera(const skjson::ObjectValue& jlayer,
82 const skjson::ObjectValue& jtransform,
86 sk_sp<sksg::RenderNode> attachOpacity(const skjson::ObjectValue&,
162 void updateContext(PropertyObserver*, const skjson::ObjectValue&);
183 void parseFonts (const skjson::ObjectValue* jfonts,
188 sk_sp<sksg::RenderNode> attachBlendMode(const skjson::ObjectValue&,
192 sk_sp<sksg::RenderNode> attachAssetRef(const skjson::ObjectValue&,
194 const ImageAssetInfo* loadImageAsset(const skjson::ObjectValue&) const;
[all …]
H A DTransform.h20 class ObjectValue; variable
31 const skjson::ObjectValue* janchor_point,
32 const skjson::ObjectValue* jposition,
33 const skjson::ObjectValue* jscale,
34 const skjson::ObjectValue* jrotation,
35 const skjson::ObjectValue* jskew,
36 const skjson::ObjectValue* jskew_axis);
76 TransformAdapter3D(const skjson::ObjectValue&, const AnimationBuilder&);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tests/
H A DJSONTest.cpp200 const auto& jroot = dom.root().as<ObjectValue>(); in DEF_TEST()
201 REPORTER_ASSERT(reporter, jroot.is<ObjectValue>()); in DEF_TEST()
301 check_vector<ObjectValue>(reporter, v, 3, true); in DEF_TEST()
303 const auto& m0 = v.as<ObjectValue>().begin()[0]; in DEF_TEST()
307 const auto& m1 = v.as<ObjectValue>().begin()[1]; in DEF_TEST()
311 const auto& m2 = v.as<ObjectValue>().begin()[2]; in DEF_TEST()
370 const auto v11 = ObjectValue(nullptr, 0, alloc); in DEF_TEST()
371 check_value<ObjectValue>(reporter, v11, "{}"); in DEF_TEST()
379 check_value<ObjectValue>(reporter, v12, "{" in DEF_TEST()
403 check_value<ObjectValue>(reporter, v14, "{" in DEF_TEST()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DDebugInfoReadStream.java37 private List<ObjectValue> objectPool;
46 public DebugInfoReadStream(NMethod code, int offset, List<ObjectValue> objectPool) { in DebugInfoReadStream()
66 ObjectValue ov = (ObjectValue) itr.next(); in readObjectValue()
70 ObjectValue result = new ObjectValue(id); in readObjectValue()
81 ObjectValue ov = (ObjectValue) itr.next(); in getCachedObject()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DDebugInfoReadStream.java37 private List<ObjectValue> objectPool;
46 public DebugInfoReadStream(NMethod code, int offset, List<ObjectValue> objectPool) { in DebugInfoReadStream()
66 ObjectValue ov = (ObjectValue) itr.next(); in readObjectValue()
70 ObjectValue result = new ObjectValue(id); in readObjectValue()
81 ObjectValue ov = (ObjectValue) itr.next(); in getCachedObject()

12345678910>>...62