kernel/qplatformnativeinterface.cpp

Switch to Source codePreprocessed file
LineSource CodeCoverage
1 -
2 -
3void *QPlatformNativeInterface::nativeResourceForIntegration(const QByteArray &resource) -
4{ -
5 (void)resource;; -
6 return 0;
never executed: return 0;
0
7} -
8 -
9void *QPlatformNativeInterface::nativeResourceForScreen(const QByteArray &resource, QScreen *screen) -
10{ -
11 (void)resource;; -
12 (void)screen;; -
13 return 0;
never executed: return 0;
0
14} -
15 -
16void *QPlatformNativeInterface::nativeResourceForWindow(const QByteArray &resource, QWindow *window) -
17{ -
18 (void)resource;; -
19 (void)window;; -
20 return 0;
never executed: return 0;
0
21} -
22 -
23void *QPlatformNativeInterface::nativeResourceForContext(const QByteArray &resource, QOpenGLContext *context) -
24{ -
25 (void)resource;; -
26 (void)context;; -
27 return 0;
never executed: return 0;
0
28} -
29 -
30void * QPlatformNativeInterface::nativeResourceForBackingStore(const QByteArray &resource, QBackingStore *backingStore) -
31{ -
32 (void)resource;; -
33 (void)backingStore;; -
34 return 0;
never executed: return 0;
0
35} -
36 -
37QPlatformNativeInterface::NativeResourceForIntegrationFunction QPlatformNativeInterface::nativeResourceFunctionForIntegration(const QByteArray &resource) -
38{ -
39 (void)resource;; -
40 return 0;
never executed: return 0;
0
41} -
42 -
43QPlatformNativeInterface::NativeResourceForContextFunction QPlatformNativeInterface::nativeResourceFunctionForContext(const QByteArray &resource) -
44{ -
45 (void)resource;; -
46 return 0;
never executed: return 0;
0
47} -
48 -
49QPlatformNativeInterface::NativeResourceForScreenFunction QPlatformNativeInterface::nativeResourceFunctionForScreen(const QByteArray &resource) -
50{ -
51 (void)resource;; -
52 return 0;
never executed: return 0;
0
53} -
54 -
55QPlatformNativeInterface::NativeResourceForWindowFunction QPlatformNativeInterface::nativeResourceFunctionForWindow(const QByteArray &resource) -
56{ -
57 (void)resource;; -
58 return 0;
never executed: return 0;
0
59} -
60 -
61QPlatformNativeInterface::NativeResourceForBackingStoreFunction QPlatformNativeInterface::nativeResourceFunctionForBackingStore(const QByteArray &resource) -
62{ -
63 (void)resource;; -
64 return 0;
never executed: return 0;
0
65} -
66 -
67 -
68 -
69 -
70QVariantMap QPlatformNativeInterface::windowProperties(QPlatformWindow *window) const -
71{ -
72 (void)window; -
73 return QVariantMap();
never executed: return QVariantMap();
0
74} -
75 -
76 -
77 -
78 -
79 -
80 -
81QVariant QPlatformNativeInterface::windowProperty(QPlatformWindow *window, const QString &name) const -
82{ -
83 (void)window;; -
84 (void)name;; -
85 return QVariant();
never executed: return QVariant();
0
86} -
87 -
88 -
89 -
90 -
91QVariant QPlatformNativeInterface::windowProperty(QPlatformWindow *window, const QString &name, const QVariant &defaultValue) const -
92{ -
93 (void)window;; -
94 (void)name;; -
95 (void)defaultValue;; -
96 return QVariant();
never executed: return QVariant();
0
97} -
98 -
99 -
100 -
101 -
102void QPlatformNativeInterface::setWindowProperty(QPlatformWindow *window, const QString &name, const QVariant &value) -
103{ -
104 (void)window;; -
105 (void)name;; -
106 (void)value;; -
107}
never executed: }
0
108 -
109 -
110 -
Switch to Source codePreprocessed file

Generated by Squish Coco Non-Commercial