├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── COPYING-examples ├── CREDITS.md ├── README.md ├── conanfile.py ├── doc ├── .gitignore ├── 00-page-order.dox ├── Doxyfile ├── Doxyfile-mcss ├── Doxyfile-public ├── acme.dox ├── building-corrade.dox ├── codingstyle │ ├── comments.h │ ├── doxygen-code-block-workaround.h │ ├── doxygen-code-block.h │ ├── doxygen-code-inline.h │ ├── doxygen-configurationvalue.h │ ├── doxygen-debugoperator.h │ ├── doxygen-debugoperatorenum.h │ ├── doxygen-file.h │ ├── doxygen-function.h │ ├── doxygen-macro.h │ ├── doxygen-overload.h │ ├── doxygen-sections.h │ ├── doxygen-short.h │ ├── doxygen-thirdparty.h │ └── doxygen.h ├── conf-public.py ├── conf.py ├── corrade-changelog-old.dox ├── corrade-changelog.dox ├── corrade-cmake.dox ├── corrade-coding-style.dox ├── corrade-credits.dox ├── corrade-debuggers.dox ├── corrade-developers.dox ├── corrade-example-index.dox ├── corrade-singles.dox ├── cpu.dot ├── favicon.ico ├── interconnect.dox ├── json-pretty-printer.dox ├── main.dox ├── mainpage.dox ├── namespaces.dox ├── plugin-management.dox ├── resource-management.dox ├── snippets │ ├── CMakeLists.txt │ ├── Containers-cpp14.cpp │ ├── Containers-cpp17.cpp │ ├── Containers-stl.cpp │ ├── Containers-stl17.cpp │ ├── Containers-stl2a.cpp │ ├── Containers.cpp │ ├── Corrade-cpp17.cpp │ ├── Corrade.cpp │ ├── Interconnect.cpp │ ├── PluginManager.cpp │ ├── TestSuite.cpp │ ├── TestSuite2.cpp │ ├── TestSuite3.cpp │ ├── Utility.cpp │ ├── UtilityDebug-color-grayscale.ansi │ ├── UtilityDebug-color.ansi │ ├── acme-driver.h │ ├── android.cpp │ ├── containers-growable-array-sanitizer.ansi │ ├── testsuite-basic.ansi │ ├── testsuite-basic.cpp │ ├── testsuite-benchmark-custom.ansi │ ├── testsuite-benchmark-custom.cpp │ ├── testsuite-benchmark.ansi │ ├── testsuite-benchmark.cpp │ ├── testsuite-compare-string.ansi │ ├── testsuite-compare-string.cpp │ ├── testsuite-description-source-location.ansi │ ├── testsuite-description-source-location.cpp │ ├── testsuite-instanced.ansi │ ├── testsuite-instanced.cpp │ ├── testsuite-iteration.ansi │ ├── testsuite-iteration.cpp │ ├── testsuite-repeated.ansi │ ├── testsuite-repeated.cpp │ ├── testsuite-save-diagnostic.ansi │ ├── testsuite-save-diagnostic.cpp │ ├── testsuite-templated.ansi │ ├── testsuite-templated.cpp │ ├── testsuite.ansi │ └── testsuite.cmake ├── stl.tag └── testsuite.dox ├── modules ├── CMakeLists.txt ├── CorradeConfig.cmake ├── CorradeLibSuffix.cmake ├── FindCorrade.cmake ├── FindNodeJs.cmake └── UseCorrade.cmake ├── package ├── .gitignore ├── archlinux │ ├── .gitignore │ ├── .kateconfig │ ├── PKGBUILD │ ├── PKGBUILD-android-arm64 │ ├── PKGBUILD-clang │ ├── PKGBUILD-clang-addresssanitizer │ ├── PKGBUILD-clang-analyzer │ ├── PKGBUILD-clang-libc++ │ ├── PKGBUILD-clang-threadsanitizer │ ├── PKGBUILD-coverage │ ├── PKGBUILD-emscripten-wasm │ ├── PKGBUILD-gcc48 │ ├── PKGBUILD-gcc5 │ ├── PKGBUILD-mingw-w64 │ ├── corrade-git │ │ ├── .gitignore │ │ └── PKGBUILD │ └── corrade │ │ └── PKGBUILD ├── ci │ ├── android-x86.sh │ ├── appveyor-cache-reset.txt │ ├── appveyor-desktop-arm64.bat │ ├── appveyor-desktop-mingw.bat │ ├── appveyor-desktop.bat │ ├── appveyor-rt.bat │ ├── appveyor.yml │ ├── circleci.yml │ ├── emscripten.sh │ ├── ios-simulator.sh │ └── unix-desktop.sh ├── conan │ ├── .gitignore │ ├── CMakeLists.txt │ └── test_package │ │ ├── CMakeLists.txt │ │ ├── conanfile.py │ │ └── test_package.cpp ├── debian │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── corrade-dev.install │ ├── corrade.install │ ├── rules │ └── source │ │ └── format ├── gentoo │ └── dev-libs │ │ └── corrade │ │ ├── Manifest │ │ └── corrade-9999.ebuild ├── git │ └── README.md ├── homebrew │ └── corrade.rb ├── msys │ ├── .gitattributes │ ├── PKGBUILD │ └── corrade │ │ └── PKGBUILD └── rpm │ ├── build.sh │ └── corrade.spec └── src ├── CMakeLists.txt ├── Corrade ├── CMakeLists.txt ├── Containers │ ├── AnyReference.h │ ├── Array.h │ ├── ArrayTuple.cpp │ ├── ArrayTuple.h │ ├── ArrayView.h │ ├── ArrayViewStl.h │ ├── ArrayViewStlSpan.h │ ├── BigEnumSet.h │ ├── BigEnumSet.hpp │ ├── BitArray.cpp │ ├── BitArray.h │ ├── BitArrayView.cpp │ ├── BitArrayView.h │ ├── CMakeLists.txt │ ├── Containers.h │ ├── EnumSet.h │ ├── EnumSet.hpp │ ├── Function.h │ ├── GrowableArray.h │ ├── Implementation │ │ └── RawForwardList.h │ ├── Iterable.h │ ├── LinkedList.h │ ├── MoveReference.h │ ├── Optional.h │ ├── OptionalStl.h │ ├── Pair.h │ ├── PairStl.h │ ├── Pointer.h │ ├── PointerStl.h │ ├── Reference.h │ ├── ReferenceStl.h │ ├── ScopeGuard.h │ ├── StaticArray.h │ ├── StridedArrayView.h │ ├── StridedArrayViewStl.h │ ├── StridedBitArrayView.h │ ├── StridedDimensions.h │ ├── String.cpp │ ├── String.h │ ├── StringIterable.cpp │ ├── StringIterable.h │ ├── StringStl.cpp │ ├── StringStl.h │ ├── StringStlHash.h │ ├── StringStlView.h │ ├── StringView.cpp │ ├── StringView.h │ ├── StructuredBindings.h │ ├── Tags.h │ ├── Test │ │ ├── AnyReferenceTest.cpp │ │ ├── ArrayStlSpanTest.cpp │ │ ├── ArrayTest.cpp │ │ ├── ArrayTupleTest.cpp │ │ ├── ArrayViewStlSpanTest.cpp │ │ ├── ArrayViewStlTest.cpp │ │ ├── ArrayViewTest.cpp │ │ ├── BigEnumSetTest.cpp │ │ ├── BitArrayTest.cpp │ │ ├── BitArrayViewBenchmark.cpp │ │ ├── BitArrayViewTest.cpp │ │ ├── BitArrayViewTest.h │ │ ├── CMakeLists.txt │ │ ├── EnumSetTest.cpp │ │ ├── FunctionBenchmark.cpp │ │ ├── FunctionTest.cpp │ │ ├── GrowableArraySanitizerFailTest.cpp │ │ ├── GrowableArrayTest.cpp │ │ ├── IterableTest.cpp │ │ ├── LinkedListTest.cpp │ │ ├── MoveReferenceTest.cpp │ │ ├── OptionalStlTest.cpp │ │ ├── OptionalTest.cpp │ │ ├── PairCpp14Test.cpp │ │ ├── PairCpp17Test.cpp │ │ ├── PairStlTest.cpp │ │ ├── PairTest.cpp │ │ ├── PointerStlTest.cpp │ │ ├── PointerTest.cpp │ │ ├── RawForwardListTest.cpp │ │ ├── ReferenceStlTest.cpp │ │ ├── ReferenceTest.cpp │ │ ├── ScopeGuardTest.cpp │ │ ├── SequenceHelpersTest.cpp │ │ ├── StaticArrayCpp17Test.cpp │ │ ├── StaticArrayStlSpanTest.cpp │ │ ├── StaticArrayTest.cpp │ │ ├── StaticArrayViewCpp17Test.cpp │ │ ├── StaticArrayViewStlSpanTest.cpp │ │ ├── StaticArrayViewStlTest.cpp │ │ ├── StaticArrayViewTest.cpp │ │ ├── StridedArrayViewStlTest.cpp │ │ ├── StridedArrayViewTest.cpp │ │ ├── StridedBitArrayViewTest.cpp │ │ ├── StridedDimensionsCpp17Test.cpp │ │ ├── StridedDimensionsTest.cpp │ │ ├── StringIterableTest.cpp │ │ ├── StringStlTest.cpp │ │ ├── StringStlViewTest.cpp │ │ ├── StringTest.cpp │ │ ├── StringTestFiles │ │ │ └── lorem-ipsum.txt │ │ ├── StringViewBenchmark.cpp │ │ ├── StringViewTest.cpp │ │ ├── StringViewTest.h │ │ ├── TripleCpp14Test.cpp │ │ ├── TripleCpp17Test.cpp │ │ ├── TripleStlTest.cpp │ │ ├── TripleTest.cpp │ │ └── configure.h.cmake │ ├── Triple.h │ ├── TripleStl.h │ ├── constructHelpers.h │ ├── initializeHelpers.h │ ├── iterableHelpers.h │ └── sequenceHelpers.h ├── Corrade.h ├── CorradeMain.cpp ├── Cpu.cpp ├── Cpu.h ├── Interconnect │ ├── CMakeLists.txt │ ├── Connection.cpp │ ├── Connection.h │ ├── Emitter.cpp │ ├── Emitter.h │ ├── Implementation │ │ └── ReceiverConnection.h │ ├── Interconnect.h │ ├── Receiver.cpp │ ├── Receiver.h │ ├── StateMachine.h │ ├── Test │ │ ├── Benchmark.cpp │ │ ├── CMakeLists.txt │ │ ├── EmitterLibrary.cpp │ │ ├── EmitterLibrary.h │ │ ├── LibraryTest.cpp │ │ ├── StateMachineTest.cpp │ │ └── Test.cpp │ └── visibility.h ├── PluginManager │ ├── AbstractManager.cpp │ ├── AbstractManager.h │ ├── AbstractManagingPlugin.h │ ├── AbstractPlugin.cpp │ ├── AbstractPlugin.h │ ├── CMakeLists.txt │ ├── Implementation │ │ ├── Plugin.h │ │ └── configure.h.cmake │ ├── Manager.h │ ├── Manager.hpp │ ├── PluginManager.h │ ├── PluginMetadata.cpp │ ├── PluginMetadata.h │ ├── Test │ │ ├── AbstractAnimal.cpp │ │ ├── AbstractAnimal.h │ │ ├── AbstractCustomSuffix.cpp │ │ ├── AbstractCustomSuffix.h │ │ ├── AbstractDeletable.cpp │ │ ├── AbstractDeletable.h │ │ ├── AbstractDisabledMetadata.cpp │ │ ├── AbstractDisabledMetadata.h │ │ ├── AbstractFood.cpp │ │ ├── AbstractFood.h │ │ ├── AbstractGeneratedMetadata.h │ │ ├── AbstractPluginTest.cpp │ │ ├── AbstractWrongPlugin.cpp │ │ ├── AbstractWrongPlugin.h │ │ ├── CMakeLists.txt │ │ ├── DuplicateStaticPluginLibrary.cpp │ │ ├── DuplicateStaticPluginTest.cpp │ │ ├── GlobalStateAcrossLibrariesLibrary.cpp │ │ ├── GlobalStateAcrossLibrariesTest.cpp │ │ ├── ImportStaticTest.cpp │ │ ├── ManagerInitFiniTest.cpp │ │ ├── ManagerTest.cpp │ │ ├── animals │ │ │ ├── Bulldog.conf │ │ │ ├── Bulldog.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Canary.conf │ │ │ ├── Canary.cpp │ │ │ ├── Canary.h │ │ │ ├── Dird.conf │ │ │ ├── Dird.cpp │ │ │ ├── Dog.conf │ │ │ ├── Dog.cpp │ │ │ ├── Dog.h │ │ │ ├── PitBull.conf │ │ │ ├── PitBull.cpp │ │ │ ├── Snail.conf │ │ │ └── Snail.cpp │ │ ├── configure.h.cmake │ │ ├── custom-suffix │ │ │ ├── CMakeLists.txt │ │ │ ├── CustomSuffix.cpp │ │ │ ├── CustomSuffix.modconf │ │ │ ├── CustomSuffixStatic.cpp │ │ │ └── CustomSuffixStatic.modconf │ │ ├── deletable │ │ │ ├── CMakeLists.txt │ │ │ ├── Deletable.conf │ │ │ └── Deletable.cpp │ │ ├── disabled-metadata │ │ │ ├── CMakeLists.txt │ │ │ ├── DisabledMetadata.cpp │ │ │ └── DisabledMetadataStatic.cpp │ │ ├── doggo │ │ │ ├── CMakeLists.txt │ │ │ ├── Doggo.conf │ │ │ └── Doggo.cpp │ │ ├── food │ │ │ ├── CMakeLists.txt │ │ │ ├── HotDog.conf │ │ │ ├── HotDog.cpp │ │ │ ├── HotDogWithSnail.conf │ │ │ ├── OldBread.conf │ │ │ ├── OldBread.cpp │ │ │ ├── RottenTomato.conf │ │ │ └── RottenTomato.cpp │ │ ├── generated-metadata │ │ │ ├── CMakeLists.txt │ │ │ ├── GeneratedMetadataDynamic.conf │ │ │ ├── GeneratedMetadataDynamic.cpp │ │ │ ├── GeneratedMetadataStatic.conf │ │ │ └── GeneratedMetadataStatic.cpp │ │ ├── init-fini │ │ │ ├── CMakeLists.txt │ │ │ ├── InitFini.h │ │ │ ├── InitFiniDynamic.conf │ │ │ ├── InitFiniDynamic.cpp │ │ │ ├── InitFiniStatic.conf │ │ │ ├── InitFiniStatic.cpp │ │ │ └── InitFiniStatic.h │ │ ├── wrong-metadata │ │ │ ├── CMakeLists.txt │ │ │ ├── WrongMetadata.conf │ │ │ ├── WrongMetadata.cpp │ │ │ └── WrongMetadata.h │ │ └── wrong │ │ │ ├── CMakeLists.txt │ │ │ ├── MissingLibraryDependency.cpp │ │ │ ├── MissingLibraryDependencyLibrary.cpp │ │ │ ├── NoPluginFinalizer.cpp │ │ │ ├── NoPluginInitializer.cpp │ │ │ ├── NoPluginInstancer.cpp │ │ │ ├── NoPluginInterface.cpp │ │ │ └── NoPluginVersion.cpp │ └── visibility.h ├── Tags.h ├── Test │ ├── CMakeLists.txt │ ├── CppStandardTest.cpp │ ├── CpuTest.cpp │ ├── CpuTestExternalLibrary.cpp │ ├── CpuTestExternalLibrary.h │ ├── MainTest.cpp │ ├── TagsTest.cpp │ ├── TargetTest.cpp │ ├── VersionTest.cpp │ └── configure.h.cmake ├── TestSuite │ ├── AdbRunner.sh │ ├── CMakeLists.txt │ ├── Comparator.cpp │ ├── Comparator.h │ ├── Compare │ │ ├── CMakeLists.txt │ │ ├── Container.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── FileToString.cpp │ │ ├── FileToString.h │ │ ├── FloatingPoint.cpp │ │ ├── FloatingPoint.h │ │ ├── Implementation │ │ │ └── Diff.h │ │ ├── Numeric.h │ │ ├── SortedContainer.h │ │ ├── String.cpp │ │ ├── String.h │ │ ├── StringToFile.cpp │ │ ├── StringToFile.h │ │ └── Test │ │ │ ├── CMakeLists.txt │ │ │ ├── ContainerTest.cpp │ │ │ ├── DiffTest.cpp │ │ │ ├── FileTest.cpp │ │ │ ├── FileTestFiles │ │ │ ├── .kateconfig │ │ │ ├── base.txt │ │ │ ├── different.txt │ │ │ ├── empty.txt │ │ │ ├── hýždě.txt │ │ │ └── smaller.txt │ │ │ ├── FileToStringTest.cpp │ │ │ ├── FloatingPointTest.cpp │ │ │ ├── NumericTest.cpp │ │ │ ├── SortedContainerTest.cpp │ │ │ ├── StringTest.cpp │ │ │ ├── StringToFileTest.cpp │ │ │ └── configure.h.cmake │ ├── EmscriptenRunner.html.in │ ├── Implementation │ │ ├── BenchmarkCounters.h │ │ └── BenchmarkStats.h │ ├── Test │ │ ├── ArgumentsTest.cpp │ │ ├── BenchmarkStatsTest.cpp │ │ ├── BundledFilesTest.cpp │ │ ├── BundledFilesTestFiles │ │ │ ├── .gitattributes │ │ │ ├── a.txt │ │ │ ├── b.txt │ │ │ ├── c.txt │ │ │ └── d.txt │ │ ├── CMakeLists.txt │ │ ├── ComparatorTest.cpp │ │ ├── FailingTest.cpp │ │ ├── TestCaseDescriptionSourceLocationTest.cpp │ │ ├── TestCaseDescriptionSourceLocationTestFiles │ │ │ ├── noSupport.txt │ │ │ └── test.txt │ │ ├── TesterTest.cpp │ │ ├── TesterTestFiles │ │ │ ├── .gitattributes │ │ │ ├── abortOnFail.txt │ │ │ ├── abortOnFailSkip.txt │ │ │ ├── benchmarkCpuClock.txt │ │ │ ├── benchmarkCpuCycles.txt │ │ │ ├── benchmarkCpuScalingWarning.txt │ │ │ ├── benchmarkCpuScalingWarningVerbose.txt │ │ │ ├── benchmarkCpuScalingWarningVerboseAndroid.txt │ │ │ ├── benchmarkDebugBuildNote.txt │ │ │ ├── benchmarkDiscardAll.txt │ │ │ ├── benchmarkWallClock.txt │ │ │ ├── compareMessageFailed.txt │ │ │ ├── compareMessageVerboseDisabled.txt │ │ │ ├── compareMessageVerboseEnabled.txt │ │ │ ├── compareMessageXfail.txt │ │ │ ├── cpu-governor-performance.txt │ │ │ ├── cpu-governor-powersave.txt │ │ │ ├── noCatch.txt │ │ │ ├── noXfail.txt │ │ │ ├── repeatAll.txt │ │ │ ├── repeatEvery.txt │ │ │ ├── saveDiagnosticAbortOnFail.txt │ │ │ ├── saveDiagnosticFailedDisabled.txt │ │ │ ├── saveDiagnosticFailedEnabled.txt │ │ │ ├── saveDiagnosticSucceededDisabled.txt │ │ │ ├── saveDiagnosticSucceededEnabled.txt │ │ │ ├── saveDiagnosticVerboseDisabled.txt │ │ │ ├── saveDiagnosticVerboseEnabled.txt │ │ │ ├── saveDiagnosticXfail.txt │ │ │ ├── saveDiagnosticXpassDisabled.txt │ │ │ ├── saveDiagnosticXpassEnabled.txt │ │ │ ├── shuffleOne.txt │ │ │ ├── skipBenchmarks.txt │ │ │ ├── skipOnly.txt │ │ │ ├── skipTests.txt │ │ │ ├── test.txt │ │ │ └── testName.txt │ │ └── configure.h.cmake │ ├── TestSuite.h │ ├── Tester.cpp │ ├── Tester.h │ ├── XCTestRunner.mm.in │ └── visibility.h ├── Utility │ ├── AbstractHash.h │ ├── Algorithms.cpp │ ├── Algorithms.h │ ├── AndroidLogStreamBuffer.cpp │ ├── AndroidLogStreamBuffer.h │ ├── Arguments.cpp │ ├── Arguments.h │ ├── Assert.h │ ├── BitAlgorithms.cpp │ ├── BitAlgorithms.h │ ├── CMakeLists.txt │ ├── Configuration.cpp │ ├── Configuration.h │ ├── ConfigurationGroup.cpp │ ├── ConfigurationGroup.h │ ├── ConfigurationValue.cpp │ ├── ConfigurationValue.h │ ├── Debug.cpp │ ├── Debug.h │ ├── DebugAssert.h │ ├── DebugStl.h │ ├── DebugStlStringView.h │ ├── Directory.cpp │ ├── Directory.h │ ├── Endianness.h │ ├── EndiannessBatch.h │ ├── FileWatcher.cpp │ ├── FileWatcher.h │ ├── Format.cpp │ ├── Format.h │ ├── FormatStl.h │ ├── FormatStlStringView.h │ ├── Implementation │ │ ├── ErrorString.cpp │ │ ├── ErrorString.h │ │ ├── Resource.h │ │ ├── ResourceCompile.h │ │ ├── WindowsWeakSymbol.cpp │ │ ├── WindowsWeakSymbol.h │ │ ├── configure.h.cmake │ │ ├── cpu.h │ │ └── tweakable.h │ ├── IntrinsicsAvx.h │ ├── IntrinsicsSse2.h │ ├── IntrinsicsSse3.h │ ├── IntrinsicsSse4.h │ ├── IntrinsicsSsse3.h │ ├── Json.cpp │ ├── Json.h │ ├── JsonWriter.cpp │ ├── JsonWriter.h │ ├── Macros.h │ ├── Math.h │ ├── Memory.h │ ├── Move.h │ ├── MurmurHash2.cpp │ ├── MurmurHash2.h │ ├── Path.cpp │ ├── Path.h │ ├── Resource.cpp │ ├── Resource.h │ ├── Sha1.cpp │ ├── Sha1.h │ ├── StlForwardArray.h │ ├── StlForwardString.h │ ├── StlForwardTuple.h │ ├── StlForwardTupleSizeElement.h │ ├── StlForwardVector.h │ ├── StlMath.h │ ├── String.cpp │ ├── String.h │ ├── System.cpp │ ├── System.h │ ├── Test │ │ ├── .gitattributes │ │ ├── AlgorithmsTest.cpp │ │ ├── ArgumentsTest.cpp │ │ ├── AssertDisabledTest.cpp │ │ ├── AssertGracefulTest.cpp │ │ ├── AssertTest.cpp │ │ ├── AssertTestOverrides.h │ │ ├── BitAlgorithmsTest.cpp │ │ ├── CMakeLists.txt │ │ ├── ConfigurationTest.cpp │ │ ├── ConfigurationTestFiles │ │ │ ├── .gitattributes │ │ │ ├── bom.conf │ │ │ ├── comments-saved.conf │ │ │ ├── comments.conf │ │ │ ├── eol-mixed.conf │ │ │ ├── eol-unix.conf │ │ │ ├── eol-windows.conf │ │ │ ├── hierarchic-empty-group.conf │ │ │ ├── hierarchic-empty-subgroup.conf │ │ │ ├── hierarchic-missing-bracket.conf │ │ │ ├── hierarchic-modified.conf │ │ │ ├── hierarchic-shortcuts-modified.conf │ │ │ ├── hierarchic-shortcuts.conf │ │ │ ├── hierarchic.conf │ │ │ ├── hýždě.conf │ │ │ ├── iterate-modified.conf │ │ │ ├── iterate.conf │ │ │ ├── missing-equals.conf │ │ │ ├── missing-multiline-quote.conf │ │ │ ├── missing-quote.conf │ │ │ ├── multiLine-crlf-saved.conf │ │ │ ├── multiLine-crlf.conf │ │ │ ├── multiLine-saved.conf │ │ │ ├── multiLine.conf │ │ │ ├── parse-modified.conf │ │ │ ├── parse.conf │ │ │ ├── whitespaces-saved.conf │ │ │ └── whitespaces.conf │ │ ├── ConfigurationValueTest.cpp │ │ ├── DebugStlCpp17Test.cpp │ │ ├── DebugTest.cpp │ │ ├── DirectoryTest.cpp │ │ ├── EndiannessTest.cpp │ │ ├── ErrorStringTest.cpp │ │ ├── FatalTest.cpp │ │ ├── FileWatcherTest.cpp │ │ ├── FormatBenchmark.cpp │ │ ├── FormatStlStringViewTest.cpp │ │ ├── FormatStlTest.cpp │ │ ├── FormatTest.cpp │ │ ├── GlobalStateAcrossLibrariesLibrary.cpp │ │ ├── GlobalStateAcrossLibrariesLibrary.h │ │ ├── GlobalStateAcrossLibrariesTest.cpp │ │ ├── HashDigestTest.cpp │ │ ├── JsonTest.cpp │ │ ├── JsonTestFiles │ │ │ ├── error.json │ │ │ └── parse-error.json │ │ ├── JsonWriterTest.cpp │ │ ├── MacrosCpp14Test.cpp │ │ ├── MacrosCpp17Test.cpp │ │ ├── MacrosCpp20Test.cpp │ │ ├── MacrosTest.cpp │ │ ├── MathTest.cpp │ │ ├── MemoryTest.cpp │ │ ├── MoveTest.cpp │ │ ├── MurmurHash2Test.cpp │ │ ├── PathTest.cpp │ │ ├── PathTestFiles │ │ │ ├── dir │ │ │ │ └── dummy │ │ │ └── file │ │ ├── PathTestFilesSymlink │ │ │ ├── dir-symlink │ │ │ ├── dir │ │ │ │ └── dummy │ │ │ ├── file │ │ │ └── file-symlink │ │ ├── PathTestFilesUtf8 │ │ │ ├── hýždě │ │ │ └── šňůra │ │ │ │ ├── dummy │ │ │ │ └── klíče │ │ ├── ResourceCompileTest.cpp │ │ ├── ResourceStaticTest.cpp │ │ ├── ResourceTest.cpp │ │ ├── ResourceTestFiles │ │ │ ├── .gitattributes │ │ │ ├── 17bytes-33.bin │ │ │ ├── 17bytes-66.bin │ │ │ ├── 55bytes-66.bin │ │ │ ├── 64bytes-33.bin │ │ │ ├── compiled-alignment-larger-than-data-size.cpp │ │ │ ├── compiled-empty.cpp │ │ │ ├── compiled-nothing.cpp │ │ │ ├── compiled-null-terminated-aligned.cpp │ │ │ ├── compiled-null-terminated-last-file.cpp │ │ │ ├── compiled-single-empty.cpp │ │ │ ├── compiled-single.cpp │ │ │ ├── compiled-unicode.cpp │ │ │ ├── compiled.cpp │ │ │ ├── consequence.bin │ │ │ ├── consequence2.txt │ │ │ ├── empty.bin │ │ │ ├── hýždě.bin │ │ │ ├── hýždě.conf │ │ │ ├── name with spaces.txt │ │ │ ├── predisposition.bin │ │ │ ├── predisposition2.txt │ │ │ ├── resources-alignment-larger-than-data-size.conf │ │ │ ├── resources-empty-alias.conf │ │ │ ├── resources-empty-file.conf │ │ │ ├── resources-empty-filename.conf │ │ │ ├── resources-empty-group.conf │ │ │ ├── resources-no-group.conf │ │ │ ├── resources-nonexistent.conf │ │ │ ├── resources-nothing.conf │ │ │ ├── resources-npot-align.conf │ │ │ ├── resources-npot-global-align.conf │ │ │ ├── resources-null-terminated-aligned.conf │ │ │ ├── resources-null-terminated-last-file.conf │ │ │ ├── resources-overridden-different.conf │ │ │ ├── resources-overridden-none.conf │ │ │ ├── resources-overridden-nonexistent-file.conf │ │ │ ├── resources-overridden.conf │ │ │ ├── resources-spaces.conf │ │ │ ├── resources-too-large-align.conf │ │ │ ├── resources-too-large-global-align.conf │ │ │ ├── resources-zero-align.conf │ │ │ ├── resources-zero-global-align.conf │ │ │ └── resources.conf │ │ ├── Sha1Test.cpp │ │ ├── Sha1Test.py │ │ ├── StlForwardArrayTest.cpp │ │ ├── StlForwardStringTest.cpp │ │ ├── StlForwardTupleSizeElementTest.cpp │ │ ├── StlForwardTupleTest.cpp │ │ ├── StlForwardVectorTest.cpp │ │ ├── StlMathTest.cpp │ │ ├── StringBenchmark.cpp │ │ ├── StringTest.cpp │ │ ├── StringTest.h │ │ ├── SystemTest.cpp │ │ ├── TweakableIntegrationTest.cpp │ │ ├── TweakableParserTest.cpp │ │ ├── TweakableTest.cpp │ │ ├── TypeTraitsTest.cpp │ │ ├── UnicodeTest.cpp │ │ ├── configure.h.cmake │ │ ├── cpuVariantHelpers.h │ │ └── nodeJsVersionHelpers.h │ ├── Tweakable.cpp │ ├── Tweakable.h │ ├── TweakableParser.cpp │ ├── TweakableParser.h │ ├── TypeTraits.h │ ├── Unicode.cpp │ ├── Unicode.h │ ├── Utility.h │ ├── Utility.js.in │ ├── VisibilityMacros.h │ ├── rc.cpp │ ├── utilities.h │ └── visibility.h ├── configure.h.cmake └── version.h.cmake ├── acme ├── .coveragerc ├── .gitignore ├── acme.py └── test │ ├── __init__.py │ ├── bom │ └── input.h │ ├── comments │ ├── expected.h │ └── input.h │ ├── includes │ ├── Dir │ │ ├── Absolute.h │ │ ├── Bla.h │ │ └── Relative.h │ ├── Local.h │ ├── Oof.h │ ├── expected.h │ └── input.h │ ├── no_copyright_include_placeholders │ ├── expected.h │ └── input.h │ ├── pragmas │ ├── expected.h │ ├── input.h │ └── some │ │ └── path │ │ └── included.h │ ├── preprocessor │ ├── expected.h │ └── input.h │ ├── revision_stats │ ├── .gitignore │ ├── expected.h │ ├── input.h │ └── output │ │ └── dummy │ └── test.py ├── debuggers ├── CMakeLists.txt ├── gdb │ └── corrade │ │ ├── __init__.py │ │ └── printers.py └── natvis │ └── corrade.natvis ├── dummy.cpp ├── examples ├── CMakeLists.txt ├── interconnect │ ├── CMakeLists.txt │ └── main.cpp ├── json │ ├── CMakeLists.txt │ └── main.cpp ├── pluginmanager │ ├── AbstractAnimal.h │ ├── CMakeLists.txt │ ├── Canary.conf │ ├── Canary.cpp │ ├── Dog.conf │ ├── Dog.cpp │ └── main.cpp ├── resource │ ├── CMakeLists.txt │ ├── icon.png │ ├── licenses │ │ └── en.txt │ ├── main.cpp │ └── resources.conf └── testsuite │ ├── CMakeLists.txt │ └── MyTest.cpp └── singles ├── CorradeArray.h ├── CorradeArrayView.h ├── CorradeCpu.hpp ├── CorradeEnumSet.h ├── CorradeFunction.h ├── CorradeGrowableArray.h ├── CorradeOptional.h ├── CorradePair.h ├── CorradePointer.h ├── CorradeReference.h ├── CorradeScopeGuard.h ├── CorradeStlForwardArray.h ├── CorradeStlForwardString.h ├── CorradeStlForwardTuple.h ├── CorradeStlForwardVector.h ├── CorradeStlMath.h ├── CorradeStridedArrayView.h ├── CorradeString.hpp ├── CorradeTriple.h ├── assert.h ├── base.h └── generate.sh /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | ../package/ci/circleci.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/COPYING-examples -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/CREDITS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/README.md -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/conanfile.py -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /doc/00-page-order.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/00-page-order.dox -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Doxyfile-mcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/Doxyfile-mcss -------------------------------------------------------------------------------- /doc/Doxyfile-public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/Doxyfile-public -------------------------------------------------------------------------------- /doc/acme.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/acme.dox -------------------------------------------------------------------------------- /doc/building-corrade.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/building-corrade.dox -------------------------------------------------------------------------------- /doc/codingstyle/comments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/comments.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-code-block-workaround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-code-block-workaround.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-code-block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-code-block.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-code-inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-code-inline.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-configurationvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-configurationvalue.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-debugoperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-debugoperator.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-debugoperatorenum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-debugoperatorenum.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-file.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-function.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-macro.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-overload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-overload.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-sections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-sections.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-short.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-short.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen-thirdparty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen-thirdparty.h -------------------------------------------------------------------------------- /doc/codingstyle/doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/codingstyle/doxygen.h -------------------------------------------------------------------------------- /doc/conf-public.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/conf-public.py -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/corrade-changelog-old.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-changelog-old.dox -------------------------------------------------------------------------------- /doc/corrade-changelog.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-changelog.dox -------------------------------------------------------------------------------- /doc/corrade-cmake.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-cmake.dox -------------------------------------------------------------------------------- /doc/corrade-coding-style.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-coding-style.dox -------------------------------------------------------------------------------- /doc/corrade-credits.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-credits.dox -------------------------------------------------------------------------------- /doc/corrade-debuggers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-debuggers.dox -------------------------------------------------------------------------------- /doc/corrade-developers.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-developers.dox -------------------------------------------------------------------------------- /doc/corrade-example-index.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-example-index.dox -------------------------------------------------------------------------------- /doc/corrade-singles.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/corrade-singles.dox -------------------------------------------------------------------------------- /doc/cpu.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/cpu.dot -------------------------------------------------------------------------------- /doc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/favicon.ico -------------------------------------------------------------------------------- /doc/interconnect.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/interconnect.dox -------------------------------------------------------------------------------- /doc/json-pretty-printer.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/json-pretty-printer.dox -------------------------------------------------------------------------------- /doc/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/main.dox -------------------------------------------------------------------------------- /doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/mainpage.dox -------------------------------------------------------------------------------- /doc/namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/namespaces.dox -------------------------------------------------------------------------------- /doc/plugin-management.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/plugin-management.dox -------------------------------------------------------------------------------- /doc/resource-management.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/resource-management.dox -------------------------------------------------------------------------------- /doc/snippets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/CMakeLists.txt -------------------------------------------------------------------------------- /doc/snippets/Containers-cpp14.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Containers-cpp14.cpp -------------------------------------------------------------------------------- /doc/snippets/Containers-cpp17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Containers-cpp17.cpp -------------------------------------------------------------------------------- /doc/snippets/Containers-stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Containers-stl.cpp -------------------------------------------------------------------------------- /doc/snippets/Containers-stl17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Containers-stl17.cpp -------------------------------------------------------------------------------- /doc/snippets/Containers-stl2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Containers-stl2a.cpp -------------------------------------------------------------------------------- /doc/snippets/Containers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Containers.cpp -------------------------------------------------------------------------------- /doc/snippets/Corrade-cpp17.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Corrade-cpp17.cpp -------------------------------------------------------------------------------- /doc/snippets/Corrade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Corrade.cpp -------------------------------------------------------------------------------- /doc/snippets/Interconnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Interconnect.cpp -------------------------------------------------------------------------------- /doc/snippets/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/PluginManager.cpp -------------------------------------------------------------------------------- /doc/snippets/TestSuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/TestSuite.cpp -------------------------------------------------------------------------------- /doc/snippets/TestSuite2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/TestSuite2.cpp -------------------------------------------------------------------------------- /doc/snippets/TestSuite3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/TestSuite3.cpp -------------------------------------------------------------------------------- /doc/snippets/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/Utility.cpp -------------------------------------------------------------------------------- /doc/snippets/UtilityDebug-color-grayscale.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/UtilityDebug-color-grayscale.ansi -------------------------------------------------------------------------------- /doc/snippets/UtilityDebug-color.ansi: -------------------------------------------------------------------------------- 1 | Success! Everything is fine. 2 | -------------------------------------------------------------------------------- /doc/snippets/acme-driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/acme-driver.h -------------------------------------------------------------------------------- /doc/snippets/android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/android.cpp -------------------------------------------------------------------------------- /doc/snippets/containers-growable-array-sanitizer.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/containers-growable-array-sanitizer.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-basic.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-basic.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-basic.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-benchmark-custom.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-benchmark-custom.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-benchmark-custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-benchmark-custom.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-benchmark.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-benchmark.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-benchmark.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-compare-string.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-compare-string.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-compare-string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-compare-string.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-description-source-location.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-description-source-location.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-description-source-location.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-description-source-location.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-instanced.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-instanced.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-instanced.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-instanced.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-iteration.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-iteration.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-iteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-iteration.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-repeated.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-repeated.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-repeated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-repeated.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-save-diagnostic.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-save-diagnostic.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-save-diagnostic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-save-diagnostic.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite-templated.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-templated.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite-templated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite-templated.cpp -------------------------------------------------------------------------------- /doc/snippets/testsuite.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite.ansi -------------------------------------------------------------------------------- /doc/snippets/testsuite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/snippets/testsuite.cmake -------------------------------------------------------------------------------- /doc/stl.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/stl.tag -------------------------------------------------------------------------------- /doc/testsuite.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/doc/testsuite.dox -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CorradeConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/modules/CorradeConfig.cmake -------------------------------------------------------------------------------- /modules/CorradeLibSuffix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/modules/CorradeLibSuffix.cmake -------------------------------------------------------------------------------- /modules/FindCorrade.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/modules/FindCorrade.cmake -------------------------------------------------------------------------------- /modules/FindNodeJs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/modules/FindNodeJs.cmake -------------------------------------------------------------------------------- /modules/UseCorrade.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/modules/UseCorrade.cmake -------------------------------------------------------------------------------- /package/.gitignore: -------------------------------------------------------------------------------- 1 | download-obs 2 | corrade-*.tar.gz 3 | source-arch-*.sql 4 | -------------------------------------------------------------------------------- /package/archlinux/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | *.src.tar.gz 3 | -------------------------------------------------------------------------------- /package/archlinux/.kateconfig: -------------------------------------------------------------------------------- 1 | kate-wildcard(PKGBUILD*): hl bash; 2 | -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-android-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-android-arm64 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-clang -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-addresssanitizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-clang-addresssanitizer -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-analyzer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-clang-analyzer -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-libc++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-clang-libc++ -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-clang-threadsanitizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-clang-threadsanitizer -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-coverage -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-emscripten-wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-emscripten-wasm -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-gcc48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-gcc48 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-gcc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-gcc5 -------------------------------------------------------------------------------- /package/archlinux/PKGBUILD-mingw-w64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/PKGBUILD-mingw-w64 -------------------------------------------------------------------------------- /package/archlinux/corrade-git/.gitignore: -------------------------------------------------------------------------------- 1 | corrade 2 | -------------------------------------------------------------------------------- /package/archlinux/corrade-git/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/corrade-git/PKGBUILD -------------------------------------------------------------------------------- /package/archlinux/corrade/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/archlinux/corrade/PKGBUILD -------------------------------------------------------------------------------- /package/ci/android-x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/android-x86.sh -------------------------------------------------------------------------------- /package/ci/appveyor-cache-reset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/appveyor-cache-reset.txt -------------------------------------------------------------------------------- /package/ci/appveyor-desktop-arm64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/appveyor-desktop-arm64.bat -------------------------------------------------------------------------------- /package/ci/appveyor-desktop-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/appveyor-desktop-mingw.bat -------------------------------------------------------------------------------- /package/ci/appveyor-desktop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/appveyor-desktop.bat -------------------------------------------------------------------------------- /package/ci/appveyor-rt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/appveyor-rt.bat -------------------------------------------------------------------------------- /package/ci/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/appveyor.yml -------------------------------------------------------------------------------- /package/ci/circleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/circleci.yml -------------------------------------------------------------------------------- /package/ci/emscripten.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/emscripten.sh -------------------------------------------------------------------------------- /package/ci/ios-simulator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/ios-simulator.sh -------------------------------------------------------------------------------- /package/ci/unix-desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/ci/unix-desktop.sh -------------------------------------------------------------------------------- /package/conan/.gitignore: -------------------------------------------------------------------------------- 1 | test_package/build/* 2 | -------------------------------------------------------------------------------- /package/conan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/conan/CMakeLists.txt -------------------------------------------------------------------------------- /package/conan/test_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/conan/test_package/CMakeLists.txt -------------------------------------------------------------------------------- /package/conan/test_package/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/conan/test_package/conanfile.py -------------------------------------------------------------------------------- /package/conan/test_package/test_package.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/conan/test_package/test_package.cpp -------------------------------------------------------------------------------- /package/debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/debian/.gitignore -------------------------------------------------------------------------------- /package/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/debian/changelog -------------------------------------------------------------------------------- /package/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /package/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/debian/control -------------------------------------------------------------------------------- /package/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/debian/copyright -------------------------------------------------------------------------------- /package/debian/corrade-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/debian/corrade-dev.install -------------------------------------------------------------------------------- /package/debian/corrade.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/debian/corrade.install -------------------------------------------------------------------------------- /package/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/debian/rules -------------------------------------------------------------------------------- /package/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /package/gentoo/dev-libs/corrade/Manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/gentoo/dev-libs/corrade/Manifest -------------------------------------------------------------------------------- /package/gentoo/dev-libs/corrade/corrade-9999.ebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/gentoo/dev-libs/corrade/corrade-9999.ebuild -------------------------------------------------------------------------------- /package/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/git/README.md -------------------------------------------------------------------------------- /package/homebrew/corrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/homebrew/corrade.rb -------------------------------------------------------------------------------- /package/msys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/msys/.gitattributes -------------------------------------------------------------------------------- /package/msys/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/msys/PKGBUILD -------------------------------------------------------------------------------- /package/msys/corrade/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/msys/corrade/PKGBUILD -------------------------------------------------------------------------------- /package/rpm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/rpm/build.sh -------------------------------------------------------------------------------- /package/rpm/corrade.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/package/rpm/corrade.spec -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Containers/AnyReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/AnyReference.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Array.h -------------------------------------------------------------------------------- /src/Corrade/Containers/ArrayTuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/ArrayTuple.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/ArrayTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/ArrayTuple.h -------------------------------------------------------------------------------- /src/Corrade/Containers/ArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/ArrayView.h -------------------------------------------------------------------------------- /src/Corrade/Containers/ArrayViewStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/ArrayViewStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/ArrayViewStlSpan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/ArrayViewStlSpan.h -------------------------------------------------------------------------------- /src/Corrade/Containers/BigEnumSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/BigEnumSet.h -------------------------------------------------------------------------------- /src/Corrade/Containers/BigEnumSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/BigEnumSet.hpp -------------------------------------------------------------------------------- /src/Corrade/Containers/BitArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/BitArray.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/BitArray.h -------------------------------------------------------------------------------- /src/Corrade/Containers/BitArrayView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/BitArrayView.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/BitArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/BitArrayView.h -------------------------------------------------------------------------------- /src/Corrade/Containers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Containers/Containers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Containers.h -------------------------------------------------------------------------------- /src/Corrade/Containers/EnumSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/EnumSet.h -------------------------------------------------------------------------------- /src/Corrade/Containers/EnumSet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/EnumSet.hpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Function.h -------------------------------------------------------------------------------- /src/Corrade/Containers/GrowableArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/GrowableArray.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Implementation/RawForwardList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Implementation/RawForwardList.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Iterable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Iterable.h -------------------------------------------------------------------------------- /src/Corrade/Containers/LinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/LinkedList.h -------------------------------------------------------------------------------- /src/Corrade/Containers/MoveReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/MoveReference.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Optional.h -------------------------------------------------------------------------------- /src/Corrade/Containers/OptionalStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/OptionalStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Pair.h -------------------------------------------------------------------------------- /src/Corrade/Containers/PairStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/PairStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Pointer.h -------------------------------------------------------------------------------- /src/Corrade/Containers/PointerStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/PointerStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Reference.h -------------------------------------------------------------------------------- /src/Corrade/Containers/ReferenceStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/ReferenceStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/ScopeGuard.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StaticArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StaticArray.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StridedArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StridedArrayView.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StridedArrayViewStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StridedArrayViewStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StridedBitArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StridedBitArrayView.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StridedDimensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StridedDimensions.h -------------------------------------------------------------------------------- /src/Corrade/Containers/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/String.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/String.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StringIterable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringIterable.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/StringIterable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringIterable.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StringStl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringStl.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/StringStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StringStlHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringStlHash.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StringStlView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringStlView.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StringView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringView.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StringView.h -------------------------------------------------------------------------------- /src/Corrade/Containers/StructuredBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/StructuredBindings.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Tags.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/AnyReferenceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/AnyReferenceTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ArrayStlSpanTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ArrayStlSpanTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ArrayTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ArrayTupleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ArrayTupleTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ArrayViewStlSpanTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ArrayViewStlSpanTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ArrayViewStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ArrayViewStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ArrayViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ArrayViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/BigEnumSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/BigEnumSetTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/BitArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/BitArrayTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/BitArrayViewBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/BitArrayViewBenchmark.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/BitArrayViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/BitArrayViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/BitArrayViewTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/BitArrayViewTest.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/EnumSetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/EnumSetTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/FunctionBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/FunctionBenchmark.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/FunctionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/FunctionTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/GrowableArraySanitizerFailTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/GrowableArraySanitizerFailTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/GrowableArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/GrowableArrayTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/IterableTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/IterableTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/LinkedListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/LinkedListTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/MoveReferenceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/MoveReferenceTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/OptionalStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/OptionalStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/OptionalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/OptionalTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/PairCpp14Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/PairCpp14Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/PairCpp17Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/PairCpp17Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/PairStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/PairStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/PairTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/PairTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/PointerStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/PointerStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/PointerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/PointerTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/RawForwardListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/RawForwardListTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ReferenceStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ReferenceStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ReferenceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ReferenceTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/ScopeGuardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/ScopeGuardTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/SequenceHelpersTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/SequenceHelpersTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StaticArrayCpp17Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StaticArrayCpp17Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StaticArrayStlSpanTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StaticArrayStlSpanTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StaticArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StaticArrayTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StaticArrayViewCpp17Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StaticArrayViewCpp17Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StaticArrayViewStlSpanTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StaticArrayViewStlSpanTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StaticArrayViewStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StaticArrayViewStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StaticArrayViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StaticArrayViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StridedArrayViewStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StridedArrayViewStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StridedArrayViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StridedArrayViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StridedBitArrayViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StridedBitArrayViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StridedDimensionsCpp17Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StridedDimensionsCpp17Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StridedDimensionsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StridedDimensionsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringIterableTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringIterableTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringStlViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringStlViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringTestFiles/lorem-ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringTestFiles/lorem-ipsum.txt -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringViewBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringViewBenchmark.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/StringViewTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/StringViewTest.h -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/TripleCpp14Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/TripleCpp14Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/TripleCpp17Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/TripleCpp17Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/TripleStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/TripleStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/TripleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/TripleTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Containers/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/Containers/Triple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/Triple.h -------------------------------------------------------------------------------- /src/Corrade/Containers/TripleStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/TripleStl.h -------------------------------------------------------------------------------- /src/Corrade/Containers/constructHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/constructHelpers.h -------------------------------------------------------------------------------- /src/Corrade/Containers/initializeHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/initializeHelpers.h -------------------------------------------------------------------------------- /src/Corrade/Containers/iterableHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/iterableHelpers.h -------------------------------------------------------------------------------- /src/Corrade/Containers/sequenceHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Containers/sequenceHelpers.h -------------------------------------------------------------------------------- /src/Corrade/Corrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Corrade.h -------------------------------------------------------------------------------- /src/Corrade/CorradeMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/CorradeMain.cpp -------------------------------------------------------------------------------- /src/Corrade/Cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Cpu.cpp -------------------------------------------------------------------------------- /src/Corrade/Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Cpu.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Connection.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Connection.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Emitter.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Emitter.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Implementation/ReceiverConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Implementation/ReceiverConnection.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Interconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Interconnect.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Receiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Receiver.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Receiver.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/StateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/StateMachine.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Test/Benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Test/Benchmark.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Test/EmitterLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Test/EmitterLibrary.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Test/EmitterLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Test/EmitterLibrary.h -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Test/LibraryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Test/LibraryTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Test/StateMachineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Test/StateMachineTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/Test/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/Test/Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Interconnect/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Interconnect/visibility.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/AbstractManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/AbstractManager.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/AbstractManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/AbstractManager.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/AbstractManagingPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/AbstractManagingPlugin.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/AbstractPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/AbstractPlugin.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/AbstractPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/AbstractPlugin.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Implementation/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Implementation/Plugin.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Implementation/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Implementation/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Manager.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Manager.hpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/PluginManager.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/PluginMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/PluginMetadata.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/PluginMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/PluginMetadata.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractAnimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractAnimal.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractAnimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractAnimal.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractCustomSuffix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractCustomSuffix.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractCustomSuffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractCustomSuffix.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractDeletable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractDeletable.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractDeletable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractDeletable.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractDisabledMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractDisabledMetadata.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractDisabledMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractDisabledMetadata.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractFood.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractFood.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractFood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractFood.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractGeneratedMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractGeneratedMetadata.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractPluginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractPluginTest.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractWrongPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractWrongPlugin.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/AbstractWrongPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/AbstractWrongPlugin.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/DuplicateStaticPluginLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/DuplicateStaticPluginLibrary.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/DuplicateStaticPluginTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/DuplicateStaticPluginTest.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/GlobalStateAcrossLibrariesLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/GlobalStateAcrossLibrariesLibrary.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/GlobalStateAcrossLibrariesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/GlobalStateAcrossLibrariesTest.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/ImportStaticTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/ImportStaticTest.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/ManagerInitFiniTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/ManagerInitFiniTest.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/ManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/ManagerTest.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Bulldog.conf: -------------------------------------------------------------------------------- 1 | depends=JustSomeMammal 2 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Bulldog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Bulldog.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Canary.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Canary.conf -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Canary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Canary.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Canary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Canary.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Dird.conf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Dird.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Dird.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Dog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Dog.conf -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Dog.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Dog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Dog.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/PitBull.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/PitBull.conf -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/PitBull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/PitBull.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Snail.conf: -------------------------------------------------------------------------------- 1 | depends=SomethingThatDoesNotExist 2 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/animals/Snail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/animals/Snail.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/custom-suffix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/custom-suffix/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/custom-suffix/CustomSuffix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/custom-suffix/CustomSuffix.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/custom-suffix/CustomSuffix.modconf: -------------------------------------------------------------------------------- 1 | [configuration] 2 | greeting=Hiya! 3 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/custom-suffix/CustomSuffixStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/custom-suffix/CustomSuffixStatic.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/custom-suffix/CustomSuffixStatic.modconf: -------------------------------------------------------------------------------- 1 | [configuration] 2 | greeting=Hiya but static! 3 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/deletable/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/deletable/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/deletable/Deletable.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/deletable/Deletable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/deletable/Deletable.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/disabled-metadata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/disabled-metadata/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/disabled-metadata/DisabledMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/disabled-metadata/DisabledMetadata.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/disabled-metadata/DisabledMetadataStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/disabled-metadata/DisabledMetadataStatic.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/doggo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/doggo/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/doggo/Doggo.conf: -------------------------------------------------------------------------------- 1 | provides=Dog 2 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/doggo/Doggo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/doggo/Doggo.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/food/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/HotDog.conf: -------------------------------------------------------------------------------- 1 | depends=Dog 2 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/HotDog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/food/HotDog.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/HotDogWithSnail.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/food/HotDogWithSnail.conf -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/OldBread.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/OldBread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/food/OldBread.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/RottenTomato.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/food/RottenTomato.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/food/RottenTomato.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/generated-metadata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/generated-metadata/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataDynamic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataDynamic.conf -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataDynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataDynamic.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataStatic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataStatic.conf -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/generated-metadata/GeneratedMetadataStatic.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/init-fini/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/init-fini/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/init-fini/InitFini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/init-fini/InitFini.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/init-fini/InitFiniDynamic.conf: -------------------------------------------------------------------------------- 1 | depends=InitFiniStatic 2 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/init-fini/InitFiniDynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/init-fini/InitFiniDynamic.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/init-fini/InitFiniStatic.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/init-fini/InitFiniStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/init-fini/InitFiniStatic.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/init-fini/InitFiniStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/init-fini/InitFiniStatic.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong-metadata/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong-metadata/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong-metadata/WrongMetadata.conf: -------------------------------------------------------------------------------- 1 | Hglllmmh. 2 | -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong-metadata/WrongMetadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong-metadata/WrongMetadata.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong-metadata/WrongMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong-metadata/WrongMetadata.h -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/MissingLibraryDependency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/MissingLibraryDependency.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/MissingLibraryDependencyLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/MissingLibraryDependencyLibrary.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/NoPluginFinalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/NoPluginFinalizer.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/NoPluginInitializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/NoPluginInitializer.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/NoPluginInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/NoPluginInstancer.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/NoPluginInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/NoPluginInterface.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/Test/wrong/NoPluginVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/Test/wrong/NoPluginVersion.cpp -------------------------------------------------------------------------------- /src/Corrade/PluginManager/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/PluginManager/visibility.h -------------------------------------------------------------------------------- /src/Corrade/Tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Tags.h -------------------------------------------------------------------------------- /src/Corrade/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Test/CppStandardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/CppStandardTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Test/CpuTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/CpuTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Test/CpuTestExternalLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/CpuTestExternalLibrary.cpp -------------------------------------------------------------------------------- /src/Corrade/Test/CpuTestExternalLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/CpuTestExternalLibrary.h -------------------------------------------------------------------------------- /src/Corrade/Test/MainTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/MainTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Test/TagsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/TagsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Test/TargetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/TargetTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Test/VersionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/VersionTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/TestSuite/AdbRunner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/AdbRunner.sh -------------------------------------------------------------------------------- /src/Corrade/TestSuite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Comparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Comparator.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Comparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Comparator.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Container.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/File.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/File.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/FileToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/FileToString.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/FileToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/FileToString.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/FloatingPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/FloatingPoint.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/FloatingPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/FloatingPoint.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Implementation/Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Implementation/Diff.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Numeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Numeric.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/SortedContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/SortedContainer.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/String.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/String.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/StringToFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/StringToFile.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/StringToFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/StringToFile.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/ContainerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/ContainerTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/DiffTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/DiffTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/FileTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileTestFiles/.kateconfig: -------------------------------------------------------------------------------- 1 | kate: newline-at-eof off; 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileTestFiles/base.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileTestFiles/different.txt: -------------------------------------------------------------------------------- 1 | Hello world? -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileTestFiles/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileTestFiles/hýždě.txt: -------------------------------------------------------------------------------- 1 | Hello World! -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileTestFiles/smaller.txt: -------------------------------------------------------------------------------- 1 | Hello W -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FileToStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/FileToStringTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/FloatingPointTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/FloatingPointTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/NumericTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/NumericTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/SortedContainerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/SortedContainerTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/StringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/StringTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/StringToFileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/StringToFileTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Compare/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Compare/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/TestSuite/EmscriptenRunner.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/EmscriptenRunner.html.in -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Implementation/BenchmarkCounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Implementation/BenchmarkCounters.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Implementation/BenchmarkStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Implementation/BenchmarkStats.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/ArgumentsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/ArgumentsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/BenchmarkStatsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/BenchmarkStatsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/BundledFilesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/BundledFilesTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/BundledFilesTestFiles/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/BundledFilesTestFiles/.gitattributes -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/BundledFilesTestFiles/a.txt: -------------------------------------------------------------------------------- 1 | relative 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/BundledFilesTestFiles/b.txt: -------------------------------------------------------------------------------- 1 | dotdot 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/BundledFilesTestFiles/c.txt: -------------------------------------------------------------------------------- 1 | absolute 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/BundledFilesTestFiles/d.txt: -------------------------------------------------------------------------------- 1 | absolute 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/ComparatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/ComparatorTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/FailingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/FailingTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TestCaseDescriptionSourceLocationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TestCaseDescriptionSourceLocationTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TestCaseDescriptionSourceLocationTestFiles/noSupport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TestCaseDescriptionSourceLocationTestFiles/noSupport.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TestCaseDescriptionSourceLocationTestFiles/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TestCaseDescriptionSourceLocationTestFiles/test.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTest.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/.gitattributes: -------------------------------------------------------------------------------- 1 | *.txt text eol=lf 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/abortOnFail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/abortOnFail.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/abortOnFailSkip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/abortOnFailSkip.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuClock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuClock.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuCycles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuCycles.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuScalingWarning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuScalingWarning.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuScalingWarningVerbose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuScalingWarningVerbose.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuScalingWarningVerboseAndroid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkCpuScalingWarningVerboseAndroid.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkDebugBuildNote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkDebugBuildNote.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkDiscardAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkDiscardAll.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkWallClock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/benchmarkWallClock.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageFailed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageFailed.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageVerboseDisabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageVerboseDisabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageVerboseEnabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageVerboseEnabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageXfail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/compareMessageXfail.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/cpu-governor-performance.txt: -------------------------------------------------------------------------------- 1 | performance 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/cpu-governor-powersave.txt: -------------------------------------------------------------------------------- 1 | powersave 2 | -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/noCatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/noCatch.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/noXfail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/noXfail.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/repeatAll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/repeatAll.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/repeatEvery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/repeatEvery.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticAbortOnFail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticAbortOnFail.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticFailedDisabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticFailedDisabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticFailedEnabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticFailedEnabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticSucceededDisabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticSucceededDisabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticSucceededEnabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticSucceededEnabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticVerboseDisabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticVerboseDisabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticVerboseEnabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticVerboseEnabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticXfail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticXfail.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticXpassDisabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticXpassDisabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticXpassEnabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/saveDiagnosticXpassEnabled.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/shuffleOne.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/shuffleOne.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/skipBenchmarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/skipBenchmarks.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/skipOnly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/skipOnly.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/skipTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/skipTests.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/test.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/TesterTestFiles/testName.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/TesterTestFiles/testName.txt -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/TestSuite/TestSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/TestSuite.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Tester.cpp -------------------------------------------------------------------------------- /src/Corrade/TestSuite/Tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/Tester.h -------------------------------------------------------------------------------- /src/Corrade/TestSuite/XCTestRunner.mm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/XCTestRunner.mm.in -------------------------------------------------------------------------------- /src/Corrade/TestSuite/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/TestSuite/visibility.h -------------------------------------------------------------------------------- /src/Corrade/Utility/AbstractHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/AbstractHash.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Algorithms.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Algorithms.h -------------------------------------------------------------------------------- /src/Corrade/Utility/AndroidLogStreamBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/AndroidLogStreamBuffer.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/AndroidLogStreamBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/AndroidLogStreamBuffer.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Arguments.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Arguments.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Assert.h -------------------------------------------------------------------------------- /src/Corrade/Utility/BitAlgorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/BitAlgorithms.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/BitAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/BitAlgorithms.h -------------------------------------------------------------------------------- /src/Corrade/Utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Utility/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Configuration.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Configuration.h -------------------------------------------------------------------------------- /src/Corrade/Utility/ConfigurationGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/ConfigurationGroup.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/ConfigurationGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/ConfigurationGroup.h -------------------------------------------------------------------------------- /src/Corrade/Utility/ConfigurationValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/ConfigurationValue.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/ConfigurationValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/ConfigurationValue.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Debug.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Debug.h -------------------------------------------------------------------------------- /src/Corrade/Utility/DebugAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/DebugAssert.h -------------------------------------------------------------------------------- /src/Corrade/Utility/DebugStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/DebugStl.h -------------------------------------------------------------------------------- /src/Corrade/Utility/DebugStlStringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/DebugStlStringView.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Directory.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Directory.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Endianness.h -------------------------------------------------------------------------------- /src/Corrade/Utility/EndiannessBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/EndiannessBatch.h -------------------------------------------------------------------------------- /src/Corrade/Utility/FileWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/FileWatcher.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/FileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/FileWatcher.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Format.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Format.h -------------------------------------------------------------------------------- /src/Corrade/Utility/FormatStl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/FormatStl.h -------------------------------------------------------------------------------- /src/Corrade/Utility/FormatStlStringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/FormatStlStringView.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/ErrorString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/ErrorString.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/ErrorString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/ErrorString.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/Resource.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/ResourceCompile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/ResourceCompile.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/WindowsWeakSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/WindowsWeakSymbol.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/WindowsWeakSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/WindowsWeakSymbol.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/cpu.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Implementation/tweakable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Implementation/tweakable.h -------------------------------------------------------------------------------- /src/Corrade/Utility/IntrinsicsAvx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/IntrinsicsAvx.h -------------------------------------------------------------------------------- /src/Corrade/Utility/IntrinsicsSse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/IntrinsicsSse2.h -------------------------------------------------------------------------------- /src/Corrade/Utility/IntrinsicsSse3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/IntrinsicsSse3.h -------------------------------------------------------------------------------- /src/Corrade/Utility/IntrinsicsSse4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/IntrinsicsSse4.h -------------------------------------------------------------------------------- /src/Corrade/Utility/IntrinsicsSsse3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/IntrinsicsSsse3.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Json.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Json.h -------------------------------------------------------------------------------- /src/Corrade/Utility/JsonWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/JsonWriter.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/JsonWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/JsonWriter.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Macros.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Math.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Memory.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Move.h -------------------------------------------------------------------------------- /src/Corrade/Utility/MurmurHash2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/MurmurHash2.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/MurmurHash2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/MurmurHash2.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Path.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Path.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Resource.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Resource.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Sha1.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Sha1.h -------------------------------------------------------------------------------- /src/Corrade/Utility/StlForwardArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/StlForwardArray.h -------------------------------------------------------------------------------- /src/Corrade/Utility/StlForwardString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/StlForwardString.h -------------------------------------------------------------------------------- /src/Corrade/Utility/StlForwardTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/StlForwardTuple.h -------------------------------------------------------------------------------- /src/Corrade/Utility/StlForwardTupleSizeElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/StlForwardTupleSizeElement.h -------------------------------------------------------------------------------- /src/Corrade/Utility/StlForwardVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/StlForwardVector.h -------------------------------------------------------------------------------- /src/Corrade/Utility/StlMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/StlMath.h -------------------------------------------------------------------------------- /src/Corrade/Utility/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/String.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/String.h -------------------------------------------------------------------------------- /src/Corrade/Utility/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/System.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/System.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/.gitattributes: -------------------------------------------------------------------------------- 1 | DirectoryTestFiles/file -diff -text 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/AlgorithmsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/AlgorithmsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ArgumentsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ArgumentsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/AssertDisabledTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/AssertDisabledTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/AssertGracefulTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/AssertGracefulTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/AssertTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/AssertTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/AssertTestOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/AssertTestOverrides.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/BitAlgorithmsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/BitAlgorithmsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/CMakeLists.txt -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/.gitattributes -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/bom.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/comments-saved.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/comments-saved.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/comments.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/comments.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/eol-mixed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/eol-mixed.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/eol-unix.conf: -------------------------------------------------------------------------------- 1 | key=value 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/eol-windows.conf: -------------------------------------------------------------------------------- 1 | key=value 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-empty-group.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-empty-group.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-empty-subgroup.conf: -------------------------------------------------------------------------------- 1 | [a] 2 | # Empty subgroup name 3 | [a//b] 4 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-missing-bracket.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-missing-bracket.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-modified.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-modified.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-shortcuts-modified.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-shortcuts-modified.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-shortcuts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic-shortcuts.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/hierarchic.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/hýždě.conf: -------------------------------------------------------------------------------- 1 | unicode=supported 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/iterate-modified.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/iterate-modified.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/iterate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/iterate.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/missing-equals.conf: -------------------------------------------------------------------------------- 1 | # Missing equals 2 | 3 | [group] 4 | key=value 5 | 6 | invalid 7 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/missing-multiline-quote.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/missing-multiline-quote.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/missing-quote.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/missing-quote.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/multiLine-crlf-saved.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/multiLine-crlf-saved.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/multiLine-crlf.conf: -------------------------------------------------------------------------------- 1 | value=""" 2 | Hello 3 | people how 4 | are you? 5 | """ 6 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/multiLine-saved.conf: -------------------------------------------------------------------------------- 1 | value=""" 2 | Hello 3 | people how 4 | are you? 5 | """ 6 | empty= 7 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/multiLine.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/multiLine.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/parse-modified.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/parse-modified.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/parse.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/parse.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/whitespaces-saved.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/whitespaces-saved.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationTestFiles/whitespaces.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationTestFiles/whitespaces.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ConfigurationValueTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ConfigurationValueTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/DebugStlCpp17Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/DebugStlCpp17Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/DebugTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/DebugTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/DirectoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/DirectoryTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/EndiannessTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/EndiannessTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ErrorStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ErrorStringTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/FatalTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/FatalTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/FileWatcherTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/FileWatcherTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/FormatBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/FormatBenchmark.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/FormatStlStringViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/FormatStlStringViewTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/FormatStlTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/FormatStlTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/FormatTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/FormatTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/GlobalStateAcrossLibrariesLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/GlobalStateAcrossLibrariesLibrary.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/GlobalStateAcrossLibrariesLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/GlobalStateAcrossLibrariesLibrary.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/GlobalStateAcrossLibrariesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/GlobalStateAcrossLibrariesTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/HashDigestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/HashDigestTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/JsonTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/JsonTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/JsonTestFiles/error.json: -------------------------------------------------------------------------------- 1 | [ 2 | "haha JSON you can't", 3 | ] 4 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/JsonTestFiles/parse-error.json: -------------------------------------------------------------------------------- 1 | [ 2 | -haha 3 | ] 4 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/JsonWriterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/JsonWriterTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MacrosCpp14Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MacrosCpp14Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MacrosCpp17Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MacrosCpp17Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MacrosCpp20Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MacrosCpp20Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MacrosTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MacrosTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MathTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MathTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MemoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MemoryTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MoveTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MoveTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/MurmurHash2Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/MurmurHash2Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/PathTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFiles/dir/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFiles/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/PathTestFiles/file -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFilesSymlink/dir-symlink: -------------------------------------------------------------------------------- 1 | dir -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFilesSymlink/dir/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFilesSymlink/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/PathTestFilesSymlink/file -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFilesSymlink/file-symlink: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFilesUtf8/hýždě: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/PathTestFilesUtf8/hýždě -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFilesUtf8/šňůra/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/PathTestFilesUtf8/šňůra/klíče: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceCompileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceCompileTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceStaticTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceStaticTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/.gitattributes -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/17bytes-33.bin: -------------------------------------------------------------------------------- 1 | 36F -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/17bytes-66.bin: -------------------------------------------------------------------------------- 1 | KKC -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/55bytes-66.bin: -------------------------------------------------------------------------------- 1 | KK# -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/64bytes-33.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/64bytes-33.bin -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-alignment-larger-than-data-size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-alignment-larger-than-data-size.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-empty.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-nothing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-nothing.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-null-terminated-aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-null-terminated-aligned.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-null-terminated-last-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-null-terminated-last-file.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-single-empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-single-empty.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-single.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled-unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled-unicode.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/compiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/compiled.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/consequence.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/consequence.bin -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/consequence2.txt: -------------------------------------------------------------------------------- 1 | overridden consequence 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/empty.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/hýždě.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/hýždě.bin -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/hýždě.conf: -------------------------------------------------------------------------------- 1 | group=unicode 2 | 3 | [file] 4 | filename=hýždě.bin 5 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/name with spaces.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/predisposition.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/predisposition.bin -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/predisposition2.txt: -------------------------------------------------------------------------------- 1 | overridden predisposition 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-alignment-larger-than-data-size.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-alignment-larger-than-data-size.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-empty-alias.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-empty-alias.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-empty-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-empty-file.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-empty-filename.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-empty-filename.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-empty-group.conf: -------------------------------------------------------------------------------- 1 | group= 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-no-group.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-no-group.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-nonexistent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-nonexistent.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-nothing.conf: -------------------------------------------------------------------------------- 1 | group=nothing 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-npot-align.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-npot-align.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-npot-global-align.conf: -------------------------------------------------------------------------------- 1 | group=broken 2 | align=56 3 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-null-terminated-aligned.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-null-terminated-aligned.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-null-terminated-last-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-null-terminated-last-file.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-overridden-different.conf: -------------------------------------------------------------------------------- 1 | group=wat 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-overridden-none.conf: -------------------------------------------------------------------------------- 1 | group=test 2 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-overridden-nonexistent-file.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-overridden-nonexistent-file.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-overridden.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-overridden.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-spaces.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-spaces.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-too-large-align.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-too-large-align.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-too-large-global-align.conf: -------------------------------------------------------------------------------- 1 | group=broken 2 | align=256 3 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-zero-align.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources-zero-align.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources-zero-global-align.conf: -------------------------------------------------------------------------------- 1 | group=broken 2 | align=0 3 | -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/ResourceTestFiles/resources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/ResourceTestFiles/resources.conf -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/Sha1Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/Sha1Test.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/Sha1Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/Sha1Test.py -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StlForwardArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StlForwardArrayTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StlForwardStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StlForwardStringTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StlForwardTupleSizeElementTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StlForwardTupleSizeElementTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StlForwardTupleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StlForwardTupleTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StlForwardVectorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StlForwardVectorTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StlMathTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StlMathTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StringBenchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StringBenchmark.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StringTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/StringTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/StringTest.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/SystemTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/SystemTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/TweakableIntegrationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/TweakableIntegrationTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/TweakableParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/TweakableParserTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/TweakableTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/TweakableTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/TypeTraitsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/TypeTraitsTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/UnicodeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/UnicodeTest.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/cpuVariantHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/cpuVariantHelpers.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Test/nodeJsVersionHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Test/nodeJsVersionHelpers.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Tweakable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Tweakable.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Tweakable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Tweakable.h -------------------------------------------------------------------------------- /src/Corrade/Utility/TweakableParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/TweakableParser.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/TweakableParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/TweakableParser.h -------------------------------------------------------------------------------- /src/Corrade/Utility/TypeTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/TypeTraits.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Unicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Unicode.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/Unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Unicode.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Utility.h -------------------------------------------------------------------------------- /src/Corrade/Utility/Utility.js.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/Utility.js.in -------------------------------------------------------------------------------- /src/Corrade/Utility/VisibilityMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/VisibilityMacros.h -------------------------------------------------------------------------------- /src/Corrade/Utility/rc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/rc.cpp -------------------------------------------------------------------------------- /src/Corrade/Utility/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/utilities.h -------------------------------------------------------------------------------- /src/Corrade/Utility/visibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/Utility/visibility.h -------------------------------------------------------------------------------- /src/Corrade/configure.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/configure.h.cmake -------------------------------------------------------------------------------- /src/Corrade/version.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/Corrade/version.h.cmake -------------------------------------------------------------------------------- /src/acme/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = 3 | */test/* 4 | -------------------------------------------------------------------------------- /src/acme/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/.gitignore -------------------------------------------------------------------------------- /src/acme/acme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/acme.py -------------------------------------------------------------------------------- /src/acme/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/__init__.py -------------------------------------------------------------------------------- /src/acme/test/bom/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/bom/input.h -------------------------------------------------------------------------------- /src/acme/test/comments/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/comments/expected.h -------------------------------------------------------------------------------- /src/acme/test/comments/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/comments/input.h -------------------------------------------------------------------------------- /src/acme/test/includes/Dir/Absolute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/includes/Dir/Absolute.h -------------------------------------------------------------------------------- /src/acme/test/includes/Dir/Bla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/includes/Dir/Bla.h -------------------------------------------------------------------------------- /src/acme/test/includes/Dir/Relative.h: -------------------------------------------------------------------------------- 1 | enum EnumInRelativePath {}; 2 | -------------------------------------------------------------------------------- /src/acme/test/includes/Local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/includes/Local.h -------------------------------------------------------------------------------- /src/acme/test/includes/Oof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/includes/Oof.h -------------------------------------------------------------------------------- /src/acme/test/includes/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/includes/expected.h -------------------------------------------------------------------------------- /src/acme/test/includes/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/includes/input.h -------------------------------------------------------------------------------- /src/acme/test/no_copyright_include_placeholders/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/no_copyright_include_placeholders/expected.h -------------------------------------------------------------------------------- /src/acme/test/no_copyright_include_placeholders/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/no_copyright_include_placeholders/input.h -------------------------------------------------------------------------------- /src/acme/test/pragmas/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/pragmas/expected.h -------------------------------------------------------------------------------- /src/acme/test/pragmas/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/pragmas/input.h -------------------------------------------------------------------------------- /src/acme/test/pragmas/some/path/included.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/pragmas/some/path/included.h -------------------------------------------------------------------------------- /src/acme/test/preprocessor/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/preprocessor/expected.h -------------------------------------------------------------------------------- /src/acme/test/preprocessor/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/preprocessor/input.h -------------------------------------------------------------------------------- /src/acme/test/revision_stats/.gitignore: -------------------------------------------------------------------------------- 1 | output/actual.h 2 | -------------------------------------------------------------------------------- /src/acme/test/revision_stats/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/revision_stats/expected.h -------------------------------------------------------------------------------- /src/acme/test/revision_stats/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/revision_stats/input.h -------------------------------------------------------------------------------- /src/acme/test/revision_stats/output/dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/acme/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/acme/test/test.py -------------------------------------------------------------------------------- /src/debuggers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/debuggers/CMakeLists.txt -------------------------------------------------------------------------------- /src/debuggers/gdb/corrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/debuggers/gdb/corrade/__init__.py -------------------------------------------------------------------------------- /src/debuggers/gdb/corrade/printers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/debuggers/gdb/corrade/printers.py -------------------------------------------------------------------------------- /src/debuggers/natvis/corrade.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/debuggers/natvis/corrade.natvis -------------------------------------------------------------------------------- /src/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/dummy.cpp -------------------------------------------------------------------------------- /src/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/interconnect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/interconnect/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/interconnect/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/interconnect/main.cpp -------------------------------------------------------------------------------- /src/examples/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/json/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/json/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/json/main.cpp -------------------------------------------------------------------------------- /src/examples/pluginmanager/AbstractAnimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/pluginmanager/AbstractAnimal.h -------------------------------------------------------------------------------- /src/examples/pluginmanager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/pluginmanager/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/pluginmanager/Canary.conf: -------------------------------------------------------------------------------- 1 | [data] 2 | name=I'm allergic to canaries! 3 | -------------------------------------------------------------------------------- /src/examples/pluginmanager/Canary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/pluginmanager/Canary.cpp -------------------------------------------------------------------------------- /src/examples/pluginmanager/Dog.conf: -------------------------------------------------------------------------------- 1 | [data] 2 | name=A simple dog plugin 3 | -------------------------------------------------------------------------------- /src/examples/pluginmanager/Dog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/pluginmanager/Dog.cpp -------------------------------------------------------------------------------- /src/examples/pluginmanager/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/pluginmanager/main.cpp -------------------------------------------------------------------------------- /src/examples/resource/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/resource/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/resource/icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/examples/resource/licenses/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/resource/licenses/en.txt -------------------------------------------------------------------------------- /src/examples/resource/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/resource/main.cpp -------------------------------------------------------------------------------- /src/examples/resource/resources.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/resource/resources.conf -------------------------------------------------------------------------------- /src/examples/testsuite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/testsuite/CMakeLists.txt -------------------------------------------------------------------------------- /src/examples/testsuite/MyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/examples/testsuite/MyTest.cpp -------------------------------------------------------------------------------- /src/singles/CorradeArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeArray.h -------------------------------------------------------------------------------- /src/singles/CorradeArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeArrayView.h -------------------------------------------------------------------------------- /src/singles/CorradeCpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeCpu.hpp -------------------------------------------------------------------------------- /src/singles/CorradeEnumSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeEnumSet.h -------------------------------------------------------------------------------- /src/singles/CorradeFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeFunction.h -------------------------------------------------------------------------------- /src/singles/CorradeGrowableArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeGrowableArray.h -------------------------------------------------------------------------------- /src/singles/CorradeOptional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeOptional.h -------------------------------------------------------------------------------- /src/singles/CorradePair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradePair.h -------------------------------------------------------------------------------- /src/singles/CorradePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradePointer.h -------------------------------------------------------------------------------- /src/singles/CorradeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeReference.h -------------------------------------------------------------------------------- /src/singles/CorradeScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeScopeGuard.h -------------------------------------------------------------------------------- /src/singles/CorradeStlForwardArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeStlForwardArray.h -------------------------------------------------------------------------------- /src/singles/CorradeStlForwardString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeStlForwardString.h -------------------------------------------------------------------------------- /src/singles/CorradeStlForwardTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeStlForwardTuple.h -------------------------------------------------------------------------------- /src/singles/CorradeStlForwardVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeStlForwardVector.h -------------------------------------------------------------------------------- /src/singles/CorradeStlMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeStlMath.h -------------------------------------------------------------------------------- /src/singles/CorradeStridedArrayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeStridedArrayView.h -------------------------------------------------------------------------------- /src/singles/CorradeString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeString.hpp -------------------------------------------------------------------------------- /src/singles/CorradeTriple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/CorradeTriple.h -------------------------------------------------------------------------------- /src/singles/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/assert.h -------------------------------------------------------------------------------- /src/singles/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/base.h -------------------------------------------------------------------------------- /src/singles/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosra/corrade/HEAD/src/singles/generate.sh --------------------------------------------------------------------------------