• Home
  • Raw
  • Download

Lines Matching +full:no +full:- +full:control +full:- +full:regex

2   Copyright 2006-2007 John Maddock.
13 You shouldn't need to do anything special to configure Boost.Regex for use
14 with your compiler - the [@../../../config/index.html Boost.Config subsystem] should already take c…
22 The following macros (see [@../../../../boost/regex/user.hpp user.hpp]) control how Boost.Regex int…
27 [[BOOST_REGEX_USE_C_LOCALE][Forces Boost.Regex to use the global C locale in its traits class suppo…
28Regex to use std::locale in it's default traits class, regular expressions can then be imbued with…
29 [[BOOST_REGEX_NO_W32][Tells Boost.Regex not to use any Win32 API's even when available (implies BOO…
39 …and C++ builds, this tells Boost.Regex that it should link to the dll build of the Boost.Regex. B…
40 [[BOOST_REGEX_NO_LIB][For Microsoft and Borland C++ builds, this tells Boost.Regex that it should n…
41 [[BOOST_REGEX_NO_FASTCALL][For Microsoft builds, this tells Boost.Regex to use the `__cdecl` callin…
50 [[BOOST_REGEX_RECURSIVE][Tells Boost.Regex to use a stack-recursive matching algorithm. This is ge…
51Regex to use a non-stack recursive matching algorithm, this can be slightly slower than the altern…
62 [[BOOST_REGEX_HAS_MS_STACK_GUARD][Tells Boost.Regex that Microsoft style __try - __except blocks ar…
70 [[BOOST_REGEX_BLOCKSIZE][In non-recursive mode, Boost.Regex uses largish blocks of memory to act as…
71 …CKS][Tells Boost.Regex how many blocks of size BOOST_REGEX_BLOCKSIZE it is permitted to use. If t…
72 [[BOOST_REGEX_MAX_CACHE_BLOCKS][Tells Boost.Regex how many memory blocks to store in
73 it's internal cache - memory blocks are taken from this cache rather than by calling
76 downside that Boost.Regex can end up caching a large chunk of memory (by default
79 1 or 2, may be sufficient. On the other hand, on large multi-processor,
80 multi-threaded systems, you may find that a higher value is in order.]]