├── .tag ├── examples ├── core5 │ ├── CMakeLists.txt │ ├── widgets │ │ ├── tools │ │ │ ├── tools.pro │ │ │ ├── CMakeLists.txt │ │ │ └── codecs │ │ │ │ ├── images │ │ │ │ └── editcopy.png │ │ │ │ ├── encodedfiles │ │ │ │ ├── utf-8.txt │ │ │ │ ├── utf-16.txt │ │ │ │ ├── iso-8859-1.txt │ │ │ │ ├── utf-16be.txt │ │ │ │ ├── utf-16le.txt │ │ │ │ └── iso-8859-15.txt │ │ │ │ ├── codecs.qrc │ │ │ │ └── doc │ │ │ │ └── images │ │ │ │ └── codecs-example.png │ │ └── widgets.pro │ └── core5.pro └── examples.pro ├── tests ├── auto │ ├── core5 │ │ ├── sax │ │ │ ├── qxmlsimplereader │ │ │ │ ├── xmldocs │ │ │ │ │ ├── not-wf │ │ │ │ │ │ └── sa │ │ │ │ │ │ │ ├── 050.xml │ │ │ │ │ │ │ ├── null.ent │ │ │ │ │ │ │ ├── 019.xml │ │ │ │ │ │ │ ├── 011.xml │ │ │ │ │ │ │ ├── 025.xml │ │ │ │ │ │ │ ├── 042.xml │ │ │ │ │ │ │ ├── 044.xml │ │ │ │ │ │ │ ├── 053.xml │ │ │ │ │ │ │ ├── 166.xml │ │ │ │ │ │ │ ├── 167.xml │ │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ │ ├── 009.xml │ │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ │ ├── 012.xml │ │ │ │ │ │ │ ├── 013.xml │ │ │ │ │ │ │ ├── 015.xml │ │ │ │ │ │ │ ├── 023.xml │ │ │ │ │ │ │ ├── 026.xml │ │ │ │ │ │ │ ├── 033.xml │ │ │ │ │ │ │ ├── 039.xml │ │ │ │ │ │ │ ├── 072.xml │ │ │ │ │ │ │ ├── 093.xml │ │ │ │ │ │ │ ├── 173.xml │ │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ │ ├── 014.xml │ │ │ │ │ │ │ ├── 016.xml │ │ │ │ │ │ │ ├── 017.xml │ │ │ │ │ │ │ ├── 020.xml │ │ │ │ │ │ │ ├── 021.xml │ │ │ │ │ │ │ ├── 022.xml │ │ │ │ │ │ │ ├── 029.xml │ │ │ │ │ │ │ ├── 037.xml │ │ │ │ │ │ │ ├── 041.xml │ │ │ │ │ │ │ ├── 043.xml │ │ │ │ │ │ │ ├── 076.xml │ │ │ │ │ │ │ ├── 174.xml │ │ │ │ │ │ │ ├── 185.ent │ │ │ │ │ │ │ ├── 036.xml │ │ │ │ │ │ │ ├── 040.xml │ │ │ │ │ │ │ ├── 047.xml │ │ │ │ │ │ │ ├── 171.xml │ │ │ │ │ │ │ ├── 172.xml │ │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ │ ├── 018.xml │ │ │ │ │ │ │ ├── 024.xml │ │ │ │ │ │ │ ├── 027.xml │ │ │ │ │ │ │ ├── 035.xml │ │ │ │ │ │ │ ├── 045.xml │ │ │ │ │ │ │ ├── 046.xml │ │ │ │ │ │ │ ├── 055.xml │ │ │ │ │ │ │ ├── 106.xml │ │ │ │ │ │ │ ├── 157.xml │ │ │ │ │ │ │ ├── 038.xml │ │ │ │ │ │ │ ├── 048.xml │ │ │ │ │ │ │ ├── 094.xml │ │ │ │ │ │ │ ├── 108.xml │ │ │ │ │ │ │ ├── 112.xml │ │ │ │ │ │ │ ├── 154.xml │ │ │ │ │ │ │ ├── 155.xml │ │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ │ ├── 099.xml │ │ │ │ │ │ │ ├── 102.xml │ │ │ │ │ │ │ ├── 147.xml │ │ │ │ │ │ │ ├── 150.xml │ │ │ │ │ │ │ ├── 151.xml │ │ │ │ │ │ │ ├── 152.xml │ │ │ │ │ │ │ ├── 156.xml │ │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ │ ├── 030.xml │ │ │ │ │ │ │ ├── 052.xml │ │ │ │ │ │ │ ├── 096.xml │ │ │ │ │ │ │ ├── 098.xml │ │ │ │ │ │ │ ├── 028.xml │ │ │ │ │ │ │ ├── 051.xml │ │ │ │ │ │ │ ├── 056.xml │ │ │ │ │ │ │ ├── 085.xml │ │ │ │ │ │ │ ├── 097.xml │ │ │ │ │ │ │ ├── 105.xml │ │ │ │ │ │ │ ├── 148.xml │ │ │ │ │ │ │ ├── 031.xml │ │ │ │ │ │ │ ├── 095.xml │ │ │ │ │ │ │ ├── 100.xml │ │ │ │ │ │ │ ├── 101.xml │ │ │ │ │ │ │ ├── 107.xml │ │ │ │ │ │ │ ├── 176.xml │ │ │ │ │ │ │ ├── 032.xml │ │ │ │ │ │ │ ├── 034.xml │ │ │ │ │ │ │ ├── 063.xml │ │ │ │ │ │ │ ├── 070.xml │ │ │ │ │ │ │ ├── 109.xml │ │ │ │ │ │ │ ├── 114.xml │ │ │ │ │ │ │ ├── 139.xml │ │ │ │ │ │ │ ├── 179.xml │ │ │ │ │ │ │ ├── 049.xml │ │ │ │ │ │ │ ├── 110.xml │ │ │ │ │ │ │ ├── 113.xml │ │ │ │ │ │ │ ├── 118.xml │ │ │ │ │ │ │ ├── 128.xml │ │ │ │ │ │ │ ├── 133.xml │ │ │ │ │ │ │ ├── 134.xml │ │ │ │ │ │ │ ├── 135.xml │ │ │ │ │ │ │ ├── 137.xml │ │ │ │ │ │ │ ├── 138.xml │ │ │ │ │ │ │ ├── 062.xml │ │ │ │ │ │ │ ├── 073.xml │ │ │ │ │ │ │ ├── 103.xml │ │ │ │ │ │ │ ├── 104.xml │ │ │ │ │ │ │ ├── 111.xml │ │ │ │ │ │ │ ├── 115.xml │ │ │ │ │ │ │ ├── 116.xml │ │ │ │ │ │ │ ├── 117.xml │ │ │ │ │ │ │ ├── 121.xml │ │ │ │ │ │ │ ├── 122.xml │ │ │ │ │ │ │ ├── 123.xml │ │ │ │ │ │ │ ├── 125.xml │ │ │ │ │ │ │ ├── 126.xml │ │ │ │ │ │ │ ├── 127.xml │ │ │ │ │ │ │ ├── 129.xml │ │ │ │ │ │ │ ├── 130.xml │ │ │ │ │ │ │ ├── 131.xml │ │ │ │ │ │ │ ├── 136.xml │ │ │ │ │ │ │ ├── 142.xml │ │ │ │ │ │ │ ├── 177.xml │ │ │ │ │ │ │ ├── 077.xml │ │ │ │ │ │ │ ├── 081.xml │ │ │ │ │ │ │ ├── 124.xml │ │ │ │ │ │ │ ├── 143.xml │ │ │ │ │ │ │ ├── 144.xml │ │ │ │ │ │ │ ├── 145.xml │ │ │ │ │ │ │ ├── 054.xml │ │ │ │ │ │ │ ├── 057.xml │ │ │ │ │ │ │ ├── 061.xml │ │ │ │ │ │ │ ├── 083.xml │ │ │ │ │ │ │ ├── 086.xml │ │ │ │ │ │ │ ├── 087.xml │ │ │ │ │ │ │ ├── 090.xml │ │ │ │ │ │ │ ├── 092.xml │ │ │ │ │ │ │ ├── 119.xml │ │ │ │ │ │ │ ├── 120.xml │ │ │ │ │ │ │ ├── 140.xml │ │ │ │ │ │ │ ├── 141.xml │ │ │ │ │ │ │ ├── 146.xml │ │ │ │ │ │ │ ├── 089.xml │ │ │ │ │ │ │ ├── 132.xml │ │ │ │ │ │ │ ├── 165.xml │ │ │ │ │ │ │ ├── 175.xml │ │ │ │ │ │ │ ├── 074.xml │ │ │ │ │ │ │ ├── 149.xml │ │ │ │ │ │ │ ├── 161.xml │ │ │ │ │ │ │ ├── 164.xml │ │ │ │ │ │ │ ├── 185.xml │ │ │ │ │ │ │ ├── 059.xml │ │ │ │ │ │ │ ├── 064.xml │ │ │ │ │ │ │ ├── 067.xml │ │ │ │ │ │ │ ├── 163.xml │ │ │ │ │ │ │ ├── 168.xml │ │ │ │ │ │ │ ├── 169.xml │ │ │ │ │ │ │ ├── 170.xml │ │ │ │ │ │ │ ├── 182.xml │ │ │ │ │ │ │ ├── 060.xml │ │ │ │ │ │ │ ├── 078.xml │ │ │ │ │ │ │ ├── 181.xml │ │ │ │ │ │ │ ├── 183.xml │ │ │ │ │ │ │ ├── 058.xml │ │ │ │ │ │ │ ├── 065.xml │ │ │ │ │ │ │ ├── 066.xml │ │ │ │ │ │ │ ├── 145.xml.ref │ │ │ │ │ │ │ ├── 168.xml.ref │ │ │ │ │ │ │ ├── 169.xml.ref │ │ │ │ │ │ │ ├── 184.xml │ │ │ │ │ │ │ ├── 068.xml │ │ │ │ │ │ │ ├── 071.xml │ │ │ │ │ │ │ ├── 091.xml │ │ │ │ │ │ │ ├── 153.xml │ │ │ │ │ │ │ ├── 159.xml │ │ │ │ │ │ │ ├── 160.xml │ │ │ │ │ │ │ ├── 178.xml │ │ │ │ │ │ │ ├── 186.xml │ │ │ │ │ │ │ ├── 162.xml │ │ │ │ │ │ │ ├── 180.xml │ │ │ │ │ │ │ ├── 075.xml │ │ │ │ │ │ │ ├── 082.xml │ │ │ │ │ │ │ └── 088.xml │ │ │ │ │ └── valid │ │ │ │ │ │ ├── ext-sa │ │ │ │ │ │ ├── 003.ent │ │ │ │ │ │ ├── 009.ent │ │ │ │ │ │ ├── 010.ent │ │ │ │ │ │ ├── 002.ent │ │ │ │ │ │ ├── 004.ent │ │ │ │ │ │ ├── 012.ent │ │ │ │ │ │ ├── 013.ent │ │ │ │ │ │ ├── 001.ent │ │ │ │ │ │ ├── 005.ent │ │ │ │ │ │ ├── 011.ent │ │ │ │ │ │ ├── 006.ent │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ ├── 007.ent │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 008.ent │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ ├── 009.xml │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ ├── 014.ent │ │ │ │ │ │ ├── 014.xml │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ └── 006.xml │ │ │ │ │ │ ├── not-sa │ │ │ │ │ │ ├── 001.ent │ │ │ │ │ │ ├── 002.ent │ │ │ │ │ │ ├── 003-2.ent │ │ │ │ │ │ ├── 005-2.ent │ │ │ │ │ │ ├── 026.ent │ │ │ │ │ │ ├── 031-2.ent │ │ │ │ │ │ ├── 004-2.ent │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 013.xml │ │ │ │ │ │ ├── 017.xml │ │ │ │ │ │ ├── 018.xml │ │ │ │ │ │ ├── 019.xml │ │ │ │ │ │ ├── 020.xml │ │ │ │ │ │ ├── 021.xml │ │ │ │ │ │ ├── 022.xml │ │ │ │ │ │ ├── 023.xml │ │ │ │ │ │ ├── 024.xml │ │ │ │ │ │ ├── 025.xml │ │ │ │ │ │ ├── 027.ent │ │ │ │ │ │ ├── 027.xml │ │ │ │ │ │ ├── 028.xml │ │ │ │ │ │ ├── 029.xml │ │ │ │ │ │ ├── 030.xml │ │ │ │ │ │ ├── 031.xml │ │ │ │ │ │ ├── 007.ent │ │ │ │ │ │ ├── 008.ent │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ ├── 009.ent │ │ │ │ │ │ ├── 010.ent │ │ │ │ │ │ ├── 011.ent │ │ │ │ │ │ ├── 030.ent │ │ │ │ │ │ ├── 005-1.ent │ │ │ │ │ │ ├── 006.ent │ │ │ │ │ │ ├── 028.ent │ │ │ │ │ │ ├── 016.ent │ │ │ │ │ │ ├── 020.ent │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ ├── 011.xml │ │ │ │ │ │ ├── 012.xml │ │ │ │ │ │ ├── 013.ent │ │ │ │ │ │ ├── 014.ent │ │ │ │ │ │ ├── 014.xml │ │ │ │ │ │ ├── 015.xml │ │ │ │ │ │ ├── 016.xml │ │ │ │ │ │ ├── 017.ent │ │ │ │ │ │ ├── 018.ent │ │ │ │ │ │ ├── 019.ent │ │ │ │ │ │ ├── 021.ent │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ ├── 003-1.ent │ │ │ │ │ │ ├── 004-1.ent │ │ │ │ │ │ ├── 022.ent │ │ │ │ │ │ ├── 031-1.ent │ │ │ │ │ │ ├── 009.xml │ │ │ │ │ │ ├── 012.ent │ │ │ │ │ │ ├── 029.ent │ │ │ │ │ │ ├── 015.ent │ │ │ │ │ │ ├── 024.ent │ │ │ │ │ │ └── 025.ent │ │ │ │ │ │ └── sa │ │ │ │ │ │ ├── 097.ent │ │ │ │ │ │ ├── 084.xml │ │ │ │ │ │ ├── 034.xml │ │ │ │ │ │ ├── 057.xml │ │ │ │ │ │ ├── 001.xml │ │ │ │ │ │ ├── 035.xml │ │ │ │ │ │ ├── 093.xml │ │ │ │ │ │ ├── 002.xml │ │ │ │ │ │ ├── 003.xml │ │ │ │ │ │ ├── 007.xml │ │ │ │ │ │ ├── 048.xml │ │ │ │ │ │ ├── 052.xml │ │ │ │ │ │ ├── 067.xml │ │ │ │ │ │ ├── 119.xml │ │ │ │ │ │ ├── 009.xml │ │ │ │ │ │ ├── 016.xml │ │ │ │ │ │ ├── 047.xml │ │ │ │ │ │ ├── 060.xml │ │ │ │ │ │ ├── 061.xml │ │ │ │ │ │ ├── 063.xml │ │ │ │ │ │ ├── 103.xml │ │ │ │ │ │ ├── 019.xml │ │ │ │ │ │ ├── 098.xml │ │ │ │ │ │ ├── 018.xml │ │ │ │ │ │ ├── 020.xml │ │ │ │ │ │ ├── 021.xml │ │ │ │ │ │ ├── 022.xml │ │ │ │ │ │ ├── 036.xml │ │ │ │ │ │ ├── 039.xml │ │ │ │ │ │ ├── 055.xml │ │ │ │ │ │ ├── 064.xml │ │ │ │ │ │ ├── 116.xml │ │ │ │ │ │ ├── 008.xml │ │ │ │ │ │ ├── 017.xml │ │ │ │ │ │ ├── 023.xml │ │ │ │ │ │ ├── 062.xml │ │ │ │ │ │ ├── 065.xml │ │ │ │ │ │ ├── 070.xml │ │ │ │ │ │ ├── 101.xml │ │ │ │ │ │ ├── 028.xml │ │ │ │ │ │ ├── 029.xml │ │ │ │ │ │ ├── 030.xml │ │ │ │ │ │ ├── 037.xml │ │ │ │ │ │ ├── 038.xml │ │ │ │ │ │ ├── 068.xml │ │ │ │ │ │ ├── 117.xml │ │ │ │ │ │ ├── 049.xml │ │ │ │ │ │ ├── 050.xml │ │ │ │ │ │ ├── 051.xml │ │ │ │ │ │ ├── 071.xml │ │ │ │ │ │ ├── 082.xml │ │ │ │ │ │ ├── 088.xml │ │ │ │ │ │ ├── 112.xml │ │ │ │ │ │ ├── 113.xml │ │ │ │ │ │ ├── 118.xml │ │ │ │ │ │ ├── 026.xml │ │ │ │ │ │ ├── 027.xml │ │ │ │ │ │ ├── 042.xml │ │ │ │ │ │ ├── 069.xml │ │ │ │ │ │ ├── 072.xml │ │ │ │ │ │ ├── 073.xml │ │ │ │ │ │ ├── 074.xml │ │ │ │ │ │ ├── 075.xml │ │ │ │ │ │ ├── 077.xml │ │ │ │ │ │ ├── 080.xml │ │ │ │ │ │ ├── 114.xml │ │ │ │ │ │ ├── 012.xml │ │ │ │ │ │ ├── 025.xml │ │ │ │ │ │ ├── 031.xml │ │ │ │ │ │ ├── 032.xml │ │ │ │ │ │ ├── 053.xml │ │ │ │ │ │ ├── 056.xml │ │ │ │ │ │ ├── 078.xml │ │ │ │ │ │ ├── 079.xml │ │ │ │ │ │ ├── 083.xml │ │ │ │ │ │ ├── 096.xml │ │ │ │ │ │ ├── 099.xml │ │ │ │ │ │ ├── 100.xml │ │ │ │ │ │ ├── 104.xml │ │ │ │ │ │ ├── 109.xml │ │ │ │ │ │ ├── 004.xml │ │ │ │ │ │ ├── 005.xml │ │ │ │ │ │ ├── 006.xml │ │ │ │ │ │ ├── 010.xml │ │ │ │ │ │ ├── 041.xml │ │ │ │ │ │ ├── 054.xml │ │ │ │ │ │ ├── 085.xml │ │ │ │ │ │ ├── 086.xml │ │ │ │ │ │ ├── 102.xml │ │ │ │ │ │ ├── 105.xml │ │ │ │ │ │ ├── 106.xml │ │ │ │ │ │ ├── 107.xml │ │ │ │ │ │ ├── 058.xml │ │ │ │ │ │ ├── 087.xml │ │ │ │ │ │ ├── 089.xml │ │ │ │ │ │ ├── 115.xml │ │ │ │ │ │ ├── 043.xml │ │ │ │ │ │ ├── 094.xml │ │ │ │ │ │ ├── 024.xml │ │ │ │ │ │ ├── 033.xml │ │ │ │ │ │ ├── 013.xml │ │ │ │ │ │ ├── 040.xml │ │ │ │ │ │ ├── 045.xml │ │ │ │ │ │ ├── 046.xml │ │ │ │ │ │ └── 111.xml │ │ │ │ └── encodings │ │ │ │ │ ├── doc_utf-16.xml │ │ │ │ │ └── doc_little-endian.xml │ │ │ └── qxml │ │ │ │ └── 0x010D.xml │ │ ├── serialization │ │ │ └── json │ │ │ │ ├── invalidBinaryData │ │ │ │ ├── 38.bjson │ │ │ │ ├── 39.bjson │ │ │ │ ├── 10.bjson │ │ │ │ ├── 11.bjson │ │ │ │ ├── 12.bjson │ │ │ │ ├── 13.bjson │ │ │ │ ├── 14.bjson │ │ │ │ ├── 15.bjson │ │ │ │ ├── 16.bjson │ │ │ │ ├── 17.bjson │ │ │ │ ├── 18.bjson │ │ │ │ ├── 19.bjson │ │ │ │ ├── 20.bjson │ │ │ │ ├── 21.bjson │ │ │ │ ├── 22.bjson │ │ │ │ ├── 23.bjson │ │ │ │ ├── 24.bjson │ │ │ │ ├── 25.bjson │ │ │ │ ├── 26.bjson │ │ │ │ ├── 27.bjson │ │ │ │ ├── 28.bjson │ │ │ │ ├── 29.bjson │ │ │ │ ├── 30.bjson │ │ │ │ ├── 31.bjson │ │ │ │ ├── 32.bjson │ │ │ │ ├── 33.bjson │ │ │ │ ├── 34.bjson │ │ │ │ ├── 35.bjson │ │ │ │ ├── 36.bjson │ │ │ │ ├── 37.bjson │ │ │ │ ├── 40.bjson │ │ │ │ └── 41.bjson │ │ │ │ ├── test2.json │ │ │ │ ├── bom.json │ │ │ │ └── test.bjson │ │ ├── codecs │ │ │ └── qtextcodec │ │ │ │ ├── utf8.txt │ │ │ │ ├── korean.txt │ │ │ │ └── QT4-crashtest.txt │ │ ├── text │ │ │ └── qregexp │ │ │ │ └── data │ │ │ │ ├── qdatastream_4.9.bin │ │ │ │ └── qdatastream_5.0.bin │ │ ├── io │ │ │ └── CMakeLists.txt │ │ └── tools │ │ │ └── CMakeLists.txt │ └── CMakeLists.txt └── benchmarks │ ├── benchmarks.pro │ ├── core5 │ ├── text │ │ ├── text.pro │ │ ├── qregexp │ │ │ └── qregexp.qrc │ │ └── CMakeLists.txt │ ├── codecs │ │ ├── codecs.pro │ │ └── qtextcodec │ │ │ └── qtextcodec.pro │ └── core5.pro │ └── CMakeLists.txt ├── src ├── imports │ ├── CMakeLists.txt │ └── graphicaleffects5 │ │ ├── doc │ │ └── images │ │ │ ├── bug.jpg │ │ │ ├── fog.png │ │ │ ├── checker.png │ │ │ ├── Glow_fast1.png │ │ │ ├── Glow_fast2.png │ │ │ ├── butterfly.png │ │ │ ├── Blend_mode1.png │ │ │ ├── Blend_mode10.png │ │ │ ├── Blend_mode11.png │ │ │ ├── Blend_mode12.png │ │ │ ├── Blend_mode13.png │ │ │ ├── Blend_mode14.png │ │ │ ├── Blend_mode15.png │ │ │ ├── Blend_mode16.png │ │ │ ├── Blend_mode17.png │ │ │ ├── Blend_mode18.png │ │ │ ├── Blend_mode19.png │ │ │ ├── Blend_mode2.png │ │ │ ├── Blend_mode20.png │ │ │ ├── Blend_mode21.png │ │ │ ├── Blend_mode22.png │ │ │ ├── Blend_mode3.png │ │ │ ├── Blend_mode4.png │ │ │ ├── Blend_mode5.png │ │ │ ├── Blend_mode6.png │ │ │ ├── Blend_mode7.png │ │ │ ├── Blend_mode8.png │ │ │ ├── Blend_mode9.png │ │ │ ├── Colorize_bug.png │ │ │ ├── Colorize_hue1.png │ │ │ ├── Colorize_hue2.png │ │ │ ├── Colorize_hue3.png │ │ │ ├── Displace_bug.png │ │ │ ├── Displace_map.png │ │ │ ├── FastBlur_bug.png │ │ │ ├── Glow_color1.png │ │ │ ├── Glow_color2.png │ │ │ ├── Glow_color3.png │ │ │ ├── Glow_radius1.png │ │ │ ├── Glow_radius2.png │ │ │ ├── Glow_radius3.png │ │ │ ├── Glow_spread1.png │ │ │ ├── Glow_spread2.png │ │ │ ├── Glow_spread3.png │ │ │ ├── Original_bug.png │ │ │ ├── ZoomBlur_bug.png │ │ │ ├── glass_normal.png │ │ │ ├── ConicalGradient.png │ │ │ ├── Desaturate_bug.png │ │ │ ├── GammaAdjust_bug.png │ │ │ ├── Glow_butterfly.png │ │ │ ├── LinearGradient.png │ │ │ ├── MaskedBlur_bug.png │ │ │ ├── MaskedBlur_mask.png │ │ │ ├── OpacityMask_bug.png │ │ │ ├── RadialBlur_bug.png │ │ │ ├── RadialGradient.png │ │ │ ├── Colorize_hue_scale.png │ │ │ ├── DropShadow_color1.png │ │ │ ├── DropShadow_color2.png │ │ │ ├── DropShadow_color3.png │ │ │ ├── DropShadow_fast1.png │ │ │ ├── DropShadow_fast2.png │ │ │ ├── DropShadow_radius1.png │ │ │ ├── DropShadow_radius2.png │ │ │ ├── DropShadow_radius3.png │ │ │ ├── DropShadow_spread1.png │ │ │ ├── DropShadow_spread2.png │ │ │ ├── DropShadow_spread3.png │ │ │ ├── FastBlur_radius1.png │ │ │ ├── FastBlur_radius2.png │ │ │ ├── FastBlur_radius3.png │ │ │ ├── GammaAdjust_gamma1.png │ │ │ ├── GammaAdjust_gamma2.png │ │ │ ├── GammaAdjust_gamma3.png │ │ │ ├── GaussianBlur_bug.png │ │ │ ├── HueSaturation_bug.png │ │ │ ├── HueSaturation_hue1.png │ │ │ ├── HueSaturation_hue2.png │ │ │ ├── HueSaturation_hue3.png │ │ │ ├── InnerShadow_color1.png │ │ │ ├── InnerShadow_color2.png │ │ │ ├── InnerShadow_color3.png │ │ │ ├── InnerShadow_fast1.png │ │ │ ├── InnerShadow_fast2.png │ │ │ ├── LevelAdjust_gamma1.png │ │ │ ├── LevelAdjust_gamma2.png │ │ │ ├── LevelAdjust_gamma3.png │ │ │ ├── MaskedBlur_fast1.png │ │ │ ├── MaskedBlur_fast2.png │ │ │ ├── MaskedBlur_radius1.png │ │ │ ├── MaskedBlur_radius2.png │ │ │ ├── MaskedBlur_radius3.png │ │ │ ├── OpacityMask_mask.png │ │ │ ├── Original_butterfly.png │ │ │ ├── RadialBlur_angle1.png │ │ │ ├── RadialBlur_angle2.png │ │ │ ├── RadialBlur_angle3.png │ │ │ ├── RecursiveBlur_bug.png │ │ │ ├── ThresholdMask_bug.png │ │ │ ├── ThresholdMask_mask.png │ │ │ ├── ZoomBlur_length1.png │ │ │ ├── ZoomBlur_length2.png │ │ │ ├── ZoomBlur_length3.png │ │ │ ├── ColorOverlay_color1.png │ │ │ ├── ColorOverlay_color2.png │ │ │ ├── ColorOverlay_color3.png │ │ │ ├── Colorize_lightness1.png │ │ │ ├── Colorize_lightness2.png │ │ │ ├── Colorize_lightness3.png │ │ │ ├── Colorize_saturation1.png │ │ │ ├── Colorize_saturation2.png │ │ │ ├── Colorize_saturation3.png │ │ │ ├── DirectionalBlur_bug.png │ │ │ ├── DropShadow_butterfly.png │ │ │ ├── GaussianBlur_radius1.png │ │ │ ├── GaussianBlur_radius2.png │ │ │ ├── GaussianBlur_radius3.png │ │ │ ├── InnerShadow_radius1.png │ │ │ ├── InnerShadow_radius2.png │ │ │ ├── InnerShadow_radius3.png │ │ │ ├── InnerShadow_spread1.png │ │ │ ├── InnerShadow_spread2.png │ │ │ ├── InnerShadow_spread3.png │ │ │ ├── LinearGradient_end1.png │ │ │ ├── LinearGradient_end2.png │ │ │ ├── LinearGradient_end3.png │ │ │ ├── RecursiveBlur_loops1.png │ │ │ ├── RecursiveBlur_loops2.png │ │ │ ├── RecursiveBlur_loops3.png │ │ │ ├── Blend_bug_and_butterfly.png │ │ │ ├── BrightnessContrast_bug.png │ │ │ ├── ColorOverlay_butterfly.png │ │ │ ├── ConicalGradient_angle1.png │ │ │ ├── ConicalGradient_angle2.png │ │ │ ├── ConicalGradient_angle3.png │ │ │ ├── DirectionalBlur_angle1.png │ │ │ ├── DirectionalBlur_angle2.png │ │ │ ├── DirectionalBlur_angle3.png │ │ │ ├── DirectionalBlur_length1.png │ │ │ ├── DirectionalBlur_length2.png │ │ │ ├── DirectionalBlur_length3.png │ │ │ ├── Displace_displacement1.png │ │ │ ├── Displace_displacement2.png │ │ │ ├── Displace_displacement3.png │ │ │ ├── GaussianBlur_deviation1.png │ │ │ ├── GaussianBlur_deviation2.png │ │ │ ├── GaussianBlur_deviation3.png │ │ │ ├── GaussianBlur_deviation4.png │ │ │ ├── Glow-transparentBorder.png │ │ │ ├── InnerShadow_butterfly.png │ │ │ ├── LevelAdjust_butterfly.png │ │ │ ├── LinearGradient_start1.png │ │ │ ├── LinearGradient_start2.png │ │ │ ├── LinearGradient_start3.png │ │ │ ├── RadialGradient_angle1.png │ │ │ ├── RadialGradient_angle2.png │ │ │ ├── RadialGradient_angle3.png │ │ │ ├── RadialGradient_default.png │ │ │ ├── RadialGradient_withmask.png │ │ │ ├── RectangularGlow_applied.png │ │ │ ├── RectangularGlow_color1.png │ │ │ ├── RectangularGlow_color2.png │ │ │ ├── RectangularGlow_color3.png │ │ │ ├── RectangularGlow_spread1.png │ │ │ ├── RectangularGlow_spread2.png │ │ │ ├── RectangularGlow_spread3.png │ │ │ ├── RecursiveBlur_radius1.png │ │ │ ├── RecursiveBlur_radius2.png │ │ │ ├── RecursiveBlur_radius3.png │ │ │ ├── ThresholdMask_spread1.png │ │ │ ├── ThresholdMask_spread2.png │ │ │ ├── ThresholdMask_spread3.png │ │ │ ├── ConicalGradient_gradient1.png │ │ │ ├── ConicalGradient_gradient2.png │ │ │ ├── ConicalGradient_gradient3.png │ │ │ ├── Desaturate_desaturation1.png │ │ │ ├── Desaturate_desaturation2.png │ │ │ ├── Desaturate_desaturation3.png │ │ │ ├── GammaAdjust_gamma1_graph.png │ │ │ ├── GammaAdjust_gamma2_graph.png │ │ │ ├── GammaAdjust_gamma3_graph.png │ │ │ ├── HueSaturation_lightness1.png │ │ │ ├── HueSaturation_lightness2.png │ │ │ ├── HueSaturation_lightness3.png │ │ │ ├── HueSaturation_saturation1.png │ │ │ ├── HueSaturation_saturation2.png │ │ │ ├── HueSaturation_saturation3.png │ │ │ ├── LevelAdjust_default_curve.png │ │ │ ├── LevelAdjust_gamma1_curve.png │ │ │ ├── LevelAdjust_gamma2_curve.png │ │ │ ├── LevelAdjust_gamma3_curve.png │ │ │ ├── LevelAdjust_maximumInput1.png │ │ │ ├── LevelAdjust_maximumInput2.png │ │ │ ├── LevelAdjust_maximumInput3.png │ │ │ ├── LevelAdjust_minimumInput1.png │ │ │ ├── LevelAdjust_minimumInput2.png │ │ │ ├── LevelAdjust_minimumInput3.png │ │ │ ├── LinearGradient_gradient1.png │ │ │ ├── LinearGradient_gradient2.png │ │ │ ├── LinearGradient_gradient3.png │ │ │ ├── Original_butterfly_black.png │ │ │ ├── RadialGradient_gradient1.png │ │ │ ├── RadialGradient_gradient2.png │ │ │ ├── RadialGradient_gradient3.png │ │ │ ├── ThresholdMask_threshold1.png │ │ │ ├── ThresholdMask_threshold2.png │ │ │ ├── ThresholdMask_threshold3.png │ │ │ ├── BrightnessContrast_contrast1.png │ │ │ ├── BrightnessContrast_contrast2.png │ │ │ ├── BrightnessContrast_contrast3.png │ │ │ ├── ConicalGradient_maskSource1.png │ │ │ ├── ConicalGradient_maskSource2.png │ │ │ ├── DropShadow-transparentBorder.png │ │ │ ├── DropShadow_horizontalOffset1.png │ │ │ ├── DropShadow_horizontalOffset2.png │ │ │ ├── DropShadow_horizontalOffset3.png │ │ │ ├── FastBlur_transparentBorder1.png │ │ │ ├── FastBlur_transparentBorder2.png │ │ │ ├── GaussianBlur_deviation_graph.png │ │ │ ├── LevelAdjust_maximumOutput1.png │ │ │ ├── LevelAdjust_maximumOutput2.png │ │ │ ├── LevelAdjust_maximumOutput3.png │ │ │ ├── LevelAdjust_minimumOutput1.png │ │ │ ├── LevelAdjust_minimumOutput2.png │ │ │ ├── LevelAdjust_minimumOutput3.png │ │ │ ├── LinearGradient_maskSource1.png │ │ │ ├── LinearGradient_maskSource2.png │ │ │ ├── RadialBlur_horizontalOffset1.png │ │ │ ├── RadialBlur_horizontalOffset2.png │ │ │ ├── RadialBlur_horizontalOffset3.png │ │ │ ├── RadialGradient_maskSource1.png │ │ │ ├── RadialGradient_maskSource2.png │ │ │ ├── RectangularGlow_glowRadius1.png │ │ │ ├── RectangularGlow_glowRadius2.png │ │ │ ├── RectangularGlow_glowRadius3.png │ │ │ ├── ZoomBlur_horizontalOffset1.png │ │ │ ├── ZoomBlur_horizontalOffset2.png │ │ │ ├── ZoomBlur_horizontalOffset3.png │ │ │ ├── BrightnessContrast_brightness1.png │ │ │ ├── BrightnessContrast_brightness2.png │ │ │ ├── BrightnessContrast_brightness3.png │ │ │ ├── InnerShadow_horizontalOffset1.png │ │ │ ├── InnerShadow_horizontalOffset2.png │ │ │ ├── InnerShadow_horizontalOffset3.png │ │ │ ├── RectangularGlow_cornerRadius1.png │ │ │ ├── RectangularGlow_cornerRadius2.png │ │ │ ├── RectangularGlow_cornerRadius3.png │ │ │ ├── BrightnessContrast_contrast_graph.png │ │ │ ├── ConicalGradient_horizontalOffset1.png │ │ │ ├── ConicalGradient_horizontalOffset2.png │ │ │ ├── ConicalGradient_horizontalOffset3.png │ │ │ ├── GaussianBlur_transparentBorder1.png │ │ │ ├── GaussianBlur_transparentBorder2.png │ │ │ ├── LevelAdjust_maximumInput2_curve.png │ │ │ ├── LevelAdjust_maximumInput3_curve.png │ │ │ ├── LevelAdjust_maximumOutput2_curve.png │ │ │ ├── LevelAdjust_maximumOutput3_curve.png │ │ │ ├── LevelAdjust_minimumInput2_curve.png │ │ │ ├── LevelAdjust_minimumInput3_curve.png │ │ │ ├── LevelAdjust_minimumOutput2_curve.png │ │ │ ├── LevelAdjust_minimumOutput3_curve.png │ │ │ ├── RadialGradient_horizontalOffset1.png │ │ │ ├── RadialGradient_horizontalOffset2.png │ │ │ ├── RadialGradient_horizontalOffset3.png │ │ │ ├── RadialGradient_horizontalRadius1.png │ │ │ ├── RadialGradient_horizontalRadius2.png │ │ │ ├── RadialGradient_horizontalRadius3.png │ │ │ ├── RecursiveBlur_transparentBorder1.png │ │ │ └── RecursiveBlur_transparentBorder2.png │ │ └── shaders_ng │ │ ├── colorize.frag.qsb │ │ ├── displace.frag.qsb │ │ ├── fastblur.frag.qsb │ │ ├── fastglow.frag.qsb │ │ ├── desaturate.frag.qsb │ │ ├── coloroverlay.frag.qsb │ │ ├── gammaadjust.frag.qsb │ │ ├── huesaturation.frag.qsb │ │ ├── leveladjust.frag.qsb │ │ ├── opacitymask.frag.qsb │ │ ├── recursiveblur.frag.qsb │ │ ├── recursiveblur.vert.qsb │ │ ├── thresholdmask.frag.qsb │ │ ├── fastinnershadow.frag.qsb │ │ ├── lineargradient.vert.qsb │ │ ├── radialgradient.vert.qsb │ │ ├── rectangularglow.frag.qsb │ │ ├── brightnesscontrast.frag.qsb │ │ ├── fastblur_internal.frag.qsb │ │ ├── fastblur_internal.vert.qsb │ │ ├── opacitymask_invert.frag.qsb │ │ ├── conicalgradient_mask.frag.qsb │ │ ├── gaussianinnershadow.frag.qsb │ │ ├── lineargradient_mask.frag.qsb │ │ ├── radialgradient_mask.frag.qsb │ │ ├── conicalgradient_nomask.frag.qsb │ │ ├── fastinnershadow_level0.frag.qsb │ │ ├── lineargradient_nomask.frag.qsb │ │ ├── radialgradient_nomask.frag.qsb │ │ └── gaussianinnershadow_shadow.frag.qsb └── core5 │ └── doc │ └── images │ └── javaiterators1.png ├── .gitreview └── util └── unicode └── codecs └── big5 ├── big5.pro └── big5.qrc /.tag: -------------------------------------------------------------------------------- 1 | b5e9009c0745171f7081e0c4d9c59a139380bc95 2 | -------------------------------------------------------------------------------- /examples/core5/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(widgets) 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/050.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/38.bjson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/imports/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(graphicaleffects5) 2 | -------------------------------------------------------------------------------- /tests/auto/core5/codecs/qtextcodec/utf8.txt: -------------------------------------------------------------------------------- 1 | 𐀀􏿽 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/null.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/003-2.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/test2.json: -------------------------------------------------------------------------------- 1 | { "foo": ["ab"] } 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.ent: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.ent: -------------------------------------------------------------------------------- 1 | Data -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/012.ent: -------------------------------------------------------------------------------- 1 | &e4; -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/013.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/core5/widgets/tools/tools.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = codecs -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxml/0x010D.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/019.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.ent: -------------------------------------------------------------------------------- 1 | Data 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.ent: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/011.ent: -------------------------------------------------------------------------------- 1 | xyzzy 2 | -------------------------------------------------------------------------------- /tests/benchmarks/benchmarks.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = core5 3 | -------------------------------------------------------------------------------- /examples/core5/widgets/tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_internal_add_example(codecs) 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/011.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/025.xml: -------------------------------------------------------------------------------- 1 | ]]> 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/042.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/044.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/053.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/166.xml: -------------------------------------------------------------------------------- 1 | ￿ 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/167.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/benchmarks/core5/text/text.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = qregexp 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/003.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/009.xml: -------------------------------------------------------------------------------- 1 | &#RE; 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/010.xml: -------------------------------------------------------------------------------- 1 | A & B 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/012.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/013.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/026.xml: -------------------------------------------------------------------------------- 1 | ]]]> 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/033.xml: -------------------------------------------------------------------------------- 1 | abcdef 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/039.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/072.xml: -------------------------------------------------------------------------------- 1 | &foo; 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/093.xml: -------------------------------------------------------------------------------- 1 | X 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/173.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/bom.json: -------------------------------------------------------------------------------- 1 | { 2 | "info-version": "1.0" 3 | } 4 | -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/39.bjson: -------------------------------------------------------------------------------- 1 | qbjs  -------------------------------------------------------------------------------- /tests/benchmarks/core5/codecs/codecs.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS = qtextcodec 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/007.xml: -------------------------------------------------------------------------------- 1 | & no refc 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/008.xml: -------------------------------------------------------------------------------- 1 | &.entity; 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/014.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/016.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/017.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/020.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/021.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/022.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/029.xml: -------------------------------------------------------------------------------- 1 | abc]]]>def 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/037.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/041.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/043.xml: -------------------------------------------------------------------------------- 1 | 2 | Illegal data 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/076.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/174.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += no_docs_target 3 | 4 | SUBDIRS = core5 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/036.xml: -------------------------------------------------------------------------------- 1 | 2 | Illegal data 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/040.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/047.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/171.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/172.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /examples/core5/core5.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | CONFIG += no_docs_target 3 | 4 | SUBDIRS = widgets 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/004.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/005.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/018.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/024.xml: -------------------------------------------------------------------------------- 1 | 2 | <123> 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/027.xml: -------------------------------------------------------------------------------- 1 | 2 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/099.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/102.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/147.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/150.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/151.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/152.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/156.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/006.ent: -------------------------------------------------------------------------------- 1 | Data 2 | 3 | More data 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/001.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/030.xml: -------------------------------------------------------------------------------- 1 | A form feed ( ) is not legal in data 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/052.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/096.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/098.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/028.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/051.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/056.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/085.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/097.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/105.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/148.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/003.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/004.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/005.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/023.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/027.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/084.xml: -------------------------------------------------------------------------------- 1 | ]> 2 | -------------------------------------------------------------------------------- /src/core5/doc/images/javaiterators1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/core5/doc/images/javaiterators1.png -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/031.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/095.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/100.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/101.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/107.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/176.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/031.xml: -------------------------------------------------------------------------------- 1 | 2 | &e; 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/032.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/034.xml: -------------------------------------------------------------------------------- 1 | A form-feed is not white space or a name character 2 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/063.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/070.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/109.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/114.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/139.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/179.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/007.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/008.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/034.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/057.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/codecs/qtextcodec/korean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/codecs/qtextcodec/korean.txt -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/049.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/110.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/113.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/118.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &&e;97; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/128.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/133.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/134.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/135.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/137.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/138.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/030.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/001.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/035.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/093.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/bug.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/bug.jpg -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/fog.png -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/062.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/073.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &f; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/103.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/104.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/111.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/115.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/116.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &e;7; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/117.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &e;#97; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/121.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/122.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/123.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/125.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/126.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/127.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/129.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/130.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/131.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/136.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/142.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/177.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | A￿ 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/005-1.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | %e; 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/002.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/003.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/007.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/048.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ] 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/052.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 𐀀􏿽 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/067.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/119.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/test.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/test.bjson -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/077.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/081.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/124.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/143.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 |  5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/144.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ￿ 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/145.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/028.ent: -------------------------------------------------------------------------------- 1 | 2 | ]]> 3 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/009.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/016.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/047.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | X 5 | Y 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/060.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | X Y 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/061.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | £ 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/063.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | <เจมส์> 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/103.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | <doc> 5 | -------------------------------------------------------------------------------- /examples/core5/widgets/widgets.pro: -------------------------------------------------------------------------------- 1 | requires(qtHaveModule(widgets)) 2 | 3 | TEMPLATE = subdirs 4 | CONFIG += no_docs_target 5 | 6 | SUBDIRS = tools 7 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/checker.png -------------------------------------------------------------------------------- /tests/auto/core5/codecs/qtextcodec/QT4-crashtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/codecs/qtextcodec/QT4-crashtest.txt -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/054.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/057.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/061.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/083.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/086.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/087.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/090.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/092.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/119.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | &e;#38; 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/120.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | &e; 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/140.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/141.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | &e; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/146.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.ent: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/020.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/019.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/098.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 6 | -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/images/editcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/examples/core5/widgets/tools/codecs/images/editcopy.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_fast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_fast1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_fast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_fast2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/butterfly.png -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/089.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/001.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/002.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/011.xml: -------------------------------------------------------------------------------- 1 | 3 | %e; 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.xml: -------------------------------------------------------------------------------- 1 | 3 | %e; 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/013.ent: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.ent: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/014.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/016.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/017.ent: -------------------------------------------------------------------------------- 1 | 2 | "> 3 | %e; 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/018.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/019.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/021.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/018.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ]]> 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/020.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | ]]]> 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/021.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/022.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/036.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/039.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/055.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/064.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 𐀀􏿽 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/116.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/text/qregexp/data/qdatastream_4.9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/text/qregexp/data/qdatastream_4.9.bin -------------------------------------------------------------------------------- /tests/auto/core5/text/qregexp/data/qdatastream_5.0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/text/qregexp/data/qdatastream_5.0.bin -------------------------------------------------------------------------------- /util/unicode/codecs/big5/big5.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | BIG5 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/encodedfiles/utf-8.txt: -------------------------------------------------------------------------------- 1 | Språk: Norsk 2 | Γλώσσα: Ελληνικά 3 | Язык: Русский 4 | 언어 : 한국어 5 | 言語: 日本語 6 | Langage : Français 7 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode10.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode11.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode12.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode13.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode14.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode15.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode16.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode17.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode18.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode19.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode20.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode21.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode22.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode4.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode5.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode6.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode7.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode8.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_mode9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_mode9.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_hue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_hue1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_hue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_hue2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_hue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_hue3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Displace_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Displace_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Displace_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Displace_map.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/FastBlur_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/FastBlur_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_color1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_color1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_color2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_color2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_color3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_color3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_radius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_radius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_radius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_radius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_radius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_radius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_spread1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_spread1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_spread2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_spread2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_spread3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_spread3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Original_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Original_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ZoomBlur_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ZoomBlur_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/glass_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/glass_normal.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/colorize.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/colorize.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/displace.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/displace.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/fastblur.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/fastblur.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/fastglow.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/fastglow.frag.qsb -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/132.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/165.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/175.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/006.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/010.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/008.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | &<>"' 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/017.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/023.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/062.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | เจมส์ 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/065.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/070.xml: -------------------------------------------------------------------------------- 1 | "> 3 | %e; 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/101.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/codecs.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | images/editcopy.png 4 | 5 | 6 | -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/encodedfiles/utf-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/examples/core5/widgets/tools/codecs/encodedfiles/utf-16.txt -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Desaturate_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Desaturate_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GammaAdjust_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GammaAdjust_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow_butterfly.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/MaskedBlur_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/MaskedBlur_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/MaskedBlur_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/MaskedBlur_mask.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/OpacityMask_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/OpacityMask_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialBlur_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialBlur_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/desaturate.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/desaturate.frag.qsb -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/074.xml: -------------------------------------------------------------------------------- 1 | "> 3 | ]> 4 | 5 | &e; 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/149.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/161.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/164.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ] %e; > 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/185.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | &e; 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/028.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/029.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/030.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/037.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/038.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/068.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/117.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | ] 6 | -------------------------------------------------------------------------------- /tests/benchmarks/core5/text/qregexp/qregexp.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | main.cpp 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/encodedfiles/iso-8859-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/examples/core5/widgets/tools/codecs/encodedfiles/iso-8859-1.txt -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/encodedfiles/utf-16be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/examples/core5/widgets/tools/codecs/encodedfiles/utf-16be.txt -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/encodedfiles/utf-16le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/examples/core5/widgets/tools/codecs/encodedfiles/utf-16le.txt -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_hue_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_hue_scale.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_color1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_color1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_color2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_color2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_color3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_color3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_fast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_fast1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_fast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_fast2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_radius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_radius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_radius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_radius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_radius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_radius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_spread1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_spread1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_spread2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_spread2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_spread3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_spread3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/FastBlur_radius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/FastBlur_radius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/FastBlur_radius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/FastBlur_radius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/FastBlur_radius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/FastBlur_radius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_hue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_hue1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_hue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_hue2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_hue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_hue3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_color1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_color1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_color2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_color2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_color3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_color3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_fast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_fast1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_fast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_fast2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/MaskedBlur_fast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/MaskedBlur_fast1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/MaskedBlur_fast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/MaskedBlur_fast2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/MaskedBlur_radius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/MaskedBlur_radius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/MaskedBlur_radius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/MaskedBlur_radius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/MaskedBlur_radius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/MaskedBlur_radius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/OpacityMask_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/OpacityMask_mask.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Original_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Original_butterfly.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialBlur_angle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialBlur_angle1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialBlur_angle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialBlur_angle2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialBlur_angle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialBlur_angle3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_mask.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ZoomBlur_length1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ZoomBlur_length1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ZoomBlur_length2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ZoomBlur_length2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ZoomBlur_length3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ZoomBlur_length3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/coloroverlay.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/coloroverlay.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/gammaadjust.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/gammaadjust.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/huesaturation.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/huesaturation.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/leveladjust.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/leveladjust.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/opacitymask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/opacitymask.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/recursiveblur.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/recursiveblur.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/recursiveblur.vert.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/recursiveblur.vert.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/thresholdmask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/thresholdmask.frag.qsb -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/encodings/doc_utf-16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/encodings/doc_utf-16.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/059.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/064.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/067.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/163.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | %e; 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/170.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/170.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/182.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e;--> 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/003-1.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/004-1.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %e1; 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/022.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | ]]> 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/031-1.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | "> 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/049.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/049.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/050.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/050.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/051.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/051.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/071.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/082.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/088.xml: -------------------------------------------------------------------------------- 1 | 3 | "> 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/112.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/113.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/118.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | ] 6 | -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/10.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/10.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/11.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/11.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/12.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/12.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/13.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/13.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/14.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/14.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/15.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/15.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/16.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/16.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/17.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/17.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/18.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/18.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/19.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/19.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/20.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/20.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/21.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/21.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/22.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/22.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/23.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/23.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/24.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/24.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/25.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/25.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/26.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/26.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/27.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/27.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/28.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/28.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/29.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/29.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/30.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/30.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/31.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/31.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/32.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/32.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/33.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/33.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/34.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/34.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/35.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/35.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/36.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/36.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/37.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/37.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/40.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/40.bjson -------------------------------------------------------------------------------- /tests/auto/core5/serialization/json/invalidBinaryData/41.bjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/serialization/json/invalidBinaryData/41.bjson -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/doc/images/codecs-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/examples/core5/widgets/tools/codecs/doc/images/codecs-example.png -------------------------------------------------------------------------------- /examples/core5/widgets/tools/codecs/encodedfiles/iso-8859-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/examples/core5/widgets/tools/codecs/encodedfiles/iso-8859-15.txt -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ColorOverlay_color1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ColorOverlay_color1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ColorOverlay_color2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ColorOverlay_color2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ColorOverlay_color3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ColorOverlay_color3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_lightness1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_lightness1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_lightness2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_lightness2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_lightness3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_lightness3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_saturation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_saturation1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_saturation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_saturation2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Colorize_saturation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Colorize_saturation3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DirectionalBlur_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DirectionalBlur_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_butterfly.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_radius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_radius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_radius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_radius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_radius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_radius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_radius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_radius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_radius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_radius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_radius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_radius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_spread1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_spread1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_spread2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_spread2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_spread3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_spread3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_end1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_end1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_end2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_end2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_end3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_end3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_loops1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_loops1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_loops2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_loops2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_loops3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_loops3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/fastinnershadow.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/fastinnershadow.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/lineargradient.vert.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/lineargradient.vert.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/radialgradient.vert.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/radialgradient.vert.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/rectangularglow.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/rectangularglow.frag.qsb -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(cmake) 5 | add_subdirectory(core5) 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/060.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/078.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/181.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e;]]> 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/183.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/009.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/012.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/029.ent: -------------------------------------------------------------------------------- 1 | 2 | ]]> 3 | 4 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/026.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/027.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/042.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | A 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/069.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/072.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/073.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/074.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/075.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/077.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/080.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/114.xml: -------------------------------------------------------------------------------- 1 | 3 | "> 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Blend_bug_and_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Blend_bug_and_butterfly.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_bug.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ColorOverlay_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ColorOverlay_butterfly.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_angle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_angle1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_angle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_angle2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_angle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_angle3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DirectionalBlur_angle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DirectionalBlur_angle1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DirectionalBlur_angle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DirectionalBlur_angle2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DirectionalBlur_angle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DirectionalBlur_angle3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DirectionalBlur_length1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DirectionalBlur_length1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DirectionalBlur_length2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DirectionalBlur_length2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DirectionalBlur_length3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DirectionalBlur_length3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Displace_displacement1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Displace_displacement1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Displace_displacement2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Displace_displacement2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Displace_displacement3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Displace_displacement3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation4.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Glow-transparentBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Glow-transparentBorder.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_butterfly.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_butterfly.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_start1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_start1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_start2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_start2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_start3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_start3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_angle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_angle1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_angle2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_angle2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_angle3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_angle3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_default.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_withmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_withmask.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_applied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_applied.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_color1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_color1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_color2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_color2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_color3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_color3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_spread1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_spread1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_spread2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_spread2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_spread3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_spread3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_radius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_radius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_radius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_radius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_radius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_radius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_spread1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_spread1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_spread2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_spread2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_spread3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_spread3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/brightnesscontrast.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/brightnesscontrast.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/fastblur_internal.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/fastblur_internal.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/fastblur_internal.vert.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/fastblur_internal.vert.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/opacitymask_invert.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/opacitymask_invert.frag.qsb -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/058.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/065.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/066.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/145.xml.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/145.xml.ref -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/168.xml.ref -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/169.xml.ref -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/184.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/001.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/002.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/003.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/004.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.ent -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/007.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | X&e;Z 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.ent -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/008.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | X&e;Z 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/009.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/010.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.ent -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/014.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/012.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/025.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/031.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/032.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/053.xml: -------------------------------------------------------------------------------- 1 | "> 3 | 4 | 5 | ]> 6 | &e; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/056.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | A 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/078.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/079.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/083.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/096.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/099.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/100.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/104.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/109.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_gradient1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_gradient1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_gradient2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_gradient2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_gradient3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_gradient3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Desaturate_desaturation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Desaturate_desaturation1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Desaturate_desaturation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Desaturate_desaturation2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Desaturate_desaturation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Desaturate_desaturation3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma1_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma1_graph.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma2_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma2_graph.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma3_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GammaAdjust_gamma3_graph.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_lightness1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_lightness1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_lightness2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_lightness2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_lightness3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_lightness3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_saturation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_saturation1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_saturation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_saturation2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/HueSaturation_saturation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/HueSaturation_saturation3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_default_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_default_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma1_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma1_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma2_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma2_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma3_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_gamma3_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_gradient1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_gradient1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_gradient2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_gradient2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_gradient3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_gradient3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/Original_butterfly_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/Original_butterfly_black.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_gradient1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_gradient1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_gradient2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_gradient2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_gradient3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_gradient3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_threshold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_threshold1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_threshold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_threshold2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ThresholdMask_threshold3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ThresholdMask_threshold3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/conicalgradient_mask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/conicalgradient_mask.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/gaussianinnershadow.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/gaussianinnershadow.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/lineargradient_mask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/lineargradient_mask.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/radialgradient_mask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/radialgradient_mask.frag.qsb -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/encodings/doc_little-endian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/tests/auto/core5/sax/qxmlsimplereader/encodings/doc_little-endian.xml -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/068.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/071.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | &e1; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/091.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/153.xml: -------------------------------------------------------------------------------- 1 | 3 | "> 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/159.xml: -------------------------------------------------------------------------------- 1 | 3 | "> 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/160.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/178.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/015.ent: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/024.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/004.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/005.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/006.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/010.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/041.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/054.xml: -------------------------------------------------------------------------------- 1 | 3 | ]> 4 | 5 | 6 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/085.xml: -------------------------------------------------------------------------------- 1 | 3 | "> 4 | 5 | ]> 6 | &e; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/086.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | "> 5 | ]> 6 | &e; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/102.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/105.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/106.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/107.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_maskSource1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_maskSource1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_maskSource2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_maskSource2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow-transparentBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow-transparentBorder.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_horizontalOffset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_horizontalOffset1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_horizontalOffset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_horizontalOffset2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/DropShadow_horizontalOffset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/DropShadow_horizontalOffset3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/FastBlur_transparentBorder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/FastBlur_transparentBorder1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/FastBlur_transparentBorder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/FastBlur_transparentBorder2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_deviation_graph.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_maskSource1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_maskSource1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LinearGradient_maskSource2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LinearGradient_maskSource2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialBlur_horizontalOffset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialBlur_horizontalOffset1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialBlur_horizontalOffset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialBlur_horizontalOffset2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialBlur_horizontalOffset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialBlur_horizontalOffset3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_maskSource1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_maskSource1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_maskSource2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_maskSource2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_glowRadius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_glowRadius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_glowRadius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_glowRadius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_glowRadius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_glowRadius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ZoomBlur_horizontalOffset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ZoomBlur_horizontalOffset1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ZoomBlur_horizontalOffset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ZoomBlur_horizontalOffset2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ZoomBlur_horizontalOffset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ZoomBlur_horizontalOffset3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/conicalgradient_nomask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/conicalgradient_nomask.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/fastinnershadow_level0.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/fastinnershadow_level0.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/lineargradient_nomask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/lineargradient_nomask.frag.qsb -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/radialgradient_nomask.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/radialgradient_nomask.frag.qsb -------------------------------------------------------------------------------- /tests/auto/core5/io/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | # Generated from io.pro. 5 | 6 | add_subdirectory(qdebug) 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/162.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/058.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/087.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | &e; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/089.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | &e; 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/115.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | &e1; 7 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_brightness1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_brightness1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_brightness2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_brightness2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_brightness3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_brightness3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_horizontalOffset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_horizontalOffset1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_horizontalOffset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_horizontalOffset2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/InnerShadow_horizontalOffset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/InnerShadow_horizontalOffset3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_cornerRadius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_cornerRadius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_cornerRadius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_cornerRadius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RectangularGlow_cornerRadius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RectangularGlow_cornerRadius3.png -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/180.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/ext-sa/005.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | &e; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/not-sa/025.ent: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/043.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/094.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | -------------------------------------------------------------------------------- /tests/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | # Generated from benchmarks.pro. 5 | 6 | add_subdirectory(core5) 7 | -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/BrightnessContrast_contrast_graph.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_horizontalOffset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_horizontalOffset1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_horizontalOffset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_horizontalOffset2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/ConicalGradient_horizontalOffset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/ConicalGradient_horizontalOffset3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_transparentBorder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_transparentBorder1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/GaussianBlur_transparentBorder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/GaussianBlur_transparentBorder2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput2_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput2_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput3_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumInput3_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput2_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput2_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput3_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_maximumOutput3_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput2_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput2_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput3_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumInput3_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput2_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput2_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput3_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/LevelAdjust_minimumOutput3_curve.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalOffset1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalOffset1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalOffset2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalOffset2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalOffset3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalOffset3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalRadius1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalRadius1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalRadius2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalRadius2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalRadius3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RadialGradient_horizontalRadius3.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_transparentBorder1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_transparentBorder1.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/doc/images/RecursiveBlur_transparentBorder2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/doc/images/RecursiveBlur_transparentBorder2.png -------------------------------------------------------------------------------- /src/imports/graphicaleffects5/shaders_ng/gaussianinnershadow_shadow.frag.qsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qt5compat/dev/src/imports/graphicaleffects5/shaders_ng/gaussianinnershadow_shadow.frag.qsb -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/075.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | 8 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/082.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/024.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | "> 5 | ]> 6 | &e; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/033.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | # Generated from tools.pro. 5 | 6 | add_subdirectory(qlinkedlist) 7 | -------------------------------------------------------------------------------- /tests/benchmarks/core5/text/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | # Generated from text.pro. 5 | 6 | add_subdirectory(qregexp) 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/not-wf/sa/088.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 5 | ]> 6 | &e; 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/013.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/040.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/045.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/046.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | ]> 6 | 7 | -------------------------------------------------------------------------------- /tests/auto/core5/sax/qxmlsimplereader/xmldocs/valid/sa/111.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | ]> 5 | 6 | -------------------------------------------------------------------------------- /tests/benchmarks/core5/codecs/qtextcodec/qtextcodec.pro: -------------------------------------------------------------------------------- 1 | CONFIG += benchmark 2 | QT = core testlib core5compat 3 | 4 | TARGET = tst_bench_qtextcodec 5 | SOURCES += main.cpp 6 | 7 | TESTDATA = utf-8.txt 8 | --------------------------------------------------------------------------------