├── .clang-format ├── .gitignore ├── .gitlab-ci.yml ├── .jenkins.prop ├── ABOUT ├── AUTHORS ├── BUILDING ├── CMakeLists.txt ├── COPYING.GPL ├── COPYING.LGPL ├── COPYING.MIT ├── INSTALL ├── Makefile.am ├── README-BINARIES ├── README-GIT ├── README-LICENSE ├── README-MODULES ├── README-WINDOWS ├── README.md ├── RELEASE-NOTES ├── TODO ├── addon ├── emacs │ ├── build.sh │ └── qore-mode.el ├── freedesktop │ ├── README │ └── qore.xml ├── gedit │ └── qore.lang ├── kate │ ├── README │ └── qore.xml ├── syntax-test.q └── vim │ ├── README.md │ ├── ftplugin │ ├── qore.vim │ └── qorus.vim │ ├── indent │ ├── qore.vim │ └── qorus.vim │ └── syntax │ ├── qore.vim │ └── qorus.vim ├── bin ├── qdbg ├── qdbg-remote ├── qdbg-server ├── qdbg-vsc-adapter ├── qdp ├── qget ├── rest ├── saprest ├── schema-reverse ├── sfrest └── sqlutil ├── cmake ├── FindICONV.cmake ├── FindMPFR.cmake ├── QoreConfig.cmake.in ├── QoreConfigVersion.cmake.in ├── QoreMacros.cmake ├── QoreMacrosIntern.cmake ├── qore-version.h.cmake ├── stl_hash_map.in ├── stl_slist.in └── unix-config.h.cmake ├── command-line.cpp ├── command-line.h ├── configure.ac ├── doxygen ├── DataProvider-Full.svg ├── Doxyfile.in ├── Haltian-EmpathicBuilding.svg ├── Qore-Q.ico ├── SqlUtil-Full.svg ├── dot ├── dox_qore.css ├── dpp ├── elastic-logo.svg ├── footer_template.html ├── header_template.html ├── lang │ ├── 000_intro.dox.tmpl │ ├── 105_desc_overview.dox.tmpl │ ├── 110_environment_variables.dox.tmpl │ ├── 115_conditional_parsing.dox.tmpl │ ├── 120_modules.dox.tmpl │ ├── 125_include_files.dox.tmpl │ ├── 130_identifiers.dox.tmpl │ ├── 135_comments.dox.tmpl │ ├── 140_variables.dox.tmpl │ ├── 145_basic_data_types.dox.tmpl │ ├── 150_container_data_types.dox.tmpl │ ├── 152_code_data_types.dox.tmpl │ ├── 155_data_type_declarations.dox.tmpl │ ├── 157_lvalue_references.dox.tmpl │ ├── 160_overloading.dox.tmpl │ ├── 165_time_zones.dox.tmpl │ ├── 170_character_encoding.dox.tmpl │ ├── 175_expressions.dox.tmpl │ ├── 180_operators.dox.tmpl │ ├── 185_qore_regex.dox.tmpl │ ├── 190_date_time_arithmetic.dox.tmpl │ ├── 195_statements.dox.tmpl │ ├── 200_functions.dox.tmpl │ ├── 202_code_flags.dox.tmpl │ ├── 205_namespaces.dox.tmpl │ ├── 210_constants.dox.tmpl │ ├── 215_classes.dox.tmpl │ ├── 217_hashdecl.dox.tmpl │ ├── 220_threading.dox.tmpl │ ├── 225_exception_handling.dox.tmpl │ ├── 230_signal_handling.dox.tmpl │ ├── 235_event_handling.dox.tmpl │ ├── 240_command_line_processing.dox.tmpl │ ├── 245_parse_directives.dox.tmpl │ ├── 250_warnings.dox.tmpl │ ├── 255_keywords.dox.tmpl │ ├── 900_release_notes.dox.tmpl │ ├── Doxyfile.in │ ├── Doxyfile.tmpl │ └── mainpage.dox.tmpl ├── lib │ ├── 10_embedding.doxygen │ ├── 20_qore_data.doxygen │ ├── 30_qore_builtin_functions.doxygen │ ├── 40_class_implementation.doxygen │ ├── 70_qore_modules.doxygen │ ├── 75_dbi_drivers.doxygen │ ├── 90_cmake.doxygen │ ├── Doxyfile.in │ ├── Doxyfile.tmpl │ └── mainpage.doxygen ├── mews-logo-white.svg ├── modules │ ├── Doxyfile.cmake.in │ └── Doxyfile.in ├── pdox ├── qdx ├── qjar ├── qlib │ ├── Doxyfile.cmake.tmpl │ ├── Doxyfile.in │ └── Doxyfile.tmpl ├── qore-logo-55x151-white.png └── qore-logo-55x200.png ├── examples ├── HelloWorld.q ├── clisrv.q ├── email.q ├── exp.q ├── getch.q ├── getopt.q ├── hash.q ├── httpserver.q ├── inherit.q ├── inherit2.q ├── obj2.q ├── old2new ├── pop3.q ├── restserver.q ├── schema ├── stmt.q ├── telnet.q └── test │ ├── TestTemplate.qtest │ ├── TestTemplateInjected.qtest │ ├── data │ ├── lorem │ ├── lorem.bz2 │ ├── lorem.gz │ ├── lorem.utf16le │ └── lorem.zlib │ ├── docker_test │ ├── init_oracle.sh │ ├── postgres_lib.sh │ ├── test-alpine.sh │ └── test-ubuntu.sh │ ├── obsolete │ └── optest.q │ ├── qlib │ ├── AsyncSocketIo │ │ └── AsyncSocketIo.qtest │ ├── AwsRestClient │ │ └── AwsRestClient.qtest │ ├── AwsRestClientDataProvider │ │ └── AwsRestClientDataProvider.qtest │ ├── BillwerkRestClient │ │ └── BillwerkRestClient.qtest │ ├── CdsRestClient │ │ └── CdsRestClient.qtest │ ├── ConnectionProvider │ │ ├── ConnectionProvider.qtest │ │ ├── ConnectionProviderModule.qtest │ │ ├── TestConnectionProvider.qm │ │ ├── mycert.pem │ │ └── mykey.pem │ ├── CsvUtil │ │ ├── csvtest2.qtest │ │ └── csvutil.qtest │ ├── DataProvider │ │ └── DataProvider.qtest │ ├── DatasourceProvider │ │ ├── DatasourceProvider.qtest │ │ └── TestDatasourceProvider.qm │ ├── Diff │ │ └── Diff.qtest │ ├── DiscordDataProvider │ │ └── DiscordDataProvider.qtest │ ├── DiscordRestClient │ │ └── DiscordRestClient.qtest │ ├── DiscordWebSocketClient │ │ └── DiscordWebSocketClient.qtest │ ├── ElasticSearchDataProvider │ │ └── ElasticSearchDataProvider.qtest │ ├── EmpathicBuildingDataProvider │ │ └── EmpathicBuildingDataProvider.qtest │ ├── FileDataProvider │ │ └── FileDataProvider.qtest │ ├── FileLocationHandler │ │ └── FileLocationHandler.qtest │ ├── FilePoller │ │ └── FilePoller.qtest │ ├── FixedLengthUtil │ │ ├── FixedLengthDataIterator.qtest │ │ ├── FixedLengthDataIteratorMultiType.qtest │ │ ├── FixedLengthDataWriter.qtest │ │ ├── FixedLengthFileIterator.qtest │ │ ├── FixedLengthFileWriter.qtest │ │ ├── FixedLengthUtil.qtest │ │ ├── transition_check_iterator.qtest │ │ └── transition_check_writer.qtest │ ├── FsUtil │ │ ├── basename_ext.qtest │ │ ├── copy_dir_structure.qtest │ │ ├── copy_file.qtest │ │ ├── copy_file_obj.qtest │ │ ├── copy_path.qtest │ │ ├── copy_tree.qtest │ │ ├── join_paths.qtest │ │ ├── make_tmp_dir.qtest │ │ ├── make_tmp_examples.qtest │ │ ├── make_tmp_file.qtest │ │ ├── merge_path.qtest │ │ ├── merge_tree.qtest │ │ ├── move_path.qtest │ │ ├── path_exists.qtest │ │ ├── remove_file.qtest │ │ ├── remove_path.qtest │ │ ├── remove_tree.qtest │ │ ├── same_file.qtest │ │ ├── same_file_stat.qtest │ │ ├── tmp_dir.qtest │ │ ├── tmp_file.qtest │ │ └── win_specific.qtest │ ├── FtpClientDataProvider │ │ └── FtpClientDataProvider.qtest │ ├── FtpPoller │ │ └── FtpPoller.qtest │ ├── GmailDataProvider │ │ └── GmailDataProvider.qtest │ ├── GoogleCalendarDataProvider │ │ └── GoogleCalendarDataProvider.qtest │ ├── GoogleRestClient │ │ └── GoogleRestClient.qtest │ ├── HttpClientDataProvider │ │ └── HttpClientDataProvider.qtest │ ├── HttpServer │ │ └── HttpServer.qtest │ ├── HttpServerUtil │ │ └── HttpServerUtil.qtest │ ├── HueRestclient │ │ └── HueRestClient.qtest │ ├── Logger │ │ ├── Logger.qtest │ │ ├── LoggerPerf.qtest │ │ └── LoggerProgram.qtest │ ├── MailMessage │ │ └── MailMessage.qtest │ ├── Mapper │ │ └── mapper.qtest │ ├── MewsRestClient │ │ └── MewsRestClient.qtest │ ├── MewsRestDataProvider │ │ └── MewsRestDataProvider.qtest │ ├── Mime │ │ └── mime.qtest │ ├── NetSuiteRestClient │ │ └── NetSuiteRestClient.qtest │ ├── OpenAiDataProvider │ │ └── OpenAiDataProvider.qtest │ ├── OpenAiRestClient │ │ └── OpenAiRestClient.qtest │ ├── Pop3Client │ │ └── Pop3Client.qtest │ ├── Pop3ClientDataProvider │ │ └── Pop3ClientDataProvider.qtest │ ├── QUnit │ │ ├── exception.qtest │ │ ├── inject.qtest │ │ ├── results.qtest │ │ └── tests.qtest │ ├── Qorize │ │ ├── complex.xml │ │ ├── qorize.qtest │ │ └── realWorldCase.qtest │ ├── RestClient │ │ └── RestClient.qtest │ ├── RestClientDataProvider │ │ └── RestClientDataProvider.qtest │ ├── RestHandler │ │ └── RestHandler.qtest │ ├── SSL │ │ └── ssl.qtest │ ├── SalesforceRestClient │ │ └── SalesforceRestClient.qtest │ ├── Sap4HanaRestClient │ │ └── Sap4HanaRestClient.qtest │ ├── SchemaReverse │ │ └── schema-reverse.qtest │ ├── ServerSentEventsHandler │ │ └── ServerSentEventsHandler.qtest │ ├── ServiceNowRestClient │ │ └── ServiceNowRestClient.qtest │ ├── SewioRestClient │ │ └── SewioRestClient.qtest │ ├── SewioWebSocketClient │ │ └── SewioWebSocketClient.qtest │ ├── SmtpClient │ │ └── SmtpClient.qtest │ ├── SmtpClientDataProvider │ │ └── SmtpClientDataProvider.qtest │ ├── SqlUtil │ │ ├── BulkFreetdsSqlUtil.qtest │ │ ├── BulkMysqlSqlUtil.qtest │ │ ├── BulkOracleSqlUtil.qtest │ │ ├── BulkPgsqlSqlUtil.qtest │ │ ├── BulkSqlUtilTestBase.qm │ │ ├── FreetdsSqlUtil.qtest │ │ ├── JdbcFirebirdSqlUtil.qtest │ │ ├── JdbcMicrosoftSqlUtil.qtest │ │ ├── JdbcOracleSqlUtil.qtest │ │ ├── JdbcPostgresqlSqlUtil.qtest │ │ ├── MysqlSqlUtil.qtest │ │ ├── OdbcFirebirdSqlUtil.qtest │ │ ├── OracleSqlUtil.qtest │ │ ├── PgsqlSqlUtil.qtest │ │ └── SqlUtilTestBase.qm │ ├── Swagger │ │ ├── EmptySwagger.json │ │ ├── EmptySwagger.yaml │ │ ├── Multipart.swagger.yaml │ │ ├── PetStore.swagger.json │ │ ├── PetStore.swagger.yaml │ │ ├── Swagger.qtest │ │ └── SwaggerDataProvider.qtest │ ├── TableMapper │ │ ├── SqlStatementMapperIterator.qtest │ │ ├── SqlStatementOutboundMapper.qtest │ │ ├── TableMapper.qtest │ │ └── TableMapperPerformance.qtest │ ├── TelnetClient │ │ └── TelnetClient.qtest │ ├── TextWrap │ │ ├── common.q │ │ ├── dedent.qtest │ │ ├── fill.qtest │ │ ├── indent.qtest │ │ ├── longword.qtest │ │ ├── maxlines.qtest │ │ ├── shorten.qtest │ │ └── wrapper.qtest │ ├── Util │ │ ├── check_ip_address.qtest │ │ ├── flatten.qtest │ │ ├── get_bit_string.qtest │ │ ├── get_exception_string.qtest │ │ ├── get_file_from_url.qtest │ │ ├── get_relative_path.qtest │ │ ├── glob_to_regex.qtest │ │ ├── ip_address_type.qtest │ │ ├── is_ip_private.qtest │ │ ├── math.qtest │ │ ├── normalize_dir.qtest │ │ ├── ordinal.qtest │ │ ├── padding.qtest │ │ ├── parse_memory_size.qtest │ │ ├── parse_ranges.qtest │ │ ├── parse_to_qore_value.qtest │ │ ├── plural.qtest │ │ ├── regex_escape.qtest │ │ ├── same.qtest │ │ ├── serialize_to_string.qtest │ │ ├── slice.qtest │ │ ├── string_ends_with.qtest │ │ ├── string_starts_with.qtest │ │ ├── tmp_location.qtest │ │ ├── uniq.qtest │ │ ├── uri_query.qtest │ │ └── zip.qtest │ ├── WebSocketClient │ │ └── WebSocketClient.qtest │ ├── WebSocketHandler │ │ └── WebSocketHandler.qtest │ ├── WebSocketUtil │ │ └── WebSocketUtil.qtest │ ├── WebUtil │ │ ├── WebUtil.qtest │ │ └── test_file.txt │ └── ZeyosRestClient │ │ └── ZeyosRestClient.qtest │ ├── qore │ ├── classes │ │ ├── Counter │ │ │ └── Counter.qtest │ │ ├── Datasource │ │ │ └── Datasource.qtest │ │ ├── DatasourcePool │ │ │ └── DatasourcePool.qtest │ │ ├── Dir │ │ │ └── Dir.qtest │ │ ├── File │ │ │ └── File.qtest │ │ ├── FileLineIterator │ │ │ └── FileLineIterator.qtest │ │ ├── FtpClient │ │ │ └── FtpClient.qtest │ │ ├── FtpServer.qc │ │ ├── GetOpt │ │ │ └── GetOpt.qtest │ │ ├── HTTPClient │ │ │ └── HTTPClient.qtest │ │ ├── HashListIterator │ │ │ └── HashListIterator.qtest │ │ ├── LineIterators │ │ │ ├── AbstractLineIterator.qtest │ │ │ ├── DataLineIterator.qtest │ │ │ ├── FileLineIterator.qtest │ │ │ └── InputStreamLineIterator.qtest │ │ ├── Program │ │ │ ├── injection.qtest │ │ │ ├── lasting-subprogram-in-thread.qtest │ │ │ ├── program-vars.qtest │ │ │ ├── program.qtest │ │ │ └── test-destructors.q │ │ ├── Queue │ │ │ └── Queue.qtest │ │ ├── SQLStatement │ │ │ └── SQLStatement.qtest │ │ ├── Serializable │ │ │ └── Serializable.qtest │ │ ├── Socket │ │ │ └── Socket.qtest │ │ ├── ThreadPool │ │ │ └── ThreadPool.qtest │ │ └── TreeMap │ │ │ └── TreeMap.qtest │ ├── debug │ │ ├── test-debug-script.q │ │ └── test-debug.qtest │ ├── files │ │ ├── create-iso-8859-1-file.qtest │ │ ├── filetypes.qtest │ │ ├── mkdir.qtest │ │ └── read.qtest │ ├── functions │ │ ├── absolute_path.qtest │ │ ├── auto_cast.qtest │ │ ├── basename.qtest │ │ ├── call_builtin_function.qtest │ │ ├── call_static_method.qtest │ │ ├── ceil.qtest │ │ ├── compare.qtest │ │ ├── compression.qtest │ │ ├── conversions.qtest │ │ ├── crypto.qtest │ │ ├── digests.qtest │ │ ├── exists_function.qtest │ │ ├── floor.qtest │ │ ├── format_number.qtest │ │ ├── functiontype.qtest │ │ ├── get_ex_pos.qtest │ │ ├── get_feature_list.qtest │ │ ├── get_netif_list.qtest │ │ ├── get_qore_option_list.qtest │ │ ├── get_safe_url.qtest │ │ ├── gethost.qtest │ │ ├── glob.qtest │ │ ├── hmac.qtest │ │ ├── html_encode.qtest │ │ ├── opt_arg.qtest │ │ ├── parse_datasource.qtest │ │ ├── parse_url.qtest │ │ ├── parseurl.qtest │ │ ├── pwd.qtest │ │ ├── regex_extract.qtest │ │ ├── replace.qtest │ │ ├── round.qtest │ │ ├── sort.qtest │ │ ├── sprintf.qtest │ │ ├── stat.qtest │ │ ├── string.qtest │ │ ├── strmul.qtest │ │ ├── system.qtest │ │ ├── to_base.qtest │ │ ├── to_int.qtest │ │ ├── type.qtest │ │ └── xrange.qtest │ ├── misc │ │ ├── access.qtest │ │ ├── backquote.qtest │ │ ├── binary.qtest │ │ ├── break_continue.qtest │ │ ├── broken-abstract.qtest │ │ ├── callref.qtest │ │ ├── cast.qtest │ │ ├── catch.qtest │ │ ├── class-init-order.qtest │ │ ├── class_copy.qtest │ │ ├── classes.qtest │ │ ├── const-init.qtest │ │ ├── context.qtest │ │ ├── curly-brackets.qtest │ │ ├── destructor-lock.qtest │ │ ├── empty_hash_ambiguity.qtest │ │ ├── empty_statements.qtest │ │ ├── exception.qtest │ │ ├── gc.qtest │ │ ├── has_effect.qtest │ │ ├── hash.qtest │ │ ├── hashdecl.qtest │ │ ├── issue3179 │ │ │ ├── issue3179.qm │ │ │ └── issue3179.qtest │ │ ├── locals-in-class.qtest │ │ ├── module-loader │ │ │ ├── A.qm │ │ │ ├── B.qm │ │ │ ├── C.qm │ │ │ ├── Issue3212.qm │ │ │ ├── Issue3504.qm │ │ │ ├── Issue3506_0.qm │ │ │ ├── Issue3506_1.qm │ │ │ ├── ModuleDepLoad_0.qm │ │ │ ├── ModuleDepLoad_1.qm │ │ │ ├── MyTestModule.qm │ │ │ ├── MyTestModule2.qm │ │ │ ├── R1.qm │ │ │ ├── R2.qm │ │ │ ├── RD1 │ │ │ │ └── RD1.qm │ │ │ ├── RD2 │ │ │ │ └── RD2.qm │ │ │ ├── ReExportSub.qm │ │ │ ├── ReExportTest.qm │ │ │ ├── SideEffect.qm │ │ │ ├── blacklist.qtest │ │ │ ├── injection.qtest │ │ │ ├── issue-3504.qtest │ │ │ ├── issue-3506.qtest │ │ │ ├── module-program.qtest │ │ │ ├── module-warning-1.qtest │ │ │ ├── module-warning-2.qtest │ │ │ ├── module-warning-3.qtest │ │ │ ├── module-warning-4.qtest │ │ │ ├── module-warning-5.qtest │ │ │ ├── modules.qtest │ │ │ ├── private-module.qtest │ │ │ ├── recursive-dependency.qtest │ │ │ ├── recursive-load-dir.q │ │ │ ├── recursive-load.q │ │ │ └── reexport.qtest │ │ ├── module_options.qtest │ │ ├── object.qtest │ │ ├── octal_const.qtest │ │ ├── parse_directives.qtest │ │ ├── parser-2096.qtest │ │ ├── pseudo-methods.qtest │ │ ├── recursive.qtest │ │ ├── reflection.qtest │ │ ├── rwlock.qtest │ │ ├── signals.qtest │ │ ├── types.qtest │ │ └── underscores.qtest │ ├── namespaces │ │ ├── T.qm │ │ └── ns.qtest │ ├── operators │ │ ├── assignment-op-precedence.qtest │ │ ├── assignment.qtest │ │ ├── background.qtest │ │ ├── broken-list-parsing.qtest │ │ ├── hmap.qtest │ │ ├── list_ops.qtest │ │ ├── logic.qtest │ │ ├── minus-nothing.qtest │ │ ├── null_coalescing.qtest │ │ ├── operators.qtest │ │ ├── plus-eq-nothing.qtest │ │ ├── regex.qtest │ │ ├── unary_plus_minus.qtest │ │ └── value_coalescing.qtest │ ├── parser │ │ ├── issue-3108.qtest │ │ ├── issue-3126.qtest │ │ ├── issue-3387.qtest │ │ └── try-module.qtest │ ├── requires │ │ ├── MyModule │ │ │ ├── MyModule.qm │ │ │ ├── SimpleModuleClass.qc │ │ │ └── SimpleModuleFunctions.ql │ │ └── requiresModul.qtest │ ├── stack │ │ ├── call-stack-overflow-exception.qtest │ │ ├── exception-location.qtest │ │ └── get-call-stack.qtest │ ├── statements │ │ └── foreach.qtest │ ├── streams │ │ ├── binary-input.qtest │ │ ├── binary-output.qtest │ │ ├── buffered-stream-reader.qtest │ │ ├── compression.qtest │ │ ├── encoding-input.qtest │ │ ├── encoding-output.qtest │ │ ├── encryption.qtest │ │ ├── file.qtest │ │ ├── pipe.qtest │ │ ├── stream-reader.qtest │ │ ├── stream-writer.qtest │ │ ├── string-input.qtest │ │ └── string-output.qtest │ ├── threads │ │ ├── background.qtest │ │ ├── deadlock.qtest │ │ ├── max-threads-count.qtest │ │ ├── set_thread_init.qtest │ │ ├── thread-object.qtest │ │ ├── thread-resources.qtest │ │ └── tld.qtest │ └── vars │ │ ├── Europe_Vienna │ │ ├── argv.qtest │ │ ├── array.qtest │ │ ├── bare-ref-test.qtest │ │ ├── cast_to_int.qtest │ │ ├── closures.qtest │ │ ├── constant.qtest │ │ ├── date.qtest │ │ ├── float.qtest │ │ ├── getencoding.qtest │ │ ├── globals.qtest │ │ ├── hash.qtest │ │ ├── hash_time.qtest │ │ ├── infnan.qtest │ │ ├── int.qtest │ │ ├── list.qtest │ │ ├── members.qtest │ │ ├── numbers.qtest │ │ ├── overload.qtest │ │ ├── reference.qtest │ │ ├── statement.qtest │ │ ├── string.qtest │ │ ├── thread_local.qtest │ │ └── typecode.qtest │ └── test.q ├── getrev.sh ├── include └── qore │ ├── AbstractException.h │ ├── AbstractPollState.h │ ├── AbstractPollableIoObjectBase.h │ ├── AbstractPrivateData.h │ ├── AbstractQoreNode.h │ ├── AbstractSmartLock.h │ ├── AbstractThreadResource.h │ ├── AutoVLock.h │ ├── BinaryNode.h │ ├── CallReferenceNode.h │ ├── DBI.h │ ├── Datasource.h │ ├── DateTime.h │ ├── DateTimeNode.h │ ├── ExceptionSink.h │ ├── InputStream.h │ ├── ModuleManager.h │ ├── OutputStream.h │ ├── ParseOptionMap.h │ ├── Qore.h │ ├── QoreClass.h │ ├── QoreCondition.h │ ├── QoreCounter.h │ ├── QoreDebugProgram.h │ ├── QoreEncoding.h │ ├── QoreEvents.h │ ├── QoreFile.h │ ├── QoreFtpClient.h │ ├── QoreHTTPClient.h │ ├── QoreHashNode.h │ ├── QoreHttpClientObject.h │ ├── QoreIteratorBase.h │ ├── QoreLib.h │ ├── QoreListNode.h │ ├── QoreNamespace.h │ ├── QoreNet.h │ ├── QoreNothingNode.h │ ├── QoreNullNode.h │ ├── QoreNumberNode.h │ ├── QoreObject.h │ ├── QoreProgram.h │ ├── QoreQueue.h │ ├── QoreQueueHelper.h │ ├── QoreRWLock.h │ ├── QoreReferenceCounter.h │ ├── QoreReflection.h │ ├── QoreRegexInterface.h │ ├── QoreSSLBase.h │ ├── QoreSSLCertificate.h │ ├── QoreSSLPrivateKey.h │ ├── QoreSocket.h │ ├── QoreSocketObject.h │ ├── QoreStandardException.h │ ├── QoreString.h │ ├── QoreStringNode.h │ ├── QoreThreadLocalStorage.h │ ├── QoreThreadLock.h │ ├── QoreType.h │ ├── QoreTypeSafeReferenceHelper.h │ ├── QoreURL.h │ ├── QoreValue.h │ ├── QoreXSinkException.h │ ├── RWLock.h │ ├── ReferenceArgumentHelper.h │ ├── ReferenceHolder.h │ ├── ReferenceNode.h │ ├── Restrictions.h │ ├── SQLStatement.h │ ├── ScopeGuard.h │ ├── ScopeGuard.htm │ ├── Sequence.h │ ├── SmartMutex.h │ ├── StreamBase.h │ ├── SystemEnvironment.h │ ├── Transform.h │ ├── TypedHashDecl.h │ ├── UnicodeCharacterIterator.h │ ├── common.h │ ├── intern │ ├── AbstractIteratorHelper.h │ ├── AbstractStatement.h │ ├── BackquoteNode.h │ ├── BarewordNode.h │ ├── BinaryInputStream.h │ ├── BinaryOutputStream.h │ ├── BreakStatement.h │ ├── BufferedStreamReader.h │ ├── BuiltinFunction.h │ ├── CallReferenceCallNode.h │ ├── CallReferenceNode.h │ ├── CaseNodeRegex.h │ ├── CaseNodeWithOperator.h │ ├── ClassRefNode.h │ ├── ComplexContextrefNode.h │ ├── CompressionTransforms.h │ ├── ConstantList.h │ ├── Context.h │ ├── ContextRowNode.h │ ├── ContextStatement.h │ ├── ContextrefNode.h │ ├── ContinueStatement.h │ ├── DataLineIterator.h │ ├── DatasourcePool.h │ ├── DatasourceStatementHelper.h │ ├── DoWhileStatement.h │ ├── EncodingConversionInputStream.h │ ├── EncodingConversionOutputStream.h │ ├── EncodingConvertor.h │ ├── EncryptionTransforms.h │ ├── ExecArgList.h │ ├── ExpressionStatement.h │ ├── FileInputStream.h │ ├── FileLineIterator.h │ ├── FileOutputStream.h │ ├── FindNode.h │ ├── ForEachStatement.h │ ├── ForStatement.h │ ├── Function.h │ ├── FunctionCallNode.h │ ├── FunctionList.h │ ├── FunctionalOperator.h │ ├── FunctionalOperatorInterface.h │ ├── GlobalVariableList.h │ ├── HashDeclList.h │ ├── IconvHelper.h │ ├── IfStatement.h │ ├── InputStreamLineIterator.h │ ├── InputStreamWrapper.h │ ├── LocalVar.h │ ├── ManagedDatasource.h │ ├── ModuleInfo.h │ ├── NamedScope.h │ ├── NewComplexTypeNode.h │ ├── ObjectMethodReferenceNode.h │ ├── OnBlockExitStatement.h │ ├── OutputStreamWrapper.h │ ├── ParseNode.h │ ├── ParseReferenceNode.h │ ├── ParserSupport.h │ ├── QC_AbstractPollableIoObjectBase.h │ ├── QC_AbstractSmartLock.h │ ├── QC_AbstractThreadResource.h │ ├── QC_AutoGate.h │ ├── QC_AutoLock.h │ ├── QC_AutoReadLock.h │ ├── QC_AutoWriteLock.h │ ├── QC_Breakpoint.h │ ├── QC_Condition.h │ ├── QC_Counter.h │ ├── QC_Datasource.h │ ├── QC_DatasourcePool.h │ ├── QC_DebugProgram.h │ ├── QC_Dir.h │ ├── QC_Expression.h │ ├── QC_File.h │ ├── QC_FilePollOperation.h │ ├── QC_FtpClient.h │ ├── QC_Gate.h │ ├── QC_GetOpt.h │ ├── QC_HTTPClient.h │ ├── QC_HTTPClientPollOperation.h │ ├── QC_Mutex.h │ ├── QC_Program.h │ ├── QC_ProgramControl.h │ ├── QC_Queue.h │ ├── QC_RWLock.h │ ├── QC_SQLStatement.h │ ├── QC_SSLCertificate.h │ ├── QC_SSLPrivateKey.h │ ├── QC_Sequence.h │ ├── QC_Serializable.h │ ├── QC_Socket.h │ ├── QC_SocketPollOperation.h │ ├── QC_SocketPollOperationBase.h │ ├── QC_TermIOS.h │ ├── QC_TimeZone.h │ ├── QC_TreeMap.h │ ├── QException.h │ ├── QoreAndEqualsOperatorNode.h │ ├── QoreAssignmentOperatorNode.h │ ├── QoreBackgroundOperatorNode.h │ ├── QoreBinaryAndOperatorNode.h │ ├── QoreBinaryLValueOperatorNode.h │ ├── QoreBinaryNotOperatorNode.h │ ├── QoreBinaryOrOperatorNode.h │ ├── QoreBinaryXorOperatorNode.h │ ├── QoreCastOperatorNode.h │ ├── QoreChompOperatorNode.h │ ├── QoreClassIntern.h │ ├── QoreClassList.h │ ├── QoreClosureNode.h │ ├── QoreClosureParseNode.h │ ├── QoreDeleteOperatorNode.h │ ├── QoreDir.h │ ├── QoreDivideEqualsOperatorNode.h │ ├── QoreDivisionOperatorNode.h │ ├── QoreDotEvalOperatorNode.h │ ├── QoreElementsOperatorNode.h │ ├── QoreEllipsesNode.h │ ├── QoreException.h │ ├── QoreExistsOperatorNode.h │ ├── QoreExtractOperatorNode.h │ ├── QoreFoldlOperatorNode.h │ ├── QoreGetOpt.h │ ├── QoreHashIterator.h │ ├── QoreHashListIterator.h │ ├── QoreHashMapOperatorNode.h │ ├── QoreHashMapSelectOperatorNode.h │ ├── QoreHashNodeIntern.h │ ├── QoreHashObjectDereferenceOperatorNode.h │ ├── QoreHttpClientObjectIntern.h │ ├── QoreImplicitArgumentNode.h │ ├── QoreImplicitElementNode.h │ ├── QoreInstanceOfOperatorNode.h │ ├── QoreIntMinusEqualsOperatorNode.h │ ├── QoreIntPlusEqualsOperatorNode.h │ ├── QoreIntPostDecrementOperatorNode.h │ ├── QoreIntPostIncrementOperatorNode.h │ ├── QoreIntPreDecrementOperatorNode.h │ ├── QoreIntPreIncrementOperatorNode.h │ ├── QoreKeysOperatorNode.h │ ├── QoreLValue.h │ ├── QoreLibIntern.h │ ├── QoreListAssignmentOperatorNode.h │ ├── QoreListHashIterator.h │ ├── QoreListIterator.h │ ├── QoreListNodeEvalOptionalRefHolder.h │ ├── QoreLogicalAbsoluteEqualsOperatorNode.h │ ├── QoreLogicalAbsoluteNotEqualsOperatorNode.h │ ├── QoreLogicalAndOperatorNode.h │ ├── QoreLogicalComparisonOperatorNode.h │ ├── QoreLogicalEqualsOperatorNode.h │ ├── QoreLogicalGreaterThanOperatorNode.h │ ├── QoreLogicalGreaterThanOrEqualsOperatorNode.h │ ├── QoreLogicalLessThanOperatorNode.h │ ├── QoreLogicalLessThanOrEqualsOperatorNode.h │ ├── QoreLogicalNotEqualsOperatorNode.h │ ├── QoreLogicalNotOperatorNode.h │ ├── QoreLogicalOrOperatorNode.h │ ├── QoreMapOperatorNode.h │ ├── QoreMapSelectOperatorNode.h │ ├── QoreMinusEqualsOperatorNode.h │ ├── QoreMinusOperatorNode.h │ ├── QoreModuloEqualsOperatorNode.h │ ├── QoreModuloOperatorNode.h │ ├── QoreMultiplicationOperatorNode.h │ ├── QoreMultiplyEqualsOperatorNode.h │ ├── QoreNamespaceIntern.h │ ├── QoreNamespaceList.h │ ├── QoreNullCoalescingOperatorNode.h │ ├── QoreObjectIntern.h │ ├── QoreObjectIterator.h │ ├── QoreOperatorNode.h │ ├── QoreOrEqualsOperatorNode.h │ ├── QoreParseClass.h │ ├── QoreParseHashNode.h │ ├── QoreParseListNode.h │ ├── QorePlusEqualsOperatorNode.h │ ├── QorePlusOperatorNode.h │ ├── QorePopOperatorNode.h │ ├── QorePostDecrementOperatorNode.h │ ├── QorePostIncrementOperatorNode.h │ ├── QorePreDecrementOperatorNode.h │ ├── QorePreIncrementOperatorNode.h │ ├── QorePseudoMethods.h │ ├── QorePushOperatorNode.h │ ├── QoreQuestionMarkOperatorNode.h │ ├── QoreQueueIntern.h │ ├── QoreRangeOperatorNode.h │ ├── QoreRegex.h │ ├── QoreRegexBase.h │ ├── QoreRegexExtractOperatorNode.h │ ├── QoreRegexMatchOperatorNode.h │ ├── QoreRegexNMatchOperatorNode.h │ ├── QoreRegexSubst.h │ ├── QoreRegexSubstOperatorNode.h │ ├── QoreRemoveOperatorNode.h │ ├── QoreSQLStatement.h │ ├── QoreSSLIntern.h │ ├── QoreSelectOperatorNode.h │ ├── QoreSerializable.h │ ├── QoreShiftLeftEqualsOperatorNode.h │ ├── QoreShiftLeftOperatorNode.h │ ├── QoreShiftOperatorNode.h │ ├── QoreShiftRightEqualsOperatorNode.h │ ├── QoreShiftRightOperatorNode.h │ ├── QoreSignal.h │ ├── QoreSpliceOperatorNode.h │ ├── QoreSquareBracketsOperatorNode.h │ ├── QoreSquareBracketsRangeOperatorNode.h │ ├── QoreThreadList.h │ ├── QoreTimeZoneManager.h │ ├── QoreTransliteration.h │ ├── QoreTransliterationOperatorNode.h │ ├── QoreTrimOperatorNode.h │ ├── QoreTypeInfo.h │ ├── QoreUnaryMinusOperatorNode.h │ ├── QoreUnaryPlusOperatorNode.h │ ├── QoreUnshiftOperatorNode.h │ ├── QoreValueCoalescingOperatorNode.h │ ├── QoreXorEqualsOperatorNode.h │ ├── RSection.h │ ├── RSet.h │ ├── RangeIterator.h │ ├── RethrowStatement.h │ ├── ReturnStatement.h │ ├── SSLSocketHelper.h │ ├── ScopedObjectCallNode.h │ ├── ScopedRefNode.h │ ├── SelfVarrefNode.h │ ├── SingleValueIterator.h │ ├── StatementBlock.h │ ├── StaticClassVarRefNode.h │ ├── StderrOutputStream.h │ ├── StdoutOutputStream.h │ ├── StreamPipe.h │ ├── StreamReader.h │ ├── StreamWriter.h │ ├── StringInputStream.h │ ├── StringOutputStream.h │ ├── StringReaderHelper.h │ ├── SummarizeStatement.h │ ├── SwitchStatement.h │ ├── ThreadClosureVariableStack.h │ ├── ThreadExitStatement.h │ ├── ThreadLocalVariableData.h │ ├── ThreadPool.h │ ├── ThreadResourceList.h │ ├── ThrowStatement.h │ ├── TransformInputStream.h │ ├── TransformOutputStream.h │ ├── TryStatement.h │ ├── VLock.h │ ├── VRMutex.h │ ├── VarRefNode.h │ ├── Variable.h │ ├── WeakHashReferenceNode.h │ ├── WeakListReferenceNode.h │ ├── WeakReferenceNode.h │ ├── WhileStatement.h │ ├── config.h │ ├── getopt_long.h │ ├── inline_printf.h │ ├── lvalue_ref.h │ ├── ql_compression.h │ ├── ql_crypto.h │ ├── ql_debug.h │ ├── ql_env.h │ ├── ql_file.h │ ├── ql_lib.h │ ├── ql_list.h │ ├── ql_math.h │ ├── ql_misc.h │ ├── ql_object.h │ ├── ql_pwd.h │ ├── ql_string.h │ ├── ql_thread.h │ ├── ql_time.h │ ├── ql_type.h │ ├── qore_date_private.h │ ├── qore_dbi_private.h │ ├── qore_ds_private.h │ ├── qore_encoding_private.h │ ├── qore_glob.h │ ├── qore_list_private.h │ ├── qore_number_private.h │ ├── qore_program_private.h │ ├── qore_qd_private.h │ ├── qore_qf_private.h │ ├── qore_socket_private.h │ ├── qore_string_private.h │ ├── qore_thread_intern.h │ ├── qore_type_safe_ref_helper_priv.h │ ├── qore_value_list_private.h │ ├── qore_var_rwlock_priv.h │ ├── sql_statement_private.h │ ├── ssl_constants.h │ ├── typed_hash_decl_private.h │ ├── win32-config.h │ └── xxhash.h │ ├── macros-aarch64.h │ ├── macros-arm.h │ ├── macros-i386.h │ ├── macros-ia64.h │ ├── macros-none.h │ ├── macros-parisc.h │ ├── macros-powerpc.h │ ├── macros-ppc64.h │ ├── macros-riscv.h │ ├── macros-s390x.h │ ├── macros-sparc.h │ ├── macros-x86_64.h │ ├── macros.h │ ├── node_types.h │ ├── params.h │ ├── qlist │ ├── qore_bitopts.h │ ├── qore_thread.h │ ├── safe_dslist │ ├── support.h │ ├── vector_map │ └── vector_set ├── lib ├── AbstractQoreNode.cpp ├── AbstractSmartLock.cpp ├── AbstractStatement.cpp ├── AbstractThreadResource.cpp ├── BackquoteNode.cpp ├── BarewordNode.cpp ├── BinaryNode.cpp ├── CallReferenceNode.cpp ├── ClassRefNode.cpp ├── ComplexContextrefNode.cpp ├── CompressionTransforms.cpp ├── ConstantList.cpp ├── Context.cpp ├── ContextRowNode.cpp ├── ContextStatement.cpp ├── ContextrefNode.cpp ├── DBI.cpp ├── Datasource.cpp ├── DatasourcePool.cpp ├── DateTime.cpp ├── DateTimeNode.cpp ├── DoWhileStatement.cpp ├── EncryptionTransforms.cpp ├── ExceptionSink.cpp ├── ExecArgList.cpp ├── ExpressionStatement.cpp ├── FindNode.cpp ├── ForEachStatement.cpp ├── ForStatement.cpp ├── Function.cpp ├── FunctionCallNode.cpp ├── FunctionList.cpp ├── FunctionalOperator.cpp ├── FunctionalOperatorInterface.cpp ├── GlobalVariableList.cpp ├── HashDeclList.cpp ├── IfStatement.cpp ├── Makefile.am ├── ManagedDatasource.cpp ├── ModuleManager.cpp ├── NamedScope.cpp ├── NewComplexTypeNode.cpp ├── OnBlockExitStatement.cpp ├── ParseOptionMap.cpp ├── Pseudo_QC_All.qpp ├── Pseudo_QC_Binary.qpp ├── Pseudo_QC_Bool.qpp ├── Pseudo_QC_Callref.qpp ├── Pseudo_QC_Closure.qpp ├── Pseudo_QC_Date.qpp ├── Pseudo_QC_Float.qpp ├── Pseudo_QC_Hash.qpp ├── Pseudo_QC_Int.qpp ├── Pseudo_QC_List.qpp ├── Pseudo_QC_Nothing.qpp ├── Pseudo_QC_Number.qpp ├── Pseudo_QC_Object.qpp ├── Pseudo_QC_String.qpp ├── QC_AbstractBidirectionalIterator.qpp ├── QC_AbstractDatasource.qpp ├── QC_AbstractIterator.qpp ├── QC_AbstractLineIterator.qpp ├── QC_AbstractPollOperation.qpp ├── QC_AbstractPollableIoObject.qpp ├── QC_AbstractPollableIoObjectBase.qpp ├── QC_AbstractQuantifiedBidirectionalIterator.qpp ├── QC_AbstractQuantifiedIterator.qpp ├── QC_AbstractSQLStatement.qpp ├── QC_AbstractSmartLock.qpp ├── QC_AbstractThreadResource.qpp ├── QC_AutoGate.qpp ├── QC_AutoLock.qpp ├── QC_AutoReadLock.qpp ├── QC_AutoWriteLock.qpp ├── QC_BinaryInputStream.qpp ├── QC_BinaryOutputStream.qpp ├── QC_Breakpoint.qpp ├── QC_BufferedStreamReader.qpp ├── QC_Condition.qpp ├── QC_Counter.qpp ├── QC_DataLineIterator.qpp ├── QC_Datasource.qpp ├── QC_DatasourcePool.qpp ├── QC_DebugProgram.qpp ├── QC_Dir.qpp ├── QC_EncodingConversionInputStream.qpp ├── QC_EncodingConversionOutputStream.qpp ├── QC_Expression.qpp ├── QC_File.qpp ├── QC_FileInputStream.qpp ├── QC_FileLineIterator.qpp ├── QC_FileOutputStream.qpp ├── QC_FilePollOperation.qpp ├── QC_FtpClient.qpp ├── QC_Gate.qpp ├── QC_GetOpt.qpp ├── QC_HTTPClient.qpp ├── QC_HTTPClientPollOperation.qpp ├── QC_HashIterator.qpp ├── QC_HashKeyIterator.qpp ├── QC_HashKeyReverseIterator.qpp ├── QC_HashListIterator.qpp ├── QC_HashListReverseIterator.qpp ├── QC_HashPairIterator.qpp ├── QC_HashPairReverseIterator.qpp ├── QC_HashReverseIterator.qpp ├── QC_InputStream.qpp ├── QC_InputStreamLineIterator.qpp ├── QC_ListHashIterator.qpp ├── QC_ListHashReverseIterator.qpp ├── QC_ListIterator.qpp ├── QC_ListReverseIterator.qpp ├── QC_Mutex.qpp ├── QC_ObjectIterator.qpp ├── QC_ObjectKeyIterator.qpp ├── QC_ObjectKeyReverseIterator.qpp ├── QC_ObjectPairIterator.qpp ├── QC_ObjectPairReverseIterator.qpp ├── QC_ObjectReverseIterator.qpp ├── QC_OutputStream.qpp ├── QC_PipeInputStream.qpp ├── QC_PipeOutputStream.qpp ├── QC_Program.qpp ├── QC_ProgramControl.qpp ├── QC_Queue.qpp ├── QC_RWLock.qpp ├── QC_RangeIterator.qpp ├── QC_ReadOnlyFile.qpp ├── QC_SQLStatement.qpp ├── QC_SSLCertificate.qpp ├── QC_SSLPrivateKey.qpp ├── QC_Sequence.qpp ├── QC_Serializable.qpp ├── QC_SingleValueIterator.qpp ├── QC_Socket.qpp ├── QC_SocketPollOperation.qpp ├── QC_SocketPollOperationBase.qpp ├── QC_StderrOutputStream.qpp ├── QC_StdoutOutputStream.qpp ├── QC_StreamBase.qpp ├── QC_StreamPipe.qpp ├── QC_StreamReader.qpp ├── QC_StreamWriter.qpp ├── QC_StringInputStream.qpp ├── QC_StringOutputStream.qpp ├── QC_TermIOS.qpp ├── QC_ThreadPool.qpp ├── QC_TimeZone.qpp ├── QC_Transform.qpp ├── QC_TransformInputStream.qpp ├── QC_TransformOutputStream.qpp ├── QC_TreeMap.qpp ├── QException.cpp ├── QoreAndEqualsOperatorNode.cpp ├── QoreAssignmentOperatorNode.cpp ├── QoreBackgroundOperatorNode.cpp ├── QoreBinaryAndOperatorNode.cpp ├── QoreBinaryNotOperatorNode.cpp ├── QoreBinaryOrOperatorNode.cpp ├── QoreBinaryXorOperatorNode.cpp ├── QoreCastOperatorNode.cpp ├── QoreChompOperatorNode.cpp ├── QoreClass.cpp ├── QoreClassList.cpp ├── QoreClosureNode.cpp ├── QoreClosureParseNode.cpp ├── QoreCondition.cpp ├── QoreCounter.cpp ├── QoreDeleteOperatorNode.cpp ├── QoreDir.cpp ├── QoreDivideEqualsOperatorNode.cpp ├── QoreDivisionOperatorNode.cpp ├── QoreDotEvalOperatorNode.cpp ├── QoreElementsOperatorNode.cpp ├── QoreEllipsesNode.cpp ├── QoreException.cpp ├── QoreExistsOperatorNode.cpp ├── QoreExtractOperatorNode.cpp ├── QoreFile.cpp ├── QoreFoldlOperatorNode.cpp ├── QoreFtpClient.cpp ├── QoreGetOpt.cpp ├── QoreHTTPClient.cpp ├── QoreHashMapOperatorNode.cpp ├── QoreHashMapSelectOperatorNode.cpp ├── QoreHashNode.cpp ├── QoreHashObjectDereferenceOperatorNode.cpp ├── QoreHttpClientObject.cpp ├── QoreImplicitArgumentNode.cpp ├── QoreImplicitElementNode.cpp ├── QoreInstanceOfOperatorNode.cpp ├── QoreIntMinusEqualsOperatorNode.cpp ├── QoreIntPlusEqualsOperatorNode.cpp ├── QoreIntPostDecrementOperatorNode.cpp ├── QoreIntPostIncrementOperatorNode.cpp ├── QoreIntPreDecrementOperatorNode.cpp ├── QoreIntPreIncrementOperatorNode.cpp ├── QoreKeysOperatorNode.cpp ├── QoreLib.cpp ├── QoreListAssignmentOperatorNode.cpp ├── QoreListNode.cpp ├── QoreLogicalAbsoluteEqualsOperatorNode.cpp ├── QoreLogicalAndOperatorNode.cpp ├── QoreLogicalComparisonOperatorNode.cpp ├── QoreLogicalEqualsOperatorNode.cpp ├── QoreLogicalGreaterThanOperatorNode.cpp ├── QoreLogicalGreaterThanOrEqualsOperatorNode.cpp ├── QoreLogicalLessThanOperatorNode.cpp ├── QoreLogicalLessThanOrEqualsOperatorNode.cpp ├── QoreLogicalNotOperatorNode.cpp ├── QoreLogicalOrOperatorNode.cpp ├── QoreMapOperatorNode.cpp ├── QoreMapSelectOperatorNode.cpp ├── QoreMinusEqualsOperatorNode.cpp ├── QoreMinusOperatorNode.cpp ├── QoreModuloEqualsOperatorNode.cpp ├── QoreModuloOperatorNode.cpp ├── QoreMultiplicationOperatorNode.cpp ├── QoreMultiplyEqualsOperatorNode.cpp ├── QoreNamespace.cpp ├── QoreNet.cpp ├── QoreNothingNode.cpp ├── QoreNullCoalescingOperatorNode.cpp ├── QoreNullNode.cpp ├── QoreNumberNode.cpp ├── QoreObject.cpp ├── QoreOrEqualsOperatorNode.cpp ├── QoreParseHashNode.cpp ├── QoreParseListNode.cpp ├── QorePlusEqualsOperatorNode.cpp ├── QorePlusOperatorNode.cpp ├── QorePopOperatorNode.cpp ├── QorePostDecrementOperatorNode.cpp ├── QorePostIncrementOperatorNode.cpp ├── QorePreDecrementOperatorNode.cpp ├── QorePreIncrementOperatorNode.cpp ├── QoreProgram.cpp ├── QoreProgramHelper.cpp ├── QorePseudoMethods.cpp ├── QorePushOperatorNode.cpp ├── QoreQuestionMarkOperatorNode.cpp ├── QoreQueue.cpp ├── QoreQueueHelper.cpp ├── QoreRWLock.cpp ├── QoreRangeOperatorNode.cpp ├── QoreReferenceCounter.cpp ├── QoreReflection.cpp ├── QoreRegex.cpp ├── QoreRegexBase.cpp ├── QoreRegexExtractOperatorNode.cpp ├── QoreRegexInterface.cpp ├── QoreRegexMatchOperatorNode.cpp ├── QoreRegexNMatchOperatorNode.cpp ├── QoreRegexSubst.cpp ├── QoreRegexSubstOperatorNode.cpp ├── QoreRemoveOperatorNode.cpp ├── QoreSQLStatement.cpp ├── QoreSSLBase.cpp ├── QoreSSLCertificate.cpp ├── QoreSSLPrivateKey.cpp ├── QoreSelectOperatorNode.cpp ├── QoreSerializable.cpp ├── QoreShiftLeftEqualsOperatorNode.cpp ├── QoreShiftLeftOperatorNode.cpp ├── QoreShiftOperatorNode.cpp ├── QoreShiftRightEqualsOperatorNode.cpp ├── QoreShiftRightOperatorNode.cpp ├── QoreSignal.cpp ├── QoreSocket.cpp ├── QoreSocketObject.cpp ├── QoreSpliceOperatorNode.cpp ├── QoreSquareBracketsOperatorNode.cpp ├── QoreSquareBracketsRangeOperatorNode.cpp ├── QoreStandardException.cpp ├── QoreString.cpp ├── QoreStringNode.cpp ├── QoreThreadLocalStorage.cpp ├── QoreTimeZoneManager.cpp ├── QoreTransliteration.cpp ├── QoreTransliterationOperatorNode.cpp ├── QoreTrimOperatorNode.cpp ├── QoreType.cpp ├── QoreTypeInfo.cpp ├── QoreURL.cpp ├── QoreUnaryMinusOperatorNode.cpp ├── QoreUnaryPlusOperatorNode.cpp ├── QoreUnshiftOperatorNode.cpp ├── QoreValue.cpp ├── QoreValueCoalescingOperatorNode.cpp ├── QoreXSinkException.cpp ├── QoreXorEqualsOperatorNode.cpp ├── RSection.cpp ├── RSet.cpp ├── RWLock.cpp ├── ReferenceArgumentHelper.cpp ├── ReferenceHelper.cpp ├── ReferenceNode.cpp ├── RethrowStatement.cpp ├── ReturnStatement.cpp ├── SQLStatement.cpp ├── ScopedRefNode.cpp ├── SelfVarrefNode.cpp ├── Sequence.cpp ├── SmartMutex.cpp ├── StatementBlock.cpp ├── StaticClassVarRefNode.cpp ├── StreamPipe.cpp ├── SummarizeStatement.cpp ├── SwitchStatement.cpp ├── SystemEnvironment.cpp ├── ThreadClosureVariableStack.cpp ├── ThreadLocalVariableData.cpp ├── ThreadResourceList.cpp ├── ThrowStatement.cpp ├── Transform.cpp ├── TryStatement.cpp ├── TypedHashDecl.cpp ├── UnicodeCharacterIterator.cpp ├── VLock.cpp ├── VRMutex.cpp ├── VarRefNode.cpp ├── Variable.cpp ├── WeakHashReferenceNode.cpp ├── WeakListReferenceNode.cpp ├── WeakReferenceNode.cpp ├── WhileStatement.cpp ├── acc-64bit-ia64.s ├── acc-parisc32.s ├── charset.cpp ├── getopt_long.cpp ├── glob.cpp ├── inet_ntop.cpp ├── inet_pton.cpp ├── inline_printf.cpp ├── lvalue_ref.cpp ├── parser.ypp ├── qc_errno.qpp ├── qc_option.qpp ├── qc_qore.qpp ├── ql_compression.qpp ├── ql_context.qpp ├── ql_crypto.qpp ├── ql_dbi.qpp ├── ql_debug.cpp ├── ql_env.qpp ├── ql_file.qpp ├── ql_lib.qpp ├── ql_list.qpp ├── ql_math.qpp ├── ql_misc.qpp ├── ql_object.qpp ├── ql_pwd.qpp ├── ql_string.qpp ├── ql_thread.qpp ├── ql_time.qpp ├── ql_type.qpp ├── qore-main.cpp ├── qore_date_private.cpp ├── qpp.cpp ├── scanner.lpp ├── single-compilation-unit.cpp ├── sunpro-i386.s ├── sunpro-sparc32.s ├── sunpro-x86_64.s ├── support.cpp ├── thread.cpp ├── unicode-charmaps.cpp └── xxhash.cpp ├── m4 ├── acx_pthread.m4 ├── ax_cxx_compile_stdcxx.m4 ├── ax_cxx_compile_stdcxx_11.m4 ├── iconv.m4 ├── stl_hash_map.m4 ├── stl_slist.m4 └── type_socklen_t.m4 ├── make-tests.sh ├── modules ├── astparser │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cmake │ │ └── cmake_uninstall.cmake.in │ ├── config.h.in │ ├── docs │ │ └── mainpage.dox.tmpl │ └── src │ │ ├── AstParseErrorLog.h │ │ ├── AstParser.cpp │ │ ├── AstParser.h │ │ ├── AstParserHolder.cpp │ │ ├── AstParserHolder.h │ │ ├── AstPrinter.cpp │ │ ├── AstPrinter.h │ │ ├── AstTreeHolder.cpp │ │ ├── AstTreeHolder.h │ │ ├── AstTreePrinter.cpp │ │ ├── AstTreePrinter.h │ │ ├── AstTreeSearcher.cpp │ │ ├── AstTreeSearcher.h │ │ ├── Makefile.am │ │ ├── QC_AstParser.h │ │ ├── QC_AstParser.qpp │ │ ├── QC_AstTree.h │ │ ├── QC_AstTree.qpp │ │ ├── QC_AstTreeSearcher.h │ │ ├── QC_AstTreeSearcher.qpp │ │ ├── ast │ │ ├── AST.h │ │ ├── ASTDeclaration.h │ │ ├── ASTDeclarationKind.h │ │ ├── ASTExpression.h │ │ ├── ASTExpressionKind.h │ │ ├── ASTModifiers.h │ │ ├── ASTName.h │ │ ├── ASTNode.h │ │ ├── ASTNodeType.h │ │ ├── ASTOperator.h │ │ ├── ASTParseError.h │ │ ├── ASTParseLocation.h │ │ ├── ASTParseOption.h │ │ ├── ASTStatement.h │ │ ├── ASTStatementKind.h │ │ ├── ASTSymbolInfo.h │ │ ├── ASTSymbolKind.h │ │ ├── ASTSymbolUsageKind.h │ │ ├── ASTTree.h │ │ ├── declarations │ │ │ ├── ASTClassDeclaration.h │ │ │ ├── ASTClosureDeclaration.h │ │ │ ├── ASTConstantDeclaration.h │ │ │ ├── ASTFunctionDeclaration.h │ │ │ ├── ASTHashDeclaration.h │ │ │ ├── ASTHashMemberDeclaration.h │ │ │ ├── ASTMemberGroupDeclaration.h │ │ │ ├── ASTNamespaceDeclaration.h │ │ │ ├── ASTSuperclassDeclaration.h │ │ │ ├── ASTVarListDeclaration.h │ │ │ └── ASTVariableDeclaration.h │ │ ├── expressions │ │ │ ├── ASTAccessExpression.h │ │ │ ├── ASTAssignmentExpression.h │ │ │ ├── ASTBackquoteExpression.h │ │ │ ├── ASTBinaryExpression.h │ │ │ ├── ASTCallExpression.h │ │ │ ├── ASTCaseExpression.h │ │ │ ├── ASTCastExpression.h │ │ │ ├── ASTClosureExpression.h │ │ │ ├── ASTConstrInitExpression.h │ │ │ ├── ASTContextModExpression.h │ │ │ ├── ASTContextRowExpression.h │ │ │ ├── ASTDeclExpression.h │ │ │ ├── ASTFindExpression.h │ │ │ ├── ASTHashElementExpression.h │ │ │ ├── ASTHashExpression.h │ │ │ ├── ASTHashdeclHashExpression.h │ │ │ ├── ASTImplicitArgExpression.h │ │ │ ├── ASTImplicitElemExpression.h │ │ │ ├── ASTIndexExpression.h │ │ │ ├── ASTListExpression.h │ │ │ ├── ASTLiteralExpression.h │ │ │ ├── ASTNameExpression.h │ │ │ ├── ASTRangeExpression.h │ │ │ ├── ASTRegexExpression.h │ │ │ ├── ASTRegexSubstExpression.h │ │ │ ├── ASTRegexTransExpression.h │ │ │ ├── ASTReturnsExpression.h │ │ │ ├── ASTSwitchBodyExpression.h │ │ │ ├── ASTTernaryExpression.h │ │ │ └── ASTUnaryExpression.h │ │ └── statements │ │ │ ├── ASTBreakStatement.h │ │ │ ├── ASTCallStatement.h │ │ │ ├── ASTContextStatement.h │ │ │ ├── ASTContinueStatement.h │ │ │ ├── ASTDoWhileStatement.h │ │ │ ├── ASTExpressionStatement.h │ │ │ ├── ASTForStatement.h │ │ │ ├── ASTForeachStatement.h │ │ │ ├── ASTIfStatement.h │ │ │ ├── ASTOnBlockExitStatement.h │ │ │ ├── ASTRethrowStatement.h │ │ │ ├── ASTReturnStatement.h │ │ │ ├── ASTStatementBlock.h │ │ │ ├── ASTSummarizeStatement.h │ │ │ ├── ASTSwitchStatement.h │ │ │ ├── ASTThreadExitStatement.h │ │ │ ├── ASTThrowStatement.h │ │ │ ├── ASTTryStatement.h │ │ │ └── ASTWhileStatement.h │ │ ├── ast_parser.ypp │ │ ├── ast_scanner.lpp │ │ ├── astparser-module.cpp │ │ ├── astparser_scu.cpp │ │ ├── ql_ast.h │ │ ├── ql_ast.qpp │ │ └── queries │ │ ├── FindMatchingSymbolsQuery.cpp │ │ ├── FindMatchingSymbolsQuery.h │ │ ├── FindNodeAndParentsQuery.cpp │ │ ├── FindNodeAndParentsQuery.h │ │ ├── FindNodeQuery.cpp │ │ ├── FindNodeQuery.h │ │ ├── FindReferencesQuery.cpp │ │ ├── FindReferencesQuery.h │ │ ├── FindSymbolInfoQuery.cpp │ │ ├── FindSymbolInfoQuery.h │ │ ├── FindSymbolsQuery.cpp │ │ ├── FindSymbolsQuery.h │ │ ├── GetNodesInfoQuery.cpp │ │ ├── GetNodesInfoQuery.h │ │ ├── SymbolInfoFixes.cpp │ │ └── SymbolInfoFixes.h ├── logger_bin │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cmake │ │ └── cmake_uninstall.cmake.in │ ├── docs │ │ └── mainpage.dox.tmpl │ └── src │ │ ├── Makefile.am │ │ ├── QC_Logger.h │ │ ├── QC_Logger.qpp │ │ ├── QC_LoggerAppender.h │ │ ├── QC_LoggerAppender.qpp │ │ ├── QC_LoggerAppenderFile.h │ │ ├── QC_LoggerAppenderFile.qpp │ │ ├── QC_LoggerAppenderQueue.h │ │ ├── QC_LoggerAppenderQueue.qpp │ │ ├── QC_LoggerAppenderWithLayout.h │ │ ├── QC_LoggerAppenderWithLayout.qpp │ │ ├── QC_LoggerEvent.h │ │ ├── QC_LoggerEvent.qpp │ │ ├── QC_LoggerFilter.h │ │ ├── QC_LoggerFilter.qpp │ │ ├── QC_LoggerInterface.h │ │ ├── QC_LoggerInterface.qpp │ │ ├── QC_LoggerLayout.h │ │ ├── QC_LoggerLayout.qpp │ │ ├── QC_LoggerLayoutPattern.h │ │ ├── QC_LoggerLayoutPattern.qpp │ │ ├── QC_LoggerLevel.h │ │ ├── QC_LoggerLevel.qpp │ │ ├── QC_LoggerPattern.h │ │ ├── QC_LoggerPattern.qpp │ │ ├── QoreLogger.cpp │ │ ├── QoreLogger.h │ │ ├── QoreLoggerAppender.cpp │ │ ├── QoreLoggerAppender.h │ │ ├── QoreLoggerAppenderFile.cpp │ │ ├── QoreLoggerAppenderFile.h │ │ ├── QoreLoggerAppenderQueue.cpp │ │ ├── QoreLoggerAppenderQueue.h │ │ ├── QoreLoggerAppenderWithLayout.cpp │ │ ├── QoreLoggerAppenderWithLayout.h │ │ ├── QoreLoggerEvent.cpp │ │ ├── QoreLoggerEvent.h │ │ ├── QoreLoggerInterface.h │ │ ├── QoreLoggerLayoutPattern.cpp │ │ ├── QoreLoggerLayoutPattern.h │ │ ├── QoreLoggerLevel.cpp │ │ ├── QoreLoggerLevel.h │ │ ├── QoreLoggerPattern.cpp │ │ ├── QoreLoggerPattern.h │ │ ├── logger-module.cpp │ │ ├── logger_scu.cpp │ │ └── qore_logger.h └── reflection │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── cmake │ └── cmake_uninstall.cmake.in │ ├── docs │ └── mainpage.dox.tmpl │ └── src │ ├── AbstractReflectionObject.cpp │ ├── AbstractReflectionObject.h │ ├── Makefile.am │ ├── QC_AbstractClass.h │ ├── QC_AbstractClass.qpp │ ├── QC_AbstractClassMember.h │ ├── QC_AbstractClassMember.qpp │ ├── QC_AbstractConstant.h │ ├── QC_AbstractConstant.qpp │ ├── QC_AbstractMember.h │ ├── QC_AbstractMember.qpp │ ├── QC_AbstractMethod.h │ ├── QC_AbstractMethod.qpp │ ├── QC_AbstractMethodVariant.h │ ├── QC_AbstractMethodVariant.qpp │ ├── QC_AbstractReflectionFunction.h │ ├── QC_AbstractReflectionFunction.qpp │ ├── QC_AbstractVariant.h │ ├── QC_AbstractVariant.qpp │ ├── QC_Class.h │ ├── QC_Class.qpp │ ├── QC_ClassConstant.h │ ├── QC_ClassConstant.qpp │ ├── QC_Constant.h │ ├── QC_Constant.qpp │ ├── QC_ConstructorMethod.h │ ├── QC_ConstructorMethod.qpp │ ├── QC_ConstructorMethodVariant.h │ ├── QC_ConstructorMethodVariant.qpp │ ├── QC_CopyMethod.h │ ├── QC_CopyMethod.qpp │ ├── QC_CopyMethodVariant.h │ ├── QC_CopyMethodVariant.qpp │ ├── QC_DestructorMethod.h │ ├── QC_DestructorMethod.qpp │ ├── QC_DestructorMethodVariant.h │ ├── QC_DestructorMethodVariant.qpp │ ├── QC_Function.h │ ├── QC_Function.qpp │ ├── QC_FunctionVariant.h │ ├── QC_FunctionVariant.qpp │ ├── QC_GlobalVar.h │ ├── QC_GlobalVar.qpp │ ├── QC_Namespace.h │ ├── QC_Namespace.qpp │ ├── QC_NormalMember.h │ ├── QC_NormalMember.qpp │ ├── QC_NormalMethod.h │ ├── QC_NormalMethod.qpp │ ├── QC_NormalMethodVariant.h │ ├── QC_NormalMethodVariant.qpp │ ├── QC_PseudoClass.h │ ├── QC_PseudoClass.qpp │ ├── QC_PseudoMethod.h │ ├── QC_PseudoMethod.qpp │ ├── QC_PseudoMethodVariant.h │ ├── QC_PseudoMethodVariant.qpp │ ├── QC_StaticMember.h │ ├── QC_StaticMember.qpp │ ├── QC_StaticMethod.h │ ├── QC_StaticMethod.qpp │ ├── QC_StaticMethodVariant.h │ ├── QC_StaticMethodVariant.qpp │ ├── QC_Type.h │ ├── QC_Type.qpp │ ├── QC_TypedHash.h │ ├── QC_TypedHash.qpp │ ├── QC_TypedHashMember.h │ ├── QC_TypedHashMember.qpp │ ├── qore_reflection.h │ ├── reflection-module.cpp │ └── reflection_scu.cpp ├── next_build.sh ├── qlib ├── AsyncSocketIo │ ├── AsyncSocketIo.qm │ └── AsyncSocketIoController.qc ├── AwsRestClient.qm ├── AwsRestClientDataProvider │ ├── AwsRestClientCallDataProvider.qc │ ├── AwsRestClientDataProvider.qc │ ├── AwsRestClientDataProvider.qm │ ├── AwsRestClientDataProviderBase.qc │ ├── AwsRestClientDataProviderFactory.qc │ ├── AwsRestClientDeleteDataProvider.qc │ ├── AwsRestClientGetDataProvider.qc │ ├── AwsRestClientHeadDataProvider.qc │ ├── AwsRestClientOptionsDataProvider.qc │ ├── AwsRestClientPatchDataProvider.qc │ ├── AwsRestClientPostDataProvider.qc │ └── AwsRestClientPutDataProvider.qc ├── BillwerkRestClient.qm ├── BulkSqlUtil │ ├── AbstractBulkOperation.qc │ ├── BulkInsertOperation.qc │ ├── BulkSqlUtil.qm │ └── BulkUpsertOperation.qc ├── CdsRestClient.qm ├── CdsRestDataProvider │ ├── CdsEntityDataProvider.qc │ ├── CdsRestDataProvider.qc │ ├── CdsRestDataProvider.qm │ ├── CdsRestDataProviderBase.qc │ ├── CdsRestDataProviderDefs.qc │ ├── CdsRestDataProviderFactory.qc │ ├── CdsRestRecordIterator.qc │ └── CdsRestTablesDataProvider.qc ├── ConnectionProvider │ ├── AbstractConnection.qc │ ├── AbstractConnectionWithInfo.qc │ ├── ConnectionProvider.qm │ ├── ConnectionSchemeCache.qc │ ├── FilesystemConnection.qc │ ├── FtpConnection.qc │ ├── HttpBasedConnection.qc │ ├── HttpConnection.qc │ ├── InvalidConnection.qc │ ├── OptionHelper.qc │ ├── PollingConnectionMonitor.qc │ ├── RestartableIoHelper.qc │ └── UpdateOptionsInterface.qc ├── CsvUtil │ ├── AbstractCsvIterator.qc │ ├── AbstractCsvWriter.qc │ ├── CsvDataIterator.qc │ ├── CsvFileIterator.qc │ ├── CsvFileWriter.qc │ ├── CsvHelper.qc │ ├── CsvIterator.qc │ ├── CsvReadDataProvider.qc │ ├── CsvReadDataProviderFactory.qc │ ├── CsvStringWriter.qc │ ├── CsvUtil.qm │ ├── CsvWriteDataProvider.qc │ ├── CsvWriteDataProviderFactory.qc │ └── CsvWriter.qc ├── DataProvider │ ├── AbstractDataField.qc │ ├── AbstractDataProcessor.qc │ ├── AbstractDataProvider.qc │ ├── AbstractDataProviderBulkOperation.qc │ ├── AbstractDataProviderBulkRecordInterface.qc │ ├── AbstractDataProviderFactory.qc │ ├── AbstractDataProviderRecordIterator.qc │ ├── AbstractDataProviderType.qc │ ├── DataProvider.qc │ ├── DataProvider.qm │ ├── DataProviderActionCatalog.qc │ ├── DataProviderBulkRecordIterator.qc │ ├── DataProviderContextHelper.qc │ ├── DataProviderDataContextHelper.qc │ ├── DataProviderPipeline.qc │ ├── DataProviderPipelineFactory.qc │ ├── DataProviderTypeCache.qc │ ├── DataProviderTypeEntry.qc │ ├── DefaultBulkInserter.qc │ ├── DefaultBulkRecordIterface.qc │ ├── DefaultBulkUpserter.qc │ ├── DefaultRecordIterator.qc │ ├── EpochIntToDateOrNothingType.qc │ ├── EpochIntToDateType.qc │ ├── FileDataType.qc │ ├── FileOrNothingDataType.qc │ ├── FlexibleTypeHandlingHelper.qc │ ├── HashDataType.qc │ ├── HashDeclDataType.qc │ ├── ImplicitModuleTransaction.qc │ ├── ListDataType.qc │ ├── NullDataProvider.qc │ ├── NullDataProviderFactory.qc │ ├── Observable.qc │ ├── Observer.qc │ ├── QoreBase64BinaryDataType.qc │ ├── QoreBase64BinaryOrNothingDataType.qc │ ├── QoreBinaryDataType.qc │ ├── QoreBinaryDataTypeBase.qc │ ├── QoreBinaryOrNothingDataType.qc │ ├── QoreBoolDataType.qc │ ├── QoreBoolDataTypeBase.qc │ ├── QoreBoolOrNothingDataType.qc │ ├── QoreDataField.qc │ ├── QoreDataType.qc │ ├── QoreDateDataType.qc │ ├── QoreDateDataTypeBase.qc │ ├── QoreDateOrNothingDataType.qc │ ├── QoreFloatDataType.qc │ ├── QoreFloatDataTypeBase.qc │ ├── QoreFloatOrNothingDataType.qc │ ├── QoreHashDataType.qc │ ├── QoreHexBinaryDataType.qc │ ├── QoreHexBinaryOrNothingDataType.qc │ ├── QoreIntDataType.qc │ ├── QoreIntDataTypeBase.qc │ ├── QoreIntOrNothingDataType.qc │ ├── QoreListDataType.qc │ ├── QoreNumberDataType.qc │ ├── QoreNumberDataTypeBase.qc │ ├── QoreNumberOrNothingDataType.qc │ ├── QoreSignedByteDataType.qc │ ├── QoreSignedByteOrNothingDataType.qc │ ├── QoreSoftBinaryDataType.qc │ ├── QoreSoftBinaryNoNullDataType.qc │ ├── QoreSoftBinaryOrNothingDataType.qc │ ├── QoreSoftBoolDataType.qc │ ├── QoreSoftBoolNoNullDataType.qc │ ├── QoreSoftBoolOrNothingDataType.qc │ ├── QoreSoftDateDataType.qc │ ├── QoreSoftDateNoNullDataType.qc │ ├── QoreSoftDateOrNothingDataType.qc │ ├── QoreSoftFloatDataType.qc │ ├── QoreSoftFloatNoNullDataType.qc │ ├── QoreSoftFloatOrNothingDataType.qc │ ├── QoreSoftIntDataType.qc │ ├── QoreSoftIntNoNullDataType.qc │ ├── QoreSoftIntOrNothingDataType.qc │ ├── QoreSoftNumberDataType.qc │ ├── QoreSoftNumberNoNullDataType.qc │ ├── QoreSoftNumberOrNothingDataType.qc │ ├── QoreSoftSignedByteDataType.qc │ ├── QoreSoftSignedByteOrNothingDataType.qc │ ├── QoreSoftStringDataType.qc │ ├── QoreSoftStringOrNothingDataType.qc │ ├── QoreSoftUnsignedByteDataType.qc │ ├── QoreSoftUnsignedByteOrNothingDataType.qc │ ├── QoreStringDataType.qc │ ├── QoreStringDataTypeBase.qc │ ├── QoreStringOrNothingDataType.qc │ ├── QoreUnsignedByteDataType.qc │ ├── QoreUnsignedByteOrNothingDataType.qc │ ├── RgbColorDataType.qc │ ├── SoftListDataType.qc │ ├── SuperSoftStringDataType.qc │ ├── SuperSoftStringOrNothingDataType.qc │ ├── UnixTimestampMsOrNothingType.qc │ ├── UnixTimestampMsType.qc │ ├── UnixTimestampOrNothingType.qc │ └── UnixTimestampType.qc ├── DatasourceProvider.qm ├── DbDataProvider │ ├── AbstractDbRecordIterator.qc │ ├── AbstractDbTableBulkOperation.qc │ ├── DbDataProvider.qc │ ├── DbDataProvider.qm │ ├── DbDataProviderBase.qc │ ├── DbDataProviderFactory.qc │ ├── DbExecSqlDataProvider.qc │ ├── DbForeignConstraintDataType.qc │ ├── DbForeignConstraintsDataType.qc │ ├── DbIndexDataType.qc │ ├── DbIndexesDataType.qc │ ├── DbOperationTransactionHelper.qc │ ├── DbSelectBulkRecordInterface.qc │ ├── DbSelectRecordIterator.qc │ ├── DbTableBulkInserter.qc │ ├── DbTableBulkRecordInterface.qc │ ├── DbTableBulkUpserter.qc │ ├── DbTableDataProvider.qc │ ├── DbTableRecordIterator.qc │ ├── DbTableTransactionHelper.qc │ ├── DbTablesDataProvider.qc │ ├── DbTransactionHelper.qc │ └── db-logo.svg ├── DebugCmdLine.qm ├── DebugHandler.qm ├── DebugLinenoiseCmdLine.qm ├── DebugProgramControl.qm ├── DebugUtil.qm ├── Diff.qm ├── DiscordDataProvider │ ├── DiscordDataProvider.qc │ ├── DiscordDataProvider.qm │ ├── DiscordDataProviderBase.qc │ ├── DiscordDataProviderFactory.qc │ ├── DiscordGatewayDataProvider.qc │ ├── DiscordGatewayDataProviderFactory.qc │ ├── DiscordGatewayEventBaseDataType.qc │ ├── DiscordGuildDataProvider.qc │ ├── DiscordGuildDataType.qc │ ├── DiscordGuildGetDataProvider.qc │ ├── DiscordGuildMemberDataType.qc │ ├── DiscordGuildUserDataType.qc │ ├── DiscordGuildsByNameDataProvider.qc │ ├── DiscordGuildsDataProvider.qc │ ├── DiscordMessageCreateEventDataType.qc │ ├── DiscordMessageDataType.qc │ ├── DiscordUserDataType.qc │ └── DiscordUserInfoDataProvider.qc ├── DiscordRestClient.qm ├── DiscordWebSocketClient.qm ├── ElasticSearchDataProvider │ ├── ElasticSearchAcknowledgedDataType.qc │ ├── ElasticSearchDataProvider.qc │ ├── ElasticSearchDataProvider.qm │ ├── ElasticSearchDataProviderBase.qc │ ├── ElasticSearchDataProviderFactory.qc │ ├── ElasticSearchDocumentCreateDataProvider.qc │ ├── ElasticSearchDocumentDataProvider.qc │ ├── ElasticSearchDocumentDeleteDataProvider.qc │ ├── ElasticSearchDocumentReadDataProvider.qc │ ├── ElasticSearchDocumentUpdateDataProvider.qc │ ├── ElasticSearchIndexCreateDataProvider.qc │ ├── ElasticSearchIndexDataProvider.qc │ ├── ElasticSearchIndexDataTypeBase.qc │ ├── ElasticSearchIndexDeleteDataProvider.qc │ ├── ElasticSearchIndexReadAllDataProvider.qc │ ├── ElasticSearchIndexReadDataProvider.qc │ ├── ElasticSearchIndexSearchDataProvider.qc │ ├── ElasticSearchIndexTableDataProvider.qc │ ├── ElasticSearchIndexesDataProvider.qc │ ├── ElasticSearchPipelineCreateDataProvider.qc │ ├── ElasticSearchPipelineDataProvider.qc │ ├── ElasticSearchPipelineDataTypeBase.qc │ ├── ElasticSearchPipelineDeleteDataProvider.qc │ ├── ElasticSearchPipelineReadAllDataProvider.qc │ ├── ElasticSearchPipelineReadDataProvider.qc │ ├── ElasticSearchPipelineUpdateDataProvider.qc │ ├── ElasticSearchRecordIterator.qc │ └── ElasticSearchRestConnection.qc ├── EmpathicBuildingDataProvider │ ├── EmpathicBuildingDataProvider.qc │ ├── EmpathicBuildingDataProvider.qm │ ├── EmpathicBuildingDataProviderBase.qc │ ├── EmpathicBuildingDataProviderFactory.qc │ ├── EmpathicBuildingLocationDataProvider.qc │ ├── EmpathicBuildingLocationsDataProvider.qc │ ├── EmpathicBuildingMeasurementsCreateDataProvider.qc │ ├── EmpathicBuildingMeasurementsDataProvider.qc │ ├── EmpathicBuildingOrganizationDataProvider.qc │ ├── EmpathicBuildingOrganizationsDataProvider.qc │ ├── EmpathicBuildingRestConnection.qc │ ├── EmpathicBuildingSensorDataProvider.qc │ ├── EmpathicBuildingSensorsDataProvider.qc │ └── EmpathicBuildingWatchSensorDataProvider.qc ├── FileDataProvider │ ├── FileCopyDataProvider.qc │ ├── FileCopyRequestDataType.qc │ ├── FileCreateDataProvider.qc │ ├── FileCreateRequestDataType.qc │ ├── FileDataProvider.qc │ ├── FileDataProvider.qm │ ├── FileDataProviderBase.qc │ ├── FileDataProviderFactory.qc │ ├── FileDeleteDataProvider.qc │ ├── FileGetDataProvider.qc │ ├── FileGetRequestDataType.qc │ ├── FileGetResponseDataType.qc │ ├── FileListDataProvider.qc │ ├── FileListResponseDataType.qc │ ├── FileMkdirDataProvider.qc │ ├── FileMkdirRequestDataType.qc │ ├── FileMoveDataProvider.qc │ ├── FileMoveRequestDataType.qc │ ├── FilePathDataType.qc │ ├── FileStatDataProvider.qc │ ├── FileStatRequestDataType.qc │ ├── FileStatResponseDataType.qc │ └── FileTargetResponseDataType.qc ├── FileLocationHandler │ ├── FileLocationHandler.qc │ ├── FileLocationHandler.qm │ ├── FileLocationHandlerData.qc │ ├── FileLocationHandlerFile.qc │ ├── FileLocationHandlerFtp.qc │ ├── FileLocationHandlerHttp.qc │ ├── FileLocationHandlerRest.qc │ ├── FileLocationHandlerSftp.qc │ └── OutputStramWrapper.qc ├── FilePoller.qm ├── FixedLengthUtil │ ├── FixedLengthAbstractIterator.qc │ ├── FixedLengthAbstractWriter.qc │ ├── FixedLengthBase.qc │ ├── FixedLengthDataIterator.qc │ ├── FixedLengthDataWriter.qc │ ├── FixedLengthFileIterator.qc │ ├── FixedLengthFileWriter.qc │ ├── FixedLengthIterator.qc │ ├── FixedLengthReadDataProvider.qc │ ├── FixedLengthReadDataProviderFactory.qc │ ├── FixedLengthUtil.qm │ ├── FixedLengthWriteDataProvider.qc │ ├── FixedLengthWriteDataProviderFactory.qc │ └── FixedLengthWriter.qc ├── FreetdsSqlUtil.qm ├── FsUtil.qm ├── FtpClientDataProvider │ ├── FtpClientCreateFileDataProvider.qc │ ├── FtpClientCreateFileLocationDataProvider.qc │ ├── FtpClientCreateFileRequestDataType.qc │ ├── FtpClientDataProvider.qc │ ├── FtpClientDataProvider.qm │ ├── FtpClientDataProviderFactory.qc │ ├── FtpClientDeleteDataProvider.qc │ ├── FtpClientGetFileDataProvider.qc │ ├── FtpClientGetFileLocationDataProvider.qc │ ├── FtpClientGetFileRequestDataType.qc │ ├── FtpClientGetFileResponseDataType.qc │ ├── FtpClientListDataProvider.qc │ ├── FtpClientMkdirDataProvider.qc │ ├── FtpClientMoveDataProvider.qc │ ├── FtpClientMoveRequestDataType.qc │ ├── FtpClientPathDataType.qc │ ├── FtpClientStatDataProvider.qc │ └── FtpClientStatResponseDataType.qc ├── FtpPoller.qm ├── FtpPollerUtil.qm ├── GmailDataProvider │ ├── GmailAttachmentWatchDataProvider.qc │ ├── GmailBaseDataProvider.qc │ ├── GmailDataProvider.qm │ ├── GmailDataProviderFactory.qc │ ├── GmailMessageWatchDataProvider.qc │ ├── GmailMessageWatchDataProviderBase.qc │ └── GmailSendMessageDataProvider.qc ├── GoogleCalendarDataProvider │ ├── GoogleCalendarBaseDataProvider.qc │ ├── GoogleCalendarDataProvider.qc │ ├── GoogleCalendarDataProvider.qm │ ├── GoogleCalendarDataProviderFactory.qc │ └── GoogleCalendarsDataProvider.qc ├── GoogleDataProvider │ ├── GoogleApiDataProvider.qc │ ├── GoogleApiParentDataProvider.qc │ ├── GoogleDataProvider.qm │ └── GoogleDataProviderBase.qc ├── GoogleRestClient.qm ├── HttpClientDataProvider │ ├── HttpClientCallDataProvider.qc │ ├── HttpClientCallRequestDataType.qc │ ├── HttpClientCallResponseDataType.qc │ ├── HttpClientCallWithMethodRequestDataType.qc │ ├── HttpClientCallWithoutBodyRequestDataType.qc │ ├── HttpClientDataProvider.qc │ ├── HttpClientDataProvider.qm │ ├── HttpClientDataProviderFactory.qc │ ├── HttpClientDeleteDataProvider.qc │ ├── HttpClientGetDataProvider.qc │ ├── HttpClientHeadDataProvider.qc │ ├── HttpClientOptionsDataProvider.qc │ ├── HttpClientPatchDataProvider.qc │ ├── HttpClientPostDataProvider.qc │ └── HttpClientPutDataProvider.qc ├── HttpServer.qm ├── HttpServerUtil.qm ├── HueRestClient.qm ├── JdbcFirebirdSqlUtil.qm ├── JdbcMicrosoftSqlUtil.qm ├── JdbcOracleSqlUtil.qm ├── JdbcPostgresqlSqlUtil.qm ├── Logger.qm ├── MailMessage.qm ├── Mapper.qm ├── MapperUtil.qm ├── MewsRestClient.qm ├── MewsRestDataProvider │ ├── MewsRestAccountNotesTableDataProvider.qc │ ├── MewsRestAccountingCategoriesTableDataProvider.qc │ ├── MewsRestAddressesTableDataProvider.qc │ ├── MewsRestAgeCategoriesTableDataProvider.qc │ ├── MewsRestAvailabilityAdjustmentsTableDataProvider.qc │ ├── MewsRestAvailabilityBlocksTableDataProvider.qc │ ├── MewsRestBillsTableDataProvider.qc │ ├── MewsRestBusinessSegmentsTableDataProvider.qc │ ├── MewsRestCancellationPoliciesTableDataProvider.qc │ ├── MewsRestCompaniesTableDataProvider.qc │ ├── MewsRestCountriesTableDataProvider.qc │ ├── MewsRestCustomersTableDataProvider.qc │ ├── MewsRestDataProvider.qc │ ├── MewsRestDataProvider.qm │ ├── MewsRestDataProviderBase.qc │ ├── MewsRestDataProviderFactory.qc │ ├── MewsRestEnterprisesTableDataProvider.qc │ ├── MewsRestExchangeRatesTableDataProvider.qc │ ├── MewsRestLanguagesTableDataProvider.qc │ ├── MewsRestOrderItemsTableDataProvider.qc │ ├── MewsRestOutletItemsTableDataProvider.qc │ ├── MewsRestOutletsTableDataProvider.qc │ ├── MewsRestPaymentsTableDataProvider.qc │ ├── MewsRestPreauthorizationsTableDataProvider.qc │ ├── MewsRestProductsTableDataProvider.qc │ ├── MewsRestRatesTableDataProvider.qc │ ├── MewsRestReservationsTableDataProvider.qc │ ├── MewsRestResourceBlocksTableDataProvider.qc │ ├── MewsRestResourceCategoriesTableDataProvider.qc │ ├── MewsRestResourceFeaturesTableDataProvider.qc │ ├── MewsRestResourcesTableDataProvider.qc │ ├── MewsRestRestrictionsTableDataProvider.qc │ ├── MewsRestServicesTableDataProvider.qc │ ├── MewsRestTableDataProvider.qc │ ├── MewsRestTablesDataProvider.qc │ ├── MewsRestTaxEnvironmentsTableDataProvider.qc │ ├── MewsRestTaxationsTableDataProvider.qc │ ├── MewsRestVoucherCodesTableDataProvider.qc │ ├── MewsRestVouchersTableDataProvider.qc │ ├── MewsTableBulkRecordInterface.qc │ ├── mews-M-black.svg │ ├── mews-M-white.svg │ └── mews-swagger-2.0.yaml ├── Mime.qm ├── MssqlSqlUtilBase.qm ├── MysqlSqlUtil.qm ├── NetSuiteRestClient.qm ├── OdbcFirebirdSqlUtil.qm ├── OpenAiDataProvider │ ├── OpenAiAssistantCreateDataProvider.qc │ ├── OpenAiAssistantDataProvider.qc │ ├── OpenAiAssistantDeleteDataProvider.qc │ ├── OpenAiAssistantUpdateDataProvider.qc │ ├── OpenAiAssistantsDataProvider.qc │ ├── OpenAiChatCompletionDataProvider.qc │ ├── OpenAiDataProvider.qc │ ├── OpenAiDataProvider.qm │ ├── OpenAiDataProviderCommon.qc │ ├── OpenAiDataProviderFactory.qc │ ├── OpenAiFileDataProvider.qc │ ├── OpenAiFileDeleteDataProvider.qc │ ├── OpenAiFileGetDataProvider.qc │ ├── OpenAiFileUploadDataProvider.qc │ ├── OpenAiFileUploadFromLocationDataProvider.qc │ ├── OpenAiFilesDataProvider.qc │ ├── OpenAiImageCreateDataProvider.qc │ ├── OpenAiModelCreateResponseDataProvider.qc │ ├── OpenAiModelDataProvider.qc │ ├── OpenAiModelDeleteDataProvider.qc │ ├── OpenAiModelDeleteResponseDataProvider.qc │ ├── OpenAiModelGetResponseDataProvider.qc │ ├── OpenAiModelsDataProvider.qc │ ├── OpenAiResponseCreateDataProvider.qc │ ├── OpenAiResponseDeleteDataProvider.qc │ ├── OpenAiResponseGetDataProvider.qc │ ├── OpenAiResponsesDataProvider.qc │ ├── OpenAiRunCreateDataProvider.qc │ ├── OpenAiRunDataProvider.qc │ ├── OpenAiRunDeleteDataProvider.qc │ ├── OpenAiRunSubmitToolOutputs.qc │ ├── OpenAiRunUpdateDataProvider.qc │ ├── OpenAiRunsDataProvider.qc │ ├── OpenAiSimpleChatCompletionDataProvider.qc │ ├── OpenAiThreadCreateDataProvider.qc │ ├── OpenAiThreadCreateRunDataProvider.qc │ ├── OpenAiThreadDeleteDataProvider.qc │ ├── OpenAiThreadGetDataProvider.qc │ ├── OpenAiThreadMessagesGetDataProvider.qc │ ├── OpenAiThreadUpdateDataProvider.qc │ ├── OpenAiThreadsDataProvider.qc │ ├── openai-swagger-2.0.yaml │ └── openai.yaml ├── OpenAiRestClient.qm ├── OracleSqlUtil.qm ├── OracleSqlUtilBase.qm ├── PgsqlSqlUtil.qm ├── PgsqlSqlUtilBase.qm ├── Pop3Client.qm ├── Pop3ClientDataProvider │ ├── Pop3ClientDataProvider.qc │ ├── Pop3ClientDataProvider.qm │ ├── Pop3ClientDataProviderBase.qc │ ├── Pop3ClientDataProviderFactory.qc │ ├── Pop3ClientListDataProvider.qc │ ├── Pop3ClientMessageDataProvider.qc │ └── Pop3ClientMessageGetDataProvider.qc ├── ProviderIndex │ ├── ProviderIndex.qc │ └── ProviderIndex.qm ├── ProviderIndexUtil │ ├── ProviderIndexUtil.qc │ └── ProviderIndexUtil.qm ├── QUnit.qm ├── Qdx.qm ├── Qorize.qm ├── RestClient.qm ├── RestClientDataProvider │ ├── RestClientCallDataProvider.qc │ ├── RestClientCallRequestDataType.qc │ ├── RestClientCallResponseDataType.qc │ ├── RestClientCallWithMethodRequestDataType.qc │ ├── RestClientCallWithoutBodyRequestDataType.qc │ ├── RestClientDataProvider.qc │ ├── RestClientDataProvider.qm │ ├── RestClientDataProviderBase.qc │ ├── RestClientDataProviderFactory.qc │ ├── RestClientDeleteDataProvider.qc │ ├── RestClientGetDataProvider.qc │ ├── RestClientHeadDataProvider.qc │ ├── RestClientOptionsDataProvider.qc │ ├── RestClientPatchDataProvider.qc │ ├── RestClientPostDataProvider.qc │ └── RestClientPutDataProvider.qc ├── RestHandler.qm ├── RestSchemaValidator.qm ├── SalesforceRestClient.qm ├── SalesforceRestDataProvider │ ├── SalesforceRestDataProvider.qc │ ├── SalesforceRestDataProvider.qm │ ├── SalesforceRestDataProviderBase.qc │ ├── SalesforceRestDataProviderDefs.qc │ ├── SalesforceRestDataProviderFactory.qc │ ├── SalesforceRestObjectDataProvider.qc │ ├── SalesforceRestRecordIterator.qc │ └── SalesforceRestTablesDataProvider.qc ├── Sap4HanaRestClient.qm ├── Schema.qm ├── SchemaReverse.qm ├── ServerSentEventClient │ ├── ServerSentEventClient.qc │ ├── ServerSentEventClient.qm │ ├── ServerSentEventClientDataProvider.qc │ ├── ServerSentEventClientDataProviderBase.qc │ ├── ServerSentEventClientDataProviderFactory.qc │ ├── ServerSentEventClientEventDataType.qc │ ├── ServerSentEventClientWaitForMessageDataProvider.qc │ ├── ServerSentEventClientWaitForMessageRequestDataType.qc │ ├── ServerSentEventConnection.qc │ └── sse-generic-logo.svg ├── ServerSentEventHandler │ ├── ServerSentEventConnection.qc │ ├── ServerSentEventHandler.qc │ └── ServerSentEventHandler.qm ├── ServiceNowRestClient.qm ├── ServiceNowRestDataProvider │ ├── ServiceNowRestDataProvider.qc │ ├── ServiceNowRestDataProvider.qm │ ├── ServiceNowRestDataProviderBase.qc │ ├── ServiceNowRestDataProviderDefs.qc │ ├── ServiceNowRestDataProviderFactory.qc │ ├── ServiceNowRestRecordIterator.qc │ ├── ServiceNowTableDataProvider.qc │ └── ServiceNowTablesDataProvider.qc ├── SewioRestClient.qm ├── SewioWebSocketClient.qm ├── SmtpClient.qm ├── SqlUtil │ ├── AbstractDatabase.qc │ ├── AbstractNumericDataType.qc │ ├── AbstractSavepointHelper.qc │ ├── AbstractSqlUtilBase.qc │ ├── AbstractTable.qc │ ├── Database.qc │ ├── SqlResultInfo.qc │ ├── SqlUtil.qm │ ├── SqlUtilColumnDataType.qc │ ├── SqlUtilColumnField.qc │ ├── SqlUtilDateType.qc │ ├── SqlUtilDbSpecificDataType.qc │ ├── SqlUtilFloatType.qc │ ├── SqlUtilIntType.qc │ ├── SqlUtilStringType.qc │ └── Table.qc ├── Sqlite3SqlUtil.qm ├── Swagger.qm ├── SwaggerDataProvider │ ├── SwaggerDataProvider.qc │ ├── SwaggerDataProvider.qm │ ├── SwaggerDataProviderBase.qc │ ├── SwaggerDataProviderCommon.qc │ ├── SwaggerDataProviderFactory.qc │ └── SwaggerRequestDataProvider.qc ├── TableMapper.qm ├── TelnetClient.qm ├── TextWrap.qm ├── Util.qm ├── VscDebugAdapter.qm ├── WebSocketClient.qm ├── WebSocketHandler.qm ├── WebSocketUtil.qm ├── WebUtil.qm ├── XdbcFirebirdSqlUtilBase.qm └── ZeyosRestClient.qm ├── qore-main.cpp ├── qore-single-compilation-unit.cpp ├── qore.1 ├── qore.changes-opensuse ├── qore.pc.in ├── qore.spec-fedora ├── qore.spec-multi ├── qore.spec-opensuse ├── qoretests.mk ├── qr-main.cpp ├── qr-single-compilation-unit.cpp ├── reconf.sh ├── rel ├── README-qore.Windows └── rel.sh ├── run_tests.sh ├── scratch ├── ThreadPool ├── aa.qtest ├── bare-refs.q ├── class-constant.q ├── crash-1 ├── crash-2 ├── crash-3 ├── crash-4 ├── crash-5 ├── crash-6 ├── hard-typing-parse-err.q ├── hard-typing-rt-err.q ├── injection.qtest ├── memory-leak-1.q ├── memory-leak-2-fixed.q ├── ml ├── ml1 ├── ml10 ├── ml11 ├── ml12 ├── ml13 ├── ml14 ├── ml2 ├── ml3 ├── ml4 ├── ml5 ├── ml6 ├── ml7 ├── ml8 ├── ml9 ├── object-members.q ├── overload-parse-err.q ├── overload.q ├── parse-no-type-errors.q ├── parse-stage-2-error.q ├── pht ├── ptest.q ├── schema ├── stim-test └── unlocked-thread.qtest ├── test └── testbed ├── Makefile └── httpd.cc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.jenkins.prop: -------------------------------------------------------------------------------- 1 | QORE_BRANCH_NAME=develop 2 | 3 | 4 | -------------------------------------------------------------------------------- /ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/ABOUT -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/AUTHORS -------------------------------------------------------------------------------- /BUILDING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/BUILDING -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/COPYING.GPL -------------------------------------------------------------------------------- /COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/COPYING.LGPL -------------------------------------------------------------------------------- /COPYING.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/COPYING.MIT -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/Makefile.am -------------------------------------------------------------------------------- /README-BINARIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/README-BINARIES -------------------------------------------------------------------------------- /README-GIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/README-GIT -------------------------------------------------------------------------------- /README-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/README-LICENSE -------------------------------------------------------------------------------- /README-MODULES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/README-MODULES -------------------------------------------------------------------------------- /README-WINDOWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/README-WINDOWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/RELEASE-NOTES -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/TODO -------------------------------------------------------------------------------- /addon/emacs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/emacs/build.sh -------------------------------------------------------------------------------- /addon/emacs/qore-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/emacs/qore-mode.el -------------------------------------------------------------------------------- /addon/freedesktop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/freedesktop/README -------------------------------------------------------------------------------- /addon/freedesktop/qore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/freedesktop/qore.xml -------------------------------------------------------------------------------- /addon/gedit/qore.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/gedit/qore.lang -------------------------------------------------------------------------------- /addon/kate/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/kate/README -------------------------------------------------------------------------------- /addon/kate/qore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/kate/qore.xml -------------------------------------------------------------------------------- /addon/syntax-test.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/syntax-test.q -------------------------------------------------------------------------------- /addon/vim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/vim/README.md -------------------------------------------------------------------------------- /addon/vim/ftplugin/qore.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/vim/ftplugin/qore.vim -------------------------------------------------------------------------------- /addon/vim/ftplugin/qorus.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/vim/ftplugin/qorus.vim -------------------------------------------------------------------------------- /addon/vim/indent/qore.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/vim/indent/qore.vim -------------------------------------------------------------------------------- /addon/vim/indent/qorus.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/vim/indent/qorus.vim -------------------------------------------------------------------------------- /addon/vim/syntax/qore.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/vim/syntax/qore.vim -------------------------------------------------------------------------------- /addon/vim/syntax/qorus.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/addon/vim/syntax/qorus.vim -------------------------------------------------------------------------------- /bin/qdbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/qdbg -------------------------------------------------------------------------------- /bin/qdbg-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/qdbg-remote -------------------------------------------------------------------------------- /bin/qdbg-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/qdbg-server -------------------------------------------------------------------------------- /bin/qdbg-vsc-adapter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/qdbg-vsc-adapter -------------------------------------------------------------------------------- /bin/qdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/qdp -------------------------------------------------------------------------------- /bin/qget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/qget -------------------------------------------------------------------------------- /bin/rest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/rest -------------------------------------------------------------------------------- /bin/saprest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/saprest -------------------------------------------------------------------------------- /bin/schema-reverse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/schema-reverse -------------------------------------------------------------------------------- /bin/sfrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/sfrest -------------------------------------------------------------------------------- /bin/sqlutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/bin/sqlutil -------------------------------------------------------------------------------- /cmake/FindICONV.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/FindICONV.cmake -------------------------------------------------------------------------------- /cmake/FindMPFR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/FindMPFR.cmake -------------------------------------------------------------------------------- /cmake/QoreConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/QoreConfig.cmake.in -------------------------------------------------------------------------------- /cmake/QoreConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/QoreConfigVersion.cmake.in -------------------------------------------------------------------------------- /cmake/QoreMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/QoreMacros.cmake -------------------------------------------------------------------------------- /cmake/QoreMacrosIntern.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/QoreMacrosIntern.cmake -------------------------------------------------------------------------------- /cmake/qore-version.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/qore-version.h.cmake -------------------------------------------------------------------------------- /cmake/stl_hash_map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/stl_hash_map.in -------------------------------------------------------------------------------- /cmake/stl_slist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/stl_slist.in -------------------------------------------------------------------------------- /cmake/unix-config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/cmake/unix-config.h.cmake -------------------------------------------------------------------------------- /command-line.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/command-line.cpp -------------------------------------------------------------------------------- /command-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/command-line.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/configure.ac -------------------------------------------------------------------------------- /doxygen/DataProvider-Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/DataProvider-Full.svg -------------------------------------------------------------------------------- /doxygen/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/Doxyfile.in -------------------------------------------------------------------------------- /doxygen/Haltian-EmpathicBuilding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/Haltian-EmpathicBuilding.svg -------------------------------------------------------------------------------- /doxygen/Qore-Q.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/Qore-Q.ico -------------------------------------------------------------------------------- /doxygen/SqlUtil-Full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/SqlUtil-Full.svg -------------------------------------------------------------------------------- /doxygen/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/dot -------------------------------------------------------------------------------- /doxygen/dox_qore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/dox_qore.css -------------------------------------------------------------------------------- /doxygen/dpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/dpp -------------------------------------------------------------------------------- /doxygen/elastic-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/elastic-logo.svg -------------------------------------------------------------------------------- /doxygen/footer_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/footer_template.html -------------------------------------------------------------------------------- /doxygen/header_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/header_template.html -------------------------------------------------------------------------------- /doxygen/lang/000_intro.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/000_intro.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/120_modules.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/120_modules.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/130_identifiers.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/130_identifiers.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/135_comments.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/135_comments.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/140_variables.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/140_variables.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/160_overloading.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/160_overloading.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/165_time_zones.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/165_time_zones.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/175_expressions.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/175_expressions.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/180_operators.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/180_operators.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/185_qore_regex.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/185_qore_regex.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/195_statements.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/195_statements.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/200_functions.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/200_functions.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/202_code_flags.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/202_code_flags.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/205_namespaces.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/205_namespaces.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/210_constants.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/210_constants.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/215_classes.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/215_classes.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/217_hashdecl.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/217_hashdecl.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/220_threading.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/220_threading.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/250_warnings.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/250_warnings.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/255_keywords.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/255_keywords.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lang/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/Doxyfile.in -------------------------------------------------------------------------------- /doxygen/lang/Doxyfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/Doxyfile.tmpl -------------------------------------------------------------------------------- /doxygen/lang/mainpage.dox.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lang/mainpage.dox.tmpl -------------------------------------------------------------------------------- /doxygen/lib/10_embedding.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/10_embedding.doxygen -------------------------------------------------------------------------------- /doxygen/lib/20_qore_data.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/20_qore_data.doxygen -------------------------------------------------------------------------------- /doxygen/lib/70_qore_modules.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/70_qore_modules.doxygen -------------------------------------------------------------------------------- /doxygen/lib/75_dbi_drivers.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/75_dbi_drivers.doxygen -------------------------------------------------------------------------------- /doxygen/lib/90_cmake.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/90_cmake.doxygen -------------------------------------------------------------------------------- /doxygen/lib/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/Doxyfile.in -------------------------------------------------------------------------------- /doxygen/lib/Doxyfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/Doxyfile.tmpl -------------------------------------------------------------------------------- /doxygen/lib/mainpage.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/lib/mainpage.doxygen -------------------------------------------------------------------------------- /doxygen/mews-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/mews-logo-white.svg -------------------------------------------------------------------------------- /doxygen/modules/Doxyfile.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/modules/Doxyfile.cmake.in -------------------------------------------------------------------------------- /doxygen/modules/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/modules/Doxyfile.in -------------------------------------------------------------------------------- /doxygen/pdox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/pdox -------------------------------------------------------------------------------- /doxygen/qdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/qdx -------------------------------------------------------------------------------- /doxygen/qjar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/qjar -------------------------------------------------------------------------------- /doxygen/qlib/Doxyfile.cmake.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/qlib/Doxyfile.cmake.tmpl -------------------------------------------------------------------------------- /doxygen/qlib/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/qlib/Doxyfile.in -------------------------------------------------------------------------------- /doxygen/qlib/Doxyfile.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/qlib/Doxyfile.tmpl -------------------------------------------------------------------------------- /doxygen/qore-logo-55x151-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/qore-logo-55x151-white.png -------------------------------------------------------------------------------- /doxygen/qore-logo-55x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/doxygen/qore-logo-55x200.png -------------------------------------------------------------------------------- /examples/HelloWorld.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/HelloWorld.q -------------------------------------------------------------------------------- /examples/clisrv.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/clisrv.q -------------------------------------------------------------------------------- /examples/email.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/email.q -------------------------------------------------------------------------------- /examples/exp.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/exp.q -------------------------------------------------------------------------------- /examples/getch.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/getch.q -------------------------------------------------------------------------------- /examples/getopt.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/getopt.q -------------------------------------------------------------------------------- /examples/hash.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/hash.q -------------------------------------------------------------------------------- /examples/httpserver.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/httpserver.q -------------------------------------------------------------------------------- /examples/inherit.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/inherit.q -------------------------------------------------------------------------------- /examples/inherit2.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/inherit2.q -------------------------------------------------------------------------------- /examples/obj2.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/obj2.q -------------------------------------------------------------------------------- /examples/old2new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/old2new -------------------------------------------------------------------------------- /examples/pop3.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/pop3.q -------------------------------------------------------------------------------- /examples/restserver.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/restserver.q -------------------------------------------------------------------------------- /examples/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/schema -------------------------------------------------------------------------------- /examples/stmt.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/stmt.q -------------------------------------------------------------------------------- /examples/telnet.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/telnet.q -------------------------------------------------------------------------------- /examples/test/TestTemplate.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/TestTemplate.qtest -------------------------------------------------------------------------------- /examples/test/data/lorem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/data/lorem -------------------------------------------------------------------------------- /examples/test/data/lorem.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/data/lorem.bz2 -------------------------------------------------------------------------------- /examples/test/data/lorem.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/data/lorem.gz -------------------------------------------------------------------------------- /examples/test/data/lorem.utf16le: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/data/lorem.utf16le -------------------------------------------------------------------------------- /examples/test/data/lorem.zlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/data/lorem.zlib -------------------------------------------------------------------------------- /examples/test/obsolete/optest.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/obsolete/optest.q -------------------------------------------------------------------------------- /examples/test/qlib/Diff/Diff.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Diff/Diff.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Logger/Logger.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Logger/Logger.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Mapper/mapper.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Mapper/mapper.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Mime/mime.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Mime/mime.qtest -------------------------------------------------------------------------------- /examples/test/qlib/QUnit/inject.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/QUnit/inject.qtest -------------------------------------------------------------------------------- /examples/test/qlib/QUnit/results.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/QUnit/results.qtest -------------------------------------------------------------------------------- /examples/test/qlib/QUnit/tests.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/QUnit/tests.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Qorize/complex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Qorize/complex.xml -------------------------------------------------------------------------------- /examples/test/qlib/Qorize/qorize.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Qorize/qorize.qtest -------------------------------------------------------------------------------- /examples/test/qlib/SSL/ssl.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/SSL/ssl.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Swagger/EmptySwagger.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/test/qlib/Swagger/EmptySwagger.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/test/qlib/TextWrap/common.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/TextWrap/common.q -------------------------------------------------------------------------------- /examples/test/qlib/TextWrap/fill.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/TextWrap/fill.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/flatten.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/flatten.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/math.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/math.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/ordinal.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/ordinal.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/padding.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/padding.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/plural.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/plural.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/same.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/same.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/slice.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/slice.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/uniq.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/uniq.qtest -------------------------------------------------------------------------------- /examples/test/qlib/Util/zip.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qlib/Util/zip.qtest -------------------------------------------------------------------------------- /examples/test/qlib/WebUtil/test_file.txt: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /examples/test/qore/files/mkdir.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/files/mkdir.qtest -------------------------------------------------------------------------------- /examples/test/qore/files/read.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/files/read.qtest -------------------------------------------------------------------------------- /examples/test/qore/functions/pwd.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/functions/pwd.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/access.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/access.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/binary.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/binary.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/callref.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/callref.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/cast.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/cast.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/catch.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/catch.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/classes.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/classes.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/gc.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/gc.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/hash.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/hash.qtest -------------------------------------------------------------------------------- /examples/test/qore/misc/types.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/misc/types.qtest -------------------------------------------------------------------------------- /examples/test/qore/namespaces/T.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/namespaces/T.qm -------------------------------------------------------------------------------- /examples/test/qore/vars/argv.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/vars/argv.qtest -------------------------------------------------------------------------------- /examples/test/qore/vars/array.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/vars/array.qtest -------------------------------------------------------------------------------- /examples/test/qore/vars/date.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/vars/date.qtest -------------------------------------------------------------------------------- /examples/test/qore/vars/float.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/vars/float.qtest -------------------------------------------------------------------------------- /examples/test/qore/vars/hash.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/vars/hash.qtest -------------------------------------------------------------------------------- /examples/test/qore/vars/int.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/vars/int.qtest -------------------------------------------------------------------------------- /examples/test/qore/vars/list.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/qore/vars/list.qtest -------------------------------------------------------------------------------- /examples/test/test.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/examples/test/test.q -------------------------------------------------------------------------------- /getrev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/getrev.sh -------------------------------------------------------------------------------- /include/qore/AbstractException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/AbstractException.h -------------------------------------------------------------------------------- /include/qore/AbstractPollState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/AbstractPollState.h -------------------------------------------------------------------------------- /include/qore/AbstractPrivateData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/AbstractPrivateData.h -------------------------------------------------------------------------------- /include/qore/AbstractQoreNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/AbstractQoreNode.h -------------------------------------------------------------------------------- /include/qore/AbstractSmartLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/AbstractSmartLock.h -------------------------------------------------------------------------------- /include/qore/AutoVLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/AutoVLock.h -------------------------------------------------------------------------------- /include/qore/BinaryNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/BinaryNode.h -------------------------------------------------------------------------------- /include/qore/CallReferenceNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/CallReferenceNode.h -------------------------------------------------------------------------------- /include/qore/DBI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/DBI.h -------------------------------------------------------------------------------- /include/qore/Datasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/Datasource.h -------------------------------------------------------------------------------- /include/qore/DateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/DateTime.h -------------------------------------------------------------------------------- /include/qore/DateTimeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/DateTimeNode.h -------------------------------------------------------------------------------- /include/qore/ExceptionSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/ExceptionSink.h -------------------------------------------------------------------------------- /include/qore/InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/InputStream.h -------------------------------------------------------------------------------- /include/qore/ModuleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/ModuleManager.h -------------------------------------------------------------------------------- /include/qore/OutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/OutputStream.h -------------------------------------------------------------------------------- /include/qore/ParseOptionMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/ParseOptionMap.h -------------------------------------------------------------------------------- /include/qore/Qore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/Qore.h -------------------------------------------------------------------------------- /include/qore/QoreClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreClass.h -------------------------------------------------------------------------------- /include/qore/QoreCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreCondition.h -------------------------------------------------------------------------------- /include/qore/QoreCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreCounter.h -------------------------------------------------------------------------------- /include/qore/QoreDebugProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreDebugProgram.h -------------------------------------------------------------------------------- /include/qore/QoreEncoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreEncoding.h -------------------------------------------------------------------------------- /include/qore/QoreEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreEvents.h -------------------------------------------------------------------------------- /include/qore/QoreFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreFile.h -------------------------------------------------------------------------------- /include/qore/QoreFtpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreFtpClient.h -------------------------------------------------------------------------------- /include/qore/QoreHTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreHTTPClient.h -------------------------------------------------------------------------------- /include/qore/QoreHashNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreHashNode.h -------------------------------------------------------------------------------- /include/qore/QoreHttpClientObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreHttpClientObject.h -------------------------------------------------------------------------------- /include/qore/QoreIteratorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreIteratorBase.h -------------------------------------------------------------------------------- /include/qore/QoreLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreLib.h -------------------------------------------------------------------------------- /include/qore/QoreListNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreListNode.h -------------------------------------------------------------------------------- /include/qore/QoreNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreNamespace.h -------------------------------------------------------------------------------- /include/qore/QoreNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreNet.h -------------------------------------------------------------------------------- /include/qore/QoreNothingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreNothingNode.h -------------------------------------------------------------------------------- /include/qore/QoreNullNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreNullNode.h -------------------------------------------------------------------------------- /include/qore/QoreNumberNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreNumberNode.h -------------------------------------------------------------------------------- /include/qore/QoreObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreObject.h -------------------------------------------------------------------------------- /include/qore/QoreProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreProgram.h -------------------------------------------------------------------------------- /include/qore/QoreQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreQueue.h -------------------------------------------------------------------------------- /include/qore/QoreQueueHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreQueueHelper.h -------------------------------------------------------------------------------- /include/qore/QoreRWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreRWLock.h -------------------------------------------------------------------------------- /include/qore/QoreReferenceCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreReferenceCounter.h -------------------------------------------------------------------------------- /include/qore/QoreReflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreReflection.h -------------------------------------------------------------------------------- /include/qore/QoreRegexInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreRegexInterface.h -------------------------------------------------------------------------------- /include/qore/QoreSSLBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreSSLBase.h -------------------------------------------------------------------------------- /include/qore/QoreSSLCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreSSLCertificate.h -------------------------------------------------------------------------------- /include/qore/QoreSSLPrivateKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreSSLPrivateKey.h -------------------------------------------------------------------------------- /include/qore/QoreSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreSocket.h -------------------------------------------------------------------------------- /include/qore/QoreSocketObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreSocketObject.h -------------------------------------------------------------------------------- /include/qore/QoreString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreString.h -------------------------------------------------------------------------------- /include/qore/QoreStringNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreStringNode.h -------------------------------------------------------------------------------- /include/qore/QoreThreadLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreThreadLock.h -------------------------------------------------------------------------------- /include/qore/QoreType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreType.h -------------------------------------------------------------------------------- /include/qore/QoreURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreURL.h -------------------------------------------------------------------------------- /include/qore/QoreValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreValue.h -------------------------------------------------------------------------------- /include/qore/QoreXSinkException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/QoreXSinkException.h -------------------------------------------------------------------------------- /include/qore/RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/RWLock.h -------------------------------------------------------------------------------- /include/qore/ReferenceHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/ReferenceHolder.h -------------------------------------------------------------------------------- /include/qore/ReferenceNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/ReferenceNode.h -------------------------------------------------------------------------------- /include/qore/Restrictions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/Restrictions.h -------------------------------------------------------------------------------- /include/qore/SQLStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/SQLStatement.h -------------------------------------------------------------------------------- /include/qore/ScopeGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/ScopeGuard.h -------------------------------------------------------------------------------- /include/qore/ScopeGuard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/ScopeGuard.htm -------------------------------------------------------------------------------- /include/qore/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/Sequence.h -------------------------------------------------------------------------------- /include/qore/SmartMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/SmartMutex.h -------------------------------------------------------------------------------- /include/qore/StreamBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/StreamBase.h -------------------------------------------------------------------------------- /include/qore/SystemEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/SystemEnvironment.h -------------------------------------------------------------------------------- /include/qore/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/Transform.h -------------------------------------------------------------------------------- /include/qore/TypedHashDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/TypedHashDecl.h -------------------------------------------------------------------------------- /include/qore/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/common.h -------------------------------------------------------------------------------- /include/qore/intern/BackquoteNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/BackquoteNode.h -------------------------------------------------------------------------------- /include/qore/intern/BarewordNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/BarewordNode.h -------------------------------------------------------------------------------- /include/qore/intern/CaseNodeRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/CaseNodeRegex.h -------------------------------------------------------------------------------- /include/qore/intern/ClassRefNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ClassRefNode.h -------------------------------------------------------------------------------- /include/qore/intern/ConstantList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ConstantList.h -------------------------------------------------------------------------------- /include/qore/intern/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/Context.h -------------------------------------------------------------------------------- /include/qore/intern/ExecArgList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ExecArgList.h -------------------------------------------------------------------------------- /include/qore/intern/FindNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/FindNode.h -------------------------------------------------------------------------------- /include/qore/intern/ForStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ForStatement.h -------------------------------------------------------------------------------- /include/qore/intern/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/Function.h -------------------------------------------------------------------------------- /include/qore/intern/FunctionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/FunctionList.h -------------------------------------------------------------------------------- /include/qore/intern/HashDeclList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/HashDeclList.h -------------------------------------------------------------------------------- /include/qore/intern/IconvHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/IconvHelper.h -------------------------------------------------------------------------------- /include/qore/intern/IfStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/IfStatement.h -------------------------------------------------------------------------------- /include/qore/intern/LocalVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/LocalVar.h -------------------------------------------------------------------------------- /include/qore/intern/ModuleInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ModuleInfo.h -------------------------------------------------------------------------------- /include/qore/intern/NamedScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/NamedScope.h -------------------------------------------------------------------------------- /include/qore/intern/ParseNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ParseNode.h -------------------------------------------------------------------------------- /include/qore/intern/ParserSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ParserSupport.h -------------------------------------------------------------------------------- /include/qore/intern/QC_AutoGate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_AutoGate.h -------------------------------------------------------------------------------- /include/qore/intern/QC_AutoLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_AutoLock.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Breakpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Breakpoint.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Condition.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Counter.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Datasource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Datasource.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Dir.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Expression.h -------------------------------------------------------------------------------- /include/qore/intern/QC_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_File.h -------------------------------------------------------------------------------- /include/qore/intern/QC_FtpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_FtpClient.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Gate.h -------------------------------------------------------------------------------- /include/qore/intern/QC_GetOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_GetOpt.h -------------------------------------------------------------------------------- /include/qore/intern/QC_HTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_HTTPClient.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Mutex.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Program.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Queue.h -------------------------------------------------------------------------------- /include/qore/intern/QC_RWLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_RWLock.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Sequence.h -------------------------------------------------------------------------------- /include/qore/intern/QC_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_Socket.h -------------------------------------------------------------------------------- /include/qore/intern/QC_TermIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_TermIOS.h -------------------------------------------------------------------------------- /include/qore/intern/QC_TimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_TimeZone.h -------------------------------------------------------------------------------- /include/qore/intern/QC_TreeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QC_TreeMap.h -------------------------------------------------------------------------------- /include/qore/intern/QException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QException.h -------------------------------------------------------------------------------- /include/qore/intern/QoreClassList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreClassList.h -------------------------------------------------------------------------------- /include/qore/intern/QoreDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreDir.h -------------------------------------------------------------------------------- /include/qore/intern/QoreException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreException.h -------------------------------------------------------------------------------- /include/qore/intern/QoreGetOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreGetOpt.h -------------------------------------------------------------------------------- /include/qore/intern/QoreLValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreLValue.h -------------------------------------------------------------------------------- /include/qore/intern/QoreLibIntern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreLibIntern.h -------------------------------------------------------------------------------- /include/qore/intern/QoreRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreRegex.h -------------------------------------------------------------------------------- /include/qore/intern/QoreRegexBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreRegexBase.h -------------------------------------------------------------------------------- /include/qore/intern/QoreSSLIntern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreSSLIntern.h -------------------------------------------------------------------------------- /include/qore/intern/QoreSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreSignal.h -------------------------------------------------------------------------------- /include/qore/intern/QoreTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/QoreTypeInfo.h -------------------------------------------------------------------------------- /include/qore/intern/RSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/RSection.h -------------------------------------------------------------------------------- /include/qore/intern/RSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/RSet.h -------------------------------------------------------------------------------- /include/qore/intern/RangeIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/RangeIterator.h -------------------------------------------------------------------------------- /include/qore/intern/ScopedRefNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ScopedRefNode.h -------------------------------------------------------------------------------- /include/qore/intern/StreamPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/StreamPipe.h -------------------------------------------------------------------------------- /include/qore/intern/StreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/StreamReader.h -------------------------------------------------------------------------------- /include/qore/intern/StreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/StreamWriter.h -------------------------------------------------------------------------------- /include/qore/intern/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ThreadPool.h -------------------------------------------------------------------------------- /include/qore/intern/TryStatement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/TryStatement.h -------------------------------------------------------------------------------- /include/qore/intern/VLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/VLock.h -------------------------------------------------------------------------------- /include/qore/intern/VRMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/VRMutex.h -------------------------------------------------------------------------------- /include/qore/intern/VarRefNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/VarRefNode.h -------------------------------------------------------------------------------- /include/qore/intern/Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/Variable.h -------------------------------------------------------------------------------- /include/qore/intern/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/config.h -------------------------------------------------------------------------------- /include/qore/intern/getopt_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/getopt_long.h -------------------------------------------------------------------------------- /include/qore/intern/inline_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/inline_printf.h -------------------------------------------------------------------------------- /include/qore/intern/lvalue_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/lvalue_ref.h -------------------------------------------------------------------------------- /include/qore/intern/ql_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_crypto.h -------------------------------------------------------------------------------- /include/qore/intern/ql_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_debug.h -------------------------------------------------------------------------------- /include/qore/intern/ql_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_env.h -------------------------------------------------------------------------------- /include/qore/intern/ql_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_file.h -------------------------------------------------------------------------------- /include/qore/intern/ql_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_lib.h -------------------------------------------------------------------------------- /include/qore/intern/ql_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_list.h -------------------------------------------------------------------------------- /include/qore/intern/ql_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_math.h -------------------------------------------------------------------------------- /include/qore/intern/ql_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_misc.h -------------------------------------------------------------------------------- /include/qore/intern/ql_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_object.h -------------------------------------------------------------------------------- /include/qore/intern/ql_pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_pwd.h -------------------------------------------------------------------------------- /include/qore/intern/ql_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_string.h -------------------------------------------------------------------------------- /include/qore/intern/ql_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_thread.h -------------------------------------------------------------------------------- /include/qore/intern/ql_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_time.h -------------------------------------------------------------------------------- /include/qore/intern/ql_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ql_type.h -------------------------------------------------------------------------------- /include/qore/intern/qore_glob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/qore_glob.h -------------------------------------------------------------------------------- /include/qore/intern/ssl_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/ssl_constants.h -------------------------------------------------------------------------------- /include/qore/intern/win32-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/win32-config.h -------------------------------------------------------------------------------- /include/qore/intern/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/intern/xxhash.h -------------------------------------------------------------------------------- /include/qore/macros-aarch64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-aarch64.h -------------------------------------------------------------------------------- /include/qore/macros-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-arm.h -------------------------------------------------------------------------------- /include/qore/macros-i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-i386.h -------------------------------------------------------------------------------- /include/qore/macros-ia64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-ia64.h -------------------------------------------------------------------------------- /include/qore/macros-none.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-none.h -------------------------------------------------------------------------------- /include/qore/macros-parisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-parisc.h -------------------------------------------------------------------------------- /include/qore/macros-powerpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-powerpc.h -------------------------------------------------------------------------------- /include/qore/macros-ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-ppc64.h -------------------------------------------------------------------------------- /include/qore/macros-riscv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-riscv.h -------------------------------------------------------------------------------- /include/qore/macros-s390x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-s390x.h -------------------------------------------------------------------------------- /include/qore/macros-sparc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-sparc.h -------------------------------------------------------------------------------- /include/qore/macros-x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros-x86_64.h -------------------------------------------------------------------------------- /include/qore/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/macros.h -------------------------------------------------------------------------------- /include/qore/node_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/node_types.h -------------------------------------------------------------------------------- /include/qore/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/params.h -------------------------------------------------------------------------------- /include/qore/qlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/qlist -------------------------------------------------------------------------------- /include/qore/qore_bitopts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/qore_bitopts.h -------------------------------------------------------------------------------- /include/qore/qore_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/qore_thread.h -------------------------------------------------------------------------------- /include/qore/safe_dslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/safe_dslist -------------------------------------------------------------------------------- /include/qore/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/support.h -------------------------------------------------------------------------------- /include/qore/vector_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/vector_map -------------------------------------------------------------------------------- /include/qore/vector_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/include/qore/vector_set -------------------------------------------------------------------------------- /lib/AbstractQoreNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/AbstractQoreNode.cpp -------------------------------------------------------------------------------- /lib/AbstractSmartLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/AbstractSmartLock.cpp -------------------------------------------------------------------------------- /lib/AbstractStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/AbstractStatement.cpp -------------------------------------------------------------------------------- /lib/AbstractThreadResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/AbstractThreadResource.cpp -------------------------------------------------------------------------------- /lib/BackquoteNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/BackquoteNode.cpp -------------------------------------------------------------------------------- /lib/BarewordNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/BarewordNode.cpp -------------------------------------------------------------------------------- /lib/BinaryNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/BinaryNode.cpp -------------------------------------------------------------------------------- /lib/CallReferenceNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/CallReferenceNode.cpp -------------------------------------------------------------------------------- /lib/ClassRefNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ClassRefNode.cpp -------------------------------------------------------------------------------- /lib/ComplexContextrefNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ComplexContextrefNode.cpp -------------------------------------------------------------------------------- /lib/CompressionTransforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/CompressionTransforms.cpp -------------------------------------------------------------------------------- /lib/ConstantList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ConstantList.cpp -------------------------------------------------------------------------------- /lib/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Context.cpp -------------------------------------------------------------------------------- /lib/ContextRowNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ContextRowNode.cpp -------------------------------------------------------------------------------- /lib/ContextStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ContextStatement.cpp -------------------------------------------------------------------------------- /lib/ContextrefNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ContextrefNode.cpp -------------------------------------------------------------------------------- /lib/DBI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/DBI.cpp -------------------------------------------------------------------------------- /lib/Datasource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Datasource.cpp -------------------------------------------------------------------------------- /lib/DatasourcePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/DatasourcePool.cpp -------------------------------------------------------------------------------- /lib/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/DateTime.cpp -------------------------------------------------------------------------------- /lib/DateTimeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/DateTimeNode.cpp -------------------------------------------------------------------------------- /lib/DoWhileStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/DoWhileStatement.cpp -------------------------------------------------------------------------------- /lib/EncryptionTransforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/EncryptionTransforms.cpp -------------------------------------------------------------------------------- /lib/ExceptionSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ExceptionSink.cpp -------------------------------------------------------------------------------- /lib/ExecArgList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ExecArgList.cpp -------------------------------------------------------------------------------- /lib/ExpressionStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ExpressionStatement.cpp -------------------------------------------------------------------------------- /lib/FindNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/FindNode.cpp -------------------------------------------------------------------------------- /lib/ForEachStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ForEachStatement.cpp -------------------------------------------------------------------------------- /lib/ForStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ForStatement.cpp -------------------------------------------------------------------------------- /lib/Function.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Function.cpp -------------------------------------------------------------------------------- /lib/FunctionCallNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/FunctionCallNode.cpp -------------------------------------------------------------------------------- /lib/FunctionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/FunctionList.cpp -------------------------------------------------------------------------------- /lib/FunctionalOperator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/FunctionalOperator.cpp -------------------------------------------------------------------------------- /lib/FunctionalOperatorInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/FunctionalOperatorInterface.cpp -------------------------------------------------------------------------------- /lib/GlobalVariableList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/GlobalVariableList.cpp -------------------------------------------------------------------------------- /lib/HashDeclList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/HashDeclList.cpp -------------------------------------------------------------------------------- /lib/IfStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/IfStatement.cpp -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/ManagedDatasource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ManagedDatasource.cpp -------------------------------------------------------------------------------- /lib/ModuleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ModuleManager.cpp -------------------------------------------------------------------------------- /lib/NamedScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/NamedScope.cpp -------------------------------------------------------------------------------- /lib/NewComplexTypeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/NewComplexTypeNode.cpp -------------------------------------------------------------------------------- /lib/OnBlockExitStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/OnBlockExitStatement.cpp -------------------------------------------------------------------------------- /lib/ParseOptionMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ParseOptionMap.cpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_All.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_All.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Binary.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Binary.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Bool.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Bool.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Callref.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Callref.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Closure.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Closure.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Date.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Date.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Float.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Float.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Hash.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Hash.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Int.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Int.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_List.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_List.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Nothing.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Nothing.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Number.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Number.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_Object.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_Object.qpp -------------------------------------------------------------------------------- /lib/Pseudo_QC_String.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Pseudo_QC_String.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractDatasource.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractDatasource.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractIterator.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractLineIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractLineIterator.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractPollOperation.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractPollOperation.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractPollableIoObject.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractPollableIoObject.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractSQLStatement.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractSQLStatement.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractSmartLock.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractSmartLock.qpp -------------------------------------------------------------------------------- /lib/QC_AbstractThreadResource.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AbstractThreadResource.qpp -------------------------------------------------------------------------------- /lib/QC_AutoGate.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AutoGate.qpp -------------------------------------------------------------------------------- /lib/QC_AutoLock.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AutoLock.qpp -------------------------------------------------------------------------------- /lib/QC_AutoReadLock.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AutoReadLock.qpp -------------------------------------------------------------------------------- /lib/QC_AutoWriteLock.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_AutoWriteLock.qpp -------------------------------------------------------------------------------- /lib/QC_BinaryInputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_BinaryInputStream.qpp -------------------------------------------------------------------------------- /lib/QC_BinaryOutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_BinaryOutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_Breakpoint.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Breakpoint.qpp -------------------------------------------------------------------------------- /lib/QC_BufferedStreamReader.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_BufferedStreamReader.qpp -------------------------------------------------------------------------------- /lib/QC_Condition.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Condition.qpp -------------------------------------------------------------------------------- /lib/QC_Counter.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Counter.qpp -------------------------------------------------------------------------------- /lib/QC_DataLineIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_DataLineIterator.qpp -------------------------------------------------------------------------------- /lib/QC_Datasource.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Datasource.qpp -------------------------------------------------------------------------------- /lib/QC_DatasourcePool.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_DatasourcePool.qpp -------------------------------------------------------------------------------- /lib/QC_DebugProgram.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_DebugProgram.qpp -------------------------------------------------------------------------------- /lib/QC_Dir.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Dir.qpp -------------------------------------------------------------------------------- /lib/QC_Expression.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Expression.qpp -------------------------------------------------------------------------------- /lib/QC_File.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_File.qpp -------------------------------------------------------------------------------- /lib/QC_FileInputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_FileInputStream.qpp -------------------------------------------------------------------------------- /lib/QC_FileLineIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_FileLineIterator.qpp -------------------------------------------------------------------------------- /lib/QC_FileOutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_FileOutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_FilePollOperation.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_FilePollOperation.qpp -------------------------------------------------------------------------------- /lib/QC_FtpClient.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_FtpClient.qpp -------------------------------------------------------------------------------- /lib/QC_Gate.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Gate.qpp -------------------------------------------------------------------------------- /lib/QC_GetOpt.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_GetOpt.qpp -------------------------------------------------------------------------------- /lib/QC_HTTPClient.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HTTPClient.qpp -------------------------------------------------------------------------------- /lib/QC_HTTPClientPollOperation.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HTTPClientPollOperation.qpp -------------------------------------------------------------------------------- /lib/QC_HashIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashIterator.qpp -------------------------------------------------------------------------------- /lib/QC_HashKeyIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashKeyIterator.qpp -------------------------------------------------------------------------------- /lib/QC_HashKeyReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashKeyReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_HashListIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashListIterator.qpp -------------------------------------------------------------------------------- /lib/QC_HashListReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashListReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_HashPairIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashPairIterator.qpp -------------------------------------------------------------------------------- /lib/QC_HashPairReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashPairReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_HashReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_HashReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_InputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_InputStream.qpp -------------------------------------------------------------------------------- /lib/QC_InputStreamLineIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_InputStreamLineIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ListHashIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ListHashIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ListHashReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ListHashReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ListIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ListIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ListReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ListReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_Mutex.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Mutex.qpp -------------------------------------------------------------------------------- /lib/QC_ObjectIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ObjectIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ObjectKeyIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ObjectKeyIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ObjectKeyReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ObjectKeyReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ObjectPairIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ObjectPairIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ObjectReverseIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ObjectReverseIterator.qpp -------------------------------------------------------------------------------- /lib/QC_OutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_OutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_PipeInputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_PipeInputStream.qpp -------------------------------------------------------------------------------- /lib/QC_PipeOutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_PipeOutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_Program.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Program.qpp -------------------------------------------------------------------------------- /lib/QC_ProgramControl.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ProgramControl.qpp -------------------------------------------------------------------------------- /lib/QC_Queue.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Queue.qpp -------------------------------------------------------------------------------- /lib/QC_RWLock.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_RWLock.qpp -------------------------------------------------------------------------------- /lib/QC_RangeIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_RangeIterator.qpp -------------------------------------------------------------------------------- /lib/QC_ReadOnlyFile.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ReadOnlyFile.qpp -------------------------------------------------------------------------------- /lib/QC_SQLStatement.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_SQLStatement.qpp -------------------------------------------------------------------------------- /lib/QC_SSLCertificate.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_SSLCertificate.qpp -------------------------------------------------------------------------------- /lib/QC_SSLPrivateKey.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_SSLPrivateKey.qpp -------------------------------------------------------------------------------- /lib/QC_Sequence.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Sequence.qpp -------------------------------------------------------------------------------- /lib/QC_Serializable.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Serializable.qpp -------------------------------------------------------------------------------- /lib/QC_SingleValueIterator.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_SingleValueIterator.qpp -------------------------------------------------------------------------------- /lib/QC_Socket.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Socket.qpp -------------------------------------------------------------------------------- /lib/QC_SocketPollOperation.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_SocketPollOperation.qpp -------------------------------------------------------------------------------- /lib/QC_SocketPollOperationBase.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_SocketPollOperationBase.qpp -------------------------------------------------------------------------------- /lib/QC_StderrOutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StderrOutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_StdoutOutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StdoutOutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_StreamBase.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StreamBase.qpp -------------------------------------------------------------------------------- /lib/QC_StreamPipe.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StreamPipe.qpp -------------------------------------------------------------------------------- /lib/QC_StreamReader.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StreamReader.qpp -------------------------------------------------------------------------------- /lib/QC_StreamWriter.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StreamWriter.qpp -------------------------------------------------------------------------------- /lib/QC_StringInputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StringInputStream.qpp -------------------------------------------------------------------------------- /lib/QC_StringOutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_StringOutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_TermIOS.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_TermIOS.qpp -------------------------------------------------------------------------------- /lib/QC_ThreadPool.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_ThreadPool.qpp -------------------------------------------------------------------------------- /lib/QC_TimeZone.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_TimeZone.qpp -------------------------------------------------------------------------------- /lib/QC_Transform.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_Transform.qpp -------------------------------------------------------------------------------- /lib/QC_TransformInputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_TransformInputStream.qpp -------------------------------------------------------------------------------- /lib/QC_TransformOutputStream.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_TransformOutputStream.qpp -------------------------------------------------------------------------------- /lib/QC_TreeMap.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QC_TreeMap.qpp -------------------------------------------------------------------------------- /lib/QException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QException.cpp -------------------------------------------------------------------------------- /lib/QoreAndEqualsOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreAndEqualsOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreAssignmentOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreAssignmentOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreBackgroundOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreBackgroundOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreBinaryAndOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreBinaryAndOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreBinaryNotOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreBinaryNotOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreBinaryOrOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreBinaryOrOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreBinaryXorOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreBinaryXorOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreCastOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreCastOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreChompOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreChompOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreClass.cpp -------------------------------------------------------------------------------- /lib/QoreClassList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreClassList.cpp -------------------------------------------------------------------------------- /lib/QoreClosureNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreClosureNode.cpp -------------------------------------------------------------------------------- /lib/QoreClosureParseNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreClosureParseNode.cpp -------------------------------------------------------------------------------- /lib/QoreCondition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreCondition.cpp -------------------------------------------------------------------------------- /lib/QoreCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreCounter.cpp -------------------------------------------------------------------------------- /lib/QoreDeleteOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreDeleteOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreDir.cpp -------------------------------------------------------------------------------- /lib/QoreDivisionOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreDivisionOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreDotEvalOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreDotEvalOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreElementsOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreElementsOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreEllipsesNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreEllipsesNode.cpp -------------------------------------------------------------------------------- /lib/QoreException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreException.cpp -------------------------------------------------------------------------------- /lib/QoreExistsOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreExistsOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreExtractOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreExtractOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreFile.cpp -------------------------------------------------------------------------------- /lib/QoreFoldlOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreFoldlOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreFtpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreFtpClient.cpp -------------------------------------------------------------------------------- /lib/QoreGetOpt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreGetOpt.cpp -------------------------------------------------------------------------------- /lib/QoreHTTPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreHTTPClient.cpp -------------------------------------------------------------------------------- /lib/QoreHashMapOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreHashMapOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreHashNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreHashNode.cpp -------------------------------------------------------------------------------- /lib/QoreHttpClientObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreHttpClientObject.cpp -------------------------------------------------------------------------------- /lib/QoreImplicitArgumentNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreImplicitArgumentNode.cpp -------------------------------------------------------------------------------- /lib/QoreImplicitElementNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreImplicitElementNode.cpp -------------------------------------------------------------------------------- /lib/QoreInstanceOfOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreInstanceOfOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreKeysOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreKeysOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreLib.cpp -------------------------------------------------------------------------------- /lib/QoreListNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreListNode.cpp -------------------------------------------------------------------------------- /lib/QoreLogicalAndOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreLogicalAndOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreLogicalNotOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreLogicalNotOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreLogicalOrOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreLogicalOrOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreMapOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreMapOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreMapSelectOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreMapSelectOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreMinusEqualsOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreMinusEqualsOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreMinusOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreMinusOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreModuloOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreModuloOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreNamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreNamespace.cpp -------------------------------------------------------------------------------- /lib/QoreNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreNet.cpp -------------------------------------------------------------------------------- /lib/QoreNothingNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreNothingNode.cpp -------------------------------------------------------------------------------- /lib/QoreNullNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreNullNode.cpp -------------------------------------------------------------------------------- /lib/QoreNumberNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreNumberNode.cpp -------------------------------------------------------------------------------- /lib/QoreObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreObject.cpp -------------------------------------------------------------------------------- /lib/QoreOrEqualsOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreOrEqualsOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreParseHashNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreParseHashNode.cpp -------------------------------------------------------------------------------- /lib/QoreParseListNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreParseListNode.cpp -------------------------------------------------------------------------------- /lib/QorePlusEqualsOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QorePlusEqualsOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QorePlusOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QorePlusOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QorePopOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QorePopOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreProgram.cpp -------------------------------------------------------------------------------- /lib/QoreProgramHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreProgramHelper.cpp -------------------------------------------------------------------------------- /lib/QorePseudoMethods.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QorePseudoMethods.cpp -------------------------------------------------------------------------------- /lib/QorePushOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QorePushOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreQueue.cpp -------------------------------------------------------------------------------- /lib/QoreQueueHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreQueueHelper.cpp -------------------------------------------------------------------------------- /lib/QoreRWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRWLock.cpp -------------------------------------------------------------------------------- /lib/QoreRangeOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRangeOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreReferenceCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreReferenceCounter.cpp -------------------------------------------------------------------------------- /lib/QoreReflection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreReflection.cpp -------------------------------------------------------------------------------- /lib/QoreRegex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRegex.cpp -------------------------------------------------------------------------------- /lib/QoreRegexBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRegexBase.cpp -------------------------------------------------------------------------------- /lib/QoreRegexInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRegexInterface.cpp -------------------------------------------------------------------------------- /lib/QoreRegexMatchOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRegexMatchOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreRegexNMatchOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRegexNMatchOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreRegexSubst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRegexSubst.cpp -------------------------------------------------------------------------------- /lib/QoreRegexSubstOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRegexSubstOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreRemoveOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreRemoveOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreSQLStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSQLStatement.cpp -------------------------------------------------------------------------------- /lib/QoreSSLBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSSLBase.cpp -------------------------------------------------------------------------------- /lib/QoreSSLCertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSSLCertificate.cpp -------------------------------------------------------------------------------- /lib/QoreSSLPrivateKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSSLPrivateKey.cpp -------------------------------------------------------------------------------- /lib/QoreSelectOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSelectOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreSerializable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSerializable.cpp -------------------------------------------------------------------------------- /lib/QoreShiftLeftOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreShiftLeftOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreShiftOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreShiftOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreShiftRightOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreShiftRightOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSignal.cpp -------------------------------------------------------------------------------- /lib/QoreSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSocket.cpp -------------------------------------------------------------------------------- /lib/QoreSocketObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSocketObject.cpp -------------------------------------------------------------------------------- /lib/QoreSpliceOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreSpliceOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreStandardException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreStandardException.cpp -------------------------------------------------------------------------------- /lib/QoreString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreString.cpp -------------------------------------------------------------------------------- /lib/QoreStringNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreStringNode.cpp -------------------------------------------------------------------------------- /lib/QoreThreadLocalStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreThreadLocalStorage.cpp -------------------------------------------------------------------------------- /lib/QoreTimeZoneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreTimeZoneManager.cpp -------------------------------------------------------------------------------- /lib/QoreTransliteration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreTransliteration.cpp -------------------------------------------------------------------------------- /lib/QoreTrimOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreTrimOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreType.cpp -------------------------------------------------------------------------------- /lib/QoreTypeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreTypeInfo.cpp -------------------------------------------------------------------------------- /lib/QoreURL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreURL.cpp -------------------------------------------------------------------------------- /lib/QoreUnaryMinusOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreUnaryMinusOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreUnaryPlusOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreUnaryPlusOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreUnshiftOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreUnshiftOperatorNode.cpp -------------------------------------------------------------------------------- /lib/QoreValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreValue.cpp -------------------------------------------------------------------------------- /lib/QoreXSinkException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreXSinkException.cpp -------------------------------------------------------------------------------- /lib/QoreXorEqualsOperatorNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/QoreXorEqualsOperatorNode.cpp -------------------------------------------------------------------------------- /lib/RSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/RSection.cpp -------------------------------------------------------------------------------- /lib/RSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/RSet.cpp -------------------------------------------------------------------------------- /lib/RWLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/RWLock.cpp -------------------------------------------------------------------------------- /lib/ReferenceArgumentHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ReferenceArgumentHelper.cpp -------------------------------------------------------------------------------- /lib/ReferenceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ReferenceHelper.cpp -------------------------------------------------------------------------------- /lib/ReferenceNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ReferenceNode.cpp -------------------------------------------------------------------------------- /lib/RethrowStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/RethrowStatement.cpp -------------------------------------------------------------------------------- /lib/ReturnStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ReturnStatement.cpp -------------------------------------------------------------------------------- /lib/SQLStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/SQLStatement.cpp -------------------------------------------------------------------------------- /lib/ScopedRefNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ScopedRefNode.cpp -------------------------------------------------------------------------------- /lib/SelfVarrefNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/SelfVarrefNode.cpp -------------------------------------------------------------------------------- /lib/Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Sequence.cpp -------------------------------------------------------------------------------- /lib/SmartMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/SmartMutex.cpp -------------------------------------------------------------------------------- /lib/StatementBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/StatementBlock.cpp -------------------------------------------------------------------------------- /lib/StaticClassVarRefNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/StaticClassVarRefNode.cpp -------------------------------------------------------------------------------- /lib/StreamPipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/StreamPipe.cpp -------------------------------------------------------------------------------- /lib/SummarizeStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/SummarizeStatement.cpp -------------------------------------------------------------------------------- /lib/SwitchStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/SwitchStatement.cpp -------------------------------------------------------------------------------- /lib/SystemEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/SystemEnvironment.cpp -------------------------------------------------------------------------------- /lib/ThreadClosureVariableStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ThreadClosureVariableStack.cpp -------------------------------------------------------------------------------- /lib/ThreadLocalVariableData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ThreadLocalVariableData.cpp -------------------------------------------------------------------------------- /lib/ThreadResourceList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ThreadResourceList.cpp -------------------------------------------------------------------------------- /lib/ThrowStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ThrowStatement.cpp -------------------------------------------------------------------------------- /lib/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Transform.cpp -------------------------------------------------------------------------------- /lib/TryStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/TryStatement.cpp -------------------------------------------------------------------------------- /lib/TypedHashDecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/TypedHashDecl.cpp -------------------------------------------------------------------------------- /lib/UnicodeCharacterIterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/UnicodeCharacterIterator.cpp -------------------------------------------------------------------------------- /lib/VLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/VLock.cpp -------------------------------------------------------------------------------- /lib/VRMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/VRMutex.cpp -------------------------------------------------------------------------------- /lib/VarRefNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/VarRefNode.cpp -------------------------------------------------------------------------------- /lib/Variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/Variable.cpp -------------------------------------------------------------------------------- /lib/WeakHashReferenceNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/WeakHashReferenceNode.cpp -------------------------------------------------------------------------------- /lib/WeakListReferenceNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/WeakListReferenceNode.cpp -------------------------------------------------------------------------------- /lib/WeakReferenceNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/WeakReferenceNode.cpp -------------------------------------------------------------------------------- /lib/WhileStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/WhileStatement.cpp -------------------------------------------------------------------------------- /lib/acc-64bit-ia64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/acc-64bit-ia64.s -------------------------------------------------------------------------------- /lib/acc-parisc32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/acc-parisc32.s -------------------------------------------------------------------------------- /lib/charset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/charset.cpp -------------------------------------------------------------------------------- /lib/getopt_long.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/getopt_long.cpp -------------------------------------------------------------------------------- /lib/glob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/glob.cpp -------------------------------------------------------------------------------- /lib/inet_ntop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/inet_ntop.cpp -------------------------------------------------------------------------------- /lib/inet_pton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/inet_pton.cpp -------------------------------------------------------------------------------- /lib/inline_printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/inline_printf.cpp -------------------------------------------------------------------------------- /lib/lvalue_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/lvalue_ref.cpp -------------------------------------------------------------------------------- /lib/parser.ypp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/parser.ypp -------------------------------------------------------------------------------- /lib/qc_errno.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/qc_errno.qpp -------------------------------------------------------------------------------- /lib/qc_option.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/qc_option.qpp -------------------------------------------------------------------------------- /lib/qc_qore.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/qc_qore.qpp -------------------------------------------------------------------------------- /lib/ql_compression.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_compression.qpp -------------------------------------------------------------------------------- /lib/ql_context.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_context.qpp -------------------------------------------------------------------------------- /lib/ql_crypto.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_crypto.qpp -------------------------------------------------------------------------------- /lib/ql_dbi.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_dbi.qpp -------------------------------------------------------------------------------- /lib/ql_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_debug.cpp -------------------------------------------------------------------------------- /lib/ql_env.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_env.qpp -------------------------------------------------------------------------------- /lib/ql_file.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_file.qpp -------------------------------------------------------------------------------- /lib/ql_lib.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_lib.qpp -------------------------------------------------------------------------------- /lib/ql_list.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_list.qpp -------------------------------------------------------------------------------- /lib/ql_math.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_math.qpp -------------------------------------------------------------------------------- /lib/ql_misc.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_misc.qpp -------------------------------------------------------------------------------- /lib/ql_object.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_object.qpp -------------------------------------------------------------------------------- /lib/ql_pwd.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_pwd.qpp -------------------------------------------------------------------------------- /lib/ql_string.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_string.qpp -------------------------------------------------------------------------------- /lib/ql_thread.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_thread.qpp -------------------------------------------------------------------------------- /lib/ql_time.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_time.qpp -------------------------------------------------------------------------------- /lib/ql_type.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/ql_type.qpp -------------------------------------------------------------------------------- /lib/qore-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/qore-main.cpp -------------------------------------------------------------------------------- /lib/qore_date_private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/qore_date_private.cpp -------------------------------------------------------------------------------- /lib/qpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/qpp.cpp -------------------------------------------------------------------------------- /lib/scanner.lpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/scanner.lpp -------------------------------------------------------------------------------- /lib/single-compilation-unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/single-compilation-unit.cpp -------------------------------------------------------------------------------- /lib/sunpro-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/sunpro-i386.s -------------------------------------------------------------------------------- /lib/sunpro-sparc32.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/sunpro-sparc32.s -------------------------------------------------------------------------------- /lib/sunpro-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/sunpro-x86_64.s -------------------------------------------------------------------------------- /lib/support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/support.cpp -------------------------------------------------------------------------------- /lib/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/thread.cpp -------------------------------------------------------------------------------- /lib/unicode-charmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/unicode-charmaps.cpp -------------------------------------------------------------------------------- /lib/xxhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/lib/xxhash.cpp -------------------------------------------------------------------------------- /m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/m4/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/stl_hash_map.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/m4/stl_hash_map.m4 -------------------------------------------------------------------------------- /m4/stl_slist.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/m4/stl_slist.m4 -------------------------------------------------------------------------------- /m4/type_socklen_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/m4/type_socklen_t.m4 -------------------------------------------------------------------------------- /make-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/make-tests.sh -------------------------------------------------------------------------------- /modules/astparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/CMakeLists.txt -------------------------------------------------------------------------------- /modules/astparser/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/Makefile.am -------------------------------------------------------------------------------- /modules/astparser/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/config.h.in -------------------------------------------------------------------------------- /modules/astparser/src/AstParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/AstParser.cpp -------------------------------------------------------------------------------- /modules/astparser/src/AstParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/AstParser.h -------------------------------------------------------------------------------- /modules/astparser/src/AstPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/AstPrinter.h -------------------------------------------------------------------------------- /modules/astparser/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/Makefile.am -------------------------------------------------------------------------------- /modules/astparser/src/QC_AstTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/QC_AstTree.h -------------------------------------------------------------------------------- /modules/astparser/src/ast/AST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/ast/AST.h -------------------------------------------------------------------------------- /modules/astparser/src/ast/ASTName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/ast/ASTName.h -------------------------------------------------------------------------------- /modules/astparser/src/ast/ASTNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/ast/ASTNode.h -------------------------------------------------------------------------------- /modules/astparser/src/ast/ASTTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/ast/ASTTree.h -------------------------------------------------------------------------------- /modules/astparser/src/ql_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/ql_ast.h -------------------------------------------------------------------------------- /modules/astparser/src/ql_ast.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/astparser/src/ql_ast.qpp -------------------------------------------------------------------------------- /modules/logger_bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/logger_bin/CMakeLists.txt -------------------------------------------------------------------------------- /modules/logger_bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/logger_bin/Makefile.am -------------------------------------------------------------------------------- /modules/logger_bin/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/logger_bin/src/Makefile.am -------------------------------------------------------------------------------- /modules/logger_bin/src/QC_Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/logger_bin/src/QC_Logger.h -------------------------------------------------------------------------------- /modules/logger_bin/src/QoreLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/logger_bin/src/QoreLogger.h -------------------------------------------------------------------------------- /modules/reflection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/reflection/CMakeLists.txt -------------------------------------------------------------------------------- /modules/reflection/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/reflection/Makefile.am -------------------------------------------------------------------------------- /modules/reflection/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/reflection/src/Makefile.am -------------------------------------------------------------------------------- /modules/reflection/src/QC_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/reflection/src/QC_Class.h -------------------------------------------------------------------------------- /modules/reflection/src/QC_Class.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/reflection/src/QC_Class.qpp -------------------------------------------------------------------------------- /modules/reflection/src/QC_Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/reflection/src/QC_Type.h -------------------------------------------------------------------------------- /modules/reflection/src/QC_Type.qpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/modules/reflection/src/QC_Type.qpp -------------------------------------------------------------------------------- /next_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/next_build.sh -------------------------------------------------------------------------------- /qlib/AsyncSocketIo/AsyncSocketIo.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/AsyncSocketIo/AsyncSocketIo.qm -------------------------------------------------------------------------------- /qlib/AwsRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/AwsRestClient.qm -------------------------------------------------------------------------------- /qlib/BillwerkRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/BillwerkRestClient.qm -------------------------------------------------------------------------------- /qlib/BulkSqlUtil/BulkSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/BulkSqlUtil/BulkSqlUtil.qm -------------------------------------------------------------------------------- /qlib/CdsRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CdsRestClient.qm -------------------------------------------------------------------------------- /qlib/CsvUtil/AbstractCsvIterator.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/AbstractCsvIterator.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/AbstractCsvWriter.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/AbstractCsvWriter.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvDataIterator.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvDataIterator.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvFileIterator.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvFileIterator.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvFileWriter.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvFileWriter.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvHelper.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvHelper.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvIterator.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvIterator.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvReadDataProvider.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvReadDataProvider.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvStringWriter.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvStringWriter.qc -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvUtil.qm -------------------------------------------------------------------------------- /qlib/CsvUtil/CsvWriter.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/CsvUtil/CsvWriter.qc -------------------------------------------------------------------------------- /qlib/DataProvider/DataProvider.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/DataProvider.qc -------------------------------------------------------------------------------- /qlib/DataProvider/DataProvider.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/DataProvider.qm -------------------------------------------------------------------------------- /qlib/DataProvider/FileDataType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/FileDataType.qc -------------------------------------------------------------------------------- /qlib/DataProvider/HashDataType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/HashDataType.qc -------------------------------------------------------------------------------- /qlib/DataProvider/ListDataType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/ListDataType.qc -------------------------------------------------------------------------------- /qlib/DataProvider/Observable.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/Observable.qc -------------------------------------------------------------------------------- /qlib/DataProvider/Observer.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/Observer.qc -------------------------------------------------------------------------------- /qlib/DataProvider/QoreDataField.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/QoreDataField.qc -------------------------------------------------------------------------------- /qlib/DataProvider/QoreDataType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DataProvider/QoreDataType.qc -------------------------------------------------------------------------------- /qlib/DatasourceProvider.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DatasourceProvider.qm -------------------------------------------------------------------------------- /qlib/DbDataProvider/db-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DbDataProvider/db-logo.svg -------------------------------------------------------------------------------- /qlib/DebugCmdLine.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DebugCmdLine.qm -------------------------------------------------------------------------------- /qlib/DebugHandler.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DebugHandler.qm -------------------------------------------------------------------------------- /qlib/DebugLinenoiseCmdLine.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DebugLinenoiseCmdLine.qm -------------------------------------------------------------------------------- /qlib/DebugProgramControl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DebugProgramControl.qm -------------------------------------------------------------------------------- /qlib/DebugUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DebugUtil.qm -------------------------------------------------------------------------------- /qlib/Diff.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Diff.qm -------------------------------------------------------------------------------- /qlib/DiscordRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DiscordRestClient.qm -------------------------------------------------------------------------------- /qlib/DiscordWebSocketClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/DiscordWebSocketClient.qm -------------------------------------------------------------------------------- /qlib/FilePoller.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/FilePoller.qm -------------------------------------------------------------------------------- /qlib/FreetdsSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/FreetdsSqlUtil.qm -------------------------------------------------------------------------------- /qlib/FsUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/FsUtil.qm -------------------------------------------------------------------------------- /qlib/FtpPoller.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/FtpPoller.qm -------------------------------------------------------------------------------- /qlib/FtpPollerUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/FtpPollerUtil.qm -------------------------------------------------------------------------------- /qlib/GoogleRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/GoogleRestClient.qm -------------------------------------------------------------------------------- /qlib/HttpServer.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/HttpServer.qm -------------------------------------------------------------------------------- /qlib/HttpServerUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/HttpServerUtil.qm -------------------------------------------------------------------------------- /qlib/HueRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/HueRestClient.qm -------------------------------------------------------------------------------- /qlib/JdbcFirebirdSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/JdbcFirebirdSqlUtil.qm -------------------------------------------------------------------------------- /qlib/JdbcMicrosoftSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/JdbcMicrosoftSqlUtil.qm -------------------------------------------------------------------------------- /qlib/JdbcOracleSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/JdbcOracleSqlUtil.qm -------------------------------------------------------------------------------- /qlib/JdbcPostgresqlSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/JdbcPostgresqlSqlUtil.qm -------------------------------------------------------------------------------- /qlib/Logger.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Logger.qm -------------------------------------------------------------------------------- /qlib/MailMessage.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/MailMessage.qm -------------------------------------------------------------------------------- /qlib/Mapper.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Mapper.qm -------------------------------------------------------------------------------- /qlib/MapperUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/MapperUtil.qm -------------------------------------------------------------------------------- /qlib/MewsRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/MewsRestClient.qm -------------------------------------------------------------------------------- /qlib/Mime.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Mime.qm -------------------------------------------------------------------------------- /qlib/MssqlSqlUtilBase.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/MssqlSqlUtilBase.qm -------------------------------------------------------------------------------- /qlib/MysqlSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/MysqlSqlUtil.qm -------------------------------------------------------------------------------- /qlib/NetSuiteRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/NetSuiteRestClient.qm -------------------------------------------------------------------------------- /qlib/OdbcFirebirdSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/OdbcFirebirdSqlUtil.qm -------------------------------------------------------------------------------- /qlib/OpenAiDataProvider/openai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/OpenAiDataProvider/openai.yaml -------------------------------------------------------------------------------- /qlib/OpenAiRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/OpenAiRestClient.qm -------------------------------------------------------------------------------- /qlib/OracleSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/OracleSqlUtil.qm -------------------------------------------------------------------------------- /qlib/OracleSqlUtilBase.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/OracleSqlUtilBase.qm -------------------------------------------------------------------------------- /qlib/PgsqlSqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/PgsqlSqlUtil.qm -------------------------------------------------------------------------------- /qlib/PgsqlSqlUtilBase.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/PgsqlSqlUtilBase.qm -------------------------------------------------------------------------------- /qlib/Pop3Client.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Pop3Client.qm -------------------------------------------------------------------------------- /qlib/ProviderIndex/ProviderIndex.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/ProviderIndex/ProviderIndex.qc -------------------------------------------------------------------------------- /qlib/ProviderIndex/ProviderIndex.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/ProviderIndex/ProviderIndex.qm -------------------------------------------------------------------------------- /qlib/QUnit.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/QUnit.qm -------------------------------------------------------------------------------- /qlib/Qdx.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Qdx.qm -------------------------------------------------------------------------------- /qlib/Qorize.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Qorize.qm -------------------------------------------------------------------------------- /qlib/RestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/RestClient.qm -------------------------------------------------------------------------------- /qlib/RestHandler.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/RestHandler.qm -------------------------------------------------------------------------------- /qlib/RestSchemaValidator.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/RestSchemaValidator.qm -------------------------------------------------------------------------------- /qlib/SalesforceRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SalesforceRestClient.qm -------------------------------------------------------------------------------- /qlib/Sap4HanaRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Sap4HanaRestClient.qm -------------------------------------------------------------------------------- /qlib/Schema.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Schema.qm -------------------------------------------------------------------------------- /qlib/SchemaReverse.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SchemaReverse.qm -------------------------------------------------------------------------------- /qlib/ServiceNowRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/ServiceNowRestClient.qm -------------------------------------------------------------------------------- /qlib/SewioRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SewioRestClient.qm -------------------------------------------------------------------------------- /qlib/SewioWebSocketClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SewioWebSocketClient.qm -------------------------------------------------------------------------------- /qlib/SmtpClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SmtpClient.qm -------------------------------------------------------------------------------- /qlib/SqlUtil/AbstractDatabase.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/AbstractDatabase.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/AbstractSqlUtilBase.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/AbstractSqlUtilBase.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/AbstractTable.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/AbstractTable.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/Database.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/Database.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/SqlResultInfo.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/SqlResultInfo.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/SqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/SqlUtil.qm -------------------------------------------------------------------------------- /qlib/SqlUtil/SqlUtilColumnField.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/SqlUtilColumnField.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/SqlUtilDateType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/SqlUtilDateType.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/SqlUtilFloatType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/SqlUtilFloatType.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/SqlUtilIntType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/SqlUtilIntType.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/SqlUtilStringType.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/SqlUtilStringType.qc -------------------------------------------------------------------------------- /qlib/SqlUtil/Table.qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/SqlUtil/Table.qc -------------------------------------------------------------------------------- /qlib/Sqlite3SqlUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Sqlite3SqlUtil.qm -------------------------------------------------------------------------------- /qlib/Swagger.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Swagger.qm -------------------------------------------------------------------------------- /qlib/TableMapper.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/TableMapper.qm -------------------------------------------------------------------------------- /qlib/TelnetClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/TelnetClient.qm -------------------------------------------------------------------------------- /qlib/TextWrap.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/TextWrap.qm -------------------------------------------------------------------------------- /qlib/Util.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/Util.qm -------------------------------------------------------------------------------- /qlib/VscDebugAdapter.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/VscDebugAdapter.qm -------------------------------------------------------------------------------- /qlib/WebSocketClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/WebSocketClient.qm -------------------------------------------------------------------------------- /qlib/WebSocketHandler.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/WebSocketHandler.qm -------------------------------------------------------------------------------- /qlib/WebSocketUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/WebSocketUtil.qm -------------------------------------------------------------------------------- /qlib/WebUtil.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/WebUtil.qm -------------------------------------------------------------------------------- /qlib/XdbcFirebirdSqlUtilBase.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/XdbcFirebirdSqlUtilBase.qm -------------------------------------------------------------------------------- /qlib/ZeyosRestClient.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qlib/ZeyosRestClient.qm -------------------------------------------------------------------------------- /qore-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore-main.cpp -------------------------------------------------------------------------------- /qore-single-compilation-unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore-single-compilation-unit.cpp -------------------------------------------------------------------------------- /qore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore.1 -------------------------------------------------------------------------------- /qore.changes-opensuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore.changes-opensuse -------------------------------------------------------------------------------- /qore.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore.pc.in -------------------------------------------------------------------------------- /qore.spec-fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore.spec-fedora -------------------------------------------------------------------------------- /qore.spec-multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore.spec-multi -------------------------------------------------------------------------------- /qore.spec-opensuse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qore.spec-opensuse -------------------------------------------------------------------------------- /qoretests.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qoretests.mk -------------------------------------------------------------------------------- /qr-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qr-main.cpp -------------------------------------------------------------------------------- /qr-single-compilation-unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/qr-single-compilation-unit.cpp -------------------------------------------------------------------------------- /reconf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/reconf.sh -------------------------------------------------------------------------------- /rel/README-qore.Windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/rel/README-qore.Windows -------------------------------------------------------------------------------- /rel/rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/rel/rel.sh -------------------------------------------------------------------------------- /run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/run_tests.sh -------------------------------------------------------------------------------- /scratch/ThreadPool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ThreadPool -------------------------------------------------------------------------------- /scratch/aa.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/aa.qtest -------------------------------------------------------------------------------- /scratch/bare-refs.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/bare-refs.q -------------------------------------------------------------------------------- /scratch/class-constant.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/class-constant.q -------------------------------------------------------------------------------- /scratch/crash-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/crash-1 -------------------------------------------------------------------------------- /scratch/crash-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/crash-2 -------------------------------------------------------------------------------- /scratch/crash-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/crash-3 -------------------------------------------------------------------------------- /scratch/crash-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/crash-4 -------------------------------------------------------------------------------- /scratch/crash-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/crash-5 -------------------------------------------------------------------------------- /scratch/crash-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/crash-6 -------------------------------------------------------------------------------- /scratch/hard-typing-parse-err.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/hard-typing-parse-err.q -------------------------------------------------------------------------------- /scratch/hard-typing-rt-err.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/hard-typing-rt-err.q -------------------------------------------------------------------------------- /scratch/injection.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/injection.qtest -------------------------------------------------------------------------------- /scratch/memory-leak-1.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/memory-leak-1.q -------------------------------------------------------------------------------- /scratch/memory-leak-2-fixed.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/memory-leak-2-fixed.q -------------------------------------------------------------------------------- /scratch/ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml -------------------------------------------------------------------------------- /scratch/ml1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml1 -------------------------------------------------------------------------------- /scratch/ml10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml10 -------------------------------------------------------------------------------- /scratch/ml11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml11 -------------------------------------------------------------------------------- /scratch/ml12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml12 -------------------------------------------------------------------------------- /scratch/ml13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml13 -------------------------------------------------------------------------------- /scratch/ml14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml14 -------------------------------------------------------------------------------- /scratch/ml2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml2 -------------------------------------------------------------------------------- /scratch/ml3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml3 -------------------------------------------------------------------------------- /scratch/ml4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml4 -------------------------------------------------------------------------------- /scratch/ml5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml5 -------------------------------------------------------------------------------- /scratch/ml6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml6 -------------------------------------------------------------------------------- /scratch/ml7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml7 -------------------------------------------------------------------------------- /scratch/ml8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml8 -------------------------------------------------------------------------------- /scratch/ml9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ml9 -------------------------------------------------------------------------------- /scratch/object-members.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/object-members.q -------------------------------------------------------------------------------- /scratch/overload-parse-err.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/overload-parse-err.q -------------------------------------------------------------------------------- /scratch/overload.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/overload.q -------------------------------------------------------------------------------- /scratch/parse-no-type-errors.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/parse-no-type-errors.q -------------------------------------------------------------------------------- /scratch/parse-stage-2-error.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/parse-stage-2-error.q -------------------------------------------------------------------------------- /scratch/pht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/pht -------------------------------------------------------------------------------- /scratch/ptest.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/ptest.q -------------------------------------------------------------------------------- /scratch/schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/schema -------------------------------------------------------------------------------- /scratch/stim-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/stim-test -------------------------------------------------------------------------------- /scratch/unlocked-thread.qtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/scratch/unlocked-thread.qtest -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- 1 | examples/test -------------------------------------------------------------------------------- /testbed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/testbed/Makefile -------------------------------------------------------------------------------- /testbed/httpd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qoretechnologies/qore/HEAD/testbed/httpd.cc --------------------------------------------------------------------------------