OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:QScriptProgram
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/qt/api/
qscriptprogram.h
28
class Q_JAVASCRIPT_EXPORT
QScriptProgram
{
30
QScriptProgram
();
31
QScriptProgram
(const QString& sourceCode,
34
QScriptProgram
(const
QScriptProgram
& other);
35
~
QScriptProgram
();
37
QScriptProgram
& operator=(const
QScriptProgram
& other);
45
bool operator==(const
QScriptProgram
& other) const;
46
bool operator!=(const
QScriptProgram
& other) const
[
all
...]
qscriptprogram.cpp
22
#include "
qscriptprogram
.h"
29
\class
QScriptProgram
31
\brief The
QScriptProgram
class encapsulates a Qt Script program.
35
QScriptProgram
retains the compiled representation of the script if
36
possible. Thus,
QScriptProgram
can be used to evaluate the same
41
QScriptProgram
program("1 + 2");
47
Constructs a null
QScriptProgram
.
49
QScriptProgram
::
QScriptProgram
()
54
Constructs a new
QScriptProgram
with the given \a sourceCode, \
[
all
...]
Completed in 40 milliseconds