Home
last modified time | relevance | path

Searched refs:myEngine (Results 1 – 25 of 83) sorted by relevance

1234

/dports/astro/marble/marble-21.12.3/src/plugins/render/panoramio/
H A DPanoramioParser.cpp14 myEngine.setProcessEventsInterval(10);//this lets the gui remain responsive in PanoramioParser()
24 myEngine.evaluate(temp); in parseObjectOnPosition()
25 myEngine.evaluate(QString("function count(){ return myJSONObject.count };")); in parseObjectOnPosition()
35 dataStorage.count = myEngine.evaluate("count();").toInteger(); in parseObjectOnPosition()
36 myEngine.evaluate(QString("var x="+QString::number(requiredObjectPosition))); in parseObjectOnPosition()
37 dataStorage.longitude=myEngine.evaluate(QString("longitude(x)")).toNumber(); in parseObjectOnPosition()
38 dataStorage.latitude=myEngine.evaluate(QString("latitude(x)")).toNumber(); in parseObjectOnPosition()
39 dataStorage.photo_url=myEngine.evaluate("photo_url(x)").toString(); in parseObjectOnPosition()
41 dataStorage.photo_title=myEngine.evaluate(QString("photo_title(x)")).toString(); in parseObjectOnPosition()
42 dataStorage.photo_id=myEngine.evaluate(QString("photo_id(x)")).toNumber(); in parseObjectOnPosition()
[all …]
/dports/astro/marble/marble-21.12.3/src/plugins/render/twitter/
H A Djsonparser.cpp10 myEngine.setProcessEventsInterval(10);//this lets the gui remain responsive in jsonParser()
28 myEngine.evaluate(QString("function userName(k){return myJSONObject.twitter[k].user.name};")); in parseAllObjects()
30 myEngine.evaluate(QString("function userText(k){return myJSONObject.twitter[k].text};")); in parseAllObjects()
32 myEngine.evaluate(temp); in parseAllObjects()
34 myEngine.evaluate(QString("var a ="+QString::number(iterator) )).toString(); in parseAllObjects()
35 dataStorage.user=myEngine.evaluate(QString("userName(a)")).toString(); in parseAllObjects()
36 dataStorage.location=myEngine.evaluate(QString("userLocation(a)")).toString(); in parseAllObjects()
37 dataStorage.text=myEngine.evaluate(QString("userText(a)")).toString(); in parseAllObjects()
64 myEngine.evaluate(temp); in geoCodingAPIparseObject()
66 returnStructure.lon = myEngine.evaluate("lon()").toNumber(); in geoCodingAPIparseObject()
[all …]
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/doc/snippets/code/
H A Dsrc_script_qjsengine.cpp52 QJSEngine myEngine; variable
53 QJSValue three = myEngine.evaluate("1 + 2");
58 QJSValue fun = myEngine.evaluate("(function(a, b) { return a + b; })");
73 myEngine.evaluate(contents, fileName);
78 myEngine.globalObject().setProperty("myNumber", 123);
80 QJSValue myNumberPlusOne = myEngine.evaluate("myNumber + 1");
85 QJSValue result = myEngine.evaluate(...);
96 QJSValue scriptButton = myEngine.newQObject(button);
97 myEngine.globalObject().setProperty("button", scriptButton);
99 myEngine.evaluate("button.checkable = true");
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/doc/snippets/code/
H A Dsrc_script_qjsengine.cpp52 QJSEngine myEngine; variable
53 QJSValue three = myEngine.evaluate("1 + 2");
58 QJSValue fun = myEngine.evaluate("(function(a, b) { return a + b; })");
73 myEngine.evaluate(contents, fileName);
78 myEngine.globalObject().setProperty("myNumber", 123);
80 QJSValue myNumberPlusOne = myEngine.evaluate("myNumber + 1");
85 QJSValue result = myEngine.evaluate(...);
96 QJSValue scriptButton = myEngine.newQObject(button);
97 myEngine.globalObject().setProperty("button", scriptButton);
99 myEngine.evaluate("button.checkable = true");
/dports/converters/wkhtmltopdf/qt-5db36ec/doc/src/snippets/code/
H A Dsrc_script_qscriptengine.cpp42 QScriptEngine myEngine; variable
43 QScriptValue three = myEngine.evaluate("1 + 2");
63 myEngine.evaluate(contents, fileName);
68 myEngine.globalObject().setProperty("myNumber", 123);
75 QScriptValue result = myEngine.evaluate(...);
76 if (myEngine.hasUncaughtException()) {
77 int line = myEngine.uncaughtExceptionLineNumber();
85 QScriptValue scriptButton = myEngine.newQObject(&button);
88 myEngine.evaluate("button.checkable = true");
106 QScriptValue fun = myEngine.newFunction(myAdd);
[all …]
H A Dsrc_script_qscriptvalue.cpp42 QScriptEngine myEngine; variable
43 QScriptValue myObject = myEngine.newObject();
44 QScriptValue myOtherObject = myEngine.newObject();
51 QScriptValue val(&myEngine, 123);
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/pyside2/doc/codesnippets/doc/src/snippets/code/
H A Dsrc_script_qscriptengine.cpp52 myEngine = QScriptEngine()
53 three = myEngine.evaluate("1 + 2")
73 myEngine.evaluate(contents, fileName)
80 myNumberPlusOne = myEngine.evaluate("myNumber + 1")
85 result = myEngine.evaluate(...)
86 if myEngine.hasUncaughtException():
87 line = myEngine.uncaughtExceptionLineNumber()
97 myEngine.evaluate("button.checkable = True")
113 fun = myEngine.Function(myAdd)
114 myEngine.globalObject().setProperty("myAdd", fun)
[all …]
H A Dsrc_script_qscriptvalue.cpp52 myEngine = QScriptEngine()
53 myObject = myEngine.newObject()
54 myOtherObject = myEngine.newObject()
61 val = QScriptValue(myEngine, 123)
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/script/doc/snippets/code/
H A Dsrc_script_qscriptengine.cpp52 QScriptEngine myEngine; variable
53 QScriptValue three = myEngine.evaluate("1 + 2");
73 myEngine.evaluate(contents, fileName);
78 myEngine.globalObject().setProperty("myNumber", 123);
85 QScriptValue result = myEngine.evaluate(...);
86 if (myEngine.hasUncaughtException()) {
87 int line = myEngine.uncaughtExceptionLineNumber();
95 QScriptValue scriptButton = myEngine.newQObject(&button);
98 myEngine.evaluate("button.checkable = true");
116 QScriptValue fun = myEngine.newFunction(myAdd);
[all …]
H A Dsrc_script_qscriptvalue.cpp52 QScriptEngine myEngine; variable
53 QScriptValue myObject = myEngine.newObject();
54 QScriptValue myOtherObject = myEngine.newObject();
61 QScriptValue val(&myEngine, 123);
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/script/doc/snippets/code/
H A Dsrc_script_qscriptengine.cpp52 QScriptEngine myEngine; variable
53 QScriptValue three = myEngine.evaluate("1 + 2");
73 myEngine.evaluate(contents, fileName);
78 myEngine.globalObject().setProperty("myNumber", 123);
85 QScriptValue result = myEngine.evaluate(...);
86 if (myEngine.hasUncaughtException()) {
87 int line = myEngine.uncaughtExceptionLineNumber();
95 QScriptValue scriptButton = myEngine.newQObject(&button);
98 myEngine.evaluate("button.checkable = true");
116 QScriptValue fun = myEngine.newFunction(myAdd);
[all …]
H A Dsrc_script_qscriptvalue.cpp52 QScriptEngine myEngine; variable
53 QScriptValue myObject = myEngine.newObject();
54 QScriptValue myOtherObject = myEngine.newObject();
61 QScriptValue val(&myEngine, 123);
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/pyside2/doc/codesnippets/doc/src/snippets/code/
H A Dsrc_script_qscriptengine.cpp52 myEngine = QScriptEngine()
53 three = myEngine.evaluate("1 + 2")
73 myEngine.evaluate(contents, fileName)
80 myNumberPlusOne = myEngine.evaluate("myNumber + 1")
85 result = myEngine.evaluate(...)
86 if myEngine.hasUncaughtException():
87 line = myEngine.uncaughtExceptionLineNumber()
97 myEngine.evaluate("button.checkable = True")
113 fun = myEngine.Function(myAdd)
114 myEngine.globalObject().setProperty("myAdd", fun)
[all …]
H A Dsrc_script_qscriptvalue.cpp52 myEngine = QScriptEngine()
53 myObject = myEngine.newObject()
54 myOtherObject = myEngine.newObject()
61 val = QScriptValue(myEngine, 123)
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/pyside2/doc/codesnippets/doc/src/snippets/code/
H A Dsrc_script_qscriptengine.cpp52 myEngine = QScriptEngine()
53 three = myEngine.evaluate("1 + 2")
73 myEngine.evaluate(contents, fileName)
80 myNumberPlusOne = myEngine.evaluate("myNumber + 1")
85 result = myEngine.evaluate(...)
86 if myEngine.hasUncaughtException():
87 line = myEngine.uncaughtExceptionLineNumber()
97 myEngine.evaluate("button.checkable = True")
113 fun = myEngine.Function(myAdd)
114 myEngine.globalObject().setProperty("myAdd", fun)
[all …]
H A Dsrc_script_qscriptvalue.cpp52 myEngine = QScriptEngine()
53 myObject = myEngine.newObject()
54 myOtherObject = myEngine.newObject()
61 val = QScriptValue(myEngine, 123)
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonz/
H A Dscriptengine.cpp102 QScriptEngine myEngine; in execute() local
104 debugger.attachTo(&myEngine); in execute()
106 QScriptValue fFoo = myEngine.newFunction(foo); in execute()
107 QScriptValue fGetLevel = myEngine.newFunction(getLevel); in execute()
109 myEngine.globalObject().setProperty("foo", fFoo); in execute()
110 myEngine.globalObject().setProperty("getLevel", fGetLevel); in execute()
112 myEngine.evaluate(contents, fileName); in execute()
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine.UnitTests/
H A DEngine_Tests.cs332 Engine myEngine = new Engine(@"c:\"); in MalformedProjectDoesNotGetAddedToEngine()
364 myEngine.UnregisterAllLoggers(); in MalformedProjectDoesNotGetAddedToEngine()
365 myEngine.UnloadAllProjects(); in MalformedProjectDoesNotGetAddedToEngine()
390 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
391 myEngine.UnloadAllProjects(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileSpecified()
415 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
416 myEngine.UnloadAllProjects(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetSpecified()
443 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
444 myEngine.UnloadAllProjects(); in BuildProjectFileWithGlobalPropertiesSetInEngineObjectWithProjectFileAndTargetListSpecified()
471 myEngine.UnregisterAllLoggers(); in BuildProjectFileWithNullGlobalProperties()
[all …]
/dports/games/oonsoo/oonsoo-1.2/Commands/
H A DNewGameCommand.hxx27 Engine* myEngine; member in NewGameCommand
31 NewGameCommand(Engine* engine) { myEngine = engine; } in NewGameCommand()
38 myEngine->newGame(); in execute()
H A DDealCardsCommand.hxx27 Engine* myEngine; member in DealCardsCommand
31 DealCardsCommand(Engine* engine) { myEngine = engine; } in DealCardsCommand()
40 myEngine->dealCards(FaceUp); in execute()
H A DDeckMoveCommand.hxx38 Engine* myEngine; member in DeckMoveCommand
42 DeckMoveCommand(Engine* engine) { myEngine = engine; } in DeckMoveCommand()
51 myEngine->moveCards(args->from, args->moved); in execute()
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/QtScript/
H A Dproperty_test.py87 myEngine = QScriptEngine()
89 scriptObj = myEngine.newQObject(obj)
90 myEngine.globalObject().setProperty("obj", scriptObj)
91 myEngine.evaluate("obj.x = 42")
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/QtScript/
H A Dproperty_test.py87 myEngine = QScriptEngine()
89 scriptObj = myEngine.newQObject(obj)
90 myEngine.globalObject().setProperty("obj", scriptObj)
91 myEngine.evaluate("obj.x = 42")
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/QtScript/
H A Dproperty_test.py87 myEngine = QScriptEngine()
89 scriptObj = myEngine.newQObject(obj)
90 myEngine.globalObject().setProperty("obj", scriptObj)
91 myEngine.evaluate("obj.x = 42")
/dports/devel/boost_build/build-29baa79/test/qt5/
H A Dqtscripttools.cpp37 QScriptEngine myEngine; in BOOST_AUTO_TEST_CASE() local
38 QScriptValue three = myEngine.evaluate("1 + 2"); in BOOST_AUTO_TEST_CASE()
41 debugger.attachTo(&myEngine); in BOOST_AUTO_TEST_CASE()

1234