text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/11 Vicente J. Botet Escriba
// first implementation of a simple user scheduler.
// 2013/11 Vicente J. Botet Escriba
// rename loop_executor.
#ifndef BOOST_THREAD_EXECUTORS_LOOP_EXECUTOR_HPP
#define BOOST_THREAD_EXECUTORS_LOOP_EXECUTOR_HPP
#inc... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/loop_executor.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,219 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/11 Vicente J. Botet Escriba
// first implementation of a simple serial scheduler.
#ifndef BOOST_THREAD_INLINE_EXECUTOR_HPP
#define BOOST_THREAD_INLINE_EXECUTOR_HPP
#include <boost/thread/detail/config.hpp>
#include <boost/thread/detail/delete.hpp... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/inline_executor.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 935 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/09 Vicente J. Botet Escriba
// Adapt to boost from CCIA C++11 implementation
#ifndef BOOST_THREAD_EXECUTORS_EXECUTOR_ADAPTOR_HPP
#define BOOST_THREAD_EXECUTORS_EXECUTOR_ADAPTOR_HPP
#include <boost/thread/detail/config.hpp>
#include <boost/thread... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/executor_adaptor.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 889 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/09 Vicente J. Botet Escriba
// Adapt to boost from CCIA C++11 implementation
#ifndef BOOST_THREAD_EXECUTORS_EXECUTOR_HPP
#define BOOST_THREAD_EXECUTORS_EXECUTOR_HPP
#include <boost/thread/detail/config.hpp>
#include <boost/thread/detail/delete.h... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/executor.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 902 |
```c++
//
// accompanying file LICENSE_1_0.txt or copy at
// path_to_url
#ifndef BOOST_THREAD_EXECUTORS_WORK_HPP
#define BOOST_THREAD_EXECUTORS_WORK_HPP
#include <boost/thread/detail/config.hpp>
#include <boost/thread/detail/nullary_function.hpp>
#include <boost/thread/csbl/functional.hpp>
namespace boost
{
name... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/work.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 161 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/09 Vicente J. Botet Escriba
// Adapt to boost from CCIA C++11 implementation
// first implementation of a simple pool thread using a vector of threads and a sync_queue.
#ifndef BOOST_THREAD_EXECUTORS_BASIC_THREAD_POOL_HPP
#define BOOST_THREAD_E... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/basic_thread_pool.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,990 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
#ifndef BOOST_THREAD_EXECUTORS_SCHEDULING_ADAPTOR_HPP
#define BOOST_THREAD_EXECUTORS_SCHEDULING_ADAPTOR_HPP
#include <boost/thread/executors/detail/scheduled_executor_base.hpp>
#if defined(BOOST_MSVC)
# pragma warning(push)
# pragma warning(disable: 4355) ... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/scheduling_adaptor.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 270 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
#ifndef BOOST_THREAD_EXECUTORS_SCHEDULED_THREAD_POOL_HPP
#define BOOST_THREAD_EXECUTORS_SCHEDULED_THREAD_POOL_HPP
#include <boost/thread/executors/detail/scheduled_executor_base.hpp>
namespace boost
{
namespace executors
{
class scheduled_thread_pool : ... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/scheduled_thread_pool.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 210 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
#ifndef BOOST_THREAD_EXECUTORS_DETAIL_PRIORITY_EXECUTOR_BASE_HPP
#define BOOST_THREAD_EXECUTORS_DETAIL_PRIORITY_EXECUTOR_BASE_HPP
#include <boost/atomic.hpp>
#include <boost/function.hpp>
#include <boost/thread/thread.hpp>
#include <boost/thread/concurrent_... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/detail/priority_executor_base.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 337 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
#ifndef BOOST_THREAD_EXECUTORS_GENERIC_EXECUTOR_REF_HPP
#define BOOST_THREAD_EXECUTORS_GENERIC_EXECUTOR_REF_HPP
#include <boost/thread/detail/config.hpp>
#include <boost/thread/detail/delete.hpp>
#include <boost/thread/detail/move.hpp>
#include <boost/thre... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/generic_executor_ref.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,282 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
#ifndef BOOST_THREAD_EXECUTORS_DETAIL_SCHEDULED_EXECUTOR_BASE_HPP
#define BOOST_THREAD_EXECUTORS_DETAIL_SCHEDULED_EXECUTOR_BASE_HPP
#include <boost/thread/concurrent_queues/sync_timed_queue.hpp>
#include <boost/thread/executors/detail/priority_executor_base... | /content/code_sandbox/src/boost_1_66_0/boost/thread/executors/detail/scheduled_executor_base.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 343 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_DEQUE_HPP
#define BOOST_CSBL_DEQUE_HPP
#include <boost/config.hpp>
// MSVC has some trouble instantiating a non_copyable type
//C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCL... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/deque.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 400 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_HPP
#define BOOST_CSBL_MEMORY_HPP
// 20.7.2 Header <memory> synopsis
// 20.7.3, pointer traits
#include <boost/thread/csbl/memory/pointer_traits.hpp>
// 20.7.4, pointer safety
//... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 516 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_VECTOR_HPP
#define BOOST_CSBL_VECTOR_HPP
#include <boost/config.hpp>
#if defined BOOST_THREAD_USES_BOOST_VECTOR || defined BOOST_NO_CXX11_RVALUE_REFERENCES || defined BOOST_MSVC
#ifndef ... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/vector.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 168 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_FUNCTIONAL_HPP
#define BOOST_CSBL_FUNCTIONAL_HPP
#include <boost/config.hpp>
#include <functional>
#if defined BOOST_THREAD_USES_BOOST_FUNCTIONAL || defined BOOST_NO_CXX11_HDR_FUNCTIONA... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/functional.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 350 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_LIST_HPP
#define BOOST_CSBL_LIST_HPP
#include <boost/config.hpp>
#if defined BOOST_THREAD_USES_BOOST_LIST || defined BOOST_NO_CXX11_RVALUE_REFERENCES
#ifndef BOOST_THREAD_USES_BOOST_LIST... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/list.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 163 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_TUPLE_HPP
#define BOOST_CSBL_TUPLE_HPP
#include <boost/config.hpp>
#if defined BOOST_THREAD_USES_BOOST_TUPLE || defined BOOST_NO_CXX11_HDR_TUPLE || defined BOOST_NO_CXX11_RVALUE_REFERENC... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/tuple.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 326 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_QUEUE_HPP
#define BOOST_CSBL_QUEUE_HPP
#include <boost/config.hpp>
// MSVC has some trouble instantiating a non_copyable type
//C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\INCL... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/queue.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 394 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation using interprocess::unique_ptr.
// 2014/09 Vicente J. Botet Escriba
// Adaptation to movelib::unique_ptr
#ifndef BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP
#define BOOST_CSBL_MEMORY_UNIQUE_PTR_HPP
#include <boost/th... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/unique_ptr.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 160 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_DEVECTOR_HPP
#define BOOST_CSBL_DEVECTOR_HPP
#include <boost/config.hpp>
#include <boost/thread/csbl/vector.hpp>
#include <boost/move/detail/move_helpers.hpp>
namespace boost
{
namesp... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/devector.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 605 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_POINTER_TRAITS_HPP
#define BOOST_CSBL_MEMORY_POINTER_TRAITS_HPP
#include <boost/thread/csbl/memory/config.hpp>
// 20.7.3, pointer traits
#if defined BOOST_NO_CXX11_ALLOCATOR
#incl... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/pointer_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 164 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_DEFAULT_DELETE_HPP
#define BOOST_CSBL_MEMORY_DEFAULT_DELETE_HPP
#include <boost/thread/csbl/memory/config.hpp>
// 20.8.1 class template unique_ptr:
// default_delete
#if defined ... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/default_delete.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 186 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_SCOPED_ALLOCATOR_HPP
#define BOOST_CSBL_MEMORY_SCOPED_ALLOCATOR_HPP
#include <boost/thread/csbl/memory/config.hpp>
// 20.7.7, uses_allocator
#if defined BOOST_NO_CXX11_ALLOCATOR
#... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/scoped_allocator.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 166 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_CONFIG_HPP
#define BOOST_CSBL_MEMORY_CONFIG_HPP
#include <boost/config.hpp>
#include <memory>
#endif // header
``` | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/config.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 69 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2014/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_SHARED_PTR_HPP
#define BOOST_CSBL_MEMORY_SHARED_PTR_HPP
#include <boost/thread/csbl/memory/config.hpp>
#if defined BOOST_NO_CXX11_SMART_PTR
#include <boost/smart_ptr/shared_ptr.h... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/shared_ptr.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 172 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_ALLOCATOR_ARG_HPP
#define BOOST_CSBL_MEMORY_ALLOCATOR_ARG_HPP
#include <boost/thread/csbl/memory/config.hpp>
// 20.7.6, allocator argument tag
#if defined BOOST_NO_CXX11_ALLOCATOR... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/allocator_arg.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 210 |
```c++
//
// file LICENSE_1_0.txt or copy at path_to_url
//
// 2013/10 Vicente J. Botet Escriba
// Creation.
#ifndef BOOST_CSBL_MEMORY_ALLOCATOR_TRAITS_HPP
#define BOOST_CSBL_MEMORY_ALLOCATOR_TRAITS_HPP
#include <boost/thread/csbl/memory/config.hpp>
// 20.7.8, allocator traits
#if defined BOOST_NO_CXX11_ALLOCATOR... | /content/code_sandbox/src/boost_1_66_0/boost/thread/csbl/memory/allocator_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 164 |
```c++
#ifndef BOOST_THREAD_EXPERIMENTAL_EXCEPTION_LIST_HPP
#define BOOST_THREAD_EXPERIMENTAL_EXCEPTION_LIST_HPP
//////////////////////////////////////////////////////////////////////////////
//
// LICENSE_1_0.txt or copy at path_to_url
//
// See path_to_url for documentation.
//
//////////////////////////////////////... | /content/code_sandbox/src/boost_1_66_0/boost/thread/experimental/exception_list.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 69 |
```c++
#ifndef BOOST_THREAD_EXPERIMENTAL_TASK_REGION_HPP
#define BOOST_THREAD_EXPERIMENTAL_TASK_REGION_HPP
//////////////////////////////////////////////////////////////////////////////
//
// LICENSE_1_0.txt or copy at path_to_url
//
// See path_to_url for documentation.
//
////////////////////////////////////////////... | /content/code_sandbox/src/boost_1_66_0/boost/thread/experimental/task_region.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 68 |
```c++
#ifndef BOOST_THREAD_EXPERIMENTAL_CONFIG_INLINE_NAMESPACE_HPP
#define BOOST_THREAD_EXPERIMENTAL_CONFIG_INLINE_NAMESPACE_HPP
//////////////////////////////////////////////////////////////////////////////
//
// LICENSE_1_0.txt or copy at path_to_url
//
// See path_to_url for documentation.
//
////////////////////... | /content/code_sandbox/src/boost_1_66_0/boost/thread/experimental/config/inline_namespace.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 103 |
```c++
#ifndef BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_INLINE_NAMESPACE_HPP
#define BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_INLINE_NAMESPACE_HPP
//////////////////////////////////////////////////////////////////////////////
//
// LICENSE_1_0.txt or copy at path_to_url
//
// See path_to_url for documentation.
//
//////////... | /content/code_sandbox/src/boost_1_66_0/boost/thread/experimental/parallel/v2/inline_namespace.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 116 |
```c++
#ifndef BOOST_THREAD_EXPERIMENTAL_PARALLEL_V1_EXCEPTION_LIST_HPP
#define BOOST_THREAD_EXPERIMENTAL_PARALLEL_V1_EXCEPTION_LIST_HPP
//////////////////////////////////////////////////////////////////////////////
//
// LICENSE_1_0.txt or copy at path_to_url
//
// See path_to_url for documentation.
//
//////////////... | /content/code_sandbox/src/boost_1_66_0/boost/thread/experimental/parallel/v1/exception_list.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 325 |
```c++
#ifndef BOOST_THREAD_EXPERIMENTAL_PARALLEL_V1_INLINE_NAMESPACE_HPP
#define BOOST_THREAD_EXPERIMENTAL_PARALLEL_V1_INLINE_NAMESPACE_HPP
//////////////////////////////////////////////////////////////////////////////
//
// LICENSE_1_0.txt or copy at path_to_url
//
// See path_to_url for documentation.
//
//////////... | /content/code_sandbox/src/boost_1_66_0/boost/thread/experimental/parallel/v1/inline_namespace.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 116 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE user.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: User settable options.
... | /content/code_sandbox/src/boost_1_66_0/boost/regex/user.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 728 |
```c++
#ifndef BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_TASK_REGION_HPP
#define BOOST_THREAD_EXPERIMENTAL_PARALLEL_V2_TASK_REGION_HPP
//////////////////////////////////////////////////////////////////////////////
//
// LICENSE_1_0.txt or copy at path_to_url
//
// See path_to_url for documentation.
//
////////////////////... | /content/code_sandbox/src/boost_1_66_0/boost/thread/experimental/parallel/v2/task_region.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,791 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE pattern_except.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares patter... | /content/code_sandbox/src/boost_1_66_0/boost/regex/pattern_except.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 497 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE mfc.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Overloads and helpers for u... | /content/code_sandbox/src/boost_1_66_0/boost/regex/mfc.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,472 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE config.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: regex extended config set... | /content/code_sandbox/src/boost_1_66_0/boost/regex/config.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 3,224 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_traits.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regular ... | /content/code_sandbox/src/boost_1_66_0/boost/regex/regex_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 151 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE concepts.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regular expr... | /content/code_sandbox/src/boost_1_66_0/boost/regex/concepts.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 10,507 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE icu.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Unicode regular expressions... | /content/code_sandbox/src/boost_1_66_0/boost/regex/icu.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 10,106 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE match_results.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares template... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/match_results.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 5,494 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE match_flags.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares match_fla... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/match_flags.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,616 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_traits_defaults.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares A... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_traits_defaults.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 3,333 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_grep.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides regex_grep ... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_grep.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,103 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_format.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides formattin... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_replace.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 634 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE perl_matcher_common.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Definitions... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/perl_matcher_common.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 7,536 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
#ifndef BOOST_REGEX_MATCHER_HPP
#define BOOST_REGEX_MATCHER_HPP
#include <boost/regex/v4/iterator_category.hpp>
#ifdef BOOST_MSVC
#pragma warning(push)
#pragma warning(disable: 4... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/perl_matcher.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 4,693 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_search.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides regex_sea... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_search.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,583 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE instances.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Defines those template... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/instances.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 2,042 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE c_regex_traits.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regula... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/c_regex_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,319 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE w32_regex_traits.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regu... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/w32_regex_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 6,449 |
```c++
/*
*
*
* (See accompanying file LICENSE_1_0.txt or copy at
* path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE basic_regex.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares template class basic_regex.
*/
#ifndef BOOST_REGEX_V4_B... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/basic_regex.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 5,780 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_iterator.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides regex_i... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_iterator.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,485 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE char_regex_traits.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares depre... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/char_regex_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 372 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE u32regex_iterator.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides u32r... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/u32regex_iterator.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,589 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_traits.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regular ... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,191 |
```c++
/*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE mem_block_cache.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: memory block cach... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/mem_block_cache.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 748 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_format.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides formattin... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_merge.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 560 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regbase.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares class regbase.... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regbase.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,440 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_match.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Iterator traits for... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/iterator_category.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 419 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares boost::basic_reg... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,105 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE perl_matcher_common.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Definitions... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/perl_matcher_recursive.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 8,466 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE basic_regex_creator.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares te... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/basic_regex_creator.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 12,951 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_split.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Implements regex_s... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_split.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,232 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_workarounds.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares Misc... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_workaround.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,356 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_raw_buffer.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Raw character ... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_raw_buffer.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 878 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE basic_regex_creator.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares te... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/protected_call.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 383 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE perl_matcher_common.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Definitions... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/perl_matcher_non_recursive.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 15,861 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE u32regex_token_iterator.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provide... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/u32regex_token_iterator.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 3,846 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE iterator_traits.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares iterat... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/iterator_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 779 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE basic_regex_parser.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares tem... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/basic_regex_parser.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 26,659 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE cregex.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares POSIX API functi... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/cregex.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 2,874 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE fileiter.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares various plat... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/fileiter.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 2,810 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_match.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Regular expression ... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_match.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 3,247 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE: primary_transform.hpp
* VERSION: see <boost/version.hpp>
* DESCRIPTION: Heuristicall... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/primary_transform.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 887 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE error_type.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regular exp... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/error_type.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 322 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE states.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares internal state ... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/states.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 2,300 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_token_iterator.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides r... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_token_iterator.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 3,125 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE syntax_type.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regular e... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/syntax_type.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 935 |
```c++
/*
*
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE cpp_regex_traits.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares regular expression t... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/cpp_regex_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 10,004 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_fwd.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Forward declares boos... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_fwd.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 367 |
```c++
/*
*
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE regex_format.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Provides formatting output routine... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/regex_format.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 8,428 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE boost/regex/config/cwchar.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: rege... | /content/code_sandbox/src/boost_1_66_0/boost/regex/config/cwchar.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,195 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE boost/regex/config/borland.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: reg... | /content/code_sandbox/src/boost_1_66_0/boost/regex/config/borland.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 561 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE sub_match.cpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares template cla... | /content/code_sandbox/src/boost_1_66_0/boost/regex/v4/sub_match.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 5,349 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE object_cache.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Implements a gener... | /content/code_sandbox/src/boost_1_66_0/boost/regex/pending/object_cache.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,230 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE static_mutex.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Declares static_m... | /content/code_sandbox/src/boost_1_66_0/boost/regex/pending/static_mutex.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 972 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_ASSOCIATIVE_INTERVAL_CONTAINER_HPP_JOFA_101023
#define BOOST_ICL_ASSOCIATIVE_INTERVAL_CONTAINER_HPP_JOFA_101023
#inc... | /content/code_sandbox/src/boost_1_66_0/boost/icl/associative_interval_container.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 177 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_SET_HPP_JOFA_070519
#define BOOST_ICL_SET_HPP_JOFA_070519
#include <boost/icl/impl_config.hpp>
#if defined(ICL_USE_BOOS... | /content/code_sandbox/src/boost_1_66_0/boost/icl/set.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 153 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_LEFT_OPEN_INTERVAL_HPP_JOFA_100930
#define BOOST_ICL_LEFT_OPEN_INTERVAL_HPP_JOFA_100930
#include <functional>
#include <... | /content/code_sandbox/src/boost_1_66_0/boost/icl/left_open_interval.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 917 |
```c++
/*
*
* John Maddock
*
* Use, modification and distribution are subject to the
* LICENSE_1_0.txt or copy at path_to_url
*
*/
/*
* LOCATION: see path_to_url for most recent version.
* FILE unicode_iterator.hpp
* VERSION see <boost/version.hpp>
* DESCRIPTION: Iterator adap... | /content/code_sandbox/src/boost_1_66_0/boost/regex/pending/unicode_iterator.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 6,242 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_RIGHT_OPEN_INTERVAL_HPP_JOFA_100323
#define BOOST_ICL_RIGHT_OPEN_INTERVAL_HPP_JOFA_100323
#include <functional>
#include... | /content/code_sandbox/src/boost_1_66_0/boost/icl/right_open_interval.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 899 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_SPLIT_INTERVAL_SET_HPP_JOFA_990223
#define BOOST_ICL_SPLIT_INTERVAL_SET_HPP_JOFA_990223
#include <boost/icl/type_traits/... | /content/code_sandbox/src/boost_1_66_0/boost/icl/split_interval_set.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,771 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_ASSOCIATIVE_ELEMENT_CONTAINER_HPP_JOFA_101023
#define BOOST_ICL_ASSOCIATIVE_ELEMENT_CONTAINER_HPP_JOFA_101023
#inclu... | /content/code_sandbox/src/boost_1_66_0/boost/icl/associative_element_container.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 142 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_DISCRETE_INTERVAL_HPP_JOFA_100403
#define BOOST_ICL_DISCRETE_INTERVAL_HPP_JOFA_100403
#include <functional>
#include <b... | /content/code_sandbox/src/boost_1_66_0/boost/icl/discrete_interval.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,424 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_CONTINUOUS_INTERVAL_HPP_JOFA_100327
#define BOOST_ICL_CONTINUOUS_INTERVAL_HPP_JOFA_100327
#include <functional>
#includ... | /content/code_sandbox/src/boost_1_66_0/boost/icl/continuous_interval.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 1,431 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_INTERVAL_TRAITS_HPP_JOFA_100926
#define BOOST_ICL_INTERVAL_TRAITS_HPP_JOFA_100926
#include <boost/icl/type_traits/do... | /content/code_sandbox/src/boost_1_66_0/boost/icl/interval_traits.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 323 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_INTERVAL_BASE_SET_H_JOFA_990223
#define BOOST_ICL_INTERVAL_BASE_SET_H_JOFA_990223
#include <boost/icl/impl_config.hpp>
... | /content/code_sandbox/src/boost_1_66_0/boost/icl/interval_base_set.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 4,651 |
```c++
/*your_sha256_hash-------------+
+your_sha256_hash--------------+
(See accompanying file LICENCE.txt or copy at
path_to_url
+your_sha256_hash-------------*/
#ifndef BOOST_ICL_INTERVAL_BASE_MAP_HPP_JOFA_990223
#define BOOST_ICL_INTERVAL_BASE_MAP_HPP_JOFA_990223
#include <limits>
#include <boost/... | /content/code_sandbox/src/boost_1_66_0/boost/icl/interval_base_map.hpp | c++ | 2016-06-14T03:01:16 | 2024-08-12T19:23:19 | VC-LTL | Chuyu-Team/VC-LTL | 1,052 | 12,446 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.