diff --git a/.gitignore b/.gitignore index a16a9e1a00c1e9299053dd0dad77045b3e321f66..b8421bc26c21af268e38dbfe951a10154896cc3d 100644 --- a/.gitignore +++ b/.gitignore @@ -108,7 +108,9 @@ main *.zip 3rd/ libs/ - +*.filters +*.vcxproj +*.vcproj #node_module dispatch/node_modules diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000000000000000000000000000000000000..8c79bbe93ca518a65c764497f2f8337dafefcfb1 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "3rd/jerryscript"] + path = 3rd/jerryscript + url = https://gitee.com/mayben/jerryscript.git diff --git a/3rd/jerryscript b/3rd/jerryscript new file mode 160000 index 0000000000000000000000000000000000000000..9ff25dbc1220097b9dc04746bdf07a3b66c2e2d4 --- /dev/null +++ b/3rd/jerryscript @@ -0,0 +1 @@ +Subproject commit 9ff25dbc1220097b9dc04746bdf07a3b66c2e2d4 diff --git a/CMakeLists.txt b/CMakeLists.txt index 5d6618dc30715e87566f9c95cc2df269206879d6..ad8612e89db2d5282366a571d53c4b4d95f09a02 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,6 +22,63 @@ set(dynamic "-fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexcep set(execute "-Wall -Werror -fexceptions") set(static "-fPIC -fvisibility=hidden -Wl,--no-as-needed -frtti -Wall -Werror -fexceptions") + +# C compiler +if(CMAKE_C_COMPILER_ID MATCHES "GNU") + set(USING_GCC 1) + message("-- C:Compiler: gcc") +endif() + +if(CMAKE_C_COMPILER_ID MATCHES "Clang") + set(USING_CLANG 1) + message("-- C:Compiler: clang") +endif() + +if(CMAKE_C_COMPILER_ID MATCHES "AppleClang") + set(USING_APPLECLANG 1) + message("-- C:Compiler: apple_clang") +endif() + +if(CMAKE_C_COMPILER_ID MATCHES "TI") + set(USING_TI 1) + message("-- C:Compiler: ti") +endif() + +if(CMAKE_C_COMPILER_ID MATCHES "MSVC") + set(USING_MSVC 1) + message("-- C:Compiler: MSVC") +endif() + + +#CPP compiler +if(CMAKE_CXX_COMPILER_ID MATCHES "GNU") + set(USING_GCC 1) + message("-- C:Compiler: g++") +endif() + +if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + set(USING_CLANG 1) + message("-- C:Compiler: clang") +endif() + +if(CMAKE_CXX_COMPILER_ID MATCHES "AppleClang") + set(USING_APPLECLANG 1) + message("-- C:Compiler: apple_clang") +endif() + +if(CMAKE_CXX_COMPILER_ID MATCHES "TI") + set(USING_TI 1) + message("-- C:Compiler: ti") +endif() + +if(CMAKE_CXX_COMPILER_ID MATCHES "MSVC") + set(USING_MSVC 1) + message("-- C:Compiler: MSVC") +endif() + + + + message("-- base-include: ${PROJECT_SOURCE_DIR}/include/") message("-- base-include: ${by3rd_library_include}/") message("-- base-lib: ${PROJECT_SOURCE_DIR}/libs/${CMAKE_BUILD_TYPE}/") @@ -31,7 +88,6 @@ message("-- Compile: ${CMAKE_BUILD_TYPE}") message("-- Compile param: ${compile}") message("-- System: ${CMAKE_SYSTEM_NAME}") -message("-- Compile: ${CMAKE_BUILD_TYPE}") message("-- System_Info_file: ${CMAKE_SYSTEM_INFO_FILE}") message("-- System_Processor: ${CMAKE_SYSTEM_PROCESSOR}") message("-- Host_System_Processor: ${CMAKE_HOST_SYSTEM_PROCESSOR}") diff --git a/asynio/AsynIo.vcxproj.filters b/asynio/AsynIo.vcxproj.filters deleted file mode 100644 index 17c2e4125acad2cef77bec40fe62498c4fbf6c86..0000000000000000000000000000000000000000 --- a/asynio/AsynIo.vcxproj.filters +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/asynio/udpsocketimpl.h b/asynio/udpsocketimpl.h index a31a9c4d95d205569632a206c8e8bf66f13b1ca3..56edb05d0ecc56550dd3a230a0496c6ce6862614 100644 --- a/asynio/udpsocketimpl.h +++ b/asynio/udpsocketimpl.h @@ -3,9 +3,9 @@ #include "stdafx.h" -class CUdpSocketImpl : public IUdpSocket, - public CUnknownImp, - public IoDgramBase +class CUdpSocketImpl : public IUdpSocket, + public CUnknownImp, + public IoDgramBase { public: CUdpSocketImpl(void); diff --git a/container/mainrun.cpp b/container/mainrun.cpp index 6b9fc3855e6bfd34a516404417761889e3c39b56..e2e48b11310d7484823338d2f421a03d2b38c764 100644 --- a/container/mainrun.cpp +++ b/container/mainrun.cpp @@ -136,7 +136,7 @@ std_method_impl CMainRun::GetObjectLoader(IBase** Base) return m_pRot->GetObject(CLSID_CObjectLoader, IID_ICompoentLoader, (IBase**)Base); } -std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component) +std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type) { HRESULT hr = S_OK; @@ -150,22 +150,27 @@ std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, rc_assert(hr == S_OK, E_FAIL) rc_assert(pPlugin.m_p != NULL, E_FAIL) - hr = pPlugin->Init(m_argc, m_argv, m_pRot, NULL); - rc_assert(hr == S_OK, E_FAIL) - hr = RunPlugin_Start(m_hInstance, &pObject, 0); - rc_assert(hr == S_OK, E_FAIL) + if(type & STD_INIT) + hr = pPlugin->Init(m_argc, m_argv, m_pRot, NULL); - hr = m_pRot->Register(clsid, progId, pBase, Id); - rc_assert(hr == S_OK, E_FAIL) - - m_PluginsDynamicClsid.push_back(Com_Plugin(clsid, Id, Component)); + if (type & STD_START) + hr = RunPlugin_Start(m_hInstance, &pObject, 0); + + if (type & STD_ROT) + hr = m_pRot->Register(clsid, progId, pBase, Id); + + if (type & STD_VEC) + m_PluginsDynamicClsid.push_back(Com_Plugin(clsid, Id, Component)); + + if (type & STD_SEQ_VEC) + m_PluginsClsid.push_back(Com_Plugin(clsid, Id, Component)); return S_OK; } -std_method_impl CMainRun::DelObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component) +std_method_impl CMainRun::DelObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type) { return E_NOTIMPL; } @@ -180,15 +185,20 @@ std_method_type_impl(ULONG) CMainRun::GetRunPluginsCount() return m_PluginsClsid.size(); } -std_method_type_impl(int) CMainRun::GetArgc() +std_method_type_impl(int) CMainRun::GetArgc() { return m_argc; } std_method_type_impl(basic_tchar*) CMainRun::GetIndexArgv(int index) { + rc_assert(((index >= 0) && (index < m_argc)), NULL) return m_argv[index]; } - +std_method_type_impl(ULONG) CMainRun::GetRunIndex(ULONG index) +{ + rc_assert(((index >= 0) && (index < m_PluginsClsid.size())), 0) + return m_PluginsClsid[index].uIndex; +} std_method_type_impl(UINT) CMainRun::GetExitCode() { return GetIExitCode(m_RunPlugin); @@ -432,7 +442,7 @@ std_method_impl CMainRun::DestroyAllRotPlugin() Size = m_PluginsDynamicClsid.size(); //dynamic plugin - for (uloop = 0; uloop < m_PluginsDynamicClsid.size(); uloop++) + for (uloop = 0; uloop < Size; uloop++) { ULONG index = Size - uloop - 1; rc_assert_continue(((index >= 0) && (index < Size))) @@ -493,6 +503,7 @@ std_method_impl CMainRun::DoPluginsStartFunc(int iArgc, basic_tchar* Argv[], UIN m_RunPlugin = m_PluginsClsid[uloop].ClsId; + logi("run plugin==>%s==>%s\n",m_PluginsClsid[uloop].szComponent.c_str(), guid); RunPlugin_Start(m_hInstance, &pUnknown, uType); } return hr; diff --git a/container/mainrun.h b/container/mainrun.h index 6a9c8f89ac33d2a343e01cc1438bd4dad27a266a..7fdb8cfc521e2924d197ed11b61ed31e76f66825 100644 --- a/container/mainrun.h +++ b/container/mainrun.h @@ -31,12 +31,13 @@ public: std_method(Clear)(); std_method(GetRot)(IBase** Base); std_method(GetObjectLoader)(IBase** Base); - std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component); - std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component); + std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type); + std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type); std_method_(CLSID, GetRunPluginCLSID)(); std_method_(ULONG, GetRunPluginsCount)(); std_method_(int, GetArgc)(); std_method_(basic_tchar*, GetIndexArgv)(int index); + std_method_(ULONG, GetRunIndex)(ULONG index); std_method_(UINT, GetExitCode)(); private: diff --git a/container/rot.cpp b/container/rot.cpp index fb3f8812402893ec9ee67c5fa174a3144d452231..73a590d67ae4518118b7e51bb4882db2a7a2a37e 100644 --- a/container/rot.cpp +++ b/container/rot.cpp @@ -91,7 +91,7 @@ std_method_type_impl(CLSID) CComRunningObjectTableImpl::CLSIDFromProgID(LPCSTR l return pICompoentLoader->CLSIDFromProgID(lpProgId); } -std_method_type_impl(UINT) CComRunningObjectTableImpl::GetObjectCount() +std_method_type_impl(ULONG) CComRunningObjectTableImpl::GetObjectCount() { SYNC_OBJ(&m_lockSection) return m_map.size(); diff --git a/container/rot.h b/container/rot.h index 0ed33a8dc2672e32c0be01c54587e2f52880234f..f708dce2b77117d7ea3e5681a1272d85d0f47092 100644 --- a/container/rot.h +++ b/container/rot.h @@ -4,7 +4,7 @@ #include "stdafx.h" class CComRunningObjectTableImpl : public IComRotMessage, - public CUnknownImp + public CUnknownImp { public: CComRunningObjectTableImpl(void); @@ -27,7 +27,7 @@ public: std_method(RevokeAll)(); std_method_(LPCSTR, ProgIDFromCLSID)(REFCLSID clsid); std_method_(CLSID, CLSIDFromProgID)(LPCSTR lpProgId); - std_method_(UINT, GetObjectCount)(); + std_method_(ULONG, GetObjectCount)(); // IComRotMessage: std_method(CreateMessage)(IBase** pMsg); diff --git a/container/stdafx.h b/container/stdafx.h index f41fd8a772e485a8ce032f69e195e15c6016dfa4..107b6d11d0f8bcd45c3917d19b7c54965a7f4bbc 100644 --- a/container/stdafx.h +++ b/container/stdafx.h @@ -58,7 +58,7 @@ class Com_Plugin { public: CLSID ClsId; - DWORD uIndex; + ULONG uIndex; string szComponent; ~Com_Plugin() { @@ -68,7 +68,7 @@ public: Com_Plugin( CLSID id, - DWORD index, + ULONG index, const char* Component) { diff --git a/extensions/include/platform/services/license.hpp b/extensions/include/platform/services/license.hpp index 8894e2c84e8290e099a1d034fc36952ccebea7ff..f87fe37b7c9f4273cc2f422531cf63a19cc1734a 100644 --- a/extensions/include/platform/services/license.hpp +++ b/extensions/include/platform/services/license.hpp @@ -24,7 +24,7 @@ public: }; return s_FunDefs; } - virtual bool SetFuncAddress(int i, void *p) + virtual bool SetFuncAddress(size_t i, void *p) { switch (i) { diff --git a/framwork.xcodeproj/project.pbxproj b/framwork.xcodeproj/project.pbxproj index f1ac8664a370e1f6839d5a00844aa06b2b6cfff2..1b23f54ce5349bd78e0e98054844f8357afeb0d2 100644 --- a/framwork.xcodeproj/project.pbxproj +++ b/framwork.xcodeproj/project.pbxproj @@ -1102,6 +1102,36 @@ A17163EF271DCD190062A998 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = ""; }; A17163F0271DCD190062A998 /* dbimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dbimpl.h; sourceTree = ""; }; A17163F1271DCD190062A998 /* stringutil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stringutil.cpp; sourceTree = ""; }; + A1EB047827285B0600214133 /* iuiwindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iuiwindow.h; sourceTree = ""; }; + A1EB047927285B0600214133 /* irender.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = irender.h; sourceTree = ""; }; + A1EB047A27285B0600214133 /* uidefine.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = uidefine.h; sourceTree = ""; }; + A1EB047B27285B0600214133 /* iuibase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iuibase.h; sourceTree = ""; }; + A1EB047C27285B0600214133 /* ifont.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ifont.h; sourceTree = ""; }; + A1EB047D27285B0600214133 /* iuicontrol.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iuicontrol.h; sourceTree = ""; }; + A1EB047E27285B0600214133 /* ilang.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilang.h; sourceTree = ""; }; + A1EB048027285B0600214133 /* ihttp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ihttp.h; sourceTree = ""; }; + A1EB048127285B0600214133 /* inet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = inet.h; sourceTree = ""; }; + A1EB048227285B0600214133 /* iwebsocket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iwebsocket.h; sourceTree = ""; }; + A1EB048327285B0600214133 /* idns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = idns.h; sourceTree = ""; }; + A1EB048427285B0600214133 /* issh.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = issh.h; sourceTree = ""; }; + A1EB048727285B0600214133 /* license.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = license.h; sourceTree = ""; }; + A1EB048927285B0600214133 /* license.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = license.hpp; sourceTree = ""; }; + A1EB048B27285B0600214133 /* itimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = itimer.h; sourceTree = ""; }; + A1EB048C27285B0600214133 /* isocket.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = isocket.h; sourceTree = ""; }; + A1EB048D27285B0600214133 /* ifile.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ifile.h; sourceTree = ""; }; + A1EB048E27285B0600214133 /* iiodevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iiodevice.h; sourceTree = ""; }; + A1EB048F27285B0600214133 /* ioperation.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ioperation.h; sourceTree = ""; }; + A1EB049027285B0600214133 /* iframe.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iframe.h; sourceTree = ""; }; + A1EB049227285B0600214133 /* idatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = idatabase.h; sourceTree = ""; }; + A1EB049427285B0600214133 /* ilogs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilogs.h; sourceTree = ""; }; + A1EB049527285B0600214133 /* ilogfilter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilogfilter.h; sourceTree = ""; }; + A1EB049627285B0600214133 /* ilogdatabase.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ilogdatabase.h; sourceTree = ""; }; + A1EB049827285B0600214133 /* imsgbus.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = imsgbus.h; sourceTree = ""; }; + A1EB049927285B0600214133 /* isession.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = isession.h; sourceTree = ""; }; + A1EB049A27285B0600214133 /* imsg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = imsg.h; sourceTree = ""; }; + A1EB049C27285B0600214133 /* iyangcontext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iyangcontext.h; sourceTree = ""; }; + A1EB049D27285B0600214133 /* iparser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = iparser.h; sourceTree = ""; }; + A1EB049F27285B0600214133 /* imempool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = imempool.h; sourceTree = ""; }; A1F6DB5D27284749002BF005 /* httptimpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = httptimpl.h; sourceTree = ""; }; A1F6DB5E27284749002BF005 /* httptimpl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = httptimpl.cpp; sourceTree = ""; }; A1F6DB6027284749002BF005 /* http_header.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = http_header.hpp; sourceTree = ""; }; @@ -1537,6 +1567,7 @@ A10FFAA426F8417900A4D864 = { isa = PBXGroup; children = ( + A1EB047527285B0600214133 /* extensions */, A144AB09272572DF0019CA5F /* crt */, A11694A02713154700CBA348 /* include */, A11694742713144500CBA348 /* container */, @@ -1843,6 +1874,139 @@ path = code; sourceTree = ""; }; + A1EB047527285B0600214133 /* extensions */ = { + isa = PBXGroup; + children = ( + A1EB047627285B0600214133 /* include */, + ); + path = extensions; + sourceTree = ""; + }; + A1EB047627285B0600214133 /* include */ = { + isa = PBXGroup; + children = ( + A1EB047727285B0600214133 /* ui */, + A1EB047F27285B0600214133 /* net */, + A1EB048527285B0600214133 /* platform */, + A1EB048A27285B0600214133 /* io */, + A1EB049127285B0600214133 /* db */, + A1EB049327285B0600214133 /* log */, + A1EB049727285B0600214133 /* msgbus */, + A1EB049B27285B0600214133 /* data */, + A1EB049E27285B0600214133 /* mem */, + ); + path = include; + sourceTree = ""; + }; + A1EB047727285B0600214133 /* ui */ = { + isa = PBXGroup; + children = ( + A1EB047827285B0600214133 /* iuiwindow.h */, + A1EB047927285B0600214133 /* irender.h */, + A1EB047A27285B0600214133 /* uidefine.h */, + A1EB047B27285B0600214133 /* iuibase.h */, + A1EB047C27285B0600214133 /* ifont.h */, + A1EB047D27285B0600214133 /* iuicontrol.h */, + A1EB047E27285B0600214133 /* ilang.h */, + ); + path = ui; + sourceTree = ""; + }; + A1EB047F27285B0600214133 /* net */ = { + isa = PBXGroup; + children = ( + A1EB048027285B0600214133 /* ihttp.h */, + A1EB048127285B0600214133 /* inet.h */, + A1EB048227285B0600214133 /* iwebsocket.h */, + A1EB048327285B0600214133 /* idns.h */, + A1EB048427285B0600214133 /* issh.h */, + ); + path = net; + sourceTree = ""; + }; + A1EB048527285B0600214133 /* platform */ = { + isa = PBXGroup; + children = ( + A1EB048627285B0600214133 /* core */, + A1EB048827285B0600214133 /* services */, + ); + path = platform; + sourceTree = ""; + }; + A1EB048627285B0600214133 /* core */ = { + isa = PBXGroup; + children = ( + A1EB048727285B0600214133 /* license.h */, + ); + path = core; + sourceTree = ""; + }; + A1EB048827285B0600214133 /* services */ = { + isa = PBXGroup; + children = ( + A1EB048927285B0600214133 /* license.hpp */, + ); + path = services; + sourceTree = ""; + }; + A1EB048A27285B0600214133 /* io */ = { + isa = PBXGroup; + children = ( + A1EB048B27285B0600214133 /* itimer.h */, + A1EB048C27285B0600214133 /* isocket.h */, + A1EB048D27285B0600214133 /* ifile.h */, + A1EB048E27285B0600214133 /* iiodevice.h */, + A1EB048F27285B0600214133 /* ioperation.h */, + A1EB049027285B0600214133 /* iframe.h */, + ); + path = io; + sourceTree = ""; + }; + A1EB049127285B0600214133 /* db */ = { + isa = PBXGroup; + children = ( + A1EB049227285B0600214133 /* idatabase.h */, + ); + path = db; + sourceTree = ""; + }; + A1EB049327285B0600214133 /* log */ = { + isa = PBXGroup; + children = ( + A1EB049427285B0600214133 /* ilogs.h */, + A1EB049527285B0600214133 /* ilogfilter.h */, + A1EB049627285B0600214133 /* ilogdatabase.h */, + ); + path = log; + sourceTree = ""; + }; + A1EB049727285B0600214133 /* msgbus */ = { + isa = PBXGroup; + children = ( + A1EB049827285B0600214133 /* imsgbus.h */, + A1EB049927285B0600214133 /* isession.h */, + A1EB049A27285B0600214133 /* imsg.h */, + ); + path = msgbus; + sourceTree = ""; + }; + A1EB049B27285B0600214133 /* data */ = { + isa = PBXGroup; + children = ( + A1EB049C27285B0600214133 /* iyangcontext.h */, + A1EB049D27285B0600214133 /* iparser.h */, + ); + path = data; + sourceTree = ""; + }; + A1EB049E27285B0600214133 /* mem */ = { + isa = PBXGroup; + children = ( + A1EB049F27285B0600214133 /* imempool.h */, + ); + path = mem; + sourceTree = ""; + }; A1F1D55F27117AE800442CFE /* Frameworks */ = { isa = PBXGroup; children = ( @@ -3666,8 +3830,10 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_CXX_LIBRARY = "libc++"; CODE_SIGN_ENTITLEMENTS = mainui/mainui.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = HQK3787VUQ; GCC_C_LANGUAGE_STANDARD = gnu11; HEADER_SEARCH_PATHS = ( extensions/include, @@ -3693,8 +3859,10 @@ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CLANG_CXX_LIBRARY = "libc++"; CODE_SIGN_ENTITLEMENTS = mainui/mainui.entitlements; + CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = HQK3787VUQ; GCC_C_LANGUAGE_STANDARD = gnu11; HEADER_SEARCH_PATHS = ( extensions/include, diff --git a/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate b/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate index c464abf113fad8d16e774e773edee7802eda89a3..0d946108ce41dc9838c2a1537053866327a52836 100644 Binary files a/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate and b/framwork.xcodeproj/project.xcworkspace/xcuserdata/com.app.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index 3f2efcd494ca2539b3b189b3571e2f7f8b372c35..f43a0da5c1454221e58492d97462afd39113e44a 100644 --- a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -103,16 +103,32 @@ + + + + diff --git a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist index 36edafbaf43f5e41d95f854b02dc0d4d5d9025be..c19cad407042f2ec7aa51a3436a770b677fef967 100644 --- a/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/framwork.xcodeproj/xcuserdata/com.app.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,7 +7,7 @@ access.xcscheme_^#shared#^_ orderHint - 12 + 14 asynio.xcscheme_^#shared#^_ @@ -22,17 +22,17 @@ guidgen.xcscheme_^#shared#^_ orderHint - 14 + 12 license.xcscheme_^#shared#^_ orderHint - 10 + 9 logs.xcscheme_^#shared#^_ orderHint - 11 + 7 mainui.xcscheme_^#shared#^_ @@ -47,12 +47,12 @@ mainview.xcscheme_^#shared#^_ orderHint - 8 + 11 mempool.xcscheme_^#shared#^_ orderHint - 15 + 6 msgbus.xcscheme_^#shared#^_ @@ -62,7 +62,7 @@ net.xcscheme_^#shared#^_ orderHint - 6 + 8 render.xcscheme_^#shared#^_ @@ -72,7 +72,7 @@ res.xcscheme_^#shared#^_ orderHint - 7 + 10 std_com.xcscheme_^#shared#^_ diff --git a/include/dlcom/icombase.h b/include/dlcom/icombase.h index 2daa5150ccd564cb8a1610dbf2bc9ce4cf0d4c57..0a7a88423b9cb1780e20fd928a6596397f871c9d 100644 --- a/include/dlcom/icombase.h +++ b/include/dlcom/icombase.h @@ -43,7 +43,7 @@ interface IComRunningObjectTable : public IBase std_method(RevokeAll)() PURE; std_method_(LPCSTR, ProgIDFromCLSID)(REFCLSID clsid) PURE; std_method_(CLSID, CLSIDFromProgID)(LPCSTR lpProgId) PURE; - std_method_(UINT, GetObjectCount)() PURE; + std_method_(ULONG, GetObjectCount)() PURE; }; // {08F56552-D015-4C3B-B984-2211A4F880FF} @@ -89,6 +89,17 @@ interface IExit : public IBase _DEFINE_IID(IID_IExit, 0x70b0d10b, 0x463f, 0x496a, 0x90, 0xa5, 0xf2, 0x21, 0x75, 0xf7, 0x7a, 0x1d); +#define STD_INIT 0x01 +#define STD_START 0x02 + +#define STD_VEC 0x10 +#define STD_SEQ_VEC 0x20 + +#define STD_ROT 0x80 + +#define STD_COMPOENT (STD_SEQ_VEC|STD_ROT) +#define ROT_COMPOENT (STD_ROT) +#define DYN_COMPOENT (STD_VEC|STD_ROT) interface IObjectRun : public IBase { @@ -105,12 +116,13 @@ interface IObjectRun : public IBase std_method(Clear)() PURE; std_method(GetRot)(IBase** Base) PURE; std_method(GetObjectLoader)(IBase** Base) PURE; - std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component) PURE; - std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component) PURE; + std_method(AddObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type) PURE; + std_method(DelObject)(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type) PURE; std_method_(CLSID, GetRunPluginCLSID)() PURE; std_method_(ULONG, GetRunPluginsCount)() PURE; std_method_(int, GetArgc)() PURE; std_method_(basic_tchar*, GetIndexArgv)(int index) PURE; + std_method_(ULONG, GetRunIndex)(ULONG index) PURE; std_method_(UINT, GetExitCode)() PURE; }; diff --git a/include/dlcom/loadcom.hpp b/include/dlcom/loadcom.hpp index 137b9d97ea985d5365be9d1d1ddafe5a9b728726..e93a7210e4f029da3def7af76acc9008ea39e848 100644 --- a/include/dlcom/loadcom.hpp +++ b/include/dlcom/loadcom.hpp @@ -39,7 +39,7 @@ public: }; return s_FunDefs; } - virtual bool SetFuncAddress(int i,void *p) + virtual bool SetFuncAddress(size_t i,void *p) { switch(i) { diff --git a/include/dlcom/objectrun.hpp b/include/dlcom/objectrun.hpp index 07542bee27247473a9e346f3f78a7429db31ef6c..6cfc13089026d02b489b42ae501fdac5d9c90923 100644 --- a/include/dlcom/objectrun.hpp +++ b/include/dlcom/objectrun.hpp @@ -78,25 +78,13 @@ public: return m_pIObjectRun->Stop(instance, type, exit); } - HRESULT RegisterRunningObjectTable(REFCLSID clsid, LPCSTR progId, IBase *pBase, unsigned int id) { - - rc_assert(m_pIObjectRun != NULL, E_FAIL) - rc_assert(progId != NULL, E_FAIL) - rc_assert(pBase != NULL, E_FAIL) - - _lComPtr pRot; - m_pIObjectRun->GetRot((IBase**)&pRot); - rc_assert(pRot.m_p != NULL, E_FAIL) - - return pRot->Register(clsid, progId, pBase, id); - } - - HRESULT RegisterComponent(REFCLSID clsid, LPCSTR progId, IBase* pBase, ULONG Id, LPCSTR Component) { + HRESULT RegisterComponent(REFCLSID clsid, LPCSTR progId, IBase* pBase, ULONG Id, LPCSTR Component, UINT type) { rc_assert(m_pIObjectRun != NULL, E_FAIL) rc_assert(progId != NULL, E_FAIL) rc_assert(pBase != NULL, E_FAIL) - return m_pIObjectRun->AddObject(clsid, progId, pBase, Id, Component); + + return m_pIObjectRun->AddObject(clsid, progId, pBase, Id, Component, type); } HRESULT RunContainer(_pinstance instance, basic_tchar* argv[], int argc, UINT type) { @@ -128,9 +116,21 @@ public: return m_pIObjectRun->GetExitCode(); } + ULONG GetStartIndex(ULONG index) { + + rc_assert(m_pIObjectRun != NULL, OBJECT_RUN_RET_ERROR) + return m_pIObjectRun->GetRunIndex(index); + } + + ULONG GetCompentCount() { + + rc_assert(m_pIObjectRun != NULL, OBJECT_RUN_RET_ERROR) + return m_pIObjectRun->GetRunPluginsCount(); + } + private: - CComLoader m_loader; + CComLoader m_loader; basic_tstring m_strContainer; _lComPtr m_pIObjectRun; }; diff --git a/include/utilex/calldll.hpp b/include/utilex/calldll.hpp index 7f5cd4e759896b48b6b4e9fa5bd678f1e1ab41e8..923fa12e834d7380f93039dc7ab8cc75f0d3a1ea 100644 --- a/include/utilex/calldll.hpp +++ b/include/utilex/calldll.hpp @@ -70,7 +70,7 @@ public: return true; } virtual STFunDesc *GetFunDefs() = 0; - virtual bool SetFuncAddress(int i,void *p) = 0; + virtual bool SetFuncAddress(size_t i,void *p) = 0; }; diff --git a/mainui/Info.plist b/mainui/Info.plist index cfbbdb70c466bc832de80d36dd1ec1d50f43081c..78d9cb161d01111b036a44f7e431a592b07fe778 100644 --- a/mainui/Info.plist +++ b/mainui/Info.plist @@ -26,5 +26,10 @@ Main NSPrincipalClass NSApplication + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + diff --git a/mainui/appviewimpl.cpp b/mainui/appviewimpl.cpp index a36e38311f0ac443ed711db1cd7e9398a68e40f9..ba50894c219511319f23d2c8b0f7a2d3921c30c4 100644 --- a/mainui/appviewimpl.cpp +++ b/mainui/appviewimpl.cpp @@ -1,4 +1,6 @@ #include "appviewimpl.h" +#include + CAppViewImpl::CAppViewImpl(void) { @@ -25,6 +27,20 @@ std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType) { HRESULT hr = S_OK; + _lComPtr pINet; + + + m_pRot->GetObject(CLSID_INet, IID_INet, (IBase**)&pINet.m_p); + rc_assert(pINet.m_p != INULL, E_FAIL) + + _lComPtr pIDns; + pINet->CreateProtocol(Protocol_dns, (IBase**)&pIDns); + + pIDns->Send("www.baidu.com", NULL); + + pIDns->Close(); + + return hr; } std_method_impl CAppViewImpl::Stop(UINT uExitCode) diff --git a/mainui/main.mm b/mainui/main.mm index bb6128520b2016f9f244ad6c865d8c43a773a12e..65bb9b2e18d3d1909debefd2f31a8fae7a322577 100644 --- a/mainui/main.mm +++ b/mainui/main.mm @@ -24,37 +24,52 @@ int RunContainer(int argc, const char * argv[], const char* path) { HRESULT hr = S_OK; - CContainer com; const char* pCode = "{\"component\":[ \ - \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\ - \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:3:4\",\ - \"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\ - \"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\ - \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:6:4\",\ - \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:2:4\" \ - ]}"; - + \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\ + \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:2:4\",\ + \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:10:4\" \ + ]}"; + + /* + + \"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\ + \"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\ + \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:10:4\",\ + */ + + /* + \"{51FA8DE1-216F-4A76-B4F4-B986E9F54C27}:mainview:100:4\",\ + \"{CE065148-7803-45B1-B1D7-874B52B8F5C5}:uibase:10:4\",\ + */ + + CContainer com; + logi("test_main_CreateContainer"); hr = com.CreateContainer(container_framework_path.c_str(), container_framework_path.length()); logi("test_main_RegisterContainer"); hr = com.RegisterContainer(pCode, s_strlen(pCode)); - + logi("test_main_InitContainer"); hr = com.InitContainer(hInstance, (char**)argv, argc); + ULONG count = com.GetCompentCount(); + ULONG Index = com.GetStartIndex(count - 1); + CAppViewImpl *app = ALLOC_NEW CAppViewImpl(); _lComPtr pBase; - app->QueryInterface(IID_IBase, (void**)&pBase); - hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, 0, "main.exe"); + hr = app->QueryInterface(IID_IBase, (void**)&pBase); + + + if (hr == S_OK) { + hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, Index - 1, "main.exe", STD_COMPOENT | STD_INIT); + } logi("test_main_RunContainer"); hr = com.RunContainer(hInstance, (char**)argv, argc, 0); logi("test_main_InitContainer"); hr = com.UnInitContainer(hInstance); - - logi("test_main_DestroyContainer"); return S_SUCCESS; } diff --git a/mainui/mainui.entitlements b/mainui/mainui.entitlements index f2ef3ae0265b40c475e8ef90e3a311c31786c594..3203b1c2fd050e0e4739eeddc7b2f4a8db04c5ed 100644 --- a/mainui/mainui.entitlements +++ b/mainui/mainui.entitlements @@ -2,9 +2,15 @@ - com.apple.security.app-sandbox - - com.apple.security.files.user-selected.read-only - + com.apple.security.app-sandbox + + com.apple.security.files.downloads.read-only + + com.apple.security.files.user-selected.read-only + + com.apple.security.network.client + + com.apple.security.network.server + diff --git a/mainuiapp/Info.plist b/mainuiapp/Info.plist index 1df2ab9cb10410584fee3097435c4b304e7bf0ba..b0a0984a4c8e40083fed8adc2d57d1c5c8a278b5 100644 --- a/mainuiapp/Info.plist +++ b/mainuiapp/Info.plist @@ -20,6 +20,11 @@ 1 LSRequiresIPhoneOS + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + UIApplicationSceneManifest UIApplicationSupportsMultipleScenes @@ -49,6 +54,8 @@ armv7 + UIStatusBarHidden + UISupportedInterfaceOrientations UIInterfaceOrientationPortrait diff --git a/mainuiapp/appviewimpl.cpp b/mainuiapp/appviewimpl.cpp index a36e38311f0ac443ed711db1cd7e9398a68e40f9..ba50894c219511319f23d2c8b0f7a2d3921c30c4 100644 --- a/mainuiapp/appviewimpl.cpp +++ b/mainuiapp/appviewimpl.cpp @@ -1,4 +1,6 @@ #include "appviewimpl.h" +#include + CAppViewImpl::CAppViewImpl(void) { @@ -25,6 +27,20 @@ std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType) { HRESULT hr = S_OK; + _lComPtr pINet; + + + m_pRot->GetObject(CLSID_INet, IID_INet, (IBase**)&pINet.m_p); + rc_assert(pINet.m_p != INULL, E_FAIL) + + _lComPtr pIDns; + pINet->CreateProtocol(Protocol_dns, (IBase**)&pIDns); + + pIDns->Send("www.baidu.com", NULL); + + pIDns->Close(); + + return hr; } std_method_impl CAppViewImpl::Stop(UINT uExitCode) diff --git a/mainuiapp/main.mm b/mainuiapp/main.mm index 56f502e33c528f49707985e754bc3024c9a54f0b..327846a19a5fe7ac03ba186ccbdc8ee19fc3d712 100644 --- a/mainuiapp/main.mm +++ b/mainuiapp/main.mm @@ -33,37 +33,48 @@ int RunContainer(int argc, char * argv[], const char* path) { HRESULT hr = S_OK; - CContainer com; const char* pCode = "{\"component\":[ \ - \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\ - \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:3:4\",\ + \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\ + \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:2:4\",\ + \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:10:4\" \ + ]}"; + + /* \"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\ \"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\ - \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:6:4\",\ - \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:2:4\" \ - ]}"; - + \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:10:4\",\ + \"{51FA8DE1-216F-4A76-B4F4-B986E9F54C27}:mainview:100:4\",\ + \"{CE065148-7803-45B1-B1D7-874B52B8F5C5}:uibase:10:4\",\ + */ + + CContainer com; + logi("test_main_CreateContainer"); hr = com.CreateContainer(container_framework_path.c_str(), container_framework_path.length()); logi("test_main_RegisterContainer"); hr = com.RegisterContainer(pCode, s_strlen(pCode)); - + logi("test_main_InitContainer"); - hr = com.InitContainer(hInstance, (char**)argv, argc); + hr = com.InitContainer(hInstance, argv, argc); + + ULONG count = com.GetCompentCount(); + ULONG Index = com.GetStartIndex(count - 1); CAppViewImpl *app = ALLOC_NEW CAppViewImpl(); _lComPtr pBase; - app->QueryInterface(IID_IBase, (void**)&pBase); - hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, 0, "main.exe"); + hr = app->QueryInterface(IID_IBase, (void**)&pBase); + + + if (hr == S_OK) { + hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, Index - 1, "main.exe", STD_COMPOENT | STD_INIT); + } logi("test_main_RunContainer"); - hr = com.RunContainer(hInstance, (char**)argv, argc, 0); + hr = com.RunContainer(hInstance, argv, argc, 0); logi("test_main_InitContainer"); hr = com.UnInitContainer(hInstance); - - logi("test_main_DestroyContainer"); return S_SUCCESS; } diff --git a/mainview/mainviewimpl.h b/mainview/mainviewimpl.h index 51d484ed757af7878122cd09d277cbfad5aa1400..a42edb5087970c0b2be99273dbba108a3e1878dc 100644 --- a/mainview/mainviewimpl.h +++ b/mainview/mainviewimpl.h @@ -4,7 +4,7 @@ #include "stdafx.h" -class CMainViewImpl : public IPlugin, +class CMainViewImpl : public IPlugin, public IPluginRun, public IMsgPlugin, public IUIEvent, @@ -54,16 +54,17 @@ private: _lComPtr m_pIBroker; _lComPtr m_pIConsumer; - _lComPtr m_pIProducer; + _lComPtr m_pIProducer; _lComPtr m_pIAgent; _lComPtr m_pIUiBase; - _lComPtr m_pIUiWindow; + _lComPtr m_pIUiWindow; _lComPtr m_pIUiMessageLoop; - _lComPtr m_pILogs; + _lComPtr m_pILogs; + _lComPtr m_pIHttp_t; private: - CSemHandle m_wait_sem; + CSemHandle m_wait_sem; }; #endif diff --git a/mainview/stdafx.h b/mainview/stdafx.h index ad22aaf41188e71d3f11ada105667b055ec95924..5dbcc96fac939fa212b8e788c0dd5da8f04f3d2a 100644 --- a/mainview/stdafx.h +++ b/mainview/stdafx.h @@ -9,6 +9,8 @@ #include #include #include +#include + #include #include diff --git a/net/netimpl.cpp b/net/netimpl.cpp index 7d96ccc76a79732228302f5ff26eecb7e9898c90..d50c2743a408e343ce495ad9a99aee7b6f95f68f 100644 --- a/net/netimpl.cpp +++ b/net/netimpl.cpp @@ -28,9 +28,9 @@ std_method_impl CNetImpl::Start(_pinstance hInstance, UINT uType) InitSocketEnv(2, 2); - hr = m_pRot->GetObject(CLSID_IAsynFrame, IID_IAsynFrame, (IBase**)&m_pIAsynFrame); - rc_assert(hr == S_OK, E_FAIL) - rc_assert(m_pIAsynFrame.m_p != INULL, E_FAIL) + hr = m_pRot->GetObject(CLSID_IAsynFrame, IID_IAsynFrame, (IBase**)&m_pIAsynFrame); + rc_assert(hr == S_OK, E_FAIL) + rc_assert(m_pIAsynFrame.m_p != INULL, E_FAIL) return hr; } diff --git a/tags b/tags index df253e27a4413fce8b84e9ff9b39bdc2fb923dc5..8c98a741b106fd23b93a964492c849146ceef91b 100644 --- a/tags +++ b/tags @@ -4,7 +4,7 @@ !_TAG_PROGRAM_NAME Exuberant Ctags // !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ !_TAG_PROGRAM_VERSION 5.6 // -$TODO compat/compat_debug.hpp 17;" d +$TODO crt/crt_debug.hpp 17;" d -info-dir polipo/Makefile /^ install-info --info-dir=$(TARGET)$(INFODIR) polipo.info$/;" m 3rdcompile 3rd/make3rdcompile.sh /^function 3rdcompile() {$/;" f A polipo/http_parse.c 112;" d file: @@ -26,80 +26,20 @@ ALWAYS logs/sqlite3.c 123845;" d file: ALWAYS logs/sqlite3.c 7916;" d file: ALWAYS logs/sqlite3.c 7919;" d file: ALWAYS logs/sqlite3.c 7922;" d file: -APIENTRY compat/darwinosdef.h 43;" d -APIENTRY compat/darwinosdef.h 65;" d -APIENTRY compat/posixosdef.h 32;" d -APIPRIVATE compat/darwinosdef.h 44;" d -APIPRIVATE compat/darwinosdef.h 71;" d -APIPRIVATE compat/posixosdef.h 33;" d -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 447;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 450;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 453;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 456;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 460;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 462;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 464;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 468;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 471;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 474;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 479;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 482;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 485;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 490;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 493;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 496;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 499;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 502;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 505;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 508;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 511;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 514;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 517;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 522;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 525;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 528;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 531;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 534;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 537;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 540;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 432;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 435;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 438;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 441;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 445;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 447;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 449;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 453;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 456;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 459;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 464;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 467;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 470;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 475;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 478;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 481;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 484;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 487;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 490;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 493;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 496;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 499;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 502;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 507;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 510;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 513;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 516;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 519;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 522;" d file: -ARCHITECTURE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 525;" d file: -ARCH_32BIT compat/compat_targetos.hpp 107;" d -ARCH_32BIT compat/compat_targetos.hpp 43;" d -ARCH_64BIT compat/compat_targetos.hpp 109;" d -ARCH_64BIT compat/compat_targetos.hpp 44;" d +APIENTRY crt/darwinosdef.h 43;" d +APIENTRY crt/darwinosdef.h 65;" d +APIENTRY crt/posixosdef.h 32;" d +APIPRIVATE crt/darwinosdef.h 44;" d +APIPRIVATE crt/darwinosdef.h 71;" d +APIPRIVATE crt/posixosdef.h 33;" d +ARCH_32BIT crt/crt_targetos.hpp 107;" d +ARCH_32BIT crt/crt_targetos.hpp 43;" d +ARCH_64BIT crt/crt_targetos.hpp 109;" d +ARCH_64BIT crt/crt_targetos.hpp 44;" d ARENA_CHUNKS polipo/chunk.c 283;" d file: ARGB2Color uibase/uilib/control/uilabel.cpp /^ Color ARGB2Color(DWORD dwColor)$/;" f namespace:DuiLib -ARGV_END compat/compat_argv.h 35;" d -ARRAY_SIZE http/http/http_parser.cpp 37;" d file: +ARGV_END crt/crt_argv.h 35;" d +ARRAY_SIZE net/http_protocol/http_parser.cpp 37;" d file: ASSERT uibase/uilib/core/uibase.h 28;" d ATTRIBUTE polipo/polipo.h 86;" d ATTRIBUTE polipo/polipo.h 88;" d @@ -110,6 +50,7 @@ AcceptCB asynio/tcplistensocketimpl.cpp /^void CTcpListenSocketImpl::AcceptCB(vo AcceptCChannel include/comutiliy/schannel.hpp /^ std_method_impl AcceptCChannel() {$/;" f class:SChannel AcceptRequestPtr polipo/io.h /^} AcceptRequestRec, *AcceptRequestPtr;$/;" t typeref:struct:_AcceptRequest AcceptRequestRec polipo/io.h /^} AcceptRequestRec, *AcceptRequestPtr;$/;" t typeref:struct:_AcceptRequest +AcpGlobalAutoCommand vim_tool/.vim/autoload/acp.vim /^ augroup AcpGlobalAutoCommand$/;" a Activate uibase/uilib/control/uibutton.cpp /^ bool CButtonUI::Activate()$/;" f class:DuiLib::CButtonUI Activate uibase/uilib/control/uicombo.cpp /^bool CComboUI::Activate()$/;" f class:DuiLib::CComboUI Activate uibase/uilib/control/uilist.cpp /^bool CListContainerElementUI::Activate()$/;" f class:DuiLib::CListContainerElementUI @@ -138,17 +79,22 @@ AddChildNode uibase/uilib/control/uitreeview.cpp /^ bool CTreeNodeUI::AddChildNo AddCustomAttribute uibase/uilib/core/uicontrol.cpp /^ void CControlUI::AddCustomAttribute(LPCTSTR pstrName, LPCTSTR pstrAttr)$/;" f class:DuiLib::CControlUI AddDefaultAttributeList uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddDefaultAttributeList(LPCTSTR pStrControlName, LPCTSTR pStrControlAttrList, bool bShared)$/;" f class:DuiLib::CPaintManagerUI AddDelayedCleanup uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddDelayedCleanup(CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI +AddFileInfo vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddFileInfo()$/;" f AddFont uibase/uilib/core/uimanager.cpp /^HFONT CPaintManagerUI::AddFont(int id, LPCTSTR pStrFontName, int nSize, bool bBold, bool bUnderline, bool bItalic, bool bShared)$/;" f class:DuiLib::CPaintManagerUI +AddHeader vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddHeader()$/;" f AddImage uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::AddImage(LPCTSTR bitmap, HBITMAP hBitmap, int iWidth, int iHeight, bool bAlpha, bool bShared)$/;" f class:DuiLib::CPaintManagerUI AddImage uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::AddImage(LPCTSTR bitmap, LPCTSTR type, DWORD mask, bool bUseHSL, bool bShared)$/;" f class:DuiLib::CPaintManagerUI AddMessageFilter uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddMessageFilter(IMessageFilterUI* pFilter)$/;" f class:DuiLib::CPaintManagerUI AddMouseLeaveNeeded uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddMouseLeaveNeeded(CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI AddNativeWindow uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddNativeWindow(CControlUI* pControl, HWND hChildWnd)$/;" f class:DuiLib::CPaintManagerUI AddNotifier uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddNotifier(INotifyUI* pNotifier)$/;" f class:DuiLib::CPaintManagerUI +AddObject container/mainrun.cpp /^std_method_impl CMainRun::AddObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type)$/;" f class:CMainRun AddOptionGroup uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddOptionGroup(LPCTSTR pStrGroupName, CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI AddPostPaint uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddPostPaint(CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI AddPreMessageFilter uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::AddPreMessageFilter(IMessageFilterUI* pFilter)$/;" f class:DuiLib::CPaintManagerUI AddRef uibase/uilib/control/uirichedit.cpp /^ULONG CTxtWinHost::AddRef(void)$/;" f class:DuiLib::CTxtWinHost +AddSeparators vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddSeparators()$/;" f +AddToFavDir vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:AddToFavDir()$/;" f AddUiWindow uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::AddUiWindow(void* hWnd)$/;" f class:CUiWindowsImpl AddVirtualWnd uibase/uilib/core/uibase.cpp /^bool CNotifyPump::AddVirtualWnd(CDuiString strName,CNotifyPump* pObject)$/;" f class:DuiLib::CNotifyPump AddWindowCustomAttribute uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::AddWindowCustomAttribute(LPCTSTR pstrName, LPCTSTR pstrAttr)$/;" f class:DuiLib::CPaintManagerUI @@ -207,14 +153,14 @@ AuxData access/sqlite3.c /^struct AuxData {$/;" s file: AuxData access/sqlite3.c /^typedef struct AuxData AuxData;$/;" t typeref:struct:AuxData file: AuxData logs/sqlite3.c /^struct AuxData {$/;" s file: AuxData logs/sqlite3.c /^typedef struct AuxData AuxData;$/;" t typeref:struct:AuxData file: -BASE64DE_FIRST base/algorithm/compat_base64.c 4;" d file: -BASE64DE_LAST base/algorithm/compat_base64.c 5;" d file: -BASE64_DECODE_OUT_SIZE compat/compat_base64.h 14;" d -BASE64_ENCODE_OUT_SIZE compat/compat_base64.h 13;" d -BASE64_INVALID compat/compat_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon28 -BASE64_OK compat/compat_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon28 -BASE64_PAD base/algorithm/compat_base64.c 3;" d file: -BEGIN_STDCOM_MAP include/dlcom/comfunc.hpp 58;" d +BASE64DE_FIRST stdcrt/algorithm/compat_base64.c 4;" d file: +BASE64DE_LAST stdcrt/algorithm/compat_base64.c 5;" d file: +BASE64_DECODE_OUT_SIZE crt/crt_base64.h 14;" d +BASE64_ENCODE_OUT_SIZE crt/crt_base64.h 13;" d +BASE64_INVALID crt/crt_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon26 +BASE64_OK crt/crt_base64.h /^enum {BASE64_OK = 0, BASE64_INVALID};$/;" e enum:__anon26 +BASE64_PAD stdcrt/algorithm/compat_base64.c 3;" d file: +BEGIN_STDCOM_MAP include/dlcom/comfunc.hpp 57;" d BINDIR polipo/Makefile /^BINDIR = $(PREFIX)\/bin$/;" m BITMAP_BIT polipo/chunk.c 285;" d file: BITMAP_FFS polipo/chunk.c 259;" d file: @@ -240,13 +186,13 @@ BITVEC_TELEM access/sqlite3.c 36730;" d file: BITVEC_TELEM logs/sqlite3.c 36730;" d file: BITVEC_USIZE access/sqlite3.c 36724;" d file: BITVEC_USIZE logs/sqlite3.c 36724;" d file: -BIT_AT http/http/http_parser.cpp 41;" d file: -BLEndianFloat base/code/compat_endian.c /^float BLEndianFloat(float value)$/;" f -BLEndianUint32 base/code/compat_endian.c /^unsigned int BLEndianUint32(unsigned int value)$/;" f -BLEndianUshort base/code/compat_endian.c /^unsigned short BLEndianUshort(unsigned short value)$/;" f +BIT_AT net/http_protocol/http_parser.cpp 41;" d file: +BLEndianFloat stdcrt/code/compat_endian.c /^float BLEndianFloat(float value)$/;" f +BLEndianUint32 stdcrt/code/compat_endian.c /^unsigned int BLEndianUint32(unsigned int value)$/;" f +BLEndianUshort stdcrt/code/compat_endian.c /^unsigned short BLEndianUshort(unsigned short value)$/;" f BMS access/sqlite3.c 11302;" d file: BMS logs/sqlite3.c 11302;" d file: -BOOL compat/posixossysdef.h /^typedef int BOOL;$/;" t +BOOL crt/posixossysdef.h /^typedef int BOOL;$/;" t BOOST_ALL_NO_LIB 3rd/include/boost_def.hpp 6;" d BOOST_DATE_TIME_SOURCE 3rd/include/boost_def.hpp 8;" d BOOST_ERROR_CODE_HEADER_ONLY 3rd/include/boost_def.hpp 4;" d @@ -255,8 +201,8 @@ BOOST_SYSTEM_NO_DEPRECATED 3rd/include/boost_def.hpp 11;" d BOOST_SYSTEM_NO_LIB 3rd/include/boost_def.hpp 9;" d BOOST_USE_WINAPI_VERSION 3rd/include/boost_def.hpp 5;" d BROKER_ADDR_MAXLEN extensions/include/msgbus/imsgbus.h 7;" d -BSTR compat/darwinossysdef.h /^typedef OLECHAR *BSTR;$/;" t -BSTR compat/posixossysdef.h /^typedef OLECHAR *BSTR;$/;" t +BSTR crt/darwinossysdef.h /^typedef OLECHAR *BSTR;$/;" t +BSTR crt/posixossysdef.h /^typedef OLECHAR *BSTR;$/;" t BTALLOC_ANY access/sqlite3.c 50722;" d file: BTALLOC_ANY logs/sqlite3.c 50722;" d file: BTALLOC_EXACT access/sqlite3.c 50723;" d file: @@ -317,8 +263,8 @@ BTS_READ_ONLY access/sqlite3.c 50175;" d file: BTS_READ_ONLY logs/sqlite3.c 50175;" d file: BTS_SECURE_DELETE access/sqlite3.c 50177;" d file: BTS_SECURE_DELETE logs/sqlite3.c 50177;" d file: -BUFFER_PTR compat/compat_sock.h /^ typedef unsigned char* BUFFER_PTR;$/;" t -BUFFER_SIZE compat/compat_sock.h /^ typedef unsigned long BUFFER_SIZE;$/;" t +BUFFER_PTR crt/crt_sock.h /^ typedef unsigned char* BUFFER_PTR;$/;" t +BUFFER_SIZE crt/crt_sock.h /^ typedef unsigned long BUFFER_SIZE;$/;" t BUS_ACK_VALUE msgbus/auth.hpp 70;" d BUS_BROKER_HELLO msgbus/auth.hpp 68;" d BUS_CONSUMER_HELLO msgbus/auth.hpp 66;" d @@ -341,19 +287,19 @@ BUS_PRODUCER_HELLO msgbus/auth.hpp 67;" d BUS_PRODUCER_VERSION msgbus/auth.hpp 7;" d BUS_PROTOCOL_HEAD_LEN msgbus/auth.hpp 60;" d BUS_SEQ_VALUE msgbus/auth.hpp 71;" d -BYTE compat/darwinossysdef.h /^typedef byte BYTE;$/;" t -BYTE compat/posixossysdef.h /^typedef byte BYTE;$/;" t +BYTE crt/darwinossysdef.h /^typedef byte BYTE;$/;" t +BYTE crt/posixossysdef.h /^typedef byte BYTE;$/;" t BYTESWAP32 access/sqlite3.c 47196;" d file: BYTESWAP32 logs/sqlite3.c 47196;" d file: -BYTES_NEEDED base/net/compat_sockinet.c 25;" d file: +BYTES_NEEDED stdcrt/net/compat_sockinet.c 24;" d file: BasicString_Append_Char include/utilex/string.hpp /^static_inline int BasicString_Append_Char(basic_tstring &src ,const char *dst, size_t len) {$/;" f BenignMallocHooks access/sqlite3.c /^static SQLITE_WSD struct BenignMallocHooks {$/;" s file: BenignMallocHooks access/sqlite3.c /^typedef struct BenignMallocHooks BenignMallocHooks;$/;" t typeref:struct:BenignMallocHooks file: BenignMallocHooks logs/sqlite3.c /^static SQLITE_WSD struct BenignMallocHooks {$/;" s file: BenignMallocHooks logs/sqlite3.c /^typedef struct BenignMallocHooks BenignMallocHooks;$/;" t typeref:struct:BenignMallocHooks file: -Big_endian compat/compat_endian.h 16;" d -BigtoLittle16 net/protocol/dns.h 6;" d -BigtoLittle32 net/protocol/dns.h 7;" d +Big_endian crt/crt_endian.h 16;" d +BigtoLittle16 net/protocol/dns.h 12;" d +BigtoLittle32 net/protocol/dns.h 13;" d Bind asynio/timerimpl.cpp /^std_method_impl CTimerImpl::Bind(IBase* pBase)$/;" f class:CTimerImpl Bind msgbus/agent.cpp /^std_method_impl CAgentImpl::Bind(LPCSTR addr, int len)$/;" f class:CAgentImpl Bind msgbus/consumer.cpp /^std_method_impl CConsumerImpl::Bind(LPCSTR addr, int len)$/;" f class:CConsumerImpl @@ -361,10 +307,9 @@ Bind msgbus/producer.cpp /^std_method_impl CProducerImpl::Bind(LPCSTR addr, int BindAccept asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::BindAccept(IBase* pAccept)$/;" f class:CTcpListenSocketImpl BindEvent asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::BindEvent(IBase *pEvents)$/;" f class:CIoOperationImpl BindEvent include/comutiliy/cchannel.hpp /^ std_method_impl BindEvent(IBase* pBase) {$/;" f class:CChannel -BindEvent include/comutiliy/ctimer.hpp /^ std_method_impl BindEvent(IBase* pBase) {$/;" f class:CChannel BindEvent include/comutiliy/schannel.hpp /^ std_method_impl BindEvent(IBase* pBase) {$/;" f class:SChannel BindEvent uibase/uiwindowimpl.cpp /^std_method_impl CUiWindowsImpl::BindEvent(IBase* pEvents)$/;" f class:CUiWindowsImpl -BindHttp http/httptimpl.cpp /^std_method_impl CHttptImpl::BindHttp(IBase* pIAsyncTcpSocket, IBase* pIOper, IBase* pIDns)$/;" f class:CHttptImpl +BindHttp net/httptimpl.cpp /^std_method_impl CHttptImpl::BindHttp(IBase* pIAsyncTcpSocket, IBase* pIOper, IBase* pIDns)$/;" f class:CHttptImpl BindIBase asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::BindIBase(IBase* pBase)$/;" f class:CIoOperationImpl BindIo asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::BindIo()$/;" f class:CTcpListenSocketImpl BindIo asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::BindIo()$/;" f class:CTcpSocketImpl @@ -399,6 +344,7 @@ Btree access/sqlite3.c /^typedef struct Btree Btree;$/;" t typeref:struct:Btree Btree logs/sqlite3.c /^struct Btree {$/;" s file: Btree logs/sqlite3.c /^typedef struct Btree Btree;$/;" t typeref:struct:Btree file: Buffer include/comutiliy/serialize.hpp /^ std_method_type_impl(unsigned char*) Buffer(unsigned int bOffset)$/;" f class:Serialize +BuildContextStack vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:BuildContextStack(namespaces, szCurrentScope)$/;" f BusProtocol msgbus/auth.hpp /^} BusProtocol;$/;" t typeref:struct:_BusProtocol BusProtocol_1st msgbus/auth.hpp /^static_inline HRESULT BusProtocol_1st(unsigned char* ptr, unsigned int seq, unsigned int ack) {$/;" f BusProtocol_2nd msgbus/auth.hpp /^static_inline HRESULT BusProtocol_2nd(unsigned char* ptr, unsigned int seq, unsigned int ack) {$/;" f @@ -416,10 +362,18 @@ BusyHandler access/sqlite3.c /^struct BusyHandler {$/;" s file: BusyHandler access/sqlite3.c /^typedef struct BusyHandler BusyHandler;$/;" t typeref:struct:BusyHandler file: BusyHandler logs/sqlite3.c /^struct BusyHandler {$/;" s file: BusyHandler logs/sqlite3.c /^typedef struct BusyHandler BusyHandler;$/;" t typeref:struct:BusyHandler file: +Button_Next mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Next;$/;" v +Button_Pause mainuiapp/ViewController.h /^@property (weak, nonatomic) IBOutlet UIButton *Button_Pause;$/;" v +Button_Prior mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Prior;$/;" v +Button_Start mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Start;$/;" v +Button_Start mainuiapp/ViewController.h /^@property (weak, nonatomic) IBOutlet UIButton *Button_Start;$/;" v +Button_Stop mainui/ViewController.h /^@property (weak) IBOutlet NSButton *Button_Stop;$/;" v +Button_Stop mainuiapp/ViewController.h /^@property (weak, nonatomic) IBOutlet UIButton *Button_Stop;$/;" v ByteRangeLockPB2 access/sqlite3.c /^struct ByteRangeLockPB2$/;" s file: ByteRangeLockPB2 logs/sqlite3.c /^struct ByteRangeLockPB2$/;" s file: CACHE_AUTHORIZATION polipo/object.h 156;" d CACHE_COOKIE polipo/object.h 158;" d +CACHE_DEBUG_TRACE vim_tool/.vim/autoload/omni/common/debug.vim /^let s:CACHE_DEBUG_TRACE = []$/;" v CACHE_MISMATCH polipo/object.h 160;" d CACHE_MUST_REVALIDATE polipo/object.h 148;" d CACHE_NO polipo/object.h 138;" d @@ -427,21 +381,25 @@ CACHE_NO_HIDDEN polipo/object.h 136;" d CACHE_NO_STORE polipo/object.h 144;" d CACHE_NO_TRANSFORM polipo/object.h 146;" d CACHE_ONLY_IF_CACHED polipo/object.h 152;" d +CACHE_OVERLOADED_FUNCTIONS vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_OVERLOADED_FUNCTIONS = {}$/;" v CACHE_PRIVATE polipo/object.h 142;" d CACHE_PROXY_REVALIDATE polipo/object.h 150;" d CACHE_PUBLIC polipo/object.h 140;" d CACHE_STALE access/sqlite3.c 13719;" d file: CACHE_STALE logs/sqlite3.c 13719;" d file: +CACHE_TAG_ENV vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_TAG_ENV = ''$/;" v +CACHE_TAG_FILES vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_TAG_FILES = {}$/;" v +CACHE_TAG_POPUP_ITEMS vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:CACHE_TAG_POPUP_ITEMS = {}$/;" v CACHE_VARY polipo/object.h 154;" d -CALLBACK compat/darwinosdef.h 40;" d -CALLBACK compat/darwinosdef.h 57;" d -CALLBACK compat/posixosdef.h 29;" d -CALLBACK_DATA http/http/http_parser.cpp 124;" d file: -CALLBACK_DATA_ http/http/http_parser.cpp 101;" d file: -CALLBACK_DATA_NOADVANCE http/http/http_parser.cpp 128;" d file: -CALLBACK_NOTIFY http/http/http_parser.cpp 95;" d file: -CALLBACK_NOTIFY_ http/http/http_parser.cpp 76;" d file: -CALLBACK_NOTIFY_NOADVANCE http/http/http_parser.cpp 98;" d file: +CALLBACK crt/darwinosdef.h 40;" d +CALLBACK crt/darwinosdef.h 57;" d +CALLBACK crt/posixosdef.h 29;" d +CALLBACK_DATA net/http_protocol/http_parser.cpp 124;" d file: +CALLBACK_DATA_ net/http_protocol/http_parser.cpp 101;" d file: +CALLBACK_DATA_NOADVANCE net/http_protocol/http_parser.cpp 128;" d file: +CALLBACK_NOTIFY net/http_protocol/http_parser.cpp 95;" d file: +CALLBACK_NOTIFY_ net/http_protocol/http_parser.cpp 76;" d file: +CALLBACK_NOTIFY_NOADVANCE net/http_protocol/http_parser.cpp 98;" d file: CASE uibase/uilib/utils/stb_image.c 1339;" d file: CASE uibase/uilib/utils/stb_image.c 1357;" d file: CASE uibase/uilib/utils/stb_image.c 4026;" d file: @@ -450,6 +408,12 @@ CASE uibase/uilib/utils/stb_image.c 4043;" d file: CASE uibase/uilib/utils/stb_image.c 4056;" d file: CAgentImpl msgbus/agent.cpp /^CAgentImpl::CAgentImpl(void)$/;" f class:CAgentImpl CAgentImpl msgbus/agent.h /^class CAgentImpl : public IAgent,$/;" c +CAppViewImpl mainui/appviewimpl.cpp /^CAppViewImpl::CAppViewImpl(void)$/;" f class:CAppViewImpl +CAppViewImpl mainui/appviewimpl.h /^class CAppViewImpl : public IPlugin,$/;" c +CAppViewImpl mainuiapp/appviewimpl.cpp /^CAppViewImpl::CAppViewImpl(void)$/;" f class:CAppViewImpl +CAppViewImpl mainuiapp/appviewimpl.h /^class CAppViewImpl : public IPlugin,$/;" c +CAppViewImpl testmain/appviewimpl.cpp /^CAppViewImpl::CAppViewImpl(void)$/;" f class:CAppViewImpl +CAppViewImpl testmain/appviewimpl.h /^class CAppViewImpl : public IPlugin,$/;" c CAsynFrameImpl asynio/asynframeimpl.cpp /^CAsynFrameImpl::CAsynFrameImpl(void)$/;" f class:CAsynFrameImpl CAsynFrameImpl asynio/asynframeimpl.h /^class CAsynFrameImpl : public IAsynFrame,$/;" c CAutoLock include/utilex/autolock.hpp /^ CAutoLock()$/;" f class:CAutoLock @@ -458,16 +422,14 @@ CBrokerImpl msgbus/broker.cpp /^CBrokerImpl::CBrokerImpl(void)$/;" f class:CBrok CBrokerImpl msgbus/broker.h /^class CBrokerImpl : public IBroker,$/;" c CButtonUI uibase/uilib/control/uibutton.cpp /^ CButtonUI::CButtonUI()$/;" f class:DuiLib::CButtonUI CButtonUI uibase/uilib/control/uibutton.h /^ class CButtonUI : public CLabelUI$/;" c namespace:DuiLib -CC_CLANG compat/compat_targetos.hpp 37;" d -CC_GCC compat/compat_targetos.hpp 36;" d -CC_INTER compat/compat_targetos.hpp 39;" d -CC_LLVM compat/compat_targetos.hpp 38;" d -CC_MSVC compat/compat_targetos.hpp 35;" d -CC_NDK compat/compat_targetos.hpp 40;" d +CC_CLANG crt/crt_targetos.hpp 37;" d +CC_GCC crt/crt_targetos.hpp 36;" d +CC_INTER crt/crt_targetos.hpp 39;" d +CC_LLVM crt/crt_targetos.hpp 38;" d +CC_MSVC crt/crt_targetos.hpp 35;" d +CC_NDK crt/crt_targetos.hpp 40;" d CChannel include/comutiliy/cchannel.hpp /^ CChannel(void) {$/;" f class:CChannel CChannel include/comutiliy/cchannel.hpp /^class CChannel $/;" c -CChannel include/comutiliy/ctimer.hpp /^ CChannel(void) {$/;" f class:CChannel -CChannel include/comutiliy/ctimer.hpp /^class CChannel $/;" c CCheckBoxUI uibase/uilib/control/uicheckbox.h /^ class CCheckBoxUI : public COptionUI$/;" c namespace:DuiLib CChildLayoutUI uibase/uilib/layout/uichildlayout.cpp /^ CChildLayoutUI::CChildLayoutUI()$/;" f class:DuiLib::CChildLayoutUI CChildLayoutUI uibase/uilib/layout/uichildlayout.h /^ class CChildLayoutUI : public CContainerUI$/;" c namespace:DuiLib @@ -557,8 +519,8 @@ CFontImpl res/fontimpl.cpp /^CFontImpl::CFontImpl(void)$/;" f class:CFontImpl CFontImpl res/fontimpl.h /^class CFontImpl : public IPlugin,$/;" c CGifAnimUI uibase/uilib/control/uigifanim.cpp /^ CGifAnimUI::CGifAnimUI(void)$/;" f class:DuiLib::CGifAnimUI CGifAnimUI uibase/uilib/control/uigifanim.h /^ class CGifAnimUI : public CControlUI$/;" c namespace:DuiLib -CHAR compat/darwinossysdef.h /^typedef char CHAR;$/;" t -CHAR compat/posixossysdef.h /^typedef char CHAR;$/;" t +CHAR crt/darwinossysdef.h /^typedef char CHAR;$/;" t +CHAR crt/posixossysdef.h /^typedef char CHAR;$/;" t CHECK_ENTRY polipo/diskcache.c 204;" d file: CHECK_ENTRY polipo/diskcache.c 231;" d file: CHECK_FOR_INTERRUPT access/sqlite3.c 66906;" d file: @@ -567,7 +529,7 @@ CHECK_PAGE access/sqlite3.c 40590;" d file: CHECK_PAGE access/sqlite3.c 40601;" d file: CHECK_PAGE logs/sqlite3.c 40590;" d file: CHECK_PAGE logs/sqlite3.c 40601;" d file: -CHUNKED http/http/http_parser.cpp 165;" d file: +CHUNKED net/http_protocol/http_parser.cpp 165;" d file: CHUNKS polipo/chunk.h 39;" d CHUNK_ARENA_INDEX polipo/chunk.c 300;" d file: CHUNK_IN_ARENA polipo/chunk.c 295;" d file: @@ -577,45 +539,43 @@ CHUNK_SIZE polipo/chunk.h 35;" d CHandlePtr include/utilex/safeptr.hpp 160;" d CHorizontalLayoutUI uibase/uilib/layout/uihorizontallayout.cpp /^ CHorizontalLayoutUI::CHorizontalLayoutUI() : m_iSepWidth(0), m_uButtonState(0), m_bImmMode(false)$/;" f class:DuiLib::CHorizontalLayoutUI CHorizontalLayoutUI uibase/uilib/layout/uihorizontallayout.h /^ class CHorizontalLayoutUI : public CContainerUI$/;" c namespace:DuiLib -CHttpImpl http/httpimpl.cpp /^CHttpImpl::CHttpImpl(void)$/;" f class:CHttpImpl -CHttpImpl http/httpimpl.h /^class CHttpImpl : public IHttp,$/;" c -CHttpParser http/http/chttpparser.cpp /^CHttpParser::CHttpParser()$/;" f class:CHttpParser -CHttpParser http/http/chttpparser.h /^class CHttpParser$/;" c -CHttptImpl http/httptimpl.cpp /^CHttptImpl::CHttptImpl()$/;" f class:CHttptImpl -CHttptImpl http/httptimpl.h /^class CHttptImpl : public IHttp_t,$/;" c +CHttpParser net/http_protocol/chttpparser.cpp /^CHttpParser::CHttpParser()$/;" f class:CHttpParser +CHttpParser net/http_protocol/chttpparser.h /^class CHttpParser$/;" c +CHttptImpl net/httptimpl.cpp /^CHttptImpl::CHttptImpl()$/;" f class:CHttptImpl +CHttptImpl net/httptimpl.h /^class CHttptImpl : public IHttp_t,$/;" c CIoOperationImpl asynio/iooperationimpl.cpp /^CIoOperationImpl::CIoOperationImpl()$/;" f class:CIoOperationImpl CIoOperationImpl asynio/iooperationimpl.h /^class CIoOperationImpl : public IOperation,$/;" c -CJSON_NESTING_LIMIT compat/compat_cjson.h 73;" d -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const int len, const cJSON_bool fmt)$/;" f -CJSON_PUBLIC base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement)$/;" f -CJSON_PUBLIC compat/compat_cjson.h 67;" d -CJSON_VERSION_MAJOR compat/compat_cjson.h 13;" d -CJSON_VERSION_MINOR compat/compat_cjson.h 14;" d -CJSON_VERSION_PATCH compat/compat_cjson.h 15;" d +CJSON_NESTING_LIMIT crt/crt_cjson.h 73;" d +CJSON_PUBLIC crt/crt_cjson.h 67;" d +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const int len, const cJSON_bool fmt)$/;" f +CJSON_PUBLIC stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement)$/;" f +CJSON_VERSION_MAJOR crt/crt_cjson.h 13;" d +CJSON_VERSION_MINOR crt/crt_cjson.h 14;" d +CJSON_VERSION_PATCH crt/crt_cjson.h 15;" d CLEARBIT access/sqlite3.c 36980;" d file: CLEARBIT logs/sqlite3.c 36980;" d file: -CLOSE http/http/http_parser.cpp 167;" d file: +CLOSE net/http_protocol/http_parser.cpp 167;" d file: CLOSE polipo/mingw.h 173;" d CLOSE polipo/polipo.h 190;" d CLOSE_BOTH_IO extensions/include/io/iiodevice.h 6;" d CLOSE_RD_IO extensions/include/io/iiodevice.h 5;" d CLOSE_WR_IO extensions/include/io/iiodevice.h 4;" d -CLSID compat/compat_guid.hpp /^typedef GUID CLSID;$/;" t +CLSID crt/crt_guid.hpp /^typedef GUID CLSID;$/;" t CLSIDFromProgID container/objectloader.cpp /^std_method_type_impl(CLSID) CObjectLoader::CLSIDFromProgID(LPCSTR lpProgId)$/;" f class:CObjectLoader CLSIDFromProgID container/rot.cpp /^std_method_type_impl(CLSID) CComRunningObjectTableImpl::CLSIDFromProgID(LPCSTR lpProgId)$/;" f class:CComRunningObjectTableImpl -CLSID_NULL compat/compat_guid.hpp 47;" d +CLSID_NULL crt/crt_guid.hpp 47;" d CLabelUI uibase/uilib/control/uilabel.cpp /^ CLabelUI::CLabelUI() : $/;" f class:DuiLib::CLabelUI CLabelUI uibase/uilib/control/uilabel.h /^ class CLabelUI : public CControlUI$/;" c namespace:DuiLib CLangImpl res/langimpl.cpp /^CLangImpl::CLangImpl(void)$/;" f class:CLangImpl @@ -652,64 +612,10 @@ CLogFiltersImpl logs/logfilters.cpp /^CLogFiltersImpl::CLogFiltersImpl(void)$/;" CLogFiltersImpl logs/logfilters.h /^class CLogFiltersImpl : public ILogFilters,$/;" c CLogsImpl logs/logsimpl.cpp /^CLogsImpl::CLogsImpl(void)$/;" f class:CLogsImpl CLogsImpl logs/logsimpl.h /^class CLogsImpl : public ILogs,$/;" c -CMAKE_BINARY_DIR Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR access/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR asynio/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR base/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR base_test/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR container/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR dispatch/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR guidgen/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR http/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR license/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR logs/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR main/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR mainview/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR mempool/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR msgbus/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR net/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR render/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_BINARY_DIR testmain/Makefile /^CMAKE_BINARY_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_COMMAND Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND access/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND asynio/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND base/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND base_test/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND container/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND dispatch/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND guidgen/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND http/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND license/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND logs/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND main/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND mainview/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND mempool/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND msgbus/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND net/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND render/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_COMMAND testmain/Makefile /^CMAKE_COMMAND = \/usr\/bin\/cmake$/;" m -CMAKE_SOURCE_DIR Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR access/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR asynio/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR base/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR base_test/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR container/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR dispatch/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR guidgen/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR http/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR license/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR logs/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR main/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR mainview/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR mempool/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR msgbus/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR net/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR render/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m -CMAKE_SOURCE_DIR testmain/Makefile /^CMAKE_SOURCE_DIR = \/mnt\/c\/app\/std_com$/;" m CMainRun container/mainrun.cpp /^CMainRun::CMainRun(void)$/;" f class:CMainRun CMainRun container/mainrun.h /^class CMainRun : public IObjectRun,$/;" c CMainViewImpl mainview/mainviewimpl.cpp /^CMainViewImpl::CMainViewImpl(void)$/;" f class:CMainViewImpl -CMainViewImpl mainview/mainviewimpl.h /^class CMainViewImpl : public IPlugin,$/;" c +CMainViewImpl mainview/mainviewimpl.h /^class CMainViewImpl : public IPlugin,$/;" c CMarkup uibase/uilib/core/uimarkup.cpp /^CMarkup::CMarkup(LPCTSTR pstrXML)$/;" f class:DuiLib::CMarkup CMarkup uibase/uilib/core/uimarkup.h /^class CMarkup$/;" c namespace:DuiLib CMarkupNode uibase/uilib/core/uimarkup.cpp /^CMarkupNode::CMarkupNode() $/;" f class:DuiLib::CMarkupNode @@ -757,264 +663,11 @@ COLNAME_NAME access/sqlite3.c 9049;" d file: COLNAME_NAME logs/sqlite3.c 9049;" d file: COLNAME_TABLE access/sqlite3.c 9052;" d file: COLNAME_TABLE logs/sqlite3.c 9052;" d file: -COLORREF compat/darwinossysdef.h /^typedef DWORD COLORREF;$/;" t -COLORREF compat/posixossysdef.h /^typedef DWORD COLORREF;$/;" t +COLORREF crt/darwinossysdef.h /^typedef DWORD COLORREF;$/;" t +COLORREF crt/posixossysdef.h /^typedef DWORD COLORREF;$/;" t COLUMN_MASK access/sqlite3.c 92423;" d file: COLUMN_MASK logs/sqlite3.c 92423;" d file: COMBO uibase/uilib/utils/stb_image.c 1338;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 108;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 115;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 122;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 129;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 137;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 144;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 151;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 159;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 164;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 171;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 174;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 183;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 186;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 189;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 192;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 19;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 207;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 222;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 229;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 243;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 253;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 271;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 280;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 294;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 311;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 314;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 56;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 64;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 70;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 76;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 85;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 94;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 108;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 115;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 122;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 129;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 137;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 13;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 144;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 151;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 159;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 164;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 171;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 174;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 183;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 186;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 19;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 201;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 216;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 223;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 237;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 251;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 269;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 278;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 296;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 299;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 56;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 64;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 70;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 76;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 85;" d file: -COMPILER_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 94;" d file: -COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 226;" d file: -COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 285;" d file: -COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 290;" d file: -COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 220;" d file: -COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 283;" d file: -COMPILER_VERSION_INTERNAL CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 288;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 102;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 110;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 117;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 124;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 130;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 139;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 146;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 152;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 160;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 166;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 177;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 195;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 200;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 211;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 223;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 233;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 244;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 255;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 274;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 27;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 282;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 287;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 296;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 301;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 57;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 65;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 72;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 78;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 87;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 97;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 102;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 110;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 117;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 124;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 130;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 139;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 146;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 152;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 15;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 160;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 166;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 177;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 189;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 194;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 205;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 217;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 227;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 239;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 241;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 253;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 272;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 27;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 280;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 285;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 57;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 65;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 72;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 78;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 87;" d file: -COMPILER_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 97;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 103;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 111;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 118;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 125;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 131;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 140;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 147;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 153;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 161;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 167;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 178;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 196;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 201;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 212;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 224;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 234;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 246;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 256;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 275;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 283;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 288;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 28;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 297;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 302;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 58;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 66;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 73;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 79;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 88;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 98;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 103;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 111;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 118;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 125;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 131;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 140;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 147;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 153;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 161;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 167;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 16;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 178;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 190;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 195;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 206;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 218;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 228;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 244;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 254;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 273;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 281;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 286;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 28;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 58;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 66;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 73;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 79;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 88;" d file: -COMPILER_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 98;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 104;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 112;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 119;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 126;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 132;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 141;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 148;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 155;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 168;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 179;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 197;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 202;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 213;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 225;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 235;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 249;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 260;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 263;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 276;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 284;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 289;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 298;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 303;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 30;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 32;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 60;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 67;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 81;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 90;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 99;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 104;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 112;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 119;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 126;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 132;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 141;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 148;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 155;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 168;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 179;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 191;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 196;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 207;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 219;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 229;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 247;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 258;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 261;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 274;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 282;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 287;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 30;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 32;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 60;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 67;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 81;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 90;" d file: -COMPILER_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 99;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 133;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 219;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 267;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 36;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 133;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 213;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 265;" d file: -COMPILER_VERSION_TWEAK CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 36;" d file: CONDITION_FAILED polipo/http.h 130;" d CONDITION_MATCH polipo/http.h 128;" d CONDITION_NOT_MODIFIED polipo/http.h 129;" d @@ -1038,32 +691,32 @@ CONFIG_VARIABLE_SETTABLE polipo/config.h 57;" d CONNECTING_CONNECT polipo/http.h 124;" d CONNECTING_DNS polipo/http.h 123;" d CONNECTING_SOCKS polipo/http.h 125;" d -CONNECTION http/http/http_parser.cpp 161;" d file: +CONNECTION net/http_protocol/http_parser.cpp 161;" d file: CONN_BIGBUF polipo/http.h 96;" d CONN_BIGREQBUF polipo/http.h 97;" d CONN_READER polipo/http.h 93;" d CONN_SIDE_READER polipo/http.h 95;" d CONN_WRITER polipo/http.h 94;" d -CONST_VTBL compat/compat_common.hpp 100;" d -CONST_VTBL compat/compat_common.hpp 98;" d -CONTENT_LENGTH http/http/http_parser.cpp 162;" d file: +CONST_VTBL crt/crt_common.hpp 100;" d +CONST_VTBL crt/crt_common.hpp 98;" d +CONTENT_LENGTH net/http_protocol/http_parser.cpp 162;" d file: CORRUPT_DB access/sqlite3.c 11992;" d file: CORRUPT_DB logs/sqlite3.c 11992;" d file: -COUNT_HEADER_SIZE http/http/http_parser.cpp 150;" d file: +COUNT_HEADER_SIZE net/http_protocol/http_parser.cpp 150;" d file: CObjectLoader container/objectloader.cpp /^CObjectLoader::CObjectLoader(void)$/;" f class:CObjectLoader CObjectLoader container/objectloader.h /^class CObjectLoader : public ICompoentLoader,$/;" c COptionUI uibase/uilib/control/uioption.cpp /^ COptionUI::COptionUI() : m_bSelected(false), m_dwSelectedBkColor(0), m_dwSelectedTextColor(0)$/;" f class:DuiLib::COptionUI COptionUI uibase/uilib/control/uioption.h /^ class COptionUI : public CButtonUI$/;" c namespace:DuiLib CPPSQLITE_ERROR logs/CppSQLite3.h 35;" d -CPP_NO_VTABLE compat/compat_common.hpp 11;" d -CPP_NO_VTABLE compat/compat_common.hpp 15;" d -CPP_NO_VTABLE compat/compat_common.hpp 17;" d -CPU_ALPHA compat/compat_targetos.hpp 32;" d -CPU_ARM compat/compat_targetos.hpp 30;" d -CPU_MIPS compat/compat_targetos.hpp 31;" d -CPU_POWERPC compat/compat_targetos.hpp 33;" d -CPU_SYSTEM compat/compat_targetos.hpp 28;" d -CPU_X86 compat/compat_targetos.hpp 29;" d +CPP_NO_VTABLE crt/crt_common.hpp 11;" d +CPP_NO_VTABLE crt/crt_common.hpp 15;" d +CPP_NO_VTABLE crt/crt_common.hpp 17;" d +CPU_ALPHA crt/crt_targetos.hpp 32;" d +CPU_ARM crt/crt_targetos.hpp 30;" d +CPU_MIPS crt/crt_targetos.hpp 31;" d +CPU_POWERPC crt/crt_targetos.hpp 33;" d +CPU_SYSTEM crt/crt_targetos.hpp 28;" d +CPU_X86 crt/crt_targetos.hpp 29;" d CPaintManagerUI uibase/uilib/core/uimanager.cpp /^CPaintManagerUI::CPaintManagerUI() :$/;" f class:DuiLib::CPaintManagerUI CPaintManagerUI uibase/uilib/core/uimanager.h /^class CPaintManagerUI$/;" c namespace:DuiLib CPlugins container/plugins.cpp /^CPlugins::CPlugins(void)$/;" f class:CPlugins @@ -1072,7 +725,7 @@ CProducerImpl msgbus/producer.cpp /^CProducerImpl::CProducerImpl(void)$/;" f cla CProducerImpl msgbus/producer.h /^class CProducerImpl : public IProducer,$/;" c CProgressUI uibase/uilib/control/uiprogress.cpp /^ CProgressUI::CProgressUI() : m_bHorizontal(true), m_nMin(0), m_nMax(100), m_nValue(0)$/;" f class:DuiLib::CProgressUI CProgressUI uibase/uilib/control/uiprogress.h /^ class CProgressUI : public CLabelUI$/;" c namespace:DuiLib -CR http/http/http_parser.cpp 408;" d file: +CR net/http_protocol/http_parser.cpp 408;" d file: CRecordSet access/recordset.cpp /^CRecordSet::CRecordSet(sqlite3_stmt *pStmt3)$/;" f class:CRecordSet CRecordSet access/recordset.h /^class CRecordSet : public IRecordSet, $/;" c CRenderClip uibase/uilib/core/uirender.h /^class CRenderClip$/;" c namespace:DuiLib @@ -1100,11 +753,11 @@ CTIMEOPT_VAL access/sqlite3.c 13170;" d file: CTIMEOPT_VAL logs/sqlite3.c 13170;" d file: CTIMEOPT_VAL_ access/sqlite3.c 13169;" d file: CTIMEOPT_VAL_ logs/sqlite3.c 13169;" d file: -CTL_PluginExtName base/io/compat_path.c 11;" d file: -CTL_PluginExtName base/io/compat_path.c 13;" d file: -CTL_PluginExtName base/io/compat_path.c 15;" d file: -CTL_PluginExtName base/io/compat_path.c 5;" d file: -CTL_PluginExtName base/io/compat_path.c 7;" d file: +CTL_PluginExtName stdcrt/io/compat_path.c 13;" d file: +CTL_PluginExtName stdcrt/io/compat_path.c 15;" d file: +CTL_PluginExtName stdcrt/io/compat_path.c 18;" d file: +CTL_PluginExtName stdcrt/io/compat_path.c 5;" d file: +CTL_PluginExtName stdcrt/io/compat_path.c 7;" d file: CTRL_FREE access/sqlite3.c 17579;" d file: CTRL_FREE logs/sqlite3.c 17579;" d file: CTRL_LOGSIZE access/sqlite3.c 17578;" d file: @@ -1135,7 +788,7 @@ CTreeViewUI uibase/uilib/control/uitreeview.cpp /^ CTreeViewUI::CTreeViewUI( voi CTreeViewUI uibase/uilib/control/uitreeview.h /^ class CTreeViewUI : public CListUI,public INotifyUI$/;" c namespace:DuiLib CTxtWinHost uibase/uilib/control/uirichedit.cpp /^CTxtWinHost::CTxtWinHost() : m_re(NULL)$/;" f class:DuiLib::CTxtWinHost CTxtWinHost uibase/uilib/control/uirichedit.cpp /^class CTxtWinHost : public ITextHost$/;" c namespace:DuiLib file: -CURRENT_STATE http/http/http_parser.cpp 55;" d file: +CURRENT_STATE net/http_protocol/http_parser.cpp 55;" d file: CURSOR_FAULT access/sqlite3.c 50286;" d file: CURSOR_FAULT logs/sqlite3.c 50286;" d file: CURSOR_INVALID access/sqlite3.c 50282;" d file: @@ -1147,7 +800,7 @@ CURSOR_SKIPNEXT logs/sqlite3.c 50284;" d file: CURSOR_VALID access/sqlite3.c 50283;" d file: CURSOR_VALID logs/sqlite3.c 50283;" d file: CUdpSocketImpl asynio/udpsocketimpl.cpp /^CUdpSocketImpl::CUdpSocketImpl()$/;" f class:CUdpSocketImpl -CUdpSocketImpl asynio/udpsocketimpl.h /^class CUdpSocketImpl : public IUdpSocket,$/;" c +CUdpSocketImpl asynio/udpsocketimpl.h /^class CUdpSocketImpl : public IUdpSocket,$/;" c CUiBaseImpl uibase/uibaseimpl.cpp /^CUiBaseImpl::CUiBaseImpl(void)$/;" f class:CUiBaseImpl CUiBaseImpl uibase/uibaseimpl.h /^class CUiBaseImpl : public IUIBase,$/;" c CUiControlImpl uibase/uicontrolimpl.cpp /^CUiControlImpl::CUiControlImpl(void)$/;" f class:CUiControlImpl @@ -1178,28 +831,22 @@ CXFieldInfo access/fieldinfo.cpp /^CXFieldInfo::CXFieldInfo(void)$/;" f class:CX CXFieldInfo access/fieldinfo.h /^class CXFieldInfo : public IFieldInfo, $/;" c CXTableInfo access/tableinfo.cpp /^CXTableInfo::CXTableInfo(LPCSTR lpszName)$/;" f class:CXTableInfo CXTableInfo access/tableinfo.h /^class CXTableInfo : public ITableInfo, $/;" c -CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 608;" d file: -CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 610;" d file: -CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 613;" d file: -CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 616;" d file: -CXX_STD CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 618;" d file: -C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 623;" d file: -C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 625;" d file: -C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 628;" d file: -C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 630;" d file: -C_DIALECT CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 632;" d file: CacheControlPtr polipo/object.h /^} CacheControlRec, *CacheControlPtr;$/;" t typeref:struct:_CacheControl CacheControlRec polipo/object.h /^} CacheControlRec, *CacheControlPtr;$/;" t typeref:struct:_CacheControl CalLocation uibase/uilib/control/uitreeview.cpp /^ CTreeNodeUI* CTreeNodeUI::CalLocation( CTreeNodeUI* _pTreeNodeUI )$/;" f class:DuiLib::CTreeNodeUI CalPos uibase/uilib/control/uidatetime.cpp /^ RECT CDateTimeWnd::CalPos()$/;" f class:DuiLib::CDateTimeWnd CalPos uibase/uilib/control/uiedit.cpp /^ RECT CEditWnd::CalPos()$/;" f class:DuiLib::CEditWnd Calloc mempool/mempoolimpl.cpp /^std_method_type_impl(void*) CMemPoolImpl::Calloc(size_t num, size_t size)$/;" f class:CMemPoolImpl -Cancel http/httptimpl.cpp /^std_method_impl CHttptImpl::Cancel()$/;" f class:CHttptImpl +CanUseOmnicompletion vim_tool/.vim/autoload/omni/cpp/maycomplete.vim /^function! s:CanUseOmnicompletion()$/;" f +Cancel net/httptimpl.cpp /^std_method_impl CHttptImpl::Cancel()$/;" f class:CHttptImpl CellInfo access/sqlite3.c /^struct CellInfo {$/;" s file: CellInfo access/sqlite3.c /^typedef struct CellInfo CellInfo;$/;" t typeref:struct:CellInfo file: CellInfo logs/sqlite3.c /^struct CellInfo {$/;" s file: CellInfo logs/sqlite3.c /^typedef struct CellInfo CellInfo;$/;" t typeref:struct:CellInfo file: CenterWindow uibase/uilib/core/uibase.cpp /^void CWindowWnd::CenterWindow()$/;" f class:DuiLib::CWindowWnd +Cffunc vim_tool/.vim/plugin/devc.vim /^function s:Cffunc(cfname) abort$/;" f +Cgdbfunc vim_tool/.vim/plugin/devc.vim /^function s:Cgdbfunc(gdbname) abort$/;" f +Cgitfunc vim_tool/.vim/plugin/devc.vim /^function s:Cgitfunc(gitname) abort$/;" f ChannelId extensions/include/net/issh.h /^typedef long ChannelId;$/;" t CharArrayPtr include/utilex/safeptr.hpp 131;" d CharFromPos uibase/uilib/control/uirichedit.cpp /^int CRichEditUI::CharFromPos(CDuiPoint pt) const$/;" f class:DuiLib::CRichEditUI @@ -1217,6 +864,7 @@ ChunkPtr polipo/object.h /^} ChunkRec, *ChunkPtr;$/;" t typeref:struct:_Chunk ChunkRec polipo/object.h /^} ChunkRec, *ChunkPtr;$/;" t typeref:struct:_Chunk CircularBufferPtr polipo/tunnel.h /^} CircularBufferRec, *CircularBufferPtr;$/;" t typeref:struct:_CircularBuffer CircularBufferRec polipo/tunnel.h /^} CircularBufferRec, *CircularBufferPtr;$/;" t typeref:struct:_CircularBuffer +CleanUpHistory vim_tool/.vim/plugin/winfileexplorer.vim /^function! CleanUpHistory()$/;" f Cleanup access/sqlite3.c /^static void Cleanup(Vdbe *p){$/;" f file: Cleanup logs/sqlite3.c /^static void Cleanup(Vdbe *p){$/;" f file: Clear container/mainrun.cpp /^std_method_impl CMainRun::Clear()$/;" f class:CMainRun @@ -1244,6 +892,7 @@ CloseIo asynio/udpsocketimpl.cpp /^std_method_impl CUdpSocketImpl::CUdpSocketImp CloseSock asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::CloseSock()$/;" f class:CTcpListenSocketImpl CloseSock asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::CloseSock()$/;" f class:CTcpSocketImpl CloseSock asynio/udpsocketimpl.cpp /^std_method_impl CUdpSocketImpl::CloseSock()$/;" f class:CUdpSocketImpl +CloseWindowsManager vim_tool/.vim/plugin/winmanager.vim /^function! CloseWindowsManager()$/;" f ClsId container/stdafx.h /^ CLSID ClsId;$/;" m class:Com_Plugin ClsIdTable container/stdafx.h /^typedef std::map > ClsIdTable;$/;" t ClsIdTableBooliterator container/stdafx.h /^typedef std::pair ClsIdTableBooliterator;$/;" t @@ -1264,7 +913,6 @@ Column logs/sqlite3.c /^typedef struct Column Column;$/;" t typeref:struct:Colum ComClassObject access/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v ComClassObject asynio/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v ComClassObject container/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v -ComClassObject http/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v ComClassObject logs/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v ComClassObject mainview/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v ComClassObject mempool/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY ComClassObject[] =$/;" v @@ -1282,6 +930,12 @@ Com_Plugin container/stdafx.h /^class Com_Plugin $/;" c Commit access/statement.cpp /^std_method_type_impl(int) CStatementImpl::Commit()$/;" f class:CStatementImpl Compare uibase/uilib/utils/utils.cpp /^ int CDuiString::Compare(LPCTSTR lpsz) const $/;" f class:DuiLib::CDuiString CompareNoCase uibase/uilib/utils/utils.cpp /^ int CDuiString::CompareNoCase(LPCTSTR lpsz) const $/;" f class:DuiLib::CDuiString +CompileCFile vim_tool/.vim/plugin/devfunckey.vim /^func! CompileCFile()$/;" f +CompileCPPFile vim_tool/.vim/plugin/devfunckey.vim /^func! CompileCPPFile()$/;" f +CompileGo vim_tool/.vim/plugin/devfunckey.vim /^func! CompileGo()$/;" f +CompileJava vim_tool/.vim/plugin/devfunckey.vim /^func! CompileJava()$/;" f +CompileProgram vim_tool/.vim/plugin/devfunckey.vim /^func! CompileProgram()$/;" f +CompilePython vim_tool/.vim/plugin/devfunckey.vim /^func! CompilePython()$/;" f ComponentPath container/mainrun.cpp /^std_method_type_impl(basic_tstring) CMainRun::ComponentPath(LPCSTR ComponentName)$/;" f class:CMainRun ComponentPlugin container/stdafx.h /^typedef map ComponentPlugin;$/;" t ComponentPluginIterator container/stdafx.h /^typedef map::iterator ComponentPluginIterator;$/;" t @@ -1335,6 +989,8 @@ CppSQLite3Table logs/CppSQLite3.cpp /^CppSQLite3Table::CppSQLite3Table()$/;" f c CppSQLite3Table logs/CppSQLite3.cpp /^CppSQLite3Table::CppSQLite3Table(char** paszResults, int nRows, int nCols)$/;" f class:CppSQLite3Table CppSQLite3Table logs/CppSQLite3.cpp /^CppSQLite3Table::CppSQLite3Table(const CppSQLite3Table& rTable)$/;" f class:CppSQLite3Table CppSQLite3Table logs/CppSQLite3.h /^class CppSQLite3Table$/;" c +Cppclsfunc vim_tool/.vim/plugin/devc.vim /^function s:Cppclsfunc(clsname) abort$/;" f +Cppimplfunc vim_tool/.vim/plugin/devc.vim /^function s:Cppimplfunc(clsimpname) abort$/;" f Create uibase/uilib/core/uibase.cpp /^HWND CWindowWnd::Create(HWND hwndParent, LPCTSTR pstrName, DWORD dwStyle, DWORD dwExStyle, const RECT rc, HMENU hMenu)$/;" f class:DuiLib::CWindowWnd Create uibase/uilib/core/uibase.cpp /^HWND CWindowWnd::Create(HWND hwndParent, LPCTSTR pstrName, DWORD dwStyle, DWORD dwExStyle, int x, int y, int cx, int cy, HMENU hMenu)$/;" f class:DuiLib::CWindowWnd Create uibase/uilib/core/uidlgbuilder.cpp /^CControlUI* CDlgBuilder::Create(IDlgBuilderCB* pCallback, CPaintManagerUI* pManager, CControlUI* pParent)$/;" f class:DuiLib::CDlgBuilder @@ -1343,15 +999,13 @@ Create uibase/uilib/utils/wndshadow.cpp /^void CWndShadow::Create(HWND hParentWn CreateARGB32Bitmap uibase/uilib/core/uirender.cpp /^HBITMAP CRenderEngine::CreateARGB32Bitmap(HDC hDC, int cx, int cy, COLORREF** pBits)$/;" f class:DuiLib::CRenderEngine CreateAsynIoOperation asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateAsynIoOperation(IBase **ppOperation)$/;" f class:CAsynFrameImpl CreateCChannel include/comutiliy/cchannel.hpp /^ std_method_impl CreateCChannel(IBase *pRot) {$/;" f class:CChannel -CreateContainer include/dlcom/objectrun.hpp /^ int CreateContainer(const basic_tchar* path,UINT len) {$/;" f class:CContainer +CreateContainer include/dlcom/objectrun.hpp /^ HRESULT CreateContainer(const basic_tchar* path,UINT len) {$/;" f class:CContainer CreateControl uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::CreateControl(UIType type, IBase **pControl)$/;" f class:CUiBaseImpl CreateControl uibase/uilib/utils/winimplbase.cpp /^CControlUI* WindowImplBase::CreateControl(LPCTSTR pstrClass)$/;" f class:DuiLib::WindowImplBase CreateDuiWindow uibase/uilib/core/uibase.cpp /^HWND CWindowWnd::CreateDuiWindow( HWND hwndParent, LPCTSTR pstrWindowName,DWORD dwStyle \/*=0*\/, DWORD dwExStyle \/*=0*\/ )$/;" f class:DuiLib::CWindowWnd CreateField access/tableinfo.cpp /^std_method_impl CXTableInfo::CreateField(IFieldInfo** pField)$/;" f class:CXTableInfo CreateFile asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateFile(IBase** pFile)$/;" f class:CAsynFrameImpl CreateHost uibase/uilib/control/uirichedit.cpp /^HRESULT CreateHost(CRichEditUI *re, const CREATESTRUCT *pcs, CTxtWinHost **pptec)$/;" f namespace:DuiLib -CreateHttp_s http/httpimpl.cpp /^std_method_impl CHttpImpl::CreateHttp_s(IBase **pBase)$/;" f class:CHttpImpl -CreateHttp_t http/httpimpl.cpp /^std_method_impl CHttpImpl::CreateHttp_t(IBase **pBase)$/;" f class:CHttpImpl CreateInstance access/fieldinfo.cpp /^HRESULT CXFieldInfo::CreateInstance(IFieldInfo** ppFieldInfo)$/;" f class:CXFieldInfo CreateInstance access/recordset.cpp /^HRESULT CRecordSet::CreateInstance(sqlite3_stmt* pStmt, IRecordSet** ppRecordSet)$/;" f class:CRecordSet CreateInstance access/tableinfo.cpp /^HRESULT CXTableInfo::CreateInstance(LPCSTR lpszName, ITableInfo** ppTableInfo)$/;" f class:CXTableInfo @@ -1363,9 +1017,9 @@ CreateInstanceFunc dispatch/src/dispatch.cc /^ void CreateInstanceFunc(const CreateMessage container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::CreateMessage(IBase** pMsg)$/;" f class:CComRunningObjectTableImpl CreateNode msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::CreateNode(NODE_CLASS cls, IBase** pBase)$/;" f class:CMsgBusImpl CreateObject dispatch/src/dispatch.cc /^ void CreateObject(const FunctionCallbackInfo& args) {$/;" f namespace:app -CreatePlugin container/mainrun.cpp /^std_method_impl CMainRun::CreatePlugin(REFCLSID iid)$/;" f class:CMainRun +CreatePlugin container/mainrun.cpp /^std_method_impl CMainRun::CreatePlugin(REFCLSID iid, UINT index)$/;" f class:CMainRun CreateProtocol net/netimpl.cpp /^std_method_impl CNetImpl::CreateProtocol(Net_Protocol np, IBase** pBase)$/;" f class:CNetImpl -CreateRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::CreateRotPlugin(REFCLSID iid, IBase **ppunk)$/;" f class:CMainRun +CreateRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::CreateRotPlugin(REFCLSID iid, IBase **ppunk, UINT index)$/;" f class:CMainRun CreateSChannel include/comutiliy/schannel.hpp /^ std_method_impl CreateSChannel(IBase *pRot) {$/;" f class:SChannel CreateSock asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::CreateSock()$/;" f class:CTcpListenSocketImpl CreateSock asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::CreateSock()$/;" f class:CTcpSocketImpl @@ -1377,9 +1031,9 @@ CreateTaskThread logs/logsimpl.cpp /^std_method_impl CLogsImpl::CreateTaskThread CreateTcpListenSocket asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateTcpListenSocket(IBase** pAsynTcpListenSocket)$/;" f class:CAsynFrameImpl CreateTcpSocket asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateTcpSocket(IBase** pAsynTcpSocket)$/;" f class:CAsynFrameImpl CreateTimer asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateTimer(IBase** pTimer)$/;" f class:CAsynFrameImpl -CreateTimer include/comutiliy/ctimer.hpp /^ std_method_impl CreateTimer(IBase *pRot) {$/;" f class:CChannel CreateUdpSocket asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::CreateUdpSocket(IBase** pAsynUdpSocket)$/;" f class:CAsynFrameImpl CreateUiWindow uibase/uiwindowimpl.cpp /^std_method_type_impl(void*) CUiWindowsImpl::CreateUiWindow(void* hParentHwnd)$/;" f class:CUiWindowsImpl +Cstructfunc vim_tool/.vim/plugin/devc.vim /^function s:Cstructfunc(clsname) abort$/;" f Cte access/sqlite3.c /^ struct Cte { \/* For each CTE in the WITH clause.... *\/$/;" s struct:With file: Cte logs/sqlite3.c /^ struct Cte { \/* For each CTE in the WITH clause.... *\/$/;" s struct:With file: Cut uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::Cut()$/;" f class:DuiLib::CRichEditUI @@ -1397,13 +1051,11 @@ DCOORD access/sqlite3.c 141800;" d file: DCOORD access/sqlite3.c 141802;" d file: DCOORD logs/sqlite3.c 141800;" d file: DCOORD logs/sqlite3.c 141802;" d file: -DEC CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 544;" d file: -DEC CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 529;" d file: DEFAULT_ARENA_BITMAPS polipo/chunk.c 249;" d file: -DEFAULT_SCROLLBAR_SIZE uibase/uilib/control/uiscrollbar.h /^ DEFAULT_SCROLLBAR_SIZE = 16,$/;" e enum:DuiLib::CScrollBarUI::__anon89 -DEFAULT_TIMERID uibase/uilib/control/uiedit.cpp /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CEditWnd::__anon86 file: -DEFAULT_TIMERID uibase/uilib/control/uirichedit.h /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CRichEditUI::__anon88 -DEFAULT_TIMERID uibase/uilib/control/uiscrollbar.h /^ DEFAULT_TIMERID = 10,$/;" e enum:DuiLib::CScrollBarUI::__anon89 +DEFAULT_SCROLLBAR_SIZE uibase/uilib/control/uiscrollbar.h /^ DEFAULT_SCROLLBAR_SIZE = 16,$/;" e enum:DuiLib::CScrollBarUI::__anon90 +DEFAULT_TIMERID uibase/uilib/control/uiedit.cpp /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CEditWnd::__anon89 file: +DEFAULT_TIMERID uibase/uilib/control/uirichedit.h /^ DEFAULT_TIMERID = 20,$/;" e enum:DuiLib::CRichEditUI::__anon86 +DEFAULT_TIMERID uibase/uilib/control/uiscrollbar.h /^ DEFAULT_TIMERID = 10,$/;" e enum:DuiLib::CScrollBarUI::__anon90 DEFINES polipo/Makefile /^DEFINES = $(FILE_DEFINES) $(PLATFORM_DEFINES)$/;" m DEFINE_FFS polipo/chunk.c 226;" d file: DGRAM_READ_ERROR 3rd/include/iodgram.hpp 6;" d @@ -1417,45 +1069,45 @@ DIRECT_MODE logs/sqlite3.c 45339;" d file: DIRENT_INCLUDED polipo/dirent_compat.h 2;" d DISK_CACHE_ROOT polipo/Makefile /^DISK_CACHE_ROOT = \/var\/cache\/polipo$/;" m DISK_CACHE_ROOT polipo/diskcache.c 60;" d file: -DLL_PROCESS_ATTACH compat/darwinossysdef.h 262;" d -DLL_PROCESS_ATTACH compat/posixossysdef.h 255;" d -DLL_PROCESS_DETACH compat/darwinossysdef.h 265;" d -DLL_PROCESS_DETACH compat/posixossysdef.h 258;" d -DLL_THREAD_ATTACH compat/darwinossysdef.h 263;" d -DLL_THREAD_ATTACH compat/posixossysdef.h 256;" d -DLL_THREAD_DETACH compat/darwinossysdef.h 264;" d -DLL_THREAD_DETACH compat/posixossysdef.h 257;" d +DLL_PROCESS_ATTACH crt/darwinossysdef.h 262;" d +DLL_PROCESS_ATTACH crt/posixossysdef.h 255;" d +DLL_PROCESS_DETACH crt/darwinossysdef.h 265;" d +DLL_PROCESS_DETACH crt/posixossysdef.h 258;" d +DLL_THREAD_ATTACH crt/darwinossysdef.h 263;" d +DLL_THREAD_ATTACH crt/posixossysdef.h 256;" d +DLL_THREAD_DETACH crt/darwinossysdef.h 264;" d +DLL_THREAD_DETACH crt/posixossysdef.h 257;" d DNS_A polipo/dns.h 26;" d -DNS_CLASS_IN net/protocol/dns.h 28;" d +DNS_CLASS_IN net/protocol/dns.h 34;" d DNS_CNAME polipo/dns.h 27;" d -DNS_NAME_MAXLEN net/protocol/dns.h 30;" d -DNS_PORT net/protocol/dns.h 11;" d +DNS_NAME_MAXLEN net/protocol/dns.h 36;" d +DNS_PORT net/protocol/dns.h 17;" d DNS_PROC_RES_ERROR extensions/include/net/idns.h 5;" d DNS_PROC_RES_NOERROR extensions/include/net/idns.h 4;" d -DNS_QUERY net/protocol/dns.h 13;" d -DNS_RESPONSE net/protocol/dns.h 14;" d -DNS_TYPE_A net/protocol/dns.h 16;" d -DNS_TYPE_AAAA net/protocol/dns.h 24;" d -DNS_TYPE_ANY net/protocol/dns.h 26;" d -DNS_TYPE_AXFR net/protocol/dns.h 25;" d -DNS_TYPE_CNAME net/protocol/dns.h 18;" d -DNS_TYPE_HINFO net/protocol/dns.h 22;" d -DNS_TYPE_MX net/protocol/dns.h 23;" d -DNS_TYPE_NS net/protocol/dns.h 17;" d -DNS_TYPE_PTR net/protocol/dns.h 21;" d -DNS_TYPE_SOA net/protocol/dns.h 19;" d -DNS_TYPE_WKS net/protocol/dns.h 20;" d +DNS_QUERY net/protocol/dns.h 19;" d +DNS_RESPONSE net/protocol/dns.h 20;" d +DNS_TYPE_A net/protocol/dns.h 22;" d +DNS_TYPE_AAAA net/protocol/dns.h 30;" d +DNS_TYPE_ANY net/protocol/dns.h 32;" d +DNS_TYPE_AXFR net/protocol/dns.h 31;" d +DNS_TYPE_CNAME net/protocol/dns.h 24;" d +DNS_TYPE_HINFO net/protocol/dns.h 28;" d +DNS_TYPE_MX net/protocol/dns.h 29;" d +DNS_TYPE_NS net/protocol/dns.h 23;" d +DNS_TYPE_PTR net/protocol/dns.h 27;" d +DNS_TYPE_SOA net/protocol/dns.h 25;" d +DNS_TYPE_WKS net/protocol/dns.h 26;" d DOCID_CMP access/sqlite3.c 126399;" d file: DOCID_CMP logs/sqlite3.c 126399;" d file: DONT_DELETE_MSG logs/CppSQLite3.cpp /^static const bool DONT_DELETE_MSG=false;$/;" v file: -DONT_GRIPE compat/compat_sockinet.h 13;" d +DONT_GRIPE crt/crt_sockinet.h 13;" d DOTLOCK_SUFFIX access/sqlite3.c 25606;" d file: DOTLOCK_SUFFIX logs/sqlite3.c 25606;" d file: -DOUBLE compat/darwinossysdef.h /^typedef double DOUBLE;$/;" t -DOUBLE compat/posixossysdef.h /^typedef double DOUBLE;$/;" t +DOUBLE crt/darwinossysdef.h /^typedef double DOUBLE;$/;" t +DOUBLE crt/posixossysdef.h /^typedef double DOUBLE;$/;" t DO_BACKTRACE polipo/log.h 70;" d DO_BACKTRACE polipo/log.h 79;" d -DO_GRIPE compat/compat_sockinet.h 14;" d +DO_GRIPE crt/crt_sockinet.h 14;" d DO_HTONL polipo/dns.c 1382;" d file: DO_HTONL polipo/dns.c 1396;" d file: DO_HTONS polipo/dns.c 1381;" d file: @@ -1592,10 +1244,11 @@ DWM_BLURBEHIND uibase/uilib/dwm.hpp /^} DWM_BLURBEHIND;$/;" t typeref:struct:DWM DWM_EC_DISABLECOMPOSITION uibase/uilib/dwm.hpp 65;" d DWM_EC_ENABLECOMPOSITION uibase/uilib/dwm.hpp 66;" d DWM_MARGINS uibase/uilib/dwm.hpp /^} DWM_MARGINS, *PDWM_MARGINS;$/;" t typeref:struct:tagDWL_MARGINS -DWORD compat/darwinossysdef.h /^typedef unsigned long DWORD;$/;" t -DWORD compat/posixossysdef.h /^typedef unsigned long DWORD;$/;" t +DWORD crt/darwinossysdef.h /^typedef unsigned long DWORD;$/;" t +DWORD crt/posixossysdef.h /^typedef unsigned long DWORD;$/;" t DXtoHimetricX uibase/uilib/control/uirichedit.cpp /^LONG DXtoHimetricX(LONG dx, LONG xPerInch)$/;" f namespace:DuiLib DYNAMIC_NAME_LEN include/dlcom/cominc.h 4;" d +DYN_COMPOENT include/dlcom/icombase.h 102;" d DYtoHimetricY uibase/uilib/control/uirichedit.cpp /^LONG DYtoHimetricY(LONG dy, LONG yPerInch)$/;" f namespace:DuiLib D_ATOM_REFCOUNT polipo/log.h 36;" d D_CHILD polipo/log.h 44;" d @@ -1612,10 +1265,10 @@ D_SERVER_CONN polipo/log.h 32;" d D_SERVER_OFFSET polipo/log.h 41;" d D_SERVER_REQ polipo/log.h 33;" d Data uibase/uilib/utils/utils.cpp /^ LPVOID Data;$/;" m struct:DuiLib::TITEM file: -Data1 compat/compat_guid.hpp /^ unsigned int Data1;$/;" m struct:_GUID -Data2 compat/compat_guid.hpp /^ unsigned short Data2;$/;" m struct:_GUID -Data3 compat/compat_guid.hpp /^ unsigned short Data3;$/;" m struct:_GUID -Data4 compat/compat_guid.hpp /^ unsigned char Data4[ 8 ];$/;" m struct:_GUID +Data1 crt/crt_guid.hpp /^ unsigned int Data1;$/;" m struct:_GUID +Data2 crt/crt_guid.hpp /^ unsigned short Data2;$/;" m struct:_GUID +Data3 crt/crt_guid.hpp /^ unsigned short Data3;$/;" m struct:_GUID +Data4 crt/crt_guid.hpp /^ unsigned char Data4[ 8 ];$/;" m struct:_GUID DateTime access/sqlite3.c /^struct DateTime {$/;" s file: DateTime access/sqlite3.c /^typedef struct DateTime DateTime;$/;" t typeref:struct:DateTime file: DateTime logs/sqlite3.c /^struct DateTime {$/;" s file: @@ -1640,7 +1293,7 @@ DbSetProperty access/sqlite3.c 10153;" d file: DbSetProperty logs/sqlite3.c 10153;" d file: Deephemeralize access/sqlite3.c 66496;" d file: Deephemeralize logs/sqlite3.c 66496;" d file: -DefineDllCanUnloadNow include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllCanUnloadNow)(void);$/;" t +DefineDllCanUnloadNow include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllCanUnloadNow)(void);$/;" t DefineDllGetAt include/dlcom/comfunc.hpp /^typedef CLSID(OS_STDCALL *DefineDllGetAt)(LONG nIndex);$/;" t DefineDllGetClassObject include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllGetClassObject)(REFCLSID rclsid, REFIID riid, LPVOID* ppv);$/;" t DefineDllGetCount include/dlcom/comfunc.hpp /^typedef LONG(OS_STDCALL *DefineDllGetCount)();$/;" t @@ -1651,9 +1304,12 @@ DefineDllStopServer include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *Defi DefineDllUnregisterServer include/dlcom/comfunc.hpp /^typedef HRESULT(OS_STDCALL *DefineDllUnregisterServer)(void);$/;" t Deflate uibase/uilib/utils/utils.cpp /^ void CDuiRect::Deflate(int cx, int cy)$/;" f class:DuiLib::CDuiRect Del uibase/uimessageloopimpl.cpp /^std_method_impl CUiMessageloopImpl::Del(IUIWindow* pBase)$/;" f class:CUiMessageloopImpl +DelObject container/mainrun.cpp /^std_method_impl CMainRun::DelObject(REFCLSID clsid, LPCSTR progId, IBase* pBase, UINT Id, LPCSTR Component, UINT type)$/;" f class:CMainRun Delete uibase/uilib/core/uicontrol.cpp /^ void CControlUI::Delete()$/;" f class:DuiLib::CControlUI +DeleteFile vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:DeleteFile() range$/;" f DeleteGif uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::DeleteGif()$/;" f class:DuiLib::CGifAnimUI DestoryInstanceFunc dispatch/src/dispatch.cc /^ void DestoryInstanceFunc(const FunctionCallbackInfo& args) {$/;" f namespace:app +DestroyAllRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::DestroyAllRotPlugin()$/;" f class:CMainRun DestroyRotPlugin container/mainrun.cpp /^std_method_impl CMainRun::DestroyRotPlugin(REFCLSID iid)$/;" f class:CMainRun DestroyUiWindow uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::DestroyUiWindow()$/;" f class:CUiWindowsImpl Detach include/comutiliy/serialize.hpp /^ std_method_impl Detach()$/;" f class:Serialize @@ -1669,6 +1325,9 @@ DiskCacheEntryRec polipo/diskcache.h /^} *DiskCacheEntryPtr, DiskCacheEntryRec;$ DiskObjectPtr polipo/diskcache.h /^} DiskObjectRec, *DiskObjectPtr;$/;" t typeref:struct:_DiskObject DiskObjectRec polipo/diskcache.h /^} DiskObjectRec, *DiskObjectPtr;$/;" t typeref:struct:_DiskObject Dispatch msgbus/broker.cpp /^std_method_impl CBrokerImpl::Dispatch(unsigned int sec)$/;" f class:CBrokerImpl +DisplayError vim_tool/.vim/plugin/wintagexplorer.vim /^function! DisplayError()$/;" f +DisplayIncludeTree vim_tool/.vim/autoload/omni/cpp/includes.vim /^function! s:DisplayIncludeTree(szFilePath, indent, ...)$/;" f +DisplayTagsFile vim_tool/.vim/plugin/wintagexplorer.vim /^function! DisplayTagsFile()$/;" f DistinctCtx access/sqlite3.c /^struct DistinctCtx {$/;" s file: DistinctCtx access/sqlite3.c /^typedef struct DistinctCtx DistinctCtx;$/;" t typeref:struct:DistinctCtx file: DistinctCtx logs/sqlite3.c /^struct DistinctCtx {$/;" s file: @@ -1676,7 +1335,6 @@ DistinctCtx logs/sqlite3.c /^typedef struct DistinctCtx DistinctCtx;$/;" t typer DllCanUnloadNow access/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f DllCanUnloadNow asynio/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f DllCanUnloadNow container/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f -DllCanUnloadNow http/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f DllCanUnloadNow include/dlcom/loadcom.hpp /^ DefineDllCanUnloadNow DllCanUnloadNow;$/;" m class:CComLoader DllCanUnloadNow logs/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f DllCanUnloadNow mainview/dllmain.cpp /^std_com_export DllCanUnloadNow(void)$/;" f @@ -1693,7 +1351,6 @@ DllGetAtFuncName include/dlcom/comfunc.hpp 12;" d DllGetClassObject access/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f DllGetClassObject asynio/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f DllGetClassObject container/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f -DllGetClassObject http/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f DllGetClassObject include/dlcom/loadcom.hpp /^ DefineDllGetClassObject DllGetClassObject;$/;" m class:CComLoader DllGetClassObject logs/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f DllGetClassObject mainview/dllmain.cpp /^std_com_export DllGetClassObject(REFCLSID rclsid, REFIID riid, void** ppv)$/;" f @@ -1711,7 +1368,6 @@ DllMain access/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f DllMain asynio/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f DllMain container/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f DllMain dispatch/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f -DllMain http/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f DllMain license/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f DllMain logs/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f DllMain mainview/dllmain.cpp /^BOOL APIENTRY DllMain( HMODULE hModule,$/;" f @@ -1727,7 +1383,6 @@ DllProgIDFromCLSIDFuncName include/dlcom/comfunc.hpp 18;" d DllRegisterServer access/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f DllRegisterServer asynio/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f DllRegisterServer container/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f -DllRegisterServer http/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f DllRegisterServer include/dlcom/loadcom.hpp /^ DefineDllRegisterServer DllRegisterServer;$/;" m class:CComLoader DllRegisterServer logs/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f DllRegisterServer mainview/dllmain.cpp /^std_com_export DllRegisterServer(void)$/;" f @@ -1742,7 +1397,6 @@ DllRegisterServerFuncName include/dlcom/comfunc.hpp 24;" d DllStartServer access/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f DllStartServer asynio/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f DllStartServer container/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f -DllStartServer http/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f DllStartServer include/dlcom/loadcom.hpp /^ DefineDllStartServer DllStartServer;$/;" m class:CComLoader DllStartServer logs/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f DllStartServer mainview/dllmain.cpp /^std_com_export DllStartServer(void)$/;" f @@ -1757,7 +1411,6 @@ DllStartServerFuncName include/dlcom/comfunc.hpp 30;" d DllStopServer access/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f DllStopServer asynio/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f DllStopServer container/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f -DllStopServer http/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f DllStopServer include/dlcom/loadcom.hpp /^ DefineDllStopServer DllStopServer;$/;" m class:CComLoader DllStopServer logs/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f DllStopServer mainview/dllmain.cpp /^std_com_export DllStopServer(void)$/;" f @@ -1772,7 +1425,6 @@ DllStopServerFuncName include/dlcom/comfunc.hpp 33;" d DllUnregisterServer access/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f DllUnregisterServer asynio/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f DllUnregisterServer container/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f -DllUnregisterServer http/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f DllUnregisterServer include/dlcom/loadcom.hpp /^ DefineDllUnregisterServer DllUnregisterServer;$/;" m class:CComLoader DllUnregisterServer logs/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f DllUnregisterServer mainview/dllmain.cpp /^std_com_export DllUnregisterServer(void)$/;" f @@ -1832,6 +1484,7 @@ DoPostPaint uibase/uilib/layout/uiverticallayout.cpp /^ void CVerticalLayoutUI:: DoSetCursor uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::DoSetCursor(RECT *prc, POINT *pt)$/;" f class:DuiLib::CTxtWinHost DomainPtr polipo/forbidden.c /^} DomainRec, *DomainPtr;$/;" t typeref:struct:_Domain file: DomainRec polipo/forbidden.c /^} DomainRec, *DomainPtr;$/;" t typeref:struct:_Domain file: +DoubleClick vim_tool/.vim/plugin/winfileexplorer.vim /^function s:DoubleClick()$/;" f DrawColor uibase/uilib/core/uirender.cpp /^void CRenderEngine::DrawColor(HDC hDC, const RECT& rc, DWORD color)$/;" f class:DuiLib::CRenderEngine DrawFrame uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::DrawFrame(HDC hDC)$/;" f class:DuiLib::CGifAnimUI DrawGradient uibase/uilib/core/uirender.cpp /^void CRenderEngine::DrawGradient(HDC hDC, const RECT& rc, DWORD dwFirst, DWORD dwSecond, bool bVertical, int nSteps)$/;" f class:DuiLib::CRenderEngine @@ -1947,11 +1600,11 @@ EINPROGRESS polipo/mingw.h 86;" d EINPROGRESS polipo/mingw.h 98;" d EISCONN polipo/mingw.h 89;" d EISCONN polipo/mingw.h 99;" d -ELEM_AT http/http/http_parser.cpp 47;" d file: +ELEM_AT net/http_protocol/http_parser.cpp 47;" d file: EMPTY_BITMAP polipo/chunk.c 284;" d file: ENC access/sqlite3.c 10337;" d file: ENC logs/sqlite3.c 10337;" d file: -END_STDCOM_MAP include/dlcom/comfunc.hpp 101;" d +END_STDCOM_MAP include/dlcom/comfunc.hpp 100;" d ENOBUFS polipo/mingw.h 74;" d ENOBUFS polipo/mingw.h 93;" d ENOTCONN polipo/mingw.h 68;" d @@ -1996,28 +1649,10 @@ EP_VarSelect access/sqlite3.c 11169;" d file: EP_VarSelect logs/sqlite3.c 11169;" d file: EP_xIsSelect access/sqlite3.c 11175;" d file: EP_xIsSelect logs/sqlite3.c 11175;" d file: -EQUALS Makefile /^EQUALS = =$/;" m -EQUALS access/Makefile /^EQUALS = =$/;" m -EQUALS asynio/Makefile /^EQUALS = =$/;" m -EQUALS base/Makefile /^EQUALS = =$/;" m -EQUALS base_test/Makefile /^EQUALS = =$/;" m -EQUALS container/Makefile /^EQUALS = =$/;" m -EQUALS dispatch/Makefile /^EQUALS = =$/;" m -EQUALS guidgen/Makefile /^EQUALS = =$/;" m -EQUALS http/Makefile /^EQUALS = =$/;" m -EQUALS license/Makefile /^EQUALS = =$/;" m -EQUALS logs/Makefile /^EQUALS = =$/;" m -EQUALS main/Makefile /^EQUALS = =$/;" m -EQUALS mainview/Makefile /^EQUALS = =$/;" m -EQUALS mempool/Makefile /^EQUALS = =$/;" m -EQUALS msgbus/Makefile /^EQUALS = =$/;" m -EQUALS net/Makefile /^EQUALS = =$/;" m -EQUALS render/Makefile /^EQUALS = =$/;" m -EQUALS testmain/Makefile /^EQUALS = =$/;" m EREDIRECTOR polipo/util.h 37;" d -ERRNO base/compat_error.c 11;" d file: -ERRNO base/compat_error.c 16;" d file: -ERRNO base/compat_error.c 6;" d file: +ERRNO stdcrt/compat_error.c 11;" d file: +ERRNO stdcrt/compat_error.c 16;" d file: +ERRNO stdcrt/compat_error.c 6;" d file: ERROR_CODE extensions/include/io/ioperation.h /^typedef ULONG ERROR_CODE;$/;" t ESHUTDOWN polipo/mingw.h 95;" d ESOCKS5_BASE polipo/util.h 53;" d @@ -2041,20 +1676,24 @@ EXPR_REDUCEDSIZE access/sqlite3.c 11210;" d file: EXPR_REDUCEDSIZE logs/sqlite3.c 11210;" d file: EXPR_TOKENONLYSIZE access/sqlite3.c 11211;" d file: EXPR_TOKENONLYSIZE logs/sqlite3.c 11211;" d file: -EXTERN_C compat/compat_common.hpp 70;" d -EXTERN_C compat/compat_common.hpp 83;" d +EXTERN_C crt/crt_common.hpp 70;" d +EXTERN_C crt/crt_common.hpp 83;" d EXTRA_SIZE access/sqlite3.c 50035;" d file: EXTRA_SIZE logs/sqlite3.c 50035;" d file: -E_FAIL compat/compat_comutil.hpp 73;" d -E_FAIL compat/compat_comutil.hpp 80;" d -E_INVALIDARG compat/compat_comutil.hpp 71;" d -E_INVALIDARG compat/compat_comutil.hpp 78;" d -E_NOINTERFACE compat/compat_comutil.hpp 72;" d -E_NOINTERFACE compat/compat_comutil.hpp 79;" d -E_NOTIMPL compat/compat_comutil.hpp 69;" d -E_NOTIMPL compat/compat_comutil.hpp 76;" d -E_OUTOFMEMORY compat/compat_comutil.hpp 70;" d -E_OUTOFMEMORY compat/compat_comutil.hpp 77;" d +E_FAIL crt/crt_comutil.hpp 73;" d +E_FAIL crt/crt_comutil.hpp 80;" d +E_INVALIDARG crt/crt_comutil.hpp 71;" d +E_INVALIDARG crt/crt_comutil.hpp 78;" d +E_NOINTERFACE crt/crt_comutil.hpp 72;" d +E_NOINTERFACE crt/crt_comutil.hpp 79;" d +E_NOTIMPL crt/crt_comutil.hpp 69;" d +E_NOTIMPL crt/crt_comutil.hpp 76;" d +E_OUTOFMEMORY crt/crt_comutil.hpp 70;" d +E_OUTOFMEMORY crt/crt_comutil.hpp 77;" d +EditDir vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:EditDir(...)$/;" f +EditDir vim_tool/.vim/plugin/winmanager.vim /^function! EditDir(event)$/;" f +EditEntry vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:EditEntry(movefirst,editcmd)$/;" f +EditNextVisibleExplorer vim_tool/.vim/plugin/winmanager.vim /^function! EditNextVisibleExplorer(grpn, memn, dir, editcmd)$/;" f Empty uibase/uilib/utils/utils.cpp /^ void CDuiPtrArray::Empty()$/;" f class:DuiLib::CDuiPtrArray Empty uibase/uilib/utils/utils.cpp /^ void CDuiRect::Empty()$/;" f class:DuiLib::CDuiRect Empty uibase/uilib/utils/utils.cpp /^ void CDuiString::Empty() $/;" f class:DuiLib::CDuiString @@ -2077,6 +1716,7 @@ EndRight uibase/uilib/core/uicontainer.cpp /^ void CContainerUI::EndRight()$/;" EnsureVisible uibase/uilib/control/uicombo.cpp /^void CComboWnd::EnsureVisible(int iIndex)$/;" f class:DuiLib::CComboWnd EnsureVisible uibase/uilib/control/uilist.cpp /^void CListUI::EnsureVisible(int iIndex)$/;" f class:DuiLib::CListUI Equals uibase/uilib/utils/uidelegate.cpp /^bool CDelegateBase::Equals(const CDelegateBase& rhs) const $/;" f class:DuiLib::CDelegateBase +EscapeFilename vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:EscapeFilename(name)$/;" f EstimateSize uibase/uilib/control/uibutton.cpp /^ SIZE CButtonUI::EstimateSize(SIZE szAvailable)$/;" f class:DuiLib::CButtonUI EstimateSize uibase/uilib/control/uicombo.cpp /^SIZE CComboUI::EstimateSize(SIZE szAvailable)$/;" f class:DuiLib::CComboUI EstimateSize uibase/uilib/control/uiedit.cpp /^ SIZE CEditUI::EstimateSize(SIZE szAvailable)$/;" f class:DuiLib::CEditUI @@ -2097,7 +1737,7 @@ ExeCommand logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::ExeCommand(L ExeSql logs/database.cpp /^std_method_impl CDatabase::ExeSql(LPCSTR sql)$/;" f class:CDatabase Execute access/statement.cpp /^std_method_type_impl(int) CStatementImpl::Execute(LPCSTR lpszSQL, UINT ulen)$/;" f class:CStatementImpl Exit dispatch/src/loadcontainer.cc /^int CLoadContainer::Exit(_pinstance hinstance, UINT exit)$/;" f class:CLoadContainer -ExitContainer include/dlcom/objectrun.hpp /^ int ExitContainer(_pinstance instance, UINT exit) {$/;" f class:CContainer +ExitContainer include/dlcom/objectrun.hpp /^ HRESULT ExitContainer(_pinstance instance, UINT exit) {$/;" f class:CContainer Exit_Thread include/utilex/semthread.hpp /^ HRESULT Exit_Thread() {$/;" f class:CSemThread Exit_Thread include/utilex/timethread.hpp /^ HRESULT Exit_Thread() {$/;" f class:CTimeThread Expand uibase/uilib/control/uilist.cpp /^bool CListContainerElementUI::Expand(bool bExpand)$/;" f class:DuiLib::CListContainerElementUI @@ -2139,17 +1779,24 @@ ExprSpan access/sqlite3.c /^typedef struct ExprSpan ExprSpan;$/;" t typeref:stru ExprSpan logs/sqlite3.c /^struct ExprSpan {$/;" s file: ExprSpan logs/sqlite3.c /^typedef struct ExprSpan ExprSpan;$/;" t typeref:struct:ExprSpan file: ExtendFrameIntoClientArea uibase/uilib/dwm.hpp /^ BOOL ExtendFrameIntoClientArea(HWND hWnd, CONST DWM_MARGINS& Margins)$/;" f class:CDwm -F base/algorithm/compat_md5.c 3;" d file: +ExtendTagItemToPopupItem vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:ExtendTagItemToPopupItem(tagItem, szTypeName)$/;" f +ExtractFileDate vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFileDate(line)$/;" f +ExtractFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFileName(line)$/;" f +ExtractFileSize vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFileSize(line)$/;" f +ExtractFullFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ExtractFullFileName(line)$/;" f +ExtractScopeFromTypeInfo vim_tool/.vim/autoload/omni/cpp/utils.vim /^function! s:ExtractScopeFromTypeInfo(szTypeInfo)$/;" f +ExtractTypeInfoFromDecl vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:ExtractTypeInfoFromDecl(tokens)$/;" f F polipo/md5.c 73;" d file: +F stdcrt/algorithm/compat_md5.c 3;" d file: FABS access/sqlite3.c 143392;" d file: FABS logs/sqlite3.c 143392;" d file: FADE_ELLAPSE uibase/uilib/control/uibutton.h /^ FADE_ELLAPSE = 30,$/;" e enum:DuiLib::CButtonUI::__anon85 FADE_TIMERID uibase/uilib/control/uibutton.h /^ FADE_TIMERID = 11,$/;" e enum:DuiLib::CButtonUI::__anon85 -FALSE compat/darwinossysdef.h 7;" d -FALSE compat/posixossysdef.h 7;" d +FALSE crt/darwinossysdef.h 7;" d +FALSE crt/posixossysdef.h 7;" d FAST_BITS uibase/uilib/utils/stb_image.c 1435;" d file: -FF base/algorithm/compat_md5.c 8;" d file: FF polipo/md5.c 96;" d file: +FF stdcrt/algorithm/compat_md5.c 8;" d file: FF_AUTO_INCREMENT extensions/include/db/idatabase.h /^ FF_AUTO_INCREMENT = 0x00000080,$/;" e enum:eFIELD_FLAG FF_BINARY extensions/include/db/idatabase.h /^ FF_BINARY = 0x00000040,$/;" e enum:eFIELD_FLAG FF_MULTIPLE_KEY extensions/include/db/idatabase.h /^ FF_MULTIPLE_KEY = 0x00000008,$/;" e enum:eFIELD_FLAG @@ -2168,31 +1815,31 @@ FIELD_NAME_LEN extensions/include/log/ilogdatabase.h 7;" d FIELD_PK_INDEX access/dbimpl.h /^ FIELD_PK_INDEX = 5,$/;" e enum:eFIELD_INDEX FIELD_TYPE extensions/include/db/idatabase.h /^}FIELD_TYPE;$/;" t typeref:enum:eFIELD_TYPE FIELD_TYPE_INDEX access/dbimpl.h /^ FIELD_TYPE_INDEX = 2,$/;" e enum:eFIELD_INDEX -FIELD_TYPE_INT logs/stdafx.h 31;" d +FIELD_TYPE_INT logs/stdafx.h 30;" d FIELD_TYPE_LEN extensions/include/log/ilogdatabase.h 8;" d -FIELD_TYPE_STRING logs/stdafx.h 30;" d -FILED_ID logs/stdafx.h 36;" d -FILED_L_TIME logs/stdafx.h 38;" d -FILED_SQL_LEN logs/stdafx.h 34;" d -FILED_S_TIME logs/stdafx.h 37;" d -FILED_TYPE_PRIMARYKEY logs/stdafx.h 33;" d +FIELD_TYPE_STRING logs/stdafx.h 29;" d +FILED_ID logs/stdafx.h 35;" d +FILED_L_TIME logs/stdafx.h 37;" d +FILED_SQL_LEN logs/stdafx.h 33;" d +FILED_S_TIME logs/stdafx.h 36;" d +FILED_TYPE_PRIMARYKEY logs/stdafx.h 32;" d FILEHANDLEID access/sqlite3.c 39525;" d file: FILEHANDLEID logs/sqlite3.c 39525;" d file: -FILETIME compat/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME -FILETIME compat/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME +FILETIME crt/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME +FILETIME crt/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME FILE_ATTRIBUTE_MASK access/sqlite3.c 31460;" d file: FILE_ATTRIBUTE_MASK logs/sqlite3.c 31460;" d file: FILE_DEFINES polipo/Makefile /^FILE_DEFINES = -DLOCAL_ROOT=\\"$(LOCAL_ROOT)\/\\" \\$/;" m FILE_FLAG_MASK access/sqlite3.c 31456;" d file: FILE_FLAG_MASK logs/sqlite3.c 31456;" d file: -FILE_HANDLE compat/compat_file.h 19;" d -FILE_HANDLE compat/compat_file.h 24;" d -FILE_HANDLE compat/compat_file.h 29;" d -FILE_INVALID compat/compat_file.h 20;" d -FILE_INVALID compat/compat_file.h 25;" d -FILE_INVALID compat/compat_file.h 30;" d -FILE_MAX_PATH base/io/compat_path.c 210;" d file: -FILE_MAX_PATH base/io/compat_path.c 264;" d file: +FILE_HANDLE crt/crt_file.h 19;" d +FILE_HANDLE crt/crt_file.h 24;" d +FILE_HANDLE crt/crt_file.h 29;" d +FILE_INVALID crt/crt_file.h 20;" d +FILE_INVALID crt/crt_file.h 25;" d +FILE_INVALID crt/crt_file.h 30;" d +FILE_MAX_PATH stdcrt/io/compat_path.c 215;" d file: +FILE_MAX_PATH stdcrt/io/compat_path.c 269;" d file: FINDCONTROLPROC uibase/uilib/core/uicontrol.h /^typedef CControlUI* (CALLBACK* FINDCONTROLPROC)(CControlUI*, LPVOID);$/;" t namespace:DuiLib FINDSHORTCUT uibase/uilib/core/uimanager.cpp /^} FINDSHORTCUT;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagFINDSHORTCUT file: FINDTABINFO uibase/uilib/core/uimanager.cpp /^} FINDTABINFO;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagFINDTABINFO file: @@ -2206,15 +1853,15 @@ FLAG_SIGNED access/sqlite3.c 19970;" d file: FLAG_SIGNED logs/sqlite3.c 19970;" d file: FLAG_STRING access/sqlite3.c 19972;" d file: FLAG_STRING logs/sqlite3.c 19972;" d file: -FLOAT compat/darwinossysdef.h /^typedef float FLOAT;$/;" t -FLOAT compat/posixossysdef.h /^typedef float FLOAT;$/;" t -FMTID compat/compat_guid.hpp /^typedef GUID FMTID;$/;" t -FMTID_NULL compat/compat_guid.hpp 51;" d -FMT_I64D compat/posixosdef.h 20;" d -FMT_I64D compat/winosdef.h 12;" d -FMT_I64U compat/posixosdef.h 23;" d -FMT_I64U compat/posixosdef.h 25;" d -FMT_I64U compat/winosdef.h 13;" d +FLOAT crt/darwinossysdef.h /^typedef float FLOAT;$/;" t +FLOAT crt/posixossysdef.h /^typedef float FLOAT;$/;" t +FMTID crt/crt_guid.hpp /^typedef GUID FMTID;$/;" t +FMTID_NULL crt/crt_guid.hpp 51;" d +FMT_I64D crt/posixosdef.h 20;" d +FMT_I64D crt/winosdef.h 12;" d +FMT_I64U crt/posixosdef.h 23;" d +FMT_I64U crt/posixosdef.h 25;" d +FMT_I64U crt/winosdef.h 13;" d FNDWMENABLECOMPOSITION uibase/uilib/dwm.hpp /^ typedef HRESULT(WINAPI *FNDWMENABLECOMPOSITION)(UINT);$/;" t class:CDwm FNDWMEXTENDFRAMEINTOCLIENTAREA uibase/uilib/dwm.hpp /^ typedef HRESULT(WINAPI *FNDWMEXTENDFRAMEINTOCLIENTAREA)(HWND, CONST DWM_MARGINS*);$/;" t class:CDwm FNDWMSETWINDOWATTRIBUTE uibase/uilib/dwm.hpp /^ typedef HRESULT(WINAPI *FNDWMSETWINDOWATTRIBUTE)(HWND, DWORD, LPCVOID pvAttribute, DWORD);$/;" t class:CDwm @@ -2225,19 +1872,19 @@ FNSETPROCESSDPIAWARE uibase/uilib/dpi.hpp /^ typedef BOOL(WINAPI *FNSETPROCESSDP FNSETPROCESSDPIAWARENESS uibase/uilib/dpi.hpp /^ typedef HRESULT(WINAPI *FNSETPROCESSDPIAWARENESS)(PROCESS_DPI_AWARENESS);$/;" t class:CDPI FOREGUARD access/sqlite3.c 16344;" d file: FOREGUARD logs/sqlite3.c 16344;" d file: -FTP_APPEND net/protocol/ftp.h 63;" d +FTP_APPEND net/protocol/ftp.h 68;" d FTP_COMMAND_MAP net/protocol/ftp.h /^ FTP_COMMAND_MAP(X)$/;" e enum:ftp_command -FTP_COMMAND_MAP net/protocol/ftp.h 12;" d -FTP_COMMAND_PORT net/protocol/ftp.h 7;" d -FTP_DATA_PORT net/protocol/ftp.h 8;" d -FTP_DOWNLOAD net/protocol/ftp.h 65;" d -FTP_MKDIR net/protocol/ftp.h 61;" d -FTP_RECV_BUFSIZE net/protocol/ftp.h 68;" d -FTP_REMOVE net/protocol/ftp.h 64;" d -FTP_RMDIR net/protocol/ftp.h 62;" d +FTP_COMMAND_MAP net/protocol/ftp.h 17;" d +FTP_COMMAND_PORT net/protocol/ftp.h 12;" d +FTP_DATA_PORT net/protocol/ftp.h 13;" d +FTP_DOWNLOAD net/protocol/ftp.h 70;" d +FTP_MKDIR net/protocol/ftp.h 66;" d +FTP_RECV_BUFSIZE net/protocol/ftp.h 73;" d +FTP_REMOVE net/protocol/ftp.h 69;" d +FTP_RMDIR net/protocol/ftp.h 67;" d FTP_STATUS_MAP net/protocol/ftp.h /^ FTP_STATUS_MAP(XXX)$/;" e enum:ftp_status -FTP_STATUS_MAP net/protocol/ftp.h 43;" d -FTP_UPLOAD net/protocol/ftp.h 66;" d +FTP_STATUS_MAP net/protocol/ftp.h 48;" d +FTP_UPLOAD net/protocol/ftp.h 71;" d FTS polipo/fts_compat.h /^typedef struct _FTS FTS;$/;" t typeref:struct:_FTS FTS3_AUX_SCHEMA access/sqlite3.c 129827;" d file: FTS3_AUX_SCHEMA logs/sqlite3.c 129827;" d file: @@ -2398,14 +2045,14 @@ FUNCTION2 access/sqlite3.c 10514;" d file: FUNCTION2 logs/sqlite3.c 10514;" d file: FUNC_PERFECT_MATCH access/sqlite3.c 88620;" d file: FUNC_PERFECT_MATCH logs/sqlite3.c 88620;" d file: -F_CHUNKED http/http/http_parser.h /^ { F_CHUNKED = 1 << 0$/;" e enum:flags -F_CONNECTION_CLOSE http/http/http_parser.h /^ , F_CONNECTION_CLOSE = 1 << 2$/;" e enum:flags -F_CONNECTION_KEEP_ALIVE http/http/http_parser.h /^ , F_CONNECTION_KEEP_ALIVE = 1 << 1$/;" e enum:flags -F_CONNECTION_UPGRADE http/http/http_parser.h /^ , F_CONNECTION_UPGRADE = 1 << 3$/;" e enum:flags -F_CONTENTLENGTH http/http/http_parser.h /^ , F_CONTENTLENGTH = 1 << 7$/;" e enum:flags -F_SKIPBODY http/http/http_parser.h /^ , F_SKIPBODY = 1 << 6$/;" e enum:flags -F_TRAILING http/http/http_parser.h /^ , F_TRAILING = 1 << 4$/;" e enum:flags -F_UPGRADE http/http/http_parser.h /^ , F_UPGRADE = 1 << 5$/;" e enum:flags +F_CHUNKED net/http_protocol/http_parser.h /^ { F_CHUNKED = 1 << 0$/;" e enum:flags +F_CONNECTION_CLOSE net/http_protocol/http_parser.h /^ , F_CONNECTION_CLOSE = 1 << 2$/;" e enum:flags +F_CONNECTION_KEEP_ALIVE net/http_protocol/http_parser.h /^ , F_CONNECTION_KEEP_ALIVE = 1 << 1$/;" e enum:flags +F_CONNECTION_UPGRADE net/http_protocol/http_parser.h /^ , F_CONNECTION_UPGRADE = 1 << 3$/;" e enum:flags +F_CONTENTLENGTH net/http_protocol/http_parser.h /^ , F_CONTENTLENGTH = 1 << 7$/;" e enum:flags +F_SKIPBODY net/http_protocol/http_parser.h /^ , F_SKIPBODY = 1 << 6$/;" e enum:flags +F_TRAILING net/http_protocol/http_parser.h /^ , F_TRAILING = 1 << 4$/;" e enum:flags +F_UPGRADE net/http_protocol/http_parser.h /^ , F_UPGRADE = 1 << 5$/;" e enum:flags FdEventHandlerPokePtr polipo/event.c /^} FdEventHandlerPokeRec, *FdEventHandlerPokePtr;$/;" t typeref:struct:_FdEventHandlerPoke file: FdEventHandlerPokeRec polipo/event.c /^} FdEventHandlerPokeRec, *FdEventHandlerPokePtr;$/;" t typeref:struct:_FdEventHandlerPoke file: FdEventHandlerPtr polipo/event.h /^} FdEventHandlerRec, *FdEventHandlerPtr;$/;" t typeref:struct:_FdEventHandler @@ -2415,17 +2062,30 @@ FileChunk access/sqlite3.c /^struct FileChunk {$/;" s file: FileChunk access/sqlite3.c /^typedef struct FileChunk FileChunk;$/;" t typeref:struct:FileChunk file: FileChunk logs/sqlite3.c /^struct FileChunk {$/;" s file: FileChunk logs/sqlite3.c /^typedef struct FileChunk FileChunk;$/;" t typeref:struct:FileChunk file: +FileDateCmp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileDateCmp(line1, line2, direction)$/;" f +FileExplorer_IsValid vim_tool/.vim/plugin/winfileexplorer.vim /^function! FileExplorer_IsValid()$/;" f +FileExplorer_Start vim_tool/.vim/plugin/winfileexplorer.vim /^function! FileExplorer_Start()$/;" f +FileExplorer_WrapUp vim_tool/.vim/plugin/winfileexplorer.vim /^function! FileExplorer_WrapUp()$/;" f +FileExplorer_title vim_tool/.vim/plugin/winfileexplorer.vim /^let g:FileExplorer_title = "[File List]"$/;" v FileHandlePtr include/utilex/safeptr.hpp 173;" d -FileIsExist base/io/compat_path.c /^int FileIsExist(const basic_tchar* lpFile)$/;" f +FileIsExist stdcrt/io/compat_path.c /^int FileIsExist(const basic_tchar* lpFile)$/;" f +FileModDate vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileModDate(name)$/;" f +FileNameCmp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileNameCmp(line1, line2, direction)$/;" f FilePoint access/sqlite3.c /^struct FilePoint {$/;" s file: FilePoint access/sqlite3.c /^typedef struct FilePoint FilePoint;$/;" t typeref:struct:FilePoint file: FilePoint logs/sqlite3.c /^struct FilePoint {$/;" s file: FilePoint logs/sqlite3.c /^typedef struct FilePoint FilePoint;$/;" t typeref:struct:FilePoint file: +FileSizeCmp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:FileSizeCmp(line1, line2, direction)$/;" f FileWriter access/sqlite3.c /^struct FileWriter {$/;" s file: FileWriter access/sqlite3.c /^typedef struct FileWriter FileWriter;$/;" t typeref:struct:FileWriter file: FileWriter logs/sqlite3.c /^struct FileWriter {$/;" s file: FileWriter logs/sqlite3.c /^typedef struct FileWriter FileWriter;$/;" t typeref:struct:FileWriter file: FiltPtr include/comutiliy/asynio.h /^typedef _lComPtr FiltPtr;$/;" t +FilterClassMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterClassMembers(tagPopupList, szAccessFilter)$/;" f +FilterClassScopeMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterClassScopeMembers(tagPopupList, szAccessFilter)$/;" f +FilterNamespaceScopeMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterNamespaceScopeMembers(tagPopupList)$/;" f +FilterOverloadedFunctions vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterOverloadedFunctions(tagPopupList)$/;" f +FilterStaticClassMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FilterStaticClassMembers(tagPopupList, szAccessFilter)$/;" f Find uibase/uilib/utils/utils.cpp /^ LPVOID CDuiStringPtrMap::Find(LPCTSTR key, bool optimize) const$/;" f class:DuiLib::CDuiStringPtrMap Find uibase/uilib/utils/utils.cpp /^ int CDuiPtrArray::Find(LPVOID pData) const$/;" f class:DuiLib::CDuiPtrArray Find uibase/uilib/utils/utils.cpp /^ int CDuiString::Find(LPCTSTR pstrSub, int iPos \/*= 0*\/) const$/;" f class:DuiLib::CDuiString @@ -2435,10 +2095,12 @@ FindControl uibase/uilib/core/uicontainer.cpp /^ CControlUI* CContainerUI::FindC FindControl uibase/uilib/core/uicontrol.cpp /^ CControlUI* CControlUI::FindControl(FINDCONTROLPROC Proc, LPVOID pData, UINT uFlags)$/;" f class:DuiLib::CControlUI FindControl uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindControl(LPCTSTR pstrName) const$/;" f class:DuiLib::CPaintManagerUI FindControl uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindControl(POINT pt) const$/;" f class:DuiLib::CPaintManagerUI +FindExplorerInGroup vim_tool/.vim/plugin/winmanager.vim /^function! FindExplorerInGroup(groupn, memn)$/;" f FindFileHandlePtr include/utilex/safeptr.hpp 185;" d FindIndexControl uibase/uicontrolimpl.cpp /^std_method_type_impl(IUIControl*) CUiControlImpl::FindIndexControl(UINT index)$/;" f class:CUiControlImpl FindSelectable uibase/uilib/core/uicontainer.cpp /^ int CContainerUI::FindSelectable(int iIndex, bool bForward \/*= true*\/) const$/;" f class:DuiLib::CContainerUI FindShadowWindow uibase/uilib/utils/wndshadow.cpp /^CWndShadow* CWndShadow::FindShadowWindow(HWND hWnd)$/;" f class:CWndShadow +FindStartPositionOfCompletion vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:FindStartPositionOfCompletion()$/;" f FindSubControl uibase/uilib/core/uicontainer.cpp /^ CControlUI* CContainerUI::FindSubControl(LPCTSTR pstrSubControlName)$/;" f class:DuiLib::CContainerUI FindSubControlByClass uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindSubControlByClass(CControlUI* pParent, LPCTSTR pstrClass, int iIndex)$/;" f class:DuiLib::CPaintManagerUI FindSubControlByName uibase/uilib/core/uimanager.cpp /^CControlUI* CPaintManagerUI::FindSubControlByName(CControlUI* pParent, LPCTSTR pstrName) const$/;" f class:DuiLib::CPaintManagerUI @@ -2448,6 +2110,7 @@ First access/recordset.cpp /^std_method_type_impl(UINT) CRecordSet::First()$/;" Fn uibase/uilib/utils/uidelegate.h /^ typedef bool (*Fn)(void*);$/;" t class:DuiLib::CDelegateStatic Fn uibase/uilib/utils/uidelegate.h /^ typedef bool (T::* Fn)(void*);$/;" t class:DuiLib::CDelegate FnType uibase/uilib/utils/uidelegate.h /^ typedef bool (*FnType)(void*);$/;" t class:DuiLib::CEventSource +FoldTags vim_tool/.vim/plugin/wintagexplorer.vim /^function! FoldTags()$/;" f Format uibase/uilib/utils/utils.cpp /^ int CDuiString::Format(LPCTSTR pstrFormat, ...)$/;" f class:DuiLib::CDuiString Free access/statement.cpp /^std_method_impl CStatementImpl::Free()$/;" f class:CStatementImpl Free container/objectloader.cpp /^std_method_impl CObjectLoader::Free()$/;" f class:CObjectLoader @@ -2537,36 +2200,42 @@ FuncDestructor access/sqlite3.c /^struct FuncDestructor {$/;" s file: FuncDestructor access/sqlite3.c /^typedef struct FuncDestructor FuncDestructor;$/;" t typeref:struct:FuncDestructor file: FuncDestructor logs/sqlite3.c /^struct FuncDestructor {$/;" s file: FuncDestructor logs/sqlite3.c /^typedef struct FuncDestructor FuncDestructor;$/;" t typeref:struct:FuncDestructor file: -G base/algorithm/compat_md5.c 4;" d file: G polipo/md5.c 74;" d file: +G stdcrt/algorithm/compat_md5.c 4;" d file: GETVARINT_INIT access/sqlite3.c 124348;" d file: GETVARINT_INIT logs/sqlite3.c 124348;" d file: GETVARINT_STEP access/sqlite3.c 124345;" d file: GETVARINT_STEP logs/sqlite3.c 124345;" d file: -GG base/algorithm/compat_md5.c 14;" d file: GG polipo/md5.c 101;" d file: +GG stdcrt/algorithm/compat_md5.c 14;" d file: GLOBAL access/sqlite3.c 8578;" d file: GLOBAL access/sqlite3.c 8584;" d file: GLOBAL logs/sqlite3.c 8578;" d file: GLOBAL logs/sqlite3.c 8584;" d file: -GUID compat/compat_guid.hpp /^} GUID;$/;" t typeref:struct:_GUID -GUIDClassName compat/compat_guid.h 15;" d -GUIDFormatString compat/compat_guid.h 12;" d -GUIDFormatWString compat/compat_guid.h 13;" d -GUIDStringLength compat/compat_guid.h 14;" d -GUIDToString base/stdlib/compat_guid.c /^const char* GUIDToString(const GUID* guid, char* lpGuidBuf)$/;" f -GUIDToWString base/stdlib/compat_guid.c /^const wchar_t* GUIDToWString(const GUID* guid, wchar_t* lpGuidBuf)$/;" f -GUID_DEFINED compat/compat_guid.hpp 5;" d +GROUP0 vim_tool/.vim/autoload/acp.vim /^let s:GROUP0 = 0$/;" v +GROUP1 vim_tool/.vim/autoload/acp.vim /^let s:GROUP1 = 1$/;" v +GUID crt/crt_guid.hpp /^} GUID;$/;" t typeref:struct:_GUID +GUIDClassName crt/crt_guid.h 15;" d +GUIDFormatString crt/crt_guid.h 12;" d +GUIDFormatWString crt/crt_guid.h 13;" d +GUIDStringLength crt/crt_guid.h 14;" d +GUIDToString stdcrt/stdlib/compat_guid.c /^const char* GUIDToString(const GUID* guid, char* lpGuidBuf)$/;" f +GUIDToWString stdcrt/stdlib/compat_guid.c /^const wchar_t* GUIDToWString(const GUID* guid, wchar_t* lpGuidBuf)$/;" f +GUID_DEFINED crt/crt_guid.hpp 5;" d GdiplusStartupInput uibase/uilib/control/uilabel.h /^struct Gdiplus::GdiplusStartupInput;$/;" m class:Gdiplus typeref:struct:Gdiplus:: GenerateBitmap uibase/uilib/core/uirender.cpp /^HBITMAP CRenderEngine::GenerateBitmap(CPaintManagerUI* pManager, CControlUI* pControl, RECT rc, DWORD dwFilterColor)$/;" f class:DuiLib::CRenderEngine GenerateBitmap uibase/uilib/core/uirender.cpp /^HBITMAP CRenderEngine::GenerateBitmap(CPaintManagerUI* pManager, RECT rc, CControlUI* pStopControl, DWORD dwFilterColor)$/;" f class:DuiLib::CRenderEngine GenerateClip uibase/uilib/core/uirender.cpp /^void CRenderClip::GenerateClip(HDC hDC, RECT rc, CRenderClip& clip)$/;" f class:DuiLib::CRenderClip GenerateRoundClip uibase/uilib/core/uirender.cpp /^void CRenderClip::GenerateRoundClip(HDC hDC, RECT rc, RECT rcItem, int width, int height, CRenderClip& clip)$/;" f class:DuiLib::CRenderClip +GetAccessFilter vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:GetAccessFilter(szFilter, szAccessFilter)$/;" f GetActiveState uibase/uilib/control/uirichedit.cpp /^ BOOL GetActiveState(void) { return fInplaceActive; }$/;" f class:DuiLib::CTxtWinHost GetAdjustColor uibase/uilib/core/uicontrol.cpp /^ DWORD CControlUI::GetAdjustColor(DWORD dwColor)$/;" f class:DuiLib::CControlUI GetAllRecord logs/tablestruct.cpp /^std_method_impl CTableStruct::GetAllRecord(FieldSturct fields[], UINT Count)$/;" f class:CTableStruct +GetAllUsingNamespaceMapFromCurrentBuffer vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetAllUsingNamespaceMapFromCurrentBuffer(...)$/;" f +GetAllUsingNamespaceMapFromFile vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetAllUsingNamespaceMapFromFile(szFilePath, ...)$/;" f GetAllowBeep uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::GetAllowBeep()$/;" f class:DuiLib::CTxtWinHost -GetAt include/dlcom/loadcom.hpp /^ CLSID GetAt(INT nIndex)$/;" f class:CComLoader +GetArgc container/mainrun.cpp /^std_method_type_impl(int) CMainRun::GetArgc()$/;" f class:CMainRun +GetAt include/dlcom/loadcom.hpp /^ CLSID GetAt(LONG nIndex)$/;" f class:CComLoader GetAt uibase/uilib/utils/utils.cpp /^ LPCTSTR CDuiStringPtrMap::GetAt(int iIndex) const$/;" f class:DuiLib::CDuiStringPtrMap GetAt uibase/uilib/utils/utils.cpp /^ LPVOID CDuiPtrArray::GetAt(int iIndex) const$/;" f class:DuiLib::CDuiPtrArray GetAt uibase/uilib/utils/utils.cpp /^ LPVOID CDuiValArray::GetAt(int iIndex) const$/;" f class:DuiLib::CDuiValArray @@ -2581,6 +2250,7 @@ GetAttributeValue uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::GetAttribut GetAttributeValue uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::GetAttributeValue(int iIndex, LPTSTR pstrValue, SIZE_T cchMax)$/;" f class:DuiLib::CMarkupNode GetAutoURLDetect uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::GetAutoURLDetect() const$/;" f class:DuiLib::CRichEditUI GetAwareness uibase/uilib/dpi.hpp /^ PROCESS_DPI_AWARENESS GetAwareness()$/;" f class:CDPI +GetBaseObject container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::GetBaseObject(REFCLSID clsid, REFIID iid, IBase **ppunk)$/;" f class:CComRunningObjectTableImpl GetBkColor uibase/uicontrolimpl.cpp /^std_method_type_impl(DWORD) CUiControlImpl::GetBkColor()$/;" f class:CUiControlImpl GetBkColor uibase/uilib/core/uicontrol.cpp /^ DWORD CControlUI::GetBkColor() const$/;" f class:DuiLib::CControlUI GetBkColor2 uibase/uilib/core/uicontrol.cpp /^ DWORD CControlUI::GetBkColor2() const$/;" f class:DuiLib::CControlUI @@ -2665,7 +2335,6 @@ GetClassObject include/dlcom/comfactory.hpp /^ static HRESULT GetClassObject(con GetClassObjectMap access/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f GetClassObjectMap asynio/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f GetClassObjectMap container/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f -GetClassObjectMap http/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f GetClassObjectMap logs/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f GetClassObjectMap mainview/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f GetClassObjectMap mempool/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClassObjectMap()$/;" f @@ -2678,7 +2347,6 @@ GetClassObjectMap uibase/dllmain.cpp /^static_const STDCOM_OBJMAP_ENTRY* GetClas GetClassObjectMapSize access/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f GetClassObjectMapSize asynio/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f GetClassObjectMapSize container/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f -GetClassObjectMapSize http/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f GetClassObjectMapSize logs/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f GetClassObjectMapSize mainview/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f GetClassObjectMapSize mempool/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f @@ -2688,6 +2356,7 @@ GetClassObjectMapSize plugin/dllmain.cpp /^static_const long GetClassObjectMapS GetClassObjectMapSize render/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f GetClassObjectMapSize res/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f GetClassObjectMapSize uibase/dllmain.cpp /^static_const long GetClassObjectMapSize()$/;" f +GetClassScopeAtCursor vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetClassScopeAtCursor()$/;" f GetClassStyle uibase/uilib/control/uicombo.cpp /^UINT CComboWnd::GetClassStyle() const$/;" f class:DuiLib::CComboWnd GetClassStyle uibase/uilib/core/uibase.cpp /^UINT CWindowWnd::GetClassStyle() const$/;" f class:DuiLib::CWindowWnd GetClassStyle uibase/uilib/utils/winimplbase.cpp /^UINT WindowImplBase::GetClassStyle() const$/;" f class:DuiLib::WindowImplBase @@ -2699,6 +2368,7 @@ GetClientRect uibase/uilib/control/uirichedit.cpp /^ RECT* GetClientRect() { GetClientSize uibase/uilib/core/uimanager.cpp /^SIZE CPaintManagerUI::GetClientSize() const$/;" f class:DuiLib::CPaintManagerUI GetClsidCount container/plugins.cpp /^DWORD CPlugins::GetClsidCount()$/;" f class:CPlugins GetColumns uibase/uilib/layout/uitilelayout.cpp /^ int CTileLayoutUI::GetColumns() const$/;" f class:DuiLib::CTileLayoutUI +GetCompentCount include/dlcom/objectrun.hpp /^ ULONG GetCompentCount() {$/;" f class:CContainer GetCompentsCount container/plugins.cpp /^DWORD CPlugins::GetCompentsCount()$/;" f class:CPlugins GetContainerExitCode include/dlcom/objectrun.hpp /^ UINT GetContainerExitCode() {$/;" f class:CContainer GetControlAttribute uibase/uicontrolimpl.cpp /^std_method_type_impl(UIType) CUiControlImpl::GetControlAttribute()$/;" f class:CUiControlImpl @@ -2766,17 +2436,16 @@ GetDrawIndex uibase/uilib/control/uilist.cpp /^int CListContainerElementUI::GetD GetDrawIndex uibase/uilib/control/uilist.cpp /^int CListElementUI::GetDrawIndex() const$/;" f class:DuiLib::CListElementUI GetDropBoxAttributeList uibase/uilib/control/uicombo.cpp /^CDuiString CComboUI::GetDropBoxAttributeList()$/;" f class:DuiLib::CComboUI GetDropBoxSize uibase/uilib/control/uicombo.cpp /^SIZE CComboUI::GetDropBoxSize() const$/;" f class:DuiLib::CComboUI -GetDynamicName base/io/compat_path.c /^int GetDynamicName(const basic_tchar* pName, basic_tchar* pPluginName, ULONG ulen)$/;" f -GetDynamicPath base/io/compat_path.c /^int GetDynamicPath(void* szName, basic_tchar* szPath, ULONG ulen)$/;" f +GetDynamicName stdcrt/io/compat_path.c /^int GetDynamicName(const basic_tchar* pName, basic_tchar* pPluginName, ULONG ulen)$/;" f +GetDynamicPath stdcrt/io/compat_path.c /^int GetDynamicPath(void* szName, basic_tchar* szPath, ULONG ulen)$/;" f GetEnabledEffect uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledEffect()$/;" f class:DuiLib::CLabelUI GetEnabledLuminous uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledLuminous()$/;" f class:DuiLib::CLabelUI GetEnabledShadow uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledShadow()$/;" f class:DuiLib::CLabelUI GetEnabledStroke uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::GetEnabledStroke()$/;" f class:DuiLib::CLabelUI GetEventMask uibase/uilib/control/uirichedit.cpp /^DWORD CRichEditUI::GetEventMask() const$/;" f class:DuiLib::CRichEditUI GetExePathString include/utilex/file.hpp /^static_inline basic_tstring GetExePathString() {$/;" f -GetExecutePath base/io/compat_path.c /^int GetExecutePath(_pinstance hInstance, basic_tchar* szPath, ULONG ulen)$/;" f +GetExecutePath stdcrt/io/compat_path.c /^int GetExecutePath(_pinstance hInstance, basic_tchar* szPath, ULONG ulen)$/;" f GetExitCode container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetExitCode()$/;" f class:CMainRun -GetExitCode container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetExitCode(CLSID iid)$/;" f class:CMainRun GetExpandedItem uibase/uilib/control/uicombo.cpp /^int CComboUI::GetExpandedItem() const$/;" f class:DuiLib::CComboUI GetExpandedItem uibase/uilib/control/uilist.cpp /^int CListUI::GetExpandedItem() const$/;" f class:DuiLib::CListUI GetExpect asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::GetExpect(ULONG *pExpectBytes)$/;" f class:CIoOperationImpl @@ -2787,8 +2456,10 @@ GetField access/tableinfo.cpp /^std_method_impl CXTableInfo::GetField(UINT nInde GetFieldCount access/tableinfo.cpp /^std_method_type_impl(UINT) CXTableInfo::GetFieldCount()$/;" f class:CXTableInfo GetFieldIndex access/recordset.cpp /^unsigned int CRecordSet::GetFieldIndex(LPCSTR lpszName)$/;" f class:CRecordSet GetFieldsCount logs/tablestruct.cpp /^std_method_impl CTableStruct::GetFieldsCount(UINT &count)$/;" f class:CTableStruct +GetFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFileName()$/;" f +GetFileNameEsc vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFileNameEsc()$/;" f GetFileSize asynio/fileimpl.cpp /^std_method_type_impl(int64) CFileImpl::GetFileSize()$/;" f class:CFileImpl -GetFiles base/io/compat_path.c /^int GetFiles(basic_tchar* szPath, get_file_cb entry, void* ctx)$/;" f +GetFiles stdcrt/io/compat_path.c /^int GetFiles(basic_tchar* szPath, get_file_cb entry, void* ctx)$/;" f GetFixed uibase/uicontrolimpl.cpp /^std_method_type_impl(SIZE) CUiControlImpl::GetFixed()$/;" f class:CUiControlImpl GetFixedColumns uibase/uilib/layout/uitilelayout.cpp /^ int CTileLayoutUI::GetFixedColumns() const$/;" f class:DuiLib::CTileLayoutUI GetFixedHeight uibase/uilib/core/uicontrol.cpp /^ int CControlUI::GetFixedHeight() const$/;" f class:DuiLib::CControlUI @@ -2821,6 +2492,8 @@ GetForeImage uibase/uilib/control/uibutton.cpp /^ LPCTSTR CButtonUI::GetForeImag GetForeImage uibase/uilib/control/uioption.cpp /^ LPCTSTR COptionUI::GetForeImage()$/;" f class:DuiLib::COptionUI GetForeImage uibase/uilib/control/uiprogress.cpp /^ LPCTSTR CProgressUI::GetForeImage() const$/;" f class:DuiLib::CProgressUI GetFoundControls uibase/uilib/core/uimanager.cpp /^CDuiPtrArray* CPaintManagerUI::GetFoundControls()$/;" f class:DuiLib::CPaintManagerUI +GetFullFileName vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFullFileName()$/;" f +GetFullFileNameEsc vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetFullFileNameEsc()$/;" f GetFunDefs extensions/include/platform/services/license.hpp /^ virtual STFunDesc *GetFunDefs()$/;" f class:CLicenseLoader GetFunDefs include/dlcom/loadcom.hpp /^ virtual STFunDesc *GetFunDefs() $/;" f class:CComLoader GetGradientAngle uibase/uilib/control/uilabel.cpp /^ int CLabelUI::GetGradientAngle()$/;" f class:DuiLib::CLabelUI @@ -2848,17 +2521,21 @@ GetHotItemTextColor uibase/uilib/control/uicombo.cpp /^DWORD CComboUI::GetHotIte GetHotItemTextColor uibase/uilib/control/uilist.cpp /^DWORD CListUI::GetHotItemTextColor() const$/;" f class:DuiLib::CListUI GetHotTextColor uibase/uilib/control/uibutton.cpp /^ DWORD CButtonUI::GetHotTextColor() const$/;" f class:DuiLib::CButtonUI GetHoverTime uibase/uilib/core/uimanager.cpp /^int CPaintManagerUI::GetHoverTime() const$/;" f class:DuiLib::CPaintManagerUI -GetHttpHead http/httptimpl.cpp /^std_method_type_impl(http_header) CHttptImpl::GetHttpHead()$/;" f class:CHttptImpl +GetHttpHead net/httptimpl.cpp /^std_method_type_impl(http_header) CHttptImpl::GetHttpHead()$/;" f class:CHttptImpl +GetIExitCode container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetIExitCode(CLSID iid)$/;" f class:CMainRun GetId asynio/iooperationimpl.cpp /^std_method_type_impl(ULONG) CIoOperationImpl::GetId()$/;" f class:CIoOperationImpl GetId asynio/timerimpl.cpp /^std_method_type_impl(UINT) CTimerImpl::GetId()$/;" f class:CTimerImpl GetId container/msg.cpp /^std_method_type_impl(unsigned int) CMsgImpl::GetId()$/;" f class:CMsgImpl GetImage uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::GetImage(LPCTSTR bitmap)$/;" f class:DuiLib::CPaintManagerUI GetImageEx uibase/uilib/core/uimanager.cpp /^const TImageInfo* CPaintManagerUI::GetImageEx(LPCTSTR bitmap, LPCTSTR type, DWORD mask, bool bUseHSL)$/;" f class:DuiLib::CPaintManagerUI +GetIncludeListFromCurrentBuffer vim_tool/.vim/autoload/omni/cpp/includes.vim /^function! s:GetIncludeListFromCurrentBuffer()$/;" f +GetIncludeListFromFile vim_tool/.vim/autoload/omni/cpp/includes.vim /^function! s:GetIncludeListFromFile(szFilePath, bUpdate) $/;" f GetIndex uibase/uilib/control/uilist.cpp /^int CListContainerElementUI::GetIndex() const$/;" f class:DuiLib::CListContainerElementUI GetIndex uibase/uilib/control/uilist.cpp /^int CListElementUI::GetIndex() const$/;" f class:DuiLib::CListElementUI +GetIndexArgv container/mainrun.cpp /^std_method_type_impl(basic_tchar*) CMainRun::GetIndexArgv(int index)$/;" f class:CMainRun GetInitSize uibase/uilib/core/uimanager.cpp /^SIZE CPaintManagerUI::GetInitSize()$/;" f class:DuiLib::CPaintManagerUI GetInset uibase/uilib/core/uicontainer.cpp /^ RECT CContainerUI::GetInset() const$/;" f class:DuiLib::CContainerUI -GetInstance base/stdlib/compat_proctol.c /^_pinstance GetInstance()$/;" f +GetInstance stdcrt/stdlib/compat_proctol.c /^_pinstance GetInstance(void)$/;" f GetInstance uibase/uilib/core/uimanager.cpp /^HINSTANCE CPaintManagerUI::GetInstance()$/;" f class:DuiLib::CPaintManagerUI GetInstancePath uibase/uilib/core/uimanager.cpp /^CDuiString CPaintManagerUI::GetInstancePath()$/;" f class:DuiLib::CPaintManagerUI GetInt access/recordset.cpp /^std_method_impl CRecordSet::GetInt(LPCSTR lpszName, INT& nValue)$/;" f class:CRecordSet @@ -2971,6 +2648,9 @@ GetName uibase/uicontrolimpl.cpp /^std_method_type_impl(LPCSTR) CUiControlImpl:: GetName uibase/uilib/core/uicontrol.cpp /^ CDuiString CControlUI::GetName() const$/;" f class:DuiLib::CControlUI GetName uibase/uilib/core/uimanager.cpp /^LPCTSTR CPaintManagerUI::GetName() const$/;" f class:DuiLib::CPaintManagerUI GetName uibase/uilib/core/uimarkup.cpp /^LPCTSTR CMarkupNode::GetName() const$/;" f class:DuiLib::CMarkupNode +GetNamespaceAliasListFromLine vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetNamespaceAliasListFromLine(szLine)$/;" f +GetNamespaceAliasMap vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetNamespaceAliasMap()$/;" f +GetNamespaceListFromLine vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetNamespaceListFromLine(szLine)$/;" f GetNative uibase/uicontrolimpl.cpp /^std_method_type_impl(HWND) CUiControlImpl::GetNative()$/;" f class:CUiControlImpl GetNativeEditBkColor uibase/uilib/control/uiedit.cpp /^ DWORD CEditUI::GetNativeEditBkColor() const$/;" f class:DuiLib::CEditUI GetNativeEditHWND uibase/uilib/control/uiedit.cpp /^ HWND CEditUI::GetNativeEditHWND() const$/;" f class:DuiLib::CEditUI @@ -2989,7 +2669,7 @@ GetObject container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::GetObj GetObject include/comutiliy/cchannel.hpp /^ std_method_impl GetObject(IBase *pIBase, OperationPtr& pOperation)$/;" f class:CChannel GetObject include/comutiliy/schannel.hpp /^ std_method_impl GetObject(IBase *pIBase, TcpSocketPtr& pSocket, OperationPtr& pOperation)$/;" f class:SChannel GetObject uibase/uilib/utils/uidelegate.cpp /^void* CDelegateBase::GetObject() $/;" f class:DuiLib::CDelegateBase -GetObjectCount container/rot.cpp /^std_method_type_impl(UINT) CComRunningObjectTableImpl::GetObjectCount()$/;" f class:CComRunningObjectTableImpl +GetObjectCount container/rot.cpp /^std_method_type_impl(ULONG) CComRunningObjectTableImpl::GetObjectCount()$/;" f class:CComRunningObjectTableImpl GetObjectLoader container/mainrun.cpp /^std_method_impl CMainRun::GetObjectLoader(IBase** Base)$/;" f class:CMainRun GetOp logs/tablestruct.cpp /^std_method_type_impl(UINT) CTableStruct::GetOp()$/;" f class:CTableStruct GetOpacity uibase/uilib/core/uimanager.cpp /^BYTE CPaintManagerUI::GetOpacity() const$/;" f class:DuiLib::CPaintManagerUI @@ -3041,8 +2721,9 @@ GetRoundCorner uibase/uilib/core/uimanager.cpp /^SIZE CPaintManagerUI::GetRoundC GetRoute mainview/mainviewimpl.cpp /^std_method_type_impl(ULONG) CMainViewImpl::GetRoute()$/;" f class:CMainViewImpl GetRows uibase/uilib/layout/uitilelayout.cpp /^ int CTileLayoutUI::GetRows() const$/;" f class:DuiLib::CTileLayoutUI GetRuleFiles logs/logsimpl.cpp /^std_method_impl CLogsImpl::GetRuleFiles()$/;" f class:CLogsImpl +GetRunIndex container/mainrun.cpp /^std_method_type_impl(ULONG) CMainRun::GetRunIndex(ULONG index)$/;" f class:CMainRun GetRunPluginCLSID container/mainrun.cpp /^std_method_type_impl(CLSID) CMainRun::GetRunPluginCLSID()$/;" f class:CMainRun -GetRunPluginsCount container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::GetRunPluginsCount()$/;" f class:CMainRun +GetRunPluginsCount container/mainrun.cpp /^std_method_type_impl(ULONG) CMainRun::GetRunPluginsCount()$/;" f class:CMainRun GetScale uibase/uilib/dpi.hpp /^ UINT GetScale()$/;" f class:CDPI GetScrollPos uibase/uilib/control/uilist.cpp /^SIZE CListUI::GetScrollPos() const$/;" f class:DuiLib::CListUI GetScrollPos uibase/uilib/control/uiscrollbar.cpp /^int CScrollBarUI::GetScrollPos() const$/;" f class:DuiLib::CScrollBarUI @@ -3052,6 +2733,7 @@ GetScrollRange uibase/uilib/control/uiscrollbar.cpp /^int CScrollBarUI::GetScrol GetScrollRange uibase/uilib/core/uicontainer.cpp /^ SIZE CContainerUI::GetScrollRange() const$/;" f class:DuiLib::CContainerUI GetScrollSelect uibase/uilib/control/uilist.cpp /^bool CListUI::GetScrollSelect()$/;" f class:DuiLib::CListUI GetScrollUnit uibase/uilib/control/uiscrollbar.cpp /^int CScrollBarUI::GetScrollUnit() const$/;" f class:DuiLib::CScrollBarUI +GetSection vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:GetSection()$/;" f GetSel uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::GetSel(CHARRANGE &cr) const$/;" f class:DuiLib::CRichEditUI GetSel uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::GetSel(long& nStartChar, long& nEndChar) const$/;" f class:DuiLib::CRichEditUI GetSelItemHotTextColor uibase/uilib/control/uitreeview.cpp /^ DWORD CTreeNodeUI::GetSelItemHotTextColor() const$/;" f class:DuiLib::CTreeNodeUI @@ -3088,9 +2770,11 @@ GetSize uibase/uilib/utils/utils.cpp /^ int CDuiPtrArray::GetSize() const$/;" f GetSize uibase/uilib/utils/utils.cpp /^ int CDuiStringPtrMap::GetSize() const$/;" f class:DuiLib::CDuiStringPtrMap GetSize uibase/uilib/utils/utils.cpp /^ int CDuiValArray::GetSize() const$/;" f class:DuiLib::CDuiValArray GetSizeBox uibase/uilib/core/uimanager.cpp /^RECT& CPaintManagerUI::GetSizeBox()$/;" f class:DuiLib::CPaintManagerUI +GetStartIndex include/dlcom/objectrun.hpp /^ ULONG GetStartIndex(ULONG index) {$/;" f class:CContainer GetState include/utilex/semthread.hpp /^ UINT GetState() {$/;" f class:CSemThread GetState include/utilex/thread.hpp /^ UINT GetState() {$/;" f class:CThread GetState include/utilex/timethread.hpp /^ UINT GetState() {$/;" f class:CTimeThread +GetStopPositionForLocalSearch vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetStopPositionForLocalSearch()$/;" f GetString access/recordset.cpp /^std_method_type_impl(LPCSTR) CRecordSet::GetString(LPCSTR lpszName)$/;" f class:CRecordSet GetString access/recordset.cpp /^std_method_type_impl(LPCSTR) CRecordSet::GetString(unsigned int nIndex)$/;" f class:CRecordSet GetStrokeColor uibase/uilib/control/uilabel.cpp /^ DWORD CLabelUI::GetStrokeColor()$/;" f class:DuiLib::CLabelUI @@ -3103,11 +2787,13 @@ GetSubControlUserData uibase/uilib/core/uicontainer.cpp /^ const CDuiString CCon GetSuperClassName uibase/uilib/control/uidatetime.cpp /^ LPCTSTR CDateTimeWnd::GetSuperClassName() const$/;" f class:DuiLib::CDateTimeWnd GetSuperClassName uibase/uilib/control/uiedit.cpp /^ LPCTSTR CEditWnd::GetSuperClassName() const$/;" f class:DuiLib::CEditWnd GetSuperClassName uibase/uilib/core/uibase.cpp /^LPCTSTR CWindowWnd::GetSuperClassName() const$/;" f class:DuiLib::CWindowWnd +GetSymbol vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:GetSymbol(tokens)$/;" f GetTableFields logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::GetTableFields(Table& table,$/;" f class:CLogDataBaseImpl GetTableInfo access/dbimpl.cpp /^std_method_impl CDatabaseImpl::GetTableInfo(LPCSTR lpszName, ITableInfo** ppTableInfo)$/;" f class:CDatabaseImpl GetTableName logs/tablestruct.cpp /^std_method_impl CTableStruct::GetTableName(LPSTR name)$/;" f class:CTableStruct GetTableStruct logs/database.cpp /^std_method_impl CDatabase::GetTableStruct(LPCSTR strTableName, vector& VecField)$/;" f class:CDatabase GetTag uibase/uilib/core/uicontrol.cpp /^ UINT_PTR CControlUI::GetTag() const$/;" f class:DuiLib::CControlUI +GetTagOfSameScope vim_tool/.vim/autoload/omni/cpp/utils.vim /^function! s:GetTagOfSameScope(listTags, szScopeToMatch)$/;" f GetText uibase/uicontrolimpl.cpp /^std_method_type_impl(LPCSTR) CUiControlImpl::GetText()$/;" f class:CUiControlImpl GetText uibase/uilib/control/uicombo.cpp /^CDuiString CComboUI::GetText() const$/;" f class:DuiLib::CComboUI GetText uibase/uilib/control/uilist.cpp /^LPCTSTR CListTextElementUI::GetText(int iIndex) const$/;" f class:DuiLib::CListTextElementUI @@ -3142,7 +2828,8 @@ GetThumbRect uibase/uilib/control/uilist.cpp /^RECT CListHeaderItemUI::GetThumbR GetThumbRect uibase/uilib/control/uislider.cpp /^ RECT CSliderUI::GetThumbRect() const$/;" f class:DuiLib::CSliderUI GetThumbRect uibase/uilib/layout/uihorizontallayout.cpp /^ RECT CHorizontalLayoutUI::GetThumbRect(bool bUseNew) const$/;" f class:DuiLib::CHorizontalLayoutUI GetThumbRect uibase/uilib/layout/uiverticallayout.cpp /^ RECT CVerticalLayoutUI::GetThumbRect(bool bUseNew) const$/;" f class:DuiLib::CVerticalLayoutUI -GetTickCount base/stdlib/compat_stdtime.c /^unsigned long GetTickCount()$/;" f +GetTickCount stdcrt/stdlib/compat_stdtime.c /^unsigned long GetTickCount()$/;" f +GetTickCount stdcrt/stdlib/compat_stdtime.c /^unsigned long GetTickCount(void)$/;" f GetTime uibase/uilib/control/uidatetime.cpp /^ SYSTEMTIME& CDateTimeUI::GetTime()$/;" f class:DuiLib::CDateTimeUI GetTimerState uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::GetTimerState()$/;" f class:DuiLib::CTxtWinHost GetToolTip uibase/uicontrolimpl.cpp /^std_method_type_impl(LPSTRING) CUiControlImpl::GetToolTip()$/;" f class:CUiControlImpl @@ -3158,6 +2845,8 @@ GetTreeNodes uibase/uilib/control/uitreeview.cpp /^ CDuiPtrArray CTreeNodeUI::Ge GetTreeView uibase/uilib/control/uitreeview.cpp /^ CTreeViewUI* CTreeNodeUI::GetTreeView()$/;" f class:DuiLib::CTreeNodeUI GetTxDropTarget uibase/uilib/control/uirichedit.cpp /^IDropTarget* CRichEditUI::GetTxDropTarget()$/;" f class:DuiLib::CRichEditUI GetType access/fieldinfo.cpp /^std_method_type_impl(int) CXFieldInfo::GetType()$/;" f class:CXFieldInfo +GetTypeInfoOfReturnedType vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:GetTypeInfoOfReturnedType(contextStack, szFunctionName)$/;" f +GetTypeInfoOfVariable vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:GetTypeInfoOfVariable(contextStack, szVariable, bSearchDecl)$/;" f GetTypeName access/fieldinfo.cpp /^std_method_type_impl(LPCSTR) CXFieldInfo::GetTypeName()$/;" f class:CXFieldInfo GetUByte include/comutiliy/serialize.hpp /^ std_method_impl GetUByte(unsigned char& nVal, unsigned int offset)$/;" f class:Serialize GetUInt access/recordset.cpp /^std_method_impl CRecordSet::GetUInt(LPCSTR lpszName, UINT& nValue)$/;" f class:CRecordSet @@ -3168,6 +2857,7 @@ GetUInt64 access/recordset.cpp /^std_method_impl CRecordSet::GetUInt64(LPCSTR lp GetUInt64 access/recordset.cpp /^std_method_impl CRecordSet::GetUInt64(unsigned int nIndex, uint64& nValue)$/;" f class:CRecordSet GetUShort include/comutiliy/serialize.hpp /^ std_method_impl GetUShort(unsigned short& nVal, unsigned int offset)$/;" f class:Serialize GetUserData uibase/uilib/core/uicontrol.cpp /^ const CDuiString& CControlUI::GetUserData()$/;" f class:DuiLib::CControlUI +GetUsingNamespaceListFromMap vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:GetUsingNamespaceListFromMap(namespaceMap, ...)$/;" f GetValue uibase/uilib/control/uiprogress.cpp /^ int CProgressUI::GetValue() const$/;" f class:DuiLib::CProgressUI GetValue uibase/uilib/core/uimarkup.cpp /^LPCTSTR CMarkupNode::GetValue() const$/;" f class:DuiLib::CMarkupNode GetVersion container/msg.cpp /^std_method_type_impl(unsigned int) CMsgImpl::GetVersion()$/;" f class:CMsgImpl @@ -3205,10 +2895,15 @@ GlobUpperToLower access/sqlite3.c 90243;" d file: GlobUpperToLower access/sqlite3.c 90245;" d file: GlobUpperToLower logs/sqlite3.c 90243;" d file: GlobUpperToLower logs/sqlite3.c 90245;" d file: -H base/algorithm/compat_md5.c 5;" d file: +GoGdb vim_tool/.vim/plugin/devfunckey.vim /^func! GoGdb()$/;" f +GotoExplorerWindow vim_tool/.vim/plugin/winmanager.vim /^function! GotoExplorerWindow(which)$/;" f +GotoNextExplorerInGroup vim_tool/.vim/plugin/winmanager.vim /^function! GotoNextExplorerInGroup(name, ...)$/;" f +GotoWindow vim_tool/.vim/plugin/winmanager.vim /^function! GotoWindow(reqdWinNum)$/;" f +GroupTags vim_tool/.vim/plugin/wintagexplorer.vim /^function! GroupTags() range$/;" f H polipo/md5.c 75;" d file: -HANDLE compat/darwinossysdef.h /^typedef void* HANDLE;$/;" t -HANDLE compat/posixossysdef.h /^typedef void* HANDLE;$/;" t +H stdcrt/algorithm/compat_md5.c 5;" d file: +HANDLE crt/darwinossysdef.h /^typedef void* HANDLE;$/;" t +HANDLE crt/posixossysdef.h /^typedef void* HANDLE;$/;" t HANDLE_TO_WINFILE access/sqlite3.c 33155;" d file: HANDLE_TO_WINFILE logs/sqlite3.c 33155;" d file: HASHSIZE access/sqlite3.c 141683;" d file: @@ -3270,45 +2965,43 @@ HAVE_TM_GMTOFF polipo/polipo.h 113;" d HAVE_TM_GMTOFF polipo/polipo.h 92;" d HAVE_TZSET polipo/polipo.h 127;" d HAVE_WINSOCK polipo/mingw.h 38;" d -HDC compat/darwinossysdef.h /^typedef void* HDC;$/;" t -HDC compat/posixossysdef.h /^typedef void* HDC;$/;" t -HDESK compat/darwinossysdef.h /^typedef void* HDESK;$/;" t -HDESK compat/posixossysdef.h /^typedef void* HDESK;$/;" t -HDWP compat/darwinossysdef.h /^typedef HANDLE HDWP;$/;" t -HDWP compat/posixossysdef.h /^typedef HANDLE HDWP;$/;" t +HDC crt/darwinossysdef.h /^typedef void* HDC;$/;" t +HDC crt/posixossysdef.h /^typedef void* HDC;$/;" t +HDESK crt/darwinossysdef.h /^typedef void* HDESK;$/;" t +HDESK crt/posixossysdef.h /^typedef void* HDESK;$/;" t +HDWP crt/darwinossysdef.h /^typedef HANDLE HDWP;$/;" t +HDWP crt/posixossysdef.h /^typedef HANDLE HDWP;$/;" t HEADER_PUGICONFIG_HPP uibase/uilib/core/pugiconfig.hpp 15;" d HEADER_PUGIXML_HPP uibase/uilib/core/pugixml.hpp 24;" d -HEMF compat/darwinossysdef.h /^typedef void* HEMF;$/;" t -HEMF compat/posixossysdef.h /^typedef void* HEMF;$/;" t -HEX CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 555;" d file: -HEX CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 540;" d file: -HFILE compat/darwinossysdef.h /^typedef INT HFILE;$/;" t -HFILE compat/posixossysdef.h /^typedef INT HFILE;$/;" t -HGDIOBJ compat/darwinossysdef.h /^typedef void* HGDIOBJ;$/;" t -HGDIOBJ compat/posixossysdef.h /^typedef void* HGDIOBJ;$/;" t -HH base/algorithm/compat_md5.c 20;" d file: +HEMF crt/darwinossysdef.h /^typedef void* HEMF;$/;" t +HEMF crt/posixossysdef.h /^typedef void* HEMF;$/;" t +HFILE crt/darwinossysdef.h /^typedef INT HFILE;$/;" t +HFILE crt/posixossysdef.h /^typedef INT HFILE;$/;" t +HGDIOBJ crt/darwinossysdef.h /^typedef void* HGDIOBJ;$/;" t +HGDIOBJ crt/posixossysdef.h /^typedef void* HGDIOBJ;$/;" t HH polipo/md5.c 106;" d file: +HH stdcrt/algorithm/compat_md5.c 20;" d file: HIMETRIC_PER_INCH uibase/uilib/control/uirichedit.cpp 32;" d file: -HINSTANCE compat/darwinossysdef.h /^typedef pid_t HINSTANCE;$/;" t -HINSTANCE compat/posixossysdef.h /^typedef pid_t HINSTANCE;$/;" t -HKEY compat/darwinossysdef.h /^typedef void* HKEY;$/;" t -HKEY compat/posixossysdef.h /^typedef void* HKEY;$/;" t -HKL compat/darwinossysdef.h /^typedef void* HKL;$/;" t -HKL compat/posixossysdef.h /^typedef void* HKL;$/;" t -HMF compat/darwinossysdef.h /^typedef void* HMF;$/;" t -HMF compat/posixossysdef.h /^typedef void* HMF;$/;" t -HMODULE compat/darwinossysdef.h /^typedef void* HMODULE;$/;" t -HMODULE compat/posixossysdef.h /^typedef void* HMODULE;$/;" t -HPEN compat/darwinossysdef.h /^typedef void* HPEN;$/;" t -HPEN compat/posixossysdef.h /^typedef void* HPEN;$/;" t -HRESULT compat/compat_comutil.hpp /^ typedef long HRESULT;$/;" t -HRSRC compat/darwinossysdef.h /^typedef void* HRSRC;$/;" t -HRSRC compat/posixossysdef.h /^typedef void* HRSRC;$/;" t +HINSTANCE crt/darwinossysdef.h /^typedef pid_t HINSTANCE;$/;" t +HINSTANCE crt/posixossysdef.h /^typedef pid_t HINSTANCE;$/;" t +HKEY crt/darwinossysdef.h /^typedef void* HKEY;$/;" t +HKEY crt/posixossysdef.h /^typedef void* HKEY;$/;" t +HKL crt/darwinossysdef.h /^typedef void* HKL;$/;" t +HKL crt/posixossysdef.h /^typedef void* HKL;$/;" t +HMF crt/darwinossysdef.h /^typedef void* HMF;$/;" t +HMF crt/posixossysdef.h /^typedef void* HMF;$/;" t +HMODULE crt/darwinossysdef.h /^typedef void* HMODULE;$/;" t +HMODULE crt/posixossysdef.h /^typedef void* HMODULE;$/;" t +HPEN crt/darwinossysdef.h /^typedef void* HPEN;$/;" t +HPEN crt/posixossysdef.h /^typedef void* HPEN;$/;" t +HRESULT crt/crt_comutil.hpp /^ typedef long HRESULT;$/;" t +HRSRC crt/darwinossysdef.h /^typedef void* HRSRC;$/;" t +HRSRC crt/posixossysdef.h /^typedef void* HRSRC;$/;" t HSLtoRGB uibase/uilib/core/uirender.cpp /^static void HSLtoRGB(DWORD* ARGB, float H, float S, float L) {$/;" f namespace:DuiLib file: -HSTR compat/darwinossysdef.h /^typedef void* HSTR;$/;" t -HSTR compat/posixossysdef.h /^typedef void* HSTR;$/;" t -HTASK compat/darwinossysdef.h /^typedef void* HTASK;$/;" t -HTASK compat/posixossysdef.h /^typedef void* HTASK;$/;" t +HSTR crt/darwinossysdef.h /^typedef void* HSTR;$/;" t +HSTR crt/posixossysdef.h /^typedef void* HSTR;$/;" t +HTASK crt/darwinossysdef.h /^typedef void* HTASK;$/;" t +HTASK crt/posixossysdef.h /^typedef void* HTASK;$/;" t HTTPConditionPtr polipo/http.h /^} HTTPConditionRec, *HTTPConditionPtr;$/;" t typeref:struct:_HTTPCondition HTTPConditionRec polipo/http.h /^} HTTPConditionRec, *HTTPConditionPtr;$/;" t typeref:struct:_HTTPCondition HTTPConnectionPtr polipo/http.h /^} HTTPConnectionRec, *HTTPConnectionPtr;$/;" t typeref:struct:_HTTPConnection @@ -3322,93 +3015,93 @@ HTTPServerPtr polipo/server.h /^} HTTPServerRec, *HTTPServerPtr;$/;" t typeref:s HTTPServerRec polipo/server.h /^} HTTPServerRec, *HTTPServerPtr;$/;" t typeref:struct:_HTTPServer HTTP_10 polipo/http.h 113;" d HTTP_11 polipo/http.h 114;" d -HTTP_ACCEPT http/http/http_header.hpp 6;" d -HTTP_ACCEPT_CHARSET http/http/http_header.hpp 7;" d -HTTP_ACCEPT_DATETIME http/http/http_header.hpp 9;" d -HTTP_ACCEPT_ENCODEING http/http/http_header.hpp 8;" d -HTTP_ACCEPT_LANGUAGE http/http/http_header.hpp 10;" d -HTTP_AUTHORIZATION http/http/http_header.hpp 11;" d -HTTP_BOTH http/http/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type -HTTP_CACHE_CONTROL http/http/http_header.hpp 12;" d -HTTP_CONNECTION http/http/http_header.hpp 13;" d -HTTP_CONTEND_MD5 http/http/http_header.hpp 14;" d -HTTP_CONTENT_TYPE http/http/http_header.hpp 23;" d -HTTP_COOKIE http/http/http_header.hpp 25;" d -HTTP_DATA http/http/http_header.hpp 15;" d -HTTP_DNT http/http/http_header.hpp 24;" d -HTTP_END http/http/http_header.hpp 29;" d -HTTP_ERRNO_GEN http/http/http_parser.h 282;" d -HTTP_ERRNO_GEN http/http/http_parser.h 286;" d -HTTP_ERRNO_MAP http/http/http_parser.h /^ HTTP_ERRNO_MAP(HTTP_ERRNO_GEN)$/;" e enum:http_errno -HTTP_ERRNO_MAP http/http/http_parser.h 235;" d -HTTP_ETAG http/http/http_header.hpp 26;" d -HTTP_EXPECT http/http/http_header.hpp 16;" d -HTTP_FORWARDED http/http/http_header.hpp 17;" d -HTTP_HOST http/http/http_header.hpp 27;" d -HTTP_IMPL_CONNECTED extensions/include/http/ihttp.h /^ HTTP_IMPL_CONNECTED,$/;" e enum:__anon39 -HTTP_IMPL_CONNECTING extensions/include/http/ihttp.h /^ HTTP_IMPL_CONNECTING,$/;" e enum:__anon39 -HTTP_IMPL_CONNECT_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_CONNECT_FAIL,$/;" e enum:__anon39 -HTTP_IMPL_END extensions/include/http/ihttp.h /^ HTTP_IMPL_END,$/;" e enum:__anon39 -HTTP_IMPL_LOCATION extensions/include/http/ihttp.h /^ HTTP_IMPL_LOCATION,$/;" e enum:__anon39 -HTTP_IMPL_LOCATIONED extensions/include/http/ihttp.h /^ HTTP_IMPL_LOCATIONED,$/;" e enum:__anon39 -HTTP_IMPL_LOCATION_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_LOCATION_FAIL,$/;" e enum:__anon39 -HTTP_IMPL_RECV_BODY extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_BODY,$/;" e enum:__anon39 -HTTP_IMPL_RECV_BODYED extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_BODYED,$/;" e enum:__anon39 -HTTP_IMPL_RECV_BODY_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_BODY_FAIL,$/;" e enum:__anon39 -HTTP_IMPL_RECV_HEAD extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_HEAD,$/;" e enum:__anon39 -HTTP_IMPL_RECV_HEADED extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_HEADED,$/;" e enum:__anon39 -HTTP_IMPL_RECV_HEAD_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_RECV_HEAD_FAIL,$/;" e enum:__anon39 -HTTP_IMPL_SEND_BODY extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_BODY,$/;" e enum:__anon39 -HTTP_IMPL_SEND_BODYED extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_BODYED,$/;" e enum:__anon39 -HTTP_IMPL_SEND_BODY_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_BODY_FAIL,$/;" e enum:__anon39 -HTTP_IMPL_SEND_HEAD extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_HEAD,$/;" e enum:__anon39 -HTTP_IMPL_SEND_HEADED extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_HEADED,$/;" e enum:__anon39 -HTTP_IMPL_SEND_HEAD_FAIL extensions/include/http/ihttp.h /^ HTTP_IMPL_SEND_HEAD_FAIL,$/;" e enum:__anon39 -HTTP_IMPL_START extensions/include/http/ihttp.h /^ HTTP_IMPL_START = 0,$/;" e enum:__anon39 -HTTP_IMPL_UNKNOWN extensions/include/http/ihttp.h /^ HTTP_IMPL_UNKNOWN$/;" e enum:__anon39 -HTTP_KEEPALIVE http/http/http_header.hpp 19;" d -HTTP_MAX_HEADER_SIZE http/http/http_parser.h 63;" d -HTTP_METHOD_CONNECT extensions/include/http/ihttp.h /^ HTTP_METHOD_CONNECT, $/;" e enum:__anon41 -HTTP_METHOD_DELETE extensions/include/http/ihttp.h /^ HTTP_METHOD_DELETE, $/;" e enum:__anon41 -HTTP_METHOD_GET extensions/include/http/ihttp.h /^ HTTP_METHOD_GET, $/;" e enum:__anon41 -HTTP_METHOD_HEAD extensions/include/http/ihttp.h /^ HTTP_METHOD_HEAD, $/;" e enum:__anon41 -HTTP_METHOD_MAP http/http/http_parser.h /^ HTTP_METHOD_MAP(XX)$/;" e enum:http_method -HTTP_METHOD_MAP http/http/http_parser.h 163;" d -HTTP_METHOD_OPTION extensions/include/http/ihttp.h /^ HTTP_METHOD_OPTION, $/;" e enum:__anon41 -HTTP_METHOD_OTHER extensions/include/http/ihttp.h /^ HTTP_METHOD_OTHER, $/;" e enum:__anon41 -HTTP_METHOD_POST extensions/include/http/ihttp.h /^ HTTP_METHOD_POST, $/;" e enum:__anon41 -HTTP_METHOD_PROPFIND extensions/include/http/ihttp.h /^ HTTP_METHOD_PROPFIND, $/;" e enum:__anon41 -HTTP_METHOD_PURGE extensions/include/http/ihttp.h /^ HTTP_METHOD_PURGE, $/;" e enum:__anon41 -HTTP_METHOD_PUT extensions/include/http/ihttp.h /^ HTTP_METHOD_PUT, $/;" e enum:__anon41 -HTTP_METHOD_UNKNOWN extensions/include/http/ihttp.h /^ HTTP_METHOD_UNKNOWN, $/;" e enum:__anon41 -HTTP_MIME_FILE extensions/include/http/ihttp.h /^ HTTP_MIME_FILE \/\/ http mime file $/;" e enum:__anon43 -HTTP_MIME_PARAM extensions/include/http/ihttp.h /^ HTTP_MIME_PARAM, \/\/ http mime param$/;" e enum:__anon43 -HTTP_PARSER_ERRNO http/http/http_parser.h 290;" d -HTTP_PARSER_STRICT http/http/http_parser.h 52;" d -HTTP_PARSER_VERSION_MAJOR http/http/http_parser.h 28;" d -HTTP_PARSER_VERSION_MINOR http/http/http_parser.h 29;" d -HTTP_PARSER_VERSION_PATCH http/http/http_parser.h 30;" d -HTTP_RANGE http/http/http_header.hpp 21;" d -HTTP_REFERER http/http/http_header.hpp 20;" d -HTTP_REQUEST http/http/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type -HTTP_REQUEST_MULTIPART_FORM extensions/include/http/ihttp.h /^ HTTP_REQUEST_MULTIPART_FORM,$/;" e enum:__anon42 -HTTP_REQUEST_NORMAL extensions/include/http/ihttp.h /^ HTTP_REQUEST_NORMAL,$/;" e enum:__anon42 -HTTP_REQUEST_OCTET_STREAM extensions/include/http/ihttp.h /^ HTTP_REQUEST_OCTET_STREAM,$/;" e enum:__anon42 -HTTP_REQUEST_OTHER extensions/include/http/ihttp.h /^ HTTP_REQUEST_OTHER$/;" e enum:__anon42 -HTTP_REQUEST_TEXT_JSON extensions/include/http/ihttp.h /^ HTTP_REQUEST_TEXT_JSON,$/;" e enum:__anon42 -HTTP_REQUEST_TEXT_XML extensions/include/http/ihttp.h /^ HTTP_REQUEST_TEXT_XML,$/;" e enum:__anon42 -HTTP_RESPONSE http/http/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type -HTTP_STATUS_MAP http/http/http_parser.h /^ HTTP_STATUS_MAP(XX)$/;" e enum:http_status -HTTP_STATUS_MAP http/http/http_parser.h 93;" d -HTTP_STRERROR_GEN http/http/http_parser.cpp 462;" d file: -HTTP_STRERROR_GEN http/http/http_parser.cpp 469;" d file: +HTTP_ACCEPT net/http_protocol/http_header.hpp 6;" d +HTTP_ACCEPT_CHARSET net/http_protocol/http_header.hpp 7;" d +HTTP_ACCEPT_DATETIME net/http_protocol/http_header.hpp 9;" d +HTTP_ACCEPT_ENCODEING net/http_protocol/http_header.hpp 8;" d +HTTP_ACCEPT_LANGUAGE net/http_protocol/http_header.hpp 10;" d +HTTP_AUTHORIZATION net/http_protocol/http_header.hpp 11;" d +HTTP_BOTH net/http_protocol/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type +HTTP_CACHE_CONTROL net/http_protocol/http_header.hpp 12;" d +HTTP_CONNECTION net/http_protocol/http_header.hpp 13;" d +HTTP_CONTEND_MD5 net/http_protocol/http_header.hpp 14;" d +HTTP_CONTENT_TYPE net/http_protocol/http_header.hpp 23;" d +HTTP_COOKIE net/http_protocol/http_header.hpp 25;" d +HTTP_DATA net/http_protocol/http_header.hpp 15;" d +HTTP_DNT net/http_protocol/http_header.hpp 24;" d +HTTP_END net/http_protocol/http_header.hpp 29;" d +HTTP_ERRNO_GEN net/http_protocol/http_parser.h 282;" d +HTTP_ERRNO_GEN net/http_protocol/http_parser.h 286;" d +HTTP_ERRNO_MAP net/http_protocol/http_parser.h /^ HTTP_ERRNO_MAP(HTTP_ERRNO_GEN)$/;" e enum:http_errno +HTTP_ERRNO_MAP net/http_protocol/http_parser.h 235;" d +HTTP_ETAG net/http_protocol/http_header.hpp 26;" d +HTTP_EXPECT net/http_protocol/http_header.hpp 16;" d +HTTP_FORWARDED net/http_protocol/http_header.hpp 17;" d +HTTP_HOST net/http_protocol/http_header.hpp 27;" d +HTTP_IMPL_CONNECTED extensions/include/net/ihttp.h /^ HTTP_IMPL_CONNECTED,$/;" e enum:__anon36 +HTTP_IMPL_CONNECTING extensions/include/net/ihttp.h /^ HTTP_IMPL_CONNECTING,$/;" e enum:__anon36 +HTTP_IMPL_CONNECT_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_CONNECT_FAIL,$/;" e enum:__anon36 +HTTP_IMPL_END extensions/include/net/ihttp.h /^ HTTP_IMPL_END,$/;" e enum:__anon36 +HTTP_IMPL_LOCATION extensions/include/net/ihttp.h /^ HTTP_IMPL_LOCATION,$/;" e enum:__anon36 +HTTP_IMPL_LOCATIONED extensions/include/net/ihttp.h /^ HTTP_IMPL_LOCATIONED,$/;" e enum:__anon36 +HTTP_IMPL_LOCATION_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_LOCATION_FAIL,$/;" e enum:__anon36 +HTTP_IMPL_RECV_BODY extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_BODY,$/;" e enum:__anon36 +HTTP_IMPL_RECV_BODYED extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_BODYED,$/;" e enum:__anon36 +HTTP_IMPL_RECV_BODY_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_BODY_FAIL,$/;" e enum:__anon36 +HTTP_IMPL_RECV_HEAD extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_HEAD,$/;" e enum:__anon36 +HTTP_IMPL_RECV_HEADED extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_HEADED,$/;" e enum:__anon36 +HTTP_IMPL_RECV_HEAD_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_RECV_HEAD_FAIL,$/;" e enum:__anon36 +HTTP_IMPL_SEND_BODY extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_BODY,$/;" e enum:__anon36 +HTTP_IMPL_SEND_BODYED extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_BODYED,$/;" e enum:__anon36 +HTTP_IMPL_SEND_BODY_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_BODY_FAIL,$/;" e enum:__anon36 +HTTP_IMPL_SEND_HEAD extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_HEAD,$/;" e enum:__anon36 +HTTP_IMPL_SEND_HEADED extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_HEADED,$/;" e enum:__anon36 +HTTP_IMPL_SEND_HEAD_FAIL extensions/include/net/ihttp.h /^ HTTP_IMPL_SEND_HEAD_FAIL,$/;" e enum:__anon36 +HTTP_IMPL_START extensions/include/net/ihttp.h /^ HTTP_IMPL_START = 0,$/;" e enum:__anon36 +HTTP_IMPL_UNKNOWN extensions/include/net/ihttp.h /^ HTTP_IMPL_UNKNOWN$/;" e enum:__anon36 +HTTP_KEEPALIVE net/http_protocol/http_header.hpp 19;" d +HTTP_MAX_HEADER_SIZE net/http_protocol/http_parser.h 63;" d +HTTP_METHOD_CONNECT extensions/include/net/ihttp.h /^ HTTP_METHOD_CONNECT, $/;" e enum:__anon38 +HTTP_METHOD_DELETE extensions/include/net/ihttp.h /^ HTTP_METHOD_DELETE, $/;" e enum:__anon38 +HTTP_METHOD_GET extensions/include/net/ihttp.h /^ HTTP_METHOD_GET, $/;" e enum:__anon38 +HTTP_METHOD_HEAD extensions/include/net/ihttp.h /^ HTTP_METHOD_HEAD, $/;" e enum:__anon38 +HTTP_METHOD_MAP net/http_protocol/http_parser.h /^ HTTP_METHOD_MAP(XX)$/;" e enum:http_method +HTTP_METHOD_MAP net/http_protocol/http_parser.h 163;" d +HTTP_METHOD_OPTION extensions/include/net/ihttp.h /^ HTTP_METHOD_OPTION, $/;" e enum:__anon38 +HTTP_METHOD_OTHER extensions/include/net/ihttp.h /^ HTTP_METHOD_OTHER, $/;" e enum:__anon38 +HTTP_METHOD_POST extensions/include/net/ihttp.h /^ HTTP_METHOD_POST, $/;" e enum:__anon38 +HTTP_METHOD_PROPFIND extensions/include/net/ihttp.h /^ HTTP_METHOD_PROPFIND, $/;" e enum:__anon38 +HTTP_METHOD_PURGE extensions/include/net/ihttp.h /^ HTTP_METHOD_PURGE, $/;" e enum:__anon38 +HTTP_METHOD_PUT extensions/include/net/ihttp.h /^ HTTP_METHOD_PUT, $/;" e enum:__anon38 +HTTP_METHOD_UNKNOWN extensions/include/net/ihttp.h /^ HTTP_METHOD_UNKNOWN, $/;" e enum:__anon38 +HTTP_MIME_FILE extensions/include/net/ihttp.h /^ HTTP_MIME_FILE \/\/ http mime file $/;" e enum:__anon40 +HTTP_MIME_PARAM extensions/include/net/ihttp.h /^ HTTP_MIME_PARAM, \/\/ http mime param$/;" e enum:__anon40 +HTTP_PARSER_ERRNO net/http_protocol/http_parser.h 290;" d +HTTP_PARSER_STRICT net/http_protocol/http_parser.h 52;" d +HTTP_PARSER_VERSION_MAJOR net/http_protocol/http_parser.h 28;" d +HTTP_PARSER_VERSION_MINOR net/http_protocol/http_parser.h 29;" d +HTTP_PARSER_VERSION_PATCH net/http_protocol/http_parser.h 30;" d +HTTP_RANGE net/http_protocol/http_header.hpp 21;" d +HTTP_REFERER net/http_protocol/http_header.hpp 20;" d +HTTP_REQUEST net/http_protocol/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type +HTTP_REQUEST_MULTIPART_FORM extensions/include/net/ihttp.h /^ HTTP_REQUEST_MULTIPART_FORM,$/;" e enum:__anon39 +HTTP_REQUEST_NORMAL extensions/include/net/ihttp.h /^ HTTP_REQUEST_NORMAL,$/;" e enum:__anon39 +HTTP_REQUEST_OCTET_STREAM extensions/include/net/ihttp.h /^ HTTP_REQUEST_OCTET_STREAM,$/;" e enum:__anon39 +HTTP_REQUEST_OTHER extensions/include/net/ihttp.h /^ HTTP_REQUEST_OTHER$/;" e enum:__anon39 +HTTP_REQUEST_TEXT_JSON extensions/include/net/ihttp.h /^ HTTP_REQUEST_TEXT_JSON,$/;" e enum:__anon39 +HTTP_REQUEST_TEXT_XML extensions/include/net/ihttp.h /^ HTTP_REQUEST_TEXT_XML,$/;" e enum:__anon39 +HTTP_RESPONSE net/http_protocol/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" e enum:http_parser_type +HTTP_STATUS_MAP net/http_protocol/http_parser.h /^ HTTP_STATUS_MAP(XX)$/;" e enum:http_status +HTTP_STATUS_MAP net/http_protocol/http_parser.h 93;" d +HTTP_STRERROR_GEN net/http_protocol/http_parser.cpp 462;" d file: +HTTP_STRERROR_GEN net/http_protocol/http_parser.cpp 469;" d file: HTTP_UNKNOWN polipo/http.h 115;" d -HTTP_UPGRADE_INSECURE_REQUESTS http/http/http_header.hpp 22;" d -HTTP_USE_AGENT http/http/http_header.hpp 18;" d -HWINSTA compat/darwinossysdef.h /^typedef void* HWINSTA;$/;" t -HWINSTA compat/posixossysdef.h /^typedef void* HWINSTA;$/;" t -HWND compat/darwinossysdef.h /^typedef void* HWND;$/;" t -HWND compat/posixossysdef.h /^typedef void* HWND;$/;" t +HTTP_UPGRADE_INSECURE_REQUESTS net/http_protocol/http_header.hpp 22;" d +HTTP_USE_AGENT net/http_protocol/http_header.hpp 18;" d +HWINSTA crt/darwinossysdef.h /^typedef void* HWINSTA;$/;" t +HWINSTA crt/posixossysdef.h /^typedef void* HWINSTA;$/;" t +HWND crt/darwinossysdef.h /^typedef void* HWND;$/;" t +HWND crt/posixossysdef.h /^typedef void* HWND;$/;" t HWNDSHADOW uibase/uilib/utils/wndshadow.cpp /^typedef struct HWNDSHADOW$/;" s file: HandleCustomMessage uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::HandleCustomMessage(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)$/;" f class:DuiLib::WindowImplBase HandleMessage uibase/uilib/control/uicombo.cpp /^LRESULT CComboWnd::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::CComboWnd @@ -3417,12 +3110,14 @@ HandleMessage uibase/uilib/control/uiedit.cpp /^ LRESULT CEditWnd::HandleMessage HandleMessage uibase/uilib/core/uibase.cpp /^LRESULT CWindowWnd::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::CWindowWnd HandleMessage uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::WindowImplBase HandleMessage uibase/uiwindowimpl.cpp /^LRESULT CUiWindowsImpl::HandleMessage(UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:CUiWindowsImpl +HasATagFileOrTagEnvChanged vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:HasATagFileOrTagEnvChanged()$/;" f HasAttribute uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasAttribute(LPCTSTR pstrName)$/;" f class:DuiLib::CMarkupNode HasAttributes uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasAttributes()$/;" f class:DuiLib::CMarkupNode HasChildren uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasChildren() const$/;" f class:DuiLib::CMarkupNode HasRowid access/sqlite3.c 10779;" d file: HasRowid logs/sqlite3.c 10779;" d file: HasSiblings uibase/uilib/core/uimarkup.cpp /^bool CMarkupNode::HasSiblings() const$/;" f class:DuiLib::CMarkupNode +HasTagEnvChanged vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:HasTagEnvChanged()$/;" f Hash access/sqlite3.c /^struct Hash {$/;" s file: Hash access/sqlite3.c /^typedef struct Hash Hash;$/;" t typeref:struct:Hash file: Hash logs/sqlite3.c /^struct Hash {$/;" s file: @@ -3443,21 +3138,21 @@ HomeUp uibase/uilib/core/uicontainer.cpp /^ void CContainerUI::HomeUp()$/;" f cl HostAddressPtr polipo/dns.h /^} HostAddressRec, *HostAddressPtr;$/;" t typeref:struct:_HostAddress HostAddressRec polipo/dns.h /^} HostAddressRec, *HostAddressPtr;$/;" t typeref:struct:_HostAddress HwndShadow uibase/uilib/utils/wndshadow.cpp /^} HwndShadow;$/;" t typeref:struct:HWNDSHADOW file: -I base/algorithm/compat_md5.c 6;" d file: I polipo/md5.c 76;" d file: -ICMP_ADDRESS net/protocol/icmp.h 20;" d -ICMP_ADDRESSREPLY net/protocol/icmp.h 21;" d -ICMP_DEST_UNREACH net/protocol/icmp.h 10;" d -ICMP_ECHO net/protocol/icmp.h 13;" d -ICMP_ECHOREPLY net/protocol/icmp.h 9;" d -ICMP_INFO_REPLY net/protocol/icmp.h 19;" d -ICMP_INFO_REQUEST net/protocol/icmp.h 18;" d -ICMP_PARAMETERPROB net/protocol/icmp.h 15;" d -ICMP_REDIRECT net/protocol/icmp.h 12;" d -ICMP_SOURCE_QUENCH net/protocol/icmp.h 11;" d -ICMP_TIMESTAMP net/protocol/icmp.h 16;" d -ICMP_TIMESTAMPREPLY net/protocol/icmp.h 17;" d -ICMP_TIME_EXCEEDED net/protocol/icmp.h 14;" d +I stdcrt/algorithm/compat_md5.c 6;" d file: +ICMP_ADDRESS net/protocol/icmp.h 25;" d +ICMP_ADDRESSREPLY net/protocol/icmp.h 26;" d +ICMP_DEST_UNREACH net/protocol/icmp.h 15;" d +ICMP_ECHO net/protocol/icmp.h 18;" d +ICMP_ECHOREPLY net/protocol/icmp.h 14;" d +ICMP_INFO_REPLY net/protocol/icmp.h 24;" d +ICMP_INFO_REQUEST net/protocol/icmp.h 23;" d +ICMP_PARAMETERPROB net/protocol/icmp.h 20;" d +ICMP_REDIRECT net/protocol/icmp.h 17;" d +ICMP_SOURCE_QUENCH net/protocol/icmp.h 16;" d +ICMP_TIMESTAMP net/protocol/icmp.h 21;" d +ICMP_TIMESTAMPREPLY net/protocol/icmp.h 22;" d +ICMP_TIME_EXCEEDED net/protocol/icmp.h 19;" d IComClassFactory_AddRef include/dlcom/unknown.h 109;" d IComClassFactory_CreateInstance include/dlcom/unknown.h 116;" d IComClassFactory_LockServer include/dlcom/unknown.h 119;" d @@ -3467,14 +3162,13 @@ IContainerUI uibase/uilib/core/uicontainer.h /^class IContainerUI$/;" c namespac IDI_ICON1 guidgen/resource.h 5;" d IDI_ICON1 main/resource.h 5;" d IDI_ICON1 testmain/resource.h 5;" d -ID_VOID_MAIN CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 6;" d file: IDlgBuilderCB uibase/uilib/core/uidlgbuilder.h /^class IDlgBuilderCB$/;" c namespace:DuiLib -II base/algorithm/compat_md5.c 26;" d file: II polipo/md5.c 111;" d file: -IID compat/compat_guid.hpp /^typedef GUID IID;$/;" t +II stdcrt/algorithm/compat_md5.c 26;" d file: +IID crt/crt_guid.hpp /^typedef GUID IID;$/;" t IID_ITextHost uibase/uilib/control/uirichedit.cpp /^EXTERN_C const IID IID_ITextHost = { \/* c5bdd8d0-d26e-11ce-a89e-00aa006cadc5 *\/$/;" v IID_ITextServices uibase/uilib/control/uirichedit.cpp /^EXTERN_C const IID IID_ITextServices = { \/\/ 8d33f740-cf58-11ce-a89d-00aa006cadc5$/;" v -IID_NULL compat/compat_guid.hpp 43;" d +IID_NULL crt/crt_guid.hpp 43;" d IImpModuleBase include/dlcom/calldll.hpp /^ IImpModuleBase(const TCHAR *pModuleName):m_hMod(NULL)$/;" f class:IImpModuleBase IImpModuleBase include/dlcom/calldll.hpp /^ class CPP_NO_VTABLE IImpModuleBase$/;" c IImpModuleBase include/utilex/calldll.hpp /^ IImpModuleBase()$/;" f class:IImpModuleBase @@ -3484,16 +3178,16 @@ IListItemUI uibase/uilib/control/uilist.h /^class IListItemUI$/;" c namespace:Du IListOwnerUI uibase/uilib/control/uilist.h /^class IListOwnerUI$/;" c namespace:DuiLib IListUI uibase/uilib/control/uilist.h /^class IListUI : public IListOwnerUI$/;" c namespace:DuiLib IMessageFilterUI uibase/uilib/core/uimanager.h /^class IMessageFilterUI$/;" c namespace:DuiLib -IN6ADDRSZ base/net/compat_sockinet.c 265;" d file: -INADDRSZ base/net/compat_sockinet.c 266;" d file: +IN6ADDRSZ stdcrt/net/compat_sockinet.c 264;" d file: +INADDRSZ stdcrt/net/compat_sockinet.c 265;" d file: INDEX_TAG container/plugins.cpp 5;" d file: INFODIR polipo/Makefile /^INFODIR = $(PREFIX)\/info$/;" m -INSNULL compat/compat_tpid.hpp 11;" d -INSNULL compat/compat_tpid.hpp 18;" d -INSNULL compat/compat_tpid.hpp 27;" d -INT compat/darwinossysdef.h /^typedef int INT;$/;" t -INT compat/posixossysdef.h /^typedef int INT;$/;" t -INT16SZ base/net/compat_sockinet.c 267;" d file: +INSNULL crt/crt_tpid.hpp 11;" d +INSNULL crt/crt_tpid.hpp 18;" d +INSNULL crt/crt_tpid.hpp 27;" d +INT crt/darwinossysdef.h /^typedef int INT;$/;" t +INT crt/posixossysdef.h /^typedef int INT;$/;" t +INT16SZ stdcrt/net/compat_sockinet.c 266;" d file: INT16_TYPE access/sqlite3.c 8320;" d file: INT16_TYPE access/sqlite3.c 8322;" d file: INT16_TYPE logs/sqlite3.c 8320;" d file: @@ -3504,18 +3198,18 @@ INT8_TYPE logs/sqlite3.c 8334;" d file: INT8_TYPE logs/sqlite3.c 8336;" d file: INTERFACE access/sqlite3.c 114893;" d file: INTERFACE logs/sqlite3.c 114893;" d file: -INT_PTR compat/compat_bits.hpp /^ typedef int INT_PTR, *PINT_PTR;$/;" t -INT_PTR compat/compat_bits.hpp /^ typedef long long INT_PTR, *PINT_PTR;$/;" t +INT_PTR crt/crt_bits.hpp /^ typedef int INT_PTR, *PINT_PTR;$/;" t +INT_PTR crt/crt_bits.hpp /^ typedef long long INT_PTR, *PINT_PTR;$/;" t INULL include/dlcom/unknown.h 140;" d INVALID_FILE_ATTRIBUTES access/sqlite3.c 31452;" d file: INVALID_FILE_ATTRIBUTES logs/sqlite3.c 31452;" d file: -INVALID_HANDLE_VALUE compat/compat_tpid.hpp 24;" d -INVALID_HANDLE_VALUE compat/compat_tpid.hpp 33;" d -INVALID_NET_PORT compat/compat_sock.h 15;" d +INVALID_HANDLE_VALUE crt/crt_tpid.hpp 24;" d +INVALID_HANDLE_VALUE crt/crt_tpid.hpp 33;" d +INVALID_NET_PORT crt/crt_sock.h 15;" d INVALID_SET_FILE_POINTER access/sqlite3.c 33507;" d file: INVALID_SET_FILE_POINTER logs/sqlite3.c 33507;" d file: -INVALID_SOCKET compat/compat_sock.h 57;" d -INVALID_SOCKET compat/compat_sock.h 65;" d +INVALID_SOCKET crt/crt_sock.h 57;" d +INVALID_SOCKET crt/crt_sock.h 65;" d IN_DECLARE_VTAB access/sqlite3.c 11765;" d file: IN_DECLARE_VTAB access/sqlite3.c 11767;" d file: IN_DECLARE_VTAB logs/sqlite3.c 11765;" d file: @@ -3535,7 +3229,7 @@ IOTRACE access/sqlite3.c 12850;" d file: IOTRACE access/sqlite3.c 12854;" d file: IOTRACE logs/sqlite3.c 12850;" d file: IOTRACE logs/sqlite3.c 12854;" d file: -IOV_MAX compat/compat_msghdr.h 15;" d +IOV_MAX crt/crt_msghdr.h 15;" d IO_BUF3 polipo/io.h 37;" d IO_BUF_LOCATION polipo/io.h 39;" d IO_CHUNKED polipo/io.h 32;" d @@ -3550,32 +3244,32 @@ ISAUTOVACUUM access/sqlite3.c 50367;" d file: ISAUTOVACUUM logs/sqlite3.c 50365;" d file: ISAUTOVACUUM logs/sqlite3.c 50367;" d file: IS_AGENT extensions/include/msgbus/imsgbus.h 25;" d -IS_ALPHA http/http/http_parser.cpp 411;" d file: -IS_ALPHANUM http/http/http_parser.cpp 413;" d file: +IS_ALPHA net/http_protocol/http_parser.cpp 411;" d file: +IS_ALPHANUM net/http_protocol/http_parser.cpp 413;" d file: IS_BIG_INT access/sqlite3.c 7931;" d file: IS_BIG_INT logs/sqlite3.c 7931;" d file: IS_BROKER extensions/include/msgbus/imsgbus.h 22;" d IS_CONSUMER extensions/include/msgbus/imsgbus.h 24;" d -IS_HEADER_CHAR http/http/http_parser.cpp 440;" d file: -IS_HEX http/http/http_parser.cpp 414;" d file: -IS_HOST_CHAR http/http/http_parser.cpp 427;" d file: -IS_HOST_CHAR http/http/http_parser.cpp 432;" d file: +IS_HEADER_CHAR net/http_protocol/http_parser.cpp 440;" d file: +IS_HEX net/http_protocol/http_parser.cpp 414;" d file: +IS_HOST_CHAR net/http_protocol/http_parser.cpp 427;" d file: +IS_HOST_CHAR net/http_protocol/http_parser.cpp 432;" d file: IS_LOCK_ERROR access/sqlite3.c 23532;" d file: IS_LOCK_ERROR logs/sqlite3.c 23532;" d file: -IS_MARK http/http/http_parser.cpp 415;" d file: -IS_NUM http/http/http_parser.cpp 412;" d file: +IS_MARK net/http_protocol/http_parser.cpp 415;" d file: +IS_NUM net/http_protocol/http_parser.cpp 412;" d file: IS_PRODUCER extensions/include/msgbus/imsgbus.h 23;" d IS_REP extensions/include/msgbus/imsgbus.h 27;" d IS_REQ extensions/include/msgbus/imsgbus.h 26;" d IS_UI_BUTTON extensions/include/ui/iuibase.h 31;" d IS_UI_MESSAGELOOP extensions/include/ui/iuibase.h 25;" d IS_UI_WINDOWS extensions/include/ui/iuibase.h 28;" d -IS_URL_CHAR http/http/http_parser.cpp 426;" d file: -IS_URL_CHAR http/http/http_parser.cpp 430;" d file: -IS_USERINFO_CHAR http/http/http_parser.cpp 418;" d file: -ITER compat/compat_iterator.h /^struct ITER {$/;" s -ITER compat/compat_iterator.h /^typedef struct ITER ITER;$/;" t typeref:struct:ITER -ITER_INFO compat/compat_iterator.h 34;" d +IS_URL_CHAR net/http_protocol/http_parser.cpp 426;" d file: +IS_URL_CHAR net/http_protocol/http_parser.cpp 430;" d file: +IS_USERINFO_CHAR net/http_protocol/http_parser.cpp 418;" d file: +ITER crt/crt_iterator.h /^struct ITER {$/;" s +ITER crt/crt_iterator.h /^typedef struct ITER ITER;$/;" t typeref:struct:ITER +ITER_INFO crt/crt_iterator.h 34;" d IcuCursor access/sqlite3.c /^struct IcuCursor {$/;" s file: IcuCursor access/sqlite3.c /^typedef struct IcuCursor IcuCursor;$/;" t typeref:struct:IcuCursor file: IcuCursor logs/sqlite3.c /^struct IcuCursor {$/;" s file: @@ -3598,8 +3292,8 @@ IdList logs/sqlite3.c /^struct IdList {$/;" s file: IdList logs/sqlite3.c /^typedef struct IdList IdList;$/;" t typeref:struct:IdList file: IdList_item access/sqlite3.c /^ struct IdList_item {$/;" s struct:IdList file: IdList_item logs/sqlite3.c /^ struct IdList_item {$/;" s struct:IdList file: -Id_Faild http/httptimpl.cpp /^ULONG CHttptImpl::Id_Faild(ULONG ulid) {$/;" f class:CHttptImpl -Id_Suc http/httptimpl.cpp /^ULONG CHttptImpl::Id_Suc(ULONG ulid) {$/;" f class:CHttptImpl +Id_Faild net/httptimpl.cpp /^ULONG CHttptImpl::Id_Faild(ULONG ulid) {$/;" f class:CHttptImpl +Id_Suc net/httptimpl.cpp /^ULONG CHttptImpl::Id_Suc(ULONG ulid) {$/;" f class:CHttptImpl IfNotOmitAV access/sqlite3.c 50733;" d file: IfNotOmitAV access/sqlite3.c 50735;" d file: IfNotOmitAV logs/sqlite3.c 50733;" d file: @@ -3607,7 +3301,7 @@ IfNotOmitAV logs/sqlite3.c 50735;" d file: IgnorableOrderby access/sqlite3.c 11561;" d file: IgnorableOrderby logs/sqlite3.c 11561;" d file: InLoop access/sqlite3.c /^ struct InLoop {$/;" s struct:WhereLevel::__anon16::__anon17 file: -InLoop logs/sqlite3.c /^ struct InLoop {$/;" s struct:WhereLevel::__anon61::__anon62 file: +InLoop logs/sqlite3.c /^ struct InLoop {$/;" s struct:WhereLevel::__anon56::__anon57 file: Incrblob access/sqlite3.c /^struct Incrblob {$/;" s file: Incrblob access/sqlite3.c /^typedef struct Incrblob Incrblob;$/;" t typeref:struct:Incrblob file: Incrblob logs/sqlite3.c /^struct Incrblob {$/;" s file: @@ -3625,25 +3319,27 @@ IndexSample access/sqlite3.c /^typedef struct IndexSample IndexSample;$/;" t typ IndexSample logs/sqlite3.c /^struct IndexSample {$/;" s file: IndexSample logs/sqlite3.c /^typedef struct IndexSample IndexSample;$/;" t typeref:struct:IndexSample file: Inflate uibase/uilib/utils/utils.cpp /^ void CDuiRect::Inflate(int cx, int cy)$/;" f class:DuiLib::CDuiRect -Init access/dbimpl.cpp /^std_method_impl CDatabaseImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CDatabaseImpl -Init asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CAsynFrameImpl +Init access/dbimpl.cpp /^std_method_impl CDatabaseImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CDatabaseImpl +Init asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAsynFrameImpl Init container/mainrun.cpp /^std_method_impl CMainRun::Init(_pinstance hInstance, basic_tchar* argv[], int iargc)$/;" f class:CMainRun Init dispatch/AppDispatch.java /^ public String Init(String path) {$/;" m class:AppDispatch Init dispatch/src/loadcontainer.cc /^int CLoadContainer::Init(_pinstance hinstance, const basic_tchar* path, const char* code)$/;" f class:CLoadContainer -Init http/httpimpl.cpp /^std_method_impl CHttpImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CHttpImpl -Init http/httptimpl.cpp /^std_method_impl CHttptImpl::Init(ITcpSocket* pIAsyncTcpSocket, int sbuflen, int rbuflen,$/;" f class:CHttptImpl -Init logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLogDataBaseImpl -Init logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLogFiltersImpl -Init logs/logsimpl.cpp /^std_method_impl CLogsImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLogsImpl -Init mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CMainViewImpl -Init mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CMemPoolImpl +Init logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLogDataBaseImpl +Init logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLogFiltersImpl +Init logs/logsimpl.cpp /^std_method_impl CLogsImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLogsImpl +Init mainui/appviewimpl.cpp /^std_method_impl CAppViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAppViewImpl +Init mainuiapp/appviewimpl.cpp /^std_method_impl CAppViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAppViewImpl +Init mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CMainViewImpl +Init mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CMemPoolImpl Init msgbus/broker.cpp /^std_method_impl CBrokerImpl::Init()$/;" f class:CBrokerImpl -Init msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CMsgBusImpl -Init net/netimpl.cpp /^std_method_impl CNetImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CNetImpl -Init render/renderimpl.cpp /^std_method_impl CRenderImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CRenderImpl -Init res/fontimpl.cpp /^std_method_impl CFontImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CFontImpl -Init res/langimpl.cpp /^std_method_impl CLangImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CLangImpl -Init uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::Init(int Argc, basic_tchar* Argv[], void* Object)$/;" f class:CUiBaseImpl +Init msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CMsgBusImpl +Init net/httptimpl.cpp /^std_method_impl CHttptImpl::Init(ITcpSocket* pIAsyncTcpSocket, int sbuflen, int rbuflen,$/;" f class:CHttptImpl +Init net/netimpl.cpp /^std_method_impl CNetImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CNetImpl +Init render/renderimpl.cpp /^std_method_impl CRenderImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CRenderImpl +Init res/fontimpl.cpp /^std_method_impl CFontImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CFontImpl +Init res/langimpl.cpp /^std_method_impl CLangImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CLangImpl +Init testmain/appviewimpl.cpp /^std_method_impl CAppViewImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CAppViewImpl +Init uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::Init(int Argc, basic_tchar* Argv[], IBase* pRot, IBase* pBase)$/;" f class:CUiBaseImpl Init uibase/uicontrolimpl.cpp /^std_method_impl CUiControlImpl::Init()$/;" f class:CUiControlImpl Init uibase/uilib/control/uicombo.cpp /^void CComboWnd::Init(CComboUI* pOwner)$/;" f class:DuiLib::CComboWnd Init uibase/uilib/control/uidatetime.cpp /^ void CDateTimeWnd::Init(CDateTimeUI* pOwner)$/;" f class:DuiLib::CDateTimeWnd @@ -3653,23 +3349,25 @@ Init uibase/uilib/core/uicontrol.cpp /^ void CControlUI::Init()$/;" f class:DuiL Init uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::Init(HWND hWnd, LPCTSTR pstrName)$/;" f class:DuiLib::CPaintManagerUI Init uibase/uilib/layout/uichildlayout.cpp /^ void CChildLayoutUI::Init()$/;" f class:DuiLib::CChildLayoutUI InitBus mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::InitBus()$/;" f class:CMainViewImpl -InitContainer include/dlcom/objectrun.hpp /^ int InitContainer(_pinstance instance, basic_tchar* argv[], int argc) {$/;" f class:CContainer +InitComplete vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:InitComplete()$/;" f +InitContainer include/dlcom/objectrun.hpp /^ HRESULT InitContainer(_pinstance instance, basic_tchar* argv[], int argc) {$/;" f class:CContainer InitControls uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::InitControls(CControlUI* pControl, CControlUI* pParent \/*= NULL*\/)$/;" f class:DuiLib::CPaintManagerUI InitData access/sqlite3.c /^} InitData;$/;" t typeref:struct:__anon7 file: -InitData logs/sqlite3.c /^} InitData;$/;" t typeref:struct:__anon52 file: +InitData logs/sqlite3.c /^} InitData;$/;" t typeref:struct:__anon47 file: InitDefaultCharFormat uibase/uilib/control/uirichedit.cpp /^HRESULT InitDefaultCharFormat(CRichEditUI* re, CHARFORMAT2W* pcf, HFONT hfont) $/;" f namespace:DuiLib InitDefaultParaFormat uibase/uilib/control/uirichedit.cpp /^HRESULT InitDefaultParaFormat(CRichEditUI* re, PARAFORMAT2* ppf) $/;" f namespace:DuiLib InitEnv dispatch/AppDispatch.java /^ public static native String InitEnv(String root,String code,int type, int exit);$/;" m class:AppDispatch InitGifImage uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::InitGifImage()$/;" f class:DuiLib::CGifAnimUI InitIAT include/dlcom/calldll.hpp /^ virtual void InitIAT()$/;" f class:IImpModuleBase InitIAT include/utilex/calldll.hpp /^ virtual void InitIAT()$/;" f class:IImpModuleBase -InitRPCEnv base/init/compat_init.c /^HRESULT InitRPCEnv(LPCSTR guid)$/;" f -InitSocketEnv base/init/compat_init.c /^HRESULT InitSocketEnv(int low, int high)$/;" f +InitRPCEnv stdcrt/init/compat_init.c /^HRESULT InitRPCEnv(LPCSTR guid)$/;" f +InitSocketEnv stdcrt/init/compat_init.c /^HRESULT InitSocketEnv(int low, int high)$/;" f InitWindow uibase/uilib/utils/winimplbase.h /^ virtual void InitWindow(){};$/;" f class:DuiLib::WindowImplBase Initialize dispatch/src/dispatch.cc /^ void Initialize(Local exports, Local module, void* priv) {$/;" f namespace:app Initialize uibase/uilib/utils/wndshadow.cpp /^bool CWndShadow::Initialize(HINSTANCE hInstance)$/;" f class:CWndShadow -InlineIsEqualGUID compat/compat_guid.hpp /^__inline int InlineIsEqualGUID(REFGUID rguid1, REFGUID rguid2)$/;" f -InlineIsEqualGUID compat/compat_guid.hpp 111;" d +InitializeMRUList vim_tool/.vim/plugin/winmanager.vim /^function! InitializeMRUList()$/;" f +InlineIsEqualGUID crt/crt_guid.hpp /^__inline int InlineIsEqualGUID(REFGUID rguid1, REFGUID rguid2)$/;" f +InlineIsEqualGUID crt/crt_guid.hpp 111;" d Insert access/statement.cpp /^std_method_type_impl(int) CStatementImpl::Insert(LPCSTR lpszSQL, UINT ulen)$/;" f class:CStatementImpl Insert logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Insert(LPCSTR name, cJSON* pRoot,$/;" f class:CLogDataBaseImpl Insert uibase/uilib/utils/utils.cpp /^ bool CDuiStringPtrMap::Insert(LPCTSTR key, LPVOID pData)$/;" f class:DuiLib::CDuiStringPtrMap @@ -3713,10 +3411,11 @@ IsAutoDestroy uibase/uilib/core/uicontainer.cpp /^ bool CContainerUI::IsAutoDest IsAutoPlay uibase/uilib/control/uigifanim.cpp /^ bool CGifAnimUI::IsAutoPlay() const$/;" f class:DuiLib::CGifAnimUI IsAutoSelAll uibase/uilib/control/uiedit.cpp /^ bool CEditUI::IsAutoSelAll()$/;" f class:DuiLib::CEditUI IsAutoSize uibase/uilib/control/uigifanim.cpp /^ bool CGifAnimUI::IsAutoSize() const$/;" f class:DuiLib::CGifAnimUI +IsCached vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:IsCached(cache, szKey1, szKey2)$/;" f IsCaptured uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::IsCaptured()$/;" f class:DuiLib::CTxtWinHost IsCaptured uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::IsCaptured()$/;" f class:DuiLib::CPaintManagerUI IsCheckBoxSelected uibase/uilib/control/uitreeview.cpp /^ bool CTreeNodeUI::IsCheckBoxSelected() const$/;" f class:DuiLib::CTreeNodeUI -IsComplete http/httptimpl.cpp /^std_method_type_impl(int) CHttptImpl::IsComplete()$/;" f class:CHttptImpl +IsComplete net/httptimpl.cpp /^std_method_type_impl(int) CHttptImpl::IsComplete()$/;" f class:CHttptImpl IsCompositionEnabled uibase/uilib/dwm.hpp /^ BOOL IsCompositionEnabled() const$/;" f class:CDwm IsConnect msgbus/auth.hpp /^static_inline HRESULT IsConnect(Connect_Protocol* con) {$/;" f IsContextMenuUsed uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::IsContextMenuUsed() const$/;" f class:DuiLib::CControlUI @@ -3728,18 +3427,21 @@ IsEmpty uibase/uilib/utils/utils.cpp /^ bool CDuiString::IsEmpty() const $/;" f IsEmpty uibase/uilib/utils/utils.cpp /^ bool CDuiValArray::IsEmpty() const$/;" f class:DuiLib::CDuiValArray IsEnabled uibase/uicontrolimpl.cpp /^std_method_type_impl(int) CUiControlImpl::IsEnabled()$/;" f class:CUiControlImpl IsEnabled uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::IsEnabled() const$/;" f class:DuiLib::CControlUI -IsEqualCLSID compat/compat_guid.hpp 137;" d -IsEqualCLSID compat/compat_guid.hpp 48;" d -IsEqualFMTID compat/compat_guid.hpp 52;" d -IsEqualGUID compat/compat_guid.hpp /^__inline int IsEqualGUID(REFGUID rguid1, REFGUID rguid2)$/;" f -IsEqualGUID compat/compat_guid.hpp 117;" d -IsEqualGUID compat/compat_guid.hpp 135;" d -IsEqualIID compat/compat_guid.hpp 136;" d -IsEqualIID compat/compat_guid.hpp 44;" d +IsEqualCLSID crt/crt_guid.hpp 137;" d +IsEqualCLSID crt/crt_guid.hpp 48;" d +IsEqualFMTID crt/crt_guid.hpp 52;" d +IsEqualGUID crt/crt_guid.hpp /^__inline int IsEqualGUID(REFGUID rguid1, REFGUID rguid2)$/;" f +IsEqualGUID crt/crt_guid.hpp 117;" d +IsEqualGUID crt/crt_guid.hpp 135;" d +IsEqualIID crt/crt_guid.hpp 136;" d +IsEqualIID crt/crt_guid.hpp 44;" d IsExist logs/tablestruct.cpp /^std_method_type_impl(UINT) CTableStruct::IsExist()$/;" f class:CTableStruct IsExpandable uibase/uilib/control/uilist.cpp /^bool CListContainerElementUI::IsExpandable() const$/;" f class:DuiLib::CListContainerElementUI IsExpanded uibase/uilib/control/uilist.cpp /^bool CListContainerElementUI::IsExpanded() const$/;" f class:DuiLib::CListContainerElementUI IsExpanded uibase/uilib/control/uilist.cpp /^bool CListElementUI::IsExpanded() const$/;" f class:DuiLib::CListElementUI +IsExplorerBuffer vim_tool/.vim/plugin/winmanager.vim /^function! IsExplorerBuffer(num)$/;" f +IsExplorerGroupVisible vim_tool/.vim/plugin/winmanager.vim /^function! IsExplorerGroupVisible(i, ...)$/;" f +IsExplorerVisible vim_tool/.vim/plugin/winmanager.vim /^function! IsExplorerVisible(i)$/;" f IsFloat uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::IsFloat() const$/;" f class:DuiLib::CControlUI IsFocused uibase/uicontrolimpl.cpp /^std_method_type_impl(int) CUiControlImpl::IsFocused()$/;" f class:CUiControlImpl IsFocused uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::IsFocused() const$/;" f class:DuiLib::CControlUI @@ -3754,10 +3456,10 @@ IsHorizontal uibase/uilib/control/uiscrollbar.cpp /^bool CScrollBarUI::IsHorizon IsImmMode uibase/uilib/control/uislider.cpp /^ bool CSliderUI::IsImmMode() const$/;" f class:DuiLib::CSliderUI IsItemShowHtml uibase/uilib/control/uicombo.cpp /^bool CComboUI::IsItemShowHtml()$/;" f class:DuiLib::CComboUI IsItemShowHtml uibase/uilib/control/uilist.cpp /^bool CListUI::IsItemShowHtml()$/;" f class:DuiLib::CListUI -IsJsonArray compat/compat_cjson.h 204;" d -IsJsonNumber compat/compat_cjson.h 205;" d -IsJsonObject compat/compat_cjson.h 202;" d -IsJsonString compat/compat_cjson.h 203;" d +IsJsonArray crt/crt_cjson.h 204;" d +IsJsonNumber crt/crt_cjson.h 205;" d +IsJsonObject crt/crt_cjson.h 202;" d +IsJsonString crt/crt_cjson.h 203;" d IsKeyboardEnabled uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::IsKeyboardEnabled() const$/;" f class:DuiLib::CControlUI IsLayered uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::IsLayered()$/;" f class:DuiLib::CPaintManagerUI IsListen msgbus/broker.cpp /^std_method_impl CBrokerImpl::IsListen()$/;" f class:CBrokerImpl @@ -3772,6 +3474,7 @@ IsMultiLine uibase/uilib/control/uilabel.cpp /^ bool CLabelUI::IsMultiLine()$/;" IsNoActivate uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::IsNoActivate()$/;" f class:DuiLib::CPaintManagerUI IsNull uibase/uilib/utils/utils.cpp /^ bool CDuiRect::IsNull() const$/;" f class:DuiLib::CDuiRect IsNumberOnly uibase/uilib/control/uiedit.cpp /^ bool CEditUI::IsNumberOnly() const$/;" f class:DuiLib::CEditUI +IsOnlyVertical vim_tool/.vim/plugin/winmanager.vim /^function! IsOnlyVertical()$/;" f IsOpen asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::IsOpen()$/;" f class:CTcpListenSocketImpl IsOpen asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::IsOpen()$/;" f class:CTcpSocketImpl IsOpen asynio/udpsocketimpl.cpp /^std_method_impl CUdpSocketImpl::IsOpen()$/;" f class:CUdpSocketImpl @@ -3812,6 +3515,8 @@ IsTableExist access/dbimpl.cpp /^std_method_type_impl(UINT) CDatabaseImpl::IsTab IsTableExist logs/database.cpp /^std_method_impl CDatabase::IsTableExist(LPCSTR strTableName, UINT& Exist)$/;" f class:CDatabase IsTableExist logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::IsTableExist(LPCSTR name, IBase **pTable)$/;" f class:CLogDataBaseImpl IsTransparent uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::IsTransparent()$/;" f class:DuiLib::CRichEditUI +IsTypeInfoResolved vim_tool/.vim/autoload/omni/cpp/utils.vim /^function! s:IsTypeInfoResolved(szTypeInfo)$/;" f +IsUnnamedType vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:IsUnnamedType(tagItem)$/;" f IsUpdateNeeded uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::IsUpdateNeeded() const$/;" f class:DuiLib::CControlUI IsUpdateNeeded uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::IsUpdateNeeded() const$/;" f class:DuiLib::CPaintManagerUI IsValid access/dbimpl.cpp /^std_method_type_impl(UINT) CDatabaseImpl::IsValid()$/;" f class:CDatabaseImpl @@ -3827,6 +3532,7 @@ IsVisible uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::IsVisible() const$ IsWantCtrlReturn uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::IsWantCtrlReturn()$/;" f class:DuiLib::CRichEditUI IsWantReturn uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::IsWantReturn()$/;" f class:DuiLib::CRichEditUI IsWantTab uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::IsWantTab()$/;" f class:DuiLib::CRichEditUI +IsWinManagerVisible vim_tool/.vim/plugin/winmanager.vim /^function! IsWinManagerVisible()$/;" f IsWordWrap uibase/uilib/control/uirichedit.cpp /^ BOOL IsWordWrap(void) { return fWordWrap; }$/;" f class:DuiLib::CTxtWinHost IsWordWrap uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::IsWordWrap()$/;" f class:DuiLib::CRichEditUI ItemComareFunc uibase/uilib/control/uilist.cpp /^int __cdecl CListBodyUI::ItemComareFunc(const void *item1, const void *item2)$/;" f class:DuiLib::CListBodyUI @@ -3869,7 +3575,7 @@ JournalFileMethods access/sqlite3.c /^static struct sqlite3_io_methods JournalFi JournalFileMethods logs/sqlite3.c /^static struct sqlite3_io_methods JournalFileMethods = {$/;" v typeref:struct:sqlite3_io_methods file: JsNode extensions/include/data/iparser.h /^typedef LPVOID JsNode;$/;" t JsonSafePtr include/utilex/json.hpp /^typedef SafePtr JsonSafePtr;$/;" t -KEEP_ALIVE http/http/http_parser.cpp 166;" d file: +KEEP_ALIVE net/http_protocol/http_parser.cpp 166;" d file: Key uibase/uilib/utils/utils.cpp /^ CDuiString Key;$/;" m struct:DuiLib::TITEM file: KeyClass access/sqlite3.c /^typedef struct KeyClass KeyClass;$/;" t typeref:struct:KeyClass file: KeyClass logs/sqlite3.c /^typedef struct KeyClass KeyClass;$/;" t typeref:struct:KeyClass file: @@ -3884,19 +3590,19 @@ LARGEST_INT64 access/sqlite3.c 8420;" d file: LARGEST_INT64 logs/sqlite3.c 127060;" d file: LARGEST_INT64 logs/sqlite3.c 8420;" d file: LARGE_ATOM_REFCOUNT polipo/atom.h 37;" d -LARGE_INTEGER compat/darwinossysdef.h /^}LARGE_INTEGER;$/;" t typeref:struct:_LARGE_INTEGER -LARGE_INTEGER compat/posixossysdef.h /^}LARGE_INTEGER;$/;" t typeref:struct:_LARGE_INTEGER +LARGE_INTEGER crt/darwinossysdef.h /^}LARGE_INTEGER;$/;" t typeref:struct:_LARGE_INTEGER +LARGE_INTEGER crt/posixossysdef.h /^}LARGE_INTEGER;$/;" t typeref:struct:_LARGE_INTEGER LAYEREDUPDATE_TIMERID uibase/uilib/core/uidefine.h 8;" d LCS_ITERATOR_FINISHED access/sqlite3.c 140155;" d file: LCS_ITERATOR_FINISHED logs/sqlite3.c 140155;" d file: -LF http/http/http_parser.cpp 409;" d file: +LF net/http_protocol/http_parser.cpp 409;" d file: LICENSE_CODE_LEN extensions/include/platform/core/license.h 10;" d LIKEFUNC access/sqlite3.c 10520;" d file: LIKEFUNC logs/sqlite3.c 10520;" d file: -LIKELY compat/compat_core.hpp 10;" d -LIKELY compat/compat_core.hpp 7;" d -LIKELY http/http/http_parser.cpp 67;" d file: -LIKELY http/http/http_parser.cpp 70;" d file: +LIKELY crt/crt_core.hpp 10;" d +LIKELY crt/crt_core.hpp 7;" d +LIKELY net/http_protocol/http_parser.cpp 67;" d file: +LIKELY net/http_protocol/http_parser.cpp 70;" d file: LLONG_MAX uibase/uilib/core/pugixml.cpp 130;" d file: LLONG_MIN uibase/uilib/core/pugixml.cpp 129;" d file: LOCAL_ROOT polipo/Makefile /^LOCAL_ROOT = \/usr\/share\/polipo\/www$/;" m @@ -3910,77 +3616,77 @@ LOGGING_DEFAULT polipo/log.h 47;" d LOGGING_MAX polipo/log.h 48;" d LOGMAX access/sqlite3.c 17573;" d file: LOGMAX logs/sqlite3.c 17573;" d file: -LOG_FORMAT base/compat_log.c 6;" d file: -LOG_PAGE_SIZE base/compat_log.c 7;" d file: -LOG_verbose_tag compat/compat_log.h 14;" d -LONG compat/darwinossysdef.h /^typedef long LONG;$/;" t -LONG compat/posixossysdef.h /^typedef long LONG;$/;" t +LOG_FORMAT stdcrt/compat_log.c 6;" d file: +LOG_PAGE_SIZE stdcrt/compat_log.c 7;" d file: +LOG_verbose_tag crt/crt_log.h 14;" d +LONG crt/darwinossysdef.h /^typedef long LONG;$/;" t +LONG crt/posixossysdef.h /^typedef long LONG;$/;" t LONGDOUBLE_TYPE access/sqlite3.c 8221;" d file: LONGDOUBLE_TYPE access/sqlite3.c 8340;" d file: LONGDOUBLE_TYPE logs/sqlite3.c 8221;" d file: LONGDOUBLE_TYPE logs/sqlite3.c 8340;" d file: -LONGLONG compat/darwinossysdef.h /^typedef long long LONGLONG;$/;" t -LONGLONG compat/posixossysdef.h /^typedef long long LONGLONG;$/;" t +LONGLONG crt/darwinossysdef.h /^typedef long long LONGLONG;$/;" t +LONGLONG crt/posixossysdef.h /^typedef long long LONGLONG;$/;" t LONG_ARENA_BITMAPS polipo/chunk.c 247;" d file: -LONG_PTR compat/compat_bits.hpp /^ typedef long LONG_PTR, *PLONG_PTR;$/;" t -LONG_PTR compat/compat_bits.hpp /^ typedef long long LONG_PTR, *PLONG_PTR;$/;" t -LOWER http/http/http_parser.cpp 410;" d file: -LPARAM compat/darwinossysdef.h /^typedef LONG_PTR LPARAM;$/;" t -LPARAM compat/posixossysdef.h /^typedef LONG_PTR LPARAM;$/;" t -LPBYTE compat/darwinossysdef.h /^typedef BYTE *LPBYTE;$/;" t -LPBYTE compat/posixossysdef.h /^typedef BYTE *LPBYTE;$/;" t -LPCFILETIME compat/darwinossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t -LPCFILETIME compat/posixossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t -LPCGUID compat/compat_guid.hpp /^typedef const GUID *LPCGUID;$/;" t -LPCLSID compat/compat_guid.hpp /^typedef CLSID *LPCLSID;$/;" t -LPCOLORREF compat/darwinossysdef.h /^typedef DWORD *LPCOLORREF;$/;" t -LPCOLORREF compat/posixossysdef.h /^typedef DWORD *LPCOLORREF;$/;" t +LONG_PTR crt/crt_bits.hpp /^ typedef long LONG_PTR, *PLONG_PTR;$/;" t +LONG_PTR crt/crt_bits.hpp /^ typedef long long LONG_PTR, *PLONG_PTR;$/;" t +LOWER net/http_protocol/http_parser.cpp 410;" d file: +LPARAM crt/darwinossysdef.h /^typedef LONG_PTR LPARAM;$/;" t +LPARAM crt/posixossysdef.h /^typedef LONG_PTR LPARAM;$/;" t +LPBYTE crt/darwinossysdef.h /^typedef BYTE *LPBYTE;$/;" t +LPBYTE crt/posixossysdef.h /^typedef BYTE *LPBYTE;$/;" t +LPCFILETIME crt/darwinossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t +LPCFILETIME crt/posixossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t +LPCGUID crt/crt_guid.hpp /^typedef const GUID *LPCGUID;$/;" t +LPCLSID crt/crt_guid.hpp /^typedef CLSID *LPCLSID;$/;" t +LPCOLORREF crt/darwinossysdef.h /^typedef DWORD *LPCOLORREF;$/;" t +LPCOLORREF crt/posixossysdef.h /^typedef DWORD *LPCOLORREF;$/;" t LPCREATECONTROL uibase/uilib/core/uimanager.h /^typedef CControlUI* (*LPCREATECONTROL)(LPCTSTR pstrType);$/;" t namespace:DuiLib -LPCSTR compat/darwinossysdef.h /^typedef const char* LPCSTR;$/;" t -LPCSTR compat/posixossysdef.h /^typedef const char* LPCSTR;$/;" t -LPCTSTR compat/darwinossysdef.h 72;" d -LPCTSTR compat/darwinossysdef.h 78;" d -LPCTSTR compat/posixossysdef.h 65;" d -LPCTSTR compat/posixossysdef.h 71;" d -LPCVOID compat/darwinossysdef.h /^typedef const void* LPCVOID;$/;" t -LPCVOID compat/posixossysdef.h /^typedef const void* LPCVOID;$/;" t -LPCWSTR compat/darwinossysdef.h /^typedef const WCHAR* LPCWSTR;$/;" t -LPCWSTR compat/posixossysdef.h /^typedef const WCHAR* LPCWSTR;$/;" t -LPDWORD compat/darwinossysdef.h /^typedef DWORD *LPDWORD;$/;" t -LPDWORD compat/posixossysdef.h /^typedef DWORD *LPDWORD;$/;" t -LPFILETIME compat/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME -LPFILETIME compat/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME -LPFMTID compat/compat_guid.hpp /^typedef FMTID *LPFMTID;$/;" t -LPGUID compat/compat_guid.hpp /^typedef GUID *LPGUID;$/;" t -LPHANDLE compat/darwinossysdef.h /^typedef HANDLE *LPHANDLE;$/;" t -LPHANDLE compat/posixossysdef.h /^typedef HANDLE *LPHANDLE;$/;" t -LPIID compat/compat_guid.hpp /^typedef IID *LPIID;$/;" t -LPINT compat/darwinossysdef.h /^typedef int *LPINT;$/;" t -LPINT compat/posixossysdef.h /^typedef int *LPINT;$/;" t -LPLONG compat/darwinossysdef.h /^typedef long *LPLONG;$/;" t -LPLONG compat/posixossysdef.h /^typedef long *LPLONG;$/;" t -LPPOINT compat/darwinossysdef.h /^typedef struct tagPOINT *LPPOINT;$/;" t typeref:struct:tagPOINT -LPPOINT compat/posixossysdef.h /^typedef struct tagPOINT *LPPOINT;$/;" t typeref:struct:tagPOINT -LPRECTL compat/darwinossysdef.h /^typedef struct _RECTL *LPRECTL;$/;" t typeref:struct:_RECTL -LPRECTL compat/posixossysdef.h /^typedef struct _RECTL *LPRECTL;$/;" t typeref:struct:_RECTL -LPSIZE compat/darwinossysdef.h /^typedef struct tagSIZE *LPSIZE;$/;" t typeref:struct:tagSIZE -LPSIZE compat/posixossysdef.h /^typedef struct tagSIZE *LPSIZE;$/;" t typeref:struct:tagSIZE -LPSIZEL compat/darwinossysdef.h /^typedef struct tagSIZEL *LPSIZEL;$/;" t typeref:struct:tagSIZEL -LPSIZEL compat/posixossysdef.h /^typedef struct tagSIZEL *LPSIZEL;$/;" t typeref:struct:tagSIZEL -LPSTR compat/darwinossysdef.h /^typedef char* LPSTR;$/;" t -LPSTR compat/posixossysdef.h /^typedef char* LPSTR;$/;" t -LPSTRING compat/compat_core.hpp /^ typedef const char* LPSTRING;$/;" t -LPSTRING compat/compat_core.hpp /^ typedef const wchar_t* LPSTRING;$/;" t -LPVOID compat/darwinossysdef.h /^typedef void* LPVOID;$/;" t -LPVOID compat/posixossysdef.h /^typedef void* LPVOID;$/;" t -LPWORD compat/darwinossysdef.h /^typedef WORD *LPWORD;$/;" t -LPWORD compat/posixossysdef.h /^typedef WORD *LPWORD;$/;" t -LPWSTR compat/darwinossysdef.h /^typedef WCHAR* LPWSTR;$/;" t -LPWSTR compat/posixossysdef.h /^typedef WCHAR* LPWSTR;$/;" t -LRECT compat/darwinossysdef.h /^typedef struct tagRECT *LRECT;$/;" t typeref:struct:tagRECT -LRECT compat/posixossysdef.h /^typedef struct tagRECT *LRECT;$/;" t typeref:struct:tagRECT -LRESULT compat/darwinossysdef.h /^typedef LONG_PTR LRESULT;$/;" t -LRESULT compat/posixossysdef.h /^typedef LONG_PTR LRESULT;$/;" t +LPCSTR crt/darwinossysdef.h /^typedef const char* LPCSTR;$/;" t +LPCSTR crt/posixossysdef.h /^typedef const char* LPCSTR;$/;" t +LPCTSTR crt/darwinossysdef.h 72;" d +LPCTSTR crt/darwinossysdef.h 78;" d +LPCTSTR crt/posixossysdef.h 65;" d +LPCTSTR crt/posixossysdef.h 71;" d +LPCVOID crt/darwinossysdef.h /^typedef const void* LPCVOID;$/;" t +LPCVOID crt/posixossysdef.h /^typedef const void* LPCVOID;$/;" t +LPCWSTR crt/darwinossysdef.h /^typedef const WCHAR* LPCWSTR;$/;" t +LPCWSTR crt/posixossysdef.h /^typedef const WCHAR* LPCWSTR;$/;" t +LPDWORD crt/darwinossysdef.h /^typedef DWORD *LPDWORD;$/;" t +LPDWORD crt/posixossysdef.h /^typedef DWORD *LPDWORD;$/;" t +LPFILETIME crt/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME +LPFILETIME crt/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME +LPFMTID crt/crt_guid.hpp /^typedef FMTID *LPFMTID;$/;" t +LPGUID crt/crt_guid.hpp /^typedef GUID *LPGUID;$/;" t +LPHANDLE crt/darwinossysdef.h /^typedef HANDLE *LPHANDLE;$/;" t +LPHANDLE crt/posixossysdef.h /^typedef HANDLE *LPHANDLE;$/;" t +LPIID crt/crt_guid.hpp /^typedef IID *LPIID;$/;" t +LPINT crt/darwinossysdef.h /^typedef int *LPINT;$/;" t +LPINT crt/posixossysdef.h /^typedef int *LPINT;$/;" t +LPLONG crt/darwinossysdef.h /^typedef long *LPLONG;$/;" t +LPLONG crt/posixossysdef.h /^typedef long *LPLONG;$/;" t +LPPOINT crt/darwinossysdef.h /^typedef struct tagPOINT *LPPOINT;$/;" t typeref:struct:tagPOINT +LPPOINT crt/posixossysdef.h /^typedef struct tagPOINT *LPPOINT;$/;" t typeref:struct:tagPOINT +LPRECTL crt/darwinossysdef.h /^typedef struct _RECTL *LPRECTL;$/;" t typeref:struct:_RECTL +LPRECTL crt/posixossysdef.h /^typedef struct _RECTL *LPRECTL;$/;" t typeref:struct:_RECTL +LPSIZE crt/darwinossysdef.h /^typedef struct tagSIZE *LPSIZE;$/;" t typeref:struct:tagSIZE +LPSIZE crt/posixossysdef.h /^typedef struct tagSIZE *LPSIZE;$/;" t typeref:struct:tagSIZE +LPSIZEL crt/darwinossysdef.h /^typedef struct tagSIZEL *LPSIZEL;$/;" t typeref:struct:tagSIZEL +LPSIZEL crt/posixossysdef.h /^typedef struct tagSIZEL *LPSIZEL;$/;" t typeref:struct:tagSIZEL +LPSTR crt/darwinossysdef.h /^typedef char* LPSTR;$/;" t +LPSTR crt/posixossysdef.h /^typedef char* LPSTR;$/;" t +LPSTRING crt/crt_core.hpp /^ typedef const char* LPSTRING;$/;" t +LPSTRING crt/crt_core.hpp /^ typedef const wchar_t* LPSTRING;$/;" t +LPVOID crt/darwinossysdef.h /^typedef void* LPVOID;$/;" t +LPVOID crt/posixossysdef.h /^typedef void* LPVOID;$/;" t +LPWORD crt/darwinossysdef.h /^typedef WORD *LPWORD;$/;" t +LPWORD crt/posixossysdef.h /^typedef WORD *LPWORD;$/;" t +LPWSTR crt/darwinossysdef.h /^typedef WCHAR* LPWSTR;$/;" t +LPWSTR crt/posixossysdef.h /^typedef WCHAR* LPWSTR;$/;" t +LRECT crt/darwinossysdef.h /^typedef struct tagRECT *LRECT;$/;" t typeref:struct:tagRECT +LRECT crt/posixossysdef.h /^typedef struct tagRECT *LRECT;$/;" t typeref:struct:tagRECT +LRESULT crt/darwinossysdef.h /^typedef LONG_PTR LRESULT;$/;" t +LRESULT crt/posixossysdef.h /^typedef LONG_PTR LRESULT;$/;" t LY_PER_INCH uibase/uilib/control/uirichedit.cpp 28;" d file: L_ERROR polipo/log.h 23;" d L_FORBIDDEN polipo/log.h 26;" d @@ -4028,7 +3734,7 @@ LingeringCloseRec polipo/io.c /^} LingeringCloseRec, *LingeringClosePtr;$/;" t t Listen asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::Listen(NET_ADDR addr, NET_PORT port)$/;" f class:CTcpListenSocketImpl Listen msgbus/broker.cpp /^std_method_impl CBrokerImpl::Listen(LPCSTR addr, int len, int maxconn)$/;" f class:CBrokerImpl ListenChannel include/comutiliy/schannel.hpp /^ std_method_impl ListenChannel(LPCSTR addr, int len) {$/;" f class:SChannel -Little_endian compat/compat_endian.h 17;" d +Little_endian crt/crt_endian.h 17;" d Load container/objectloader.cpp /^std_method_impl CObjectLoader::Load(LPSTRING path, LPCSTR name)$/;" f class:CObjectLoader Load include/dlcom/calldll.hpp /^ virtual int Load()$/;" f class:IImpModuleBase Load include/utilex/calldll.hpp /^ virtual int Load()$/;" f class:IImpModuleBase @@ -4052,6 +3758,8 @@ LoadMemory container/plugins.cpp /^HRESULT CPlugins::LoadMemory(LPCSTR pMemory)$ LoadPluginItem container/plugins.cpp /^HRESULT CPlugins::LoadPluginItem(const cJSON* JsRoot) $/;" f class:CPlugins LoadPluginModule container/plugins.cpp /^HRESULT CPlugins::LoadPluginModule(const cJSON* JsRoot)$/;" f class:CPlugins LoadRuleFiles logs/logsimpl.cpp /^std_method_impl CLogsImpl::LoadRuleFiles()$/;" f class:CLogsImpl +LoadView vim_tool/.vim/plugin/wintagexplorer.vim /^function! s:LoadView(foldInfo)$/;" f +LocalSearchDecl vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:LocalSearchDecl(name)$/;" f Lock include/utilex/autolock.hpp /^ void Lock()$/;" f class:CAutoLock LogData logs/stdafx.h /^ LogData(unsigned char* json, unsigned int ulen) {$/;" f class:LogData LogData logs/stdafx.h /^class LogData {$/;" c @@ -4073,7 +3781,7 @@ MANDIR polipo/Makefile /^MANDIR = $(PREFIX)\/man$/;" m MAP_ANONYMOUS polipo/polipo.h 68;" d MAP_FAILED polipo/chunk.c 188;" d file: MAP_FAILED polipo/chunk.c 206;" d file: -MARK http/http/http_parser.cpp 132;" d file: +MARK net/http_protocol/http_parser.cpp 132;" d file: MASKBIT access/sqlite3.c 11307;" d file: MASKBIT logs/sqlite3.c 11307;" d file: MASKBIT32 access/sqlite3.c 11308;" d file: @@ -4091,19 +3799,19 @@ MAX logs/sqlite3.c 8285;" d file: MAX polipo/object.h 23;" d MAX polipo/object.h 26;" d MAX uibase/stdafx.h 19;" d -MAXDNSRCH net/protocol/dns.cpp 42;" d file: +MAXDNSRCH net/protocol/dns.c 42;" d file: MAX_6BYTE access/sqlite3.c 64074;" d file: MAX_6BYTE logs/sqlite3.c 64074;" d file: MAX_CONTAINERLEN include/dlcom/comfunc.hpp 7;" d MAX_FONT_ID uibase/uilib/core/uidefine.h 7;" d MAX_INCR_PHRASE_TOKENS access/sqlite3.c 128087;" d file: MAX_INCR_PHRASE_TOKENS logs/sqlite3.c 128087;" d file: -MAX_LINK uibase/uilib/control/uilist.h /^ enum { MAX_LINK = 8 };$/;" e enum:DuiLib::CListTextElementUI::__anon87 -MAX_LINK uibase/uilib/control/uitext.h /^ enum { MAX_LINK = 8 };$/;" e enum:DuiLib::CTextUI::__anon90 +MAX_LINK uibase/uilib/control/uilist.h /^ enum { MAX_LINK = 8 };$/;" e enum:DuiLib::CListTextElementUI::__anon88 +MAX_LINK uibase/uilib/control/uitext.h /^ enum { MAX_LINK = 8 };$/;" e enum:DuiLib::CTextUI::__anon87 MAX_LOCAL_STRING_LEN uibase/uilib/utils/utils.h /^ enum { MAX_LOCAL_STRING_LEN = 63 };$/;" e enum:DuiLib::CDuiString::__anon118 MAX_PATH access/sqlite3.c 31339;" d file: -MAX_PATH compat/darwinossysdef.h 289;" d -MAX_PATH compat/posixossysdef.h 279;" d +MAX_PATH crt/darwinossysdef.h 289;" d +MAX_PATH crt/posixossysdef.h 279;" d MAX_PATH logs/sqlite3.c 31339;" d file: MAX_PATHNAME access/sqlite3.c 23526;" d file: MAX_PATHNAME logs/sqlite3.c 23526;" d file: @@ -4112,19 +3820,19 @@ MAX_ROWID access/sqlite3.c 70325;" d file: MAX_ROWID logs/sqlite3.c 70325;" d file: MAX_SECTOR_SIZE access/sqlite3.c 39822;" d file: MAX_SECTOR_SIZE logs/sqlite3.c 39822;" d file: -MAX_XML_ATTRIBUTES uibase/uilib/core/uimarkup.h /^ enum { MAX_XML_ATTRIBUTES = 64 };$/;" e enum:DuiLib::CMarkupNode::__anon98 +MAX_XML_ATTRIBUTES uibase/uilib/core/uimarkup.h /^ enum { MAX_XML_ATTRIBUTES = 64 };$/;" e enum:DuiLib::CMarkupNode::__anon92 MB polipo/chunk.c 25;" d file: -MD5Decode base/algorithm/compat_md5.c /^void MD5Decode(unsigned int *output, unsigned char *input, unsigned int len) {$/;" f -MD5Encode base/algorithm/compat_md5.c /^void MD5Encode(unsigned char *output, unsigned int *input, unsigned int len) {$/;" f -MD5Final base/algorithm/compat_md5.c /^void MD5Final(MD5_CTX *ctx, unsigned char digest[16]) {$/;" f +MD5Decode stdcrt/algorithm/compat_md5.c /^void MD5Decode(unsigned int *output, unsigned char *input, unsigned int len) {$/;" f +MD5Encode stdcrt/algorithm/compat_md5.c /^void MD5Encode(unsigned char *output, unsigned int *input, unsigned int len) {$/;" f MD5Final polipo/md5.c /^void MD5Final (MD5_CTX* mdContext)$/;" f -MD5Init base/algorithm/compat_md5.c /^void MD5Init(MD5_CTX *ctx) {$/;" f +MD5Final stdcrt/algorithm/compat_md5.c /^void MD5Final(MD5_CTX *ctx, unsigned char digest[16]) {$/;" f MD5Init polipo/md5.c /^void MD5Init(MD5_CTX *mdContext)$/;" f -MD5Transform base/algorithm/compat_md5.c /^void MD5Transform(unsigned int state[4], unsigned char block[64]) {$/;" f -MD5Update base/algorithm/compat_md5.c /^void MD5Update(MD5_CTX *ctx, unsigned char *input, unsigned int inputlen) {$/;" f +MD5Init stdcrt/algorithm/compat_md5.c /^void MD5Init(MD5_CTX *ctx) {$/;" f +MD5Transform stdcrt/algorithm/compat_md5.c /^void MD5Transform(unsigned int state[4], unsigned char block[64]) {$/;" f MD5Update polipo/md5.c /^void MD5Update (MD5_CTX* mdContext, unsigned const char* inBuf, unsigned int inLen)$/;" f -MD5_CTX compat/compat_md5.h /^} MD5_CTX;$/;" t typeref:struct:__anon29 -MD5_CTX polipo/md5.h /^} MD5_CTX;$/;" t typeref:struct:__anon84 +MD5Update stdcrt/algorithm/compat_md5.c /^void MD5Update(MD5_CTX *ctx, unsigned char *input, unsigned int inputlen) {$/;" f +MD5_CTX crt/crt_md5.h /^} MD5_CTX;$/;" t typeref:struct:__anon29 +MD5_CTX polipo/md5.h /^} MD5_CTX;$/;" t typeref:struct:__anon81 MDT_ANGULAR_DPI uibase/uilib/dpi.hpp /^ MDT_ANGULAR_DPI = 1,$/;" e enum:_MONITOR_DPI_TYPE MDT_DEFAULT uibase/uilib/dpi.hpp /^ MDT_DEFAULT = MDT_EFFECTIVE_DPI$/;" e enum:_MONITOR_DPI_TYPE MDT_EFFECTIVE_DPI uibase/uilib/dpi.hpp /^ MDT_EFFECTIVE_DPI = 0,$/;" e enum:_MONITOR_DPI_TYPE @@ -4195,19 +3903,22 @@ METHOD_UNKNOWN polipo/http.h 100;" d MIN access/sqlite3.c 123787;" d file: MIN access/sqlite3.c 141887;" d file: MIN access/sqlite3.c 8284;" d file: -MIN http/http/http_parser.cpp 33;" d file: MIN logs/sqlite3.c 123787;" d file: MIN logs/sqlite3.c 141887;" d file: MIN logs/sqlite3.c 8284;" d file: +MIN net/http_protocol/http_parser.cpp 33;" d file: MIN polipo/object.h 24;" d MIN polipo/object.h 27;" d MIN uibase/stdafx.h 20;" d MINGW polipo/polipo.h 64;" d -MODULE_API compat/compat_comutil.hpp 66;" d -MODULE_API compat/compat_comutil.hpp 68;" d -MODULE_API compat/compat_comutil.hpp 75;" d +MODULE_API crt/crt_comutil.hpp 66;" d +MODULE_API crt/crt_comutil.hpp 68;" d +MODULE_API crt/crt_comutil.hpp 75;" d +MRUGet vim_tool/.vim/plugin/winmanager.vim /^function! MRUGet(slot)$/;" f +MRUPop vim_tool/.vim/plugin/winmanager.vim /^function! MRUPop()$/;" f +MRUPush vim_tool/.vim/plugin/winmanager.vim /^function! MRUPush()$/;" f MSGDEF uibase/uilib/core/uibase.cpp 28;" d file: -MSG_NOSIGNAL base/net/compat_sock.c 113;" d file: +MSG_NOSIGNAL stdcrt/net/compat_sock.c 113;" d file: MUTEX_LOGIC access/sqlite3.c 10093;" d file: MUTEX_LOGIC access/sqlite3.c 10095;" d file: MUTEX_LOGIC logs/sqlite3.c 10093;" d file: @@ -4231,6 +3942,7 @@ MapKeyState uibase/uilib/core/uimanager.cpp /^static UINT MapKeyState()$/;" f na MapTableStruct logs/stdafx.h /^typedef map MapTableStruct;$/;" t MapTableStructIterator logs/stdafx.h /^typedef MapTableStruct::iterator MapTableStructIterator;$/;" t MappingHandlePtr include/utilex/safeptr.hpp 209;" d +MarkDirs vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:MarkDirs()$/;" f MatchInfo access/sqlite3.c /^struct MatchInfo {$/;" s file: MatchInfo access/sqlite3.c /^typedef struct MatchInfo MatchInfo;$/;" t typeref:struct:MatchInfo file: MatchInfo logs/sqlite3.c /^struct MatchInfo {$/;" s file: @@ -4267,21 +3979,22 @@ MemPage logs/sqlite3.c /^struct MemPage {$/;" s file: MemPage logs/sqlite3.c /^typedef struct MemPage MemPage;$/;" t typeref:struct:MemPage file: MemSetTypeFlag access/sqlite3.c 13792;" d file: MemSetTypeFlag logs/sqlite3.c 13792;" d file: -Memory_Allocate compat/compat_common.hpp 116;" d -Memory_Allocate compat/compat_common.hpp 125;" d -Memory_Allocate compat/compat_common.hpp 134;" d -Memory_Free compat/compat_common.hpp 118;" d -Memory_Free compat/compat_common.hpp 127;" d -Memory_Free compat/compat_common.hpp 136;" d -Memory_Reallocate compat/compat_common.hpp 117;" d -Memory_Reallocate compat/compat_common.hpp 126;" d -Memory_Reallocate compat/compat_common.hpp 135;" d +Memory_Allocate crt/crt_common.hpp 116;" d +Memory_Allocate crt/crt_common.hpp 125;" d +Memory_Allocate crt/crt_common.hpp 134;" d +Memory_Free crt/crt_common.hpp 118;" d +Memory_Free crt/crt_common.hpp 127;" d +Memory_Free crt/crt_common.hpp 136;" d +Memory_Reallocate crt/crt_common.hpp 117;" d +Memory_Reallocate crt/crt_common.hpp 126;" d +Memory_Reallocate crt/crt_common.hpp 135;" d MessageHandler uibase/uilib/control/uirichedit.cpp /^LRESULT CRichEditUI::MessageHandler(UINT uMsg, WPARAM wParam, LPARAM lParam, bool& bHandled)$/;" f class:DuiLib::CRichEditUI MessageHandler uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::MessageHandler(UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT& lRes)$/;" f class:DuiLib::CPaintManagerUI MessageHandler uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::MessageHandler(UINT uMsg, WPARAM wParam, LPARAM \/*lParam*\/, bool& \/*bHandled*\/)$/;" f class:DuiLib::WindowImplBase MessageLoop uibase/uimessageloopimpl.cpp /^std_method_type_impl(int) CUiMessageloopImpl::MessageLoop()$/;" f class:CUiMessageloopImpl Mid uibase/uilib/utils/utils.cpp /^ CDuiString CDuiString::Mid(int iPos, int iLength) const$/;" f class:DuiLib::CDuiString MimeEntryRec polipo/diskcache.c /^} MimeEntryRec;$/;" t typeref:struct:_MimeEntry file: +MkViewNoNestedFolds vim_tool/.vim/plugin/wintagexplorer.vim /^function! s:MkViewNoNestedFolds()$/;" f Module access/sqlite3.c /^struct Module {$/;" s file: Module access/sqlite3.c /^typedef struct Module Module;$/;" t typeref:struct:Module file: Module logs/sqlite3.c /^struct Module {$/;" s file: @@ -4329,9 +4042,9 @@ NDEBUG logs/sqlite3.c 7841;" d file: NDEBUG logs/sqlite3.c 7844;" d file: NDELAY access/sqlite3.c 120636;" d file: NDELAY logs/sqlite3.c 120636;" d file: -NET_ADDR compat/compat_sock.h /^ typedef const char* NET_ADDR;$/;" t -NET_ADDR_INT compat/compat_sock.h /^ typedef unsigned int NET_ADDR_INT;$/;" t -NET_PORT compat/compat_sock.h /^ typedef unsigned short NET_PORT;$/;" t +NET_ADDR crt/crt_sock.h /^ typedef const char* NET_ADDR;$/;" t +NET_ADDR_INT crt/crt_sock.h /^ typedef unsigned int NET_ADDR_INT;$/;" t +NET_PORT crt/crt_sock.h /^ typedef unsigned short NET_PORT;$/;" t NET_PROTOCOL extensions/include/net/inet.h /^typedef enum NET_PROTOCOL$/;" g NEVER access/sqlite3.c 123843;" d file: NEVER access/sqlite3.c 123846;" d file: @@ -4343,8 +4056,8 @@ NEVER logs/sqlite3.c 123846;" d file: NEVER logs/sqlite3.c 7917;" d file: NEVER logs/sqlite3.c 7920;" d file: NEVER logs/sqlite3.c 7923;" d file: -NEW_MESSAGE http/http/http_parser.cpp 454;" d file: -NEW_MESSAGE http/http/http_parser.cpp 457;" d file: +NEW_MESSAGE net/http_protocol/http_parser.cpp 454;" d file: +NEW_MESSAGE net/http_protocol/http_parser.cpp 457;" d file: NGX_ABORT mempool/alloc.h 55;" d NGX_AGAIN mempool/alloc.h 51;" d NGX_ALIGNMENT mempool/alloc.h 30;" d @@ -4365,16 +4078,16 @@ NO_IPv6 polipo/mingw.h 59;" d NO_LOCK access/sqlite3.c 9897;" d file: NO_LOCK logs/sqlite3.c 9897;" d file: NO_REDIRECTOR polipo/polipo.h 206;" d -NS_DEFAULTPORT net/protocol/dns.cpp 34;" d file: -NS_MAXDNAME net/protocol/dns.cpp 38;" d file: +NS_DEFAULTPORT net/protocol/dns.c 34;" d file: +NS_MAXDNAME net/protocol/dns.c 38;" d file: NTDDI_WIN8 access/sqlite3.c 31312;" d file: NTDDI_WIN8 logs/sqlite3.c 31312;" d file: NTDDI_WINBLUE access/sqlite3.c 31316;" d file: NTDDI_WINBLUE logs/sqlite3.c 31316;" d file: -NULL compat/darwinossysdef.h 14;" d -NULL compat/darwinossysdef.h 16;" d -NULL compat/posixossysdef.h 14;" d -NULL compat/posixossysdef.h 16;" d +NULL crt/darwinossysdef.h 14;" d +NULL crt/darwinossysdef.h 16;" d +NULL crt/posixossysdef.h 14;" d +NULL crt/posixossysdef.h 16;" d NULLFuncName include/dlcom/comfunc.hpp 36;" d N_HASH access/sqlite3.c 16852;" d file: N_HASH logs/sqlite3.c 16852;" d file: @@ -4408,7 +4121,7 @@ NodeWriter access/sqlite3.c /^typedef struct NodeWriter NodeWriter;$/;" t typere NodeWriter logs/sqlite3.c /^struct NodeWriter {$/;" s file: NodeWriter logs/sqlite3.c /^typedef struct NodeWriter NodeWriter;$/;" t typeref:struct:NodeWriter file: Normalize uibase/uilib/utils/utils.cpp /^ void CDuiRect::Normalize()$/;" f class:DuiLib::CDuiRect -Notify http/httptimpl.cpp /^ULONG CHttptImpl::Notify(ULONG ulevent)$/;" f class:CHttptImpl +Notify net/httptimpl.cpp /^ULONG CHttptImpl::Notify(ULONG ulevent)$/;" f class:CHttptImpl Notify uibase/uilib/control/uitreeview.cpp /^ void CTreeViewUI::Notify( TNotifyUI& msg )$/;" f class:DuiLib::CTreeViewUI Notify uibase/uilib/utils/winimplbase.cpp /^void WindowImplBase::Notify(TNotifyUI& msg)$/;" f class:DuiLib::WindowImplBase Notify uibase/uiwindowimpl.cpp /^void CUiWindowsImpl::Notify(TNotifyUI& msg)$/;" f class:CUiWindowsImpl @@ -4420,7 +4133,6 @@ OBJECT_ABORTED polipo/object.h 121;" d OBJECT_DISK_ENTRY_COMPLETE polipo/object.h 127;" d OBJECT_DNS polipo/object.h 105;" d OBJECT_DYNAMIC polipo/object.h 129;" d -OBJECT_ERROR include/dlcom/icombase.h 76;" d OBJECT_FAILED polipo/object.h 123;" d OBJECT_HTTP polipo/object.h 104;" d OBJECT_INITIAL polipo/object.h 111;" d @@ -4429,17 +4141,18 @@ OBJECT_LINEAR polipo/object.h 117;" d OBJECT_LOCAL polipo/object.h 125;" d OBJECT_MUTATING polipo/object.h 131;" d OBJECT_PUBLIC polipo/object.h 109;" d -OBJECT_RUN_RET_CLSIDERR include/dlcom/icombase.h 81;" d -OBJECT_RUN_RET_COMPERR include/dlcom/icombase.h 82;" d -OBJECT_RUN_RET_FAILD include/dlcom/icombase.h 79;" d -OBJECT_RUN_RET_FILEERR include/dlcom/icombase.h 83;" d -OBJECT_RUN_RET_MEMERR include/dlcom/icombase.h 84;" d -OBJECT_RUN_RET_NULL include/dlcom/icombase.h 80;" d -OBJECT_RUN_RET_PARAMERR include/dlcom/icombase.h 86;" d -OBJECT_RUN_RET_RESTART include/dlcom/icombase.h 78;" d -OBJECT_RUN_RET_ROTERR include/dlcom/icombase.h 85;" d -OBJECT_RUN_RET_STARTERR include/dlcom/icombase.h 87;" d -OBJECT_RUN_RET_SUCCESS include/dlcom/icombase.h 77;" d +OBJECT_RUN_RET_CLSIDERR include/dlcom/icombase.h 74;" d +OBJECT_RUN_RET_COMPERR include/dlcom/icombase.h 75;" d +OBJECT_RUN_RET_ERROR include/dlcom/icombase.h 70;" d +OBJECT_RUN_RET_FAILD include/dlcom/icombase.h 72;" d +OBJECT_RUN_RET_FILEERR include/dlcom/icombase.h 76;" d +OBJECT_RUN_RET_MEMERR include/dlcom/icombase.h 77;" d +OBJECT_RUN_RET_NULL include/dlcom/icombase.h 73;" d +OBJECT_RUN_RET_PARAMERR include/dlcom/icombase.h 79;" d +OBJECT_RUN_RET_RESTART include/dlcom/icombase.h 71;" d +OBJECT_RUN_RET_ROTERR include/dlcom/icombase.h 78;" d +OBJECT_RUN_RET_STARTERR include/dlcom/icombase.h 80;" d +OBJECT_RUN_RET_SUCCESS include/dlcom/icombase.h 69;" d OBJECT_SUPERSEDED polipo/object.h 115;" d OBJECT_VALIDATING polipo/object.h 119;" d OBJMAP container/rot.h /^ typedef std::map > OBJMAP;$/;" t class:CComRunningObjectTableImpl @@ -4466,8 +4179,8 @@ OE_SetDflt access/sqlite3.c 10860;" d file: OE_SetDflt logs/sqlite3.c 10860;" d file: OE_SetNull access/sqlite3.c 10859;" d file: OE_SetNull logs/sqlite3.c 10859;" d file: -OLECHAR compat/darwinossysdef.h /^typedef WCHAR OLECHAR;$/;" t -OLECHAR compat/posixossysdef.h /^typedef WCHAR OLECHAR;$/;" t +OLECHAR crt/darwinossysdef.h /^typedef WCHAR OLECHAR;$/;" t +OLECHAR crt/posixossysdef.h /^typedef WCHAR OLECHAR;$/;" t OMIT_TEMPDB access/sqlite3.c 8240;" d file: OMIT_TEMPDB access/sqlite3.c 8242;" d file: OMIT_TEMPDB logs/sqlite3.c 8240;" d file: @@ -4830,46 +4543,46 @@ OSTRACE logs/sqlite3.c 23676;" d file: OSTRACE logs/sqlite3.c 23678;" d file: OSTRACE logs/sqlite3.c 31101;" d file: OSTRACE logs/sqlite3.c 31103;" d file: -OS_ANDROID compat/compat_targetos.hpp 11;" d -OS_CALLBACK_ compat/compat_common.hpp 113;" d -OS_CALLBACK_ compat/compat_common.hpp 122;" d -OS_CALLBACK_ compat/compat_common.hpp 131;" d -OS_CENTOS compat/compat_targetos.hpp 14;" d -OS_COMPILER compat/compat_targetos.hpp 60;" d -OS_COMPILER compat/compat_targetos.hpp 64;" d -OS_COMPILER compat/compat_targetos.hpp 68;" d -OS_COMPILER compat/compat_targetos.hpp 72;" d -OS_COMPILER compat/compat_targetos.hpp 78;" d -OS_COMPILER compat/compat_targetos.hpp 82;" d -OS_COMPILER compat/compat_targetos.hpp 87;" d -OS_COMPILER compat/compat_targetos.hpp 91;" d -OS_COMPILER compat/compat_targetos.hpp 95;" d -OS_COMPILER compat/compat_targetos.hpp 99;" d -OS_DARWIN compat/compat_targetos.hpp 18;" d -OS_DEBIAN compat/compat_targetos.hpp 12;" d -OS_FREEBSD compat/compat_targetos.hpp 21;" d -OS_IOS compat/compat_targetos.hpp 20;" d -OS_LINUX compat/compat_targetos.hpp 10;" d -OS_MAC compat/compat_targetos.hpp 19;" d -OS_NETBSD compat/compat_targetos.hpp 22;" d -OS_OPENBSD compat/compat_targetos.hpp 23;" d -OS_POSIX compat/compat_targetos.hpp 9;" d -OS_REDHAT compat/compat_targetos.hpp 15;" d -OS_SOLARIS compat/compat_targetos.hpp 24;" d -OS_STDCALL compat/compat_common.hpp 112;" d -OS_STDCALL compat/compat_common.hpp 121;" d -OS_STDCALL compat/compat_common.hpp 130;" d -OS_THREAD_BUSY compat/compat_tpid.hpp 6;" d -OS_THREAD_ERROR compat/compat_tpid.hpp 7;" d -OS_THREAD_SUC compat/compat_tpid.hpp 8;" d -OS_UBUNTU compat/compat_targetos.hpp 13;" d +OS_ANDROID crt/crt_targetos.hpp 11;" d +OS_CALLBACK_ crt/crt_common.hpp 113;" d +OS_CALLBACK_ crt/crt_common.hpp 122;" d +OS_CALLBACK_ crt/crt_common.hpp 131;" d +OS_CENTOS crt/crt_targetos.hpp 14;" d +OS_COMPILER crt/crt_targetos.hpp 60;" d +OS_COMPILER crt/crt_targetos.hpp 64;" d +OS_COMPILER crt/crt_targetos.hpp 68;" d +OS_COMPILER crt/crt_targetos.hpp 72;" d +OS_COMPILER crt/crt_targetos.hpp 78;" d +OS_COMPILER crt/crt_targetos.hpp 82;" d +OS_COMPILER crt/crt_targetos.hpp 87;" d +OS_COMPILER crt/crt_targetos.hpp 91;" d +OS_COMPILER crt/crt_targetos.hpp 95;" d +OS_COMPILER crt/crt_targetos.hpp 99;" d +OS_DARWIN crt/crt_targetos.hpp 18;" d +OS_DEBIAN crt/crt_targetos.hpp 12;" d +OS_FREEBSD crt/crt_targetos.hpp 21;" d +OS_IOS crt/crt_targetos.hpp 20;" d +OS_LINUX crt/crt_targetos.hpp 10;" d +OS_MAC crt/crt_targetos.hpp 19;" d +OS_NETBSD crt/crt_targetos.hpp 22;" d +OS_OPENBSD crt/crt_targetos.hpp 23;" d +OS_POSIX crt/crt_targetos.hpp 9;" d +OS_REDHAT crt/crt_targetos.hpp 15;" d +OS_SOLARIS crt/crt_targetos.hpp 24;" d +OS_STDCALL crt/crt_common.hpp 112;" d +OS_STDCALL crt/crt_common.hpp 121;" d +OS_STDCALL crt/crt_common.hpp 130;" d +OS_THREAD_BUSY crt/crt_tpid.hpp 6;" d +OS_THREAD_ERROR crt/crt_tpid.hpp 7;" d +OS_THREAD_SUC crt/crt_tpid.hpp 8;" d +OS_UBUNTU crt/crt_targetos.hpp 13;" d OS_VXWORKS access/sqlite3.c 23429;" d file: OS_VXWORKS access/sqlite3.c 23431;" d file: OS_VXWORKS logs/sqlite3.c 23429;" d file: OS_VXWORKS logs/sqlite3.c 23431;" d file: -OS_WINBASE compat/compat_targetos.hpp 6;" d -OS_WINCE compat/compat_targetos.hpp 7;" d -OS_WINDOWS compat/compat_targetos.hpp 5;" d +OS_WINBASE crt/crt_targetos.hpp 6;" d +OS_WINCE crt/crt_targetos.hpp 7;" d +OS_WINDOWS crt/crt_targetos.hpp 5;" d O_BINARY access/sqlite3.c 23862;" d file: O_BINARY logs/sqlite3.c 23862;" d file: O_BINARY polipo/polipo.h 124;" d @@ -4885,20 +4598,23 @@ O_OFFSET msgbus/auth.hpp 26;" d ObjectPtr polipo/object.h /^} ObjectRec, *ObjectPtr;$/;" t typeref:struct:_Object ObjectRec polipo/object.h /^} ObjectRec, *ObjectPtr;$/;" t typeref:struct:_Object Offset uibase/uilib/utils/utils.cpp /^ void CDuiRect::Offset(int cx, int cy)$/;" f class:DuiLib::CDuiRect +OmniCpp_ShowAccess vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:OmniCpp_ShowAccess = g:OmniCpp_ShowAccess$/;" v +OmniCpp_ShowPrototypeInAbbr vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:OmniCpp_ShowPrototypeInAbbr = g:OmniCpp_ShowPrototypeInAbbr$/;" v +OmniCpp_ShowScopeInAbbr vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:OmniCpp_ShowScopeInAbbr = g:OmniCpp_ShowScopeInAbbr$/;" v OnAccepted msgbus/broker.cpp /^std_method_impl CBrokerImpl::OnAccepted(IBase* pBase, _sock_t s)$/;" f class:CBrokerImpl -OnBuildHttp http/httptimpl.cpp /^std_method_impl CHttptImpl::OnBuildHttp(http_addr_s url, http_addr_s scheme, NET_PORT uport)$/;" f class:CHttptImpl +OnBuildHttp net/httptimpl.cpp /^std_method_impl CHttptImpl::OnBuildHttp(http_addr_s url, http_addr_s scheme, NET_PORT uport)$/;" f class:CHttptImpl OnChar uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::OnChar(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)$/;" f class:DuiLib::WindowImplBase OnCheckBoxChanged uibase/uilib/control/uitreeview.cpp /^ bool CTreeViewUI::OnCheckBoxChanged( void* param )$/;" f class:DuiLib::CTreeViewUI OnClick uibase/uilib/utils/winimplbase.cpp /^void WindowImplBase::OnClick(TNotifyUI& msg)$/;" f class:DuiLib::WindowImplBase OnClose uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::OnClose(UINT \/*uMsg*\/, WPARAM \/*wParam*\/, LPARAM \/*lParam*\/, BOOL& bHandled)$/;" f class:DuiLib::WindowImplBase OnClose uibase/uiwindowimpl.cpp /^LRESULT CUiWindowsImpl::OnClose(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)$/;" f class:CUiWindowsImpl -OnComplete http/httptimpl.cpp /^std_method_impl CHttptImpl::OnComplete(IBase *pOperation, event_id event, ULONG error_code)$/;" f class:CHttptImpl OnComplete msgbus/agent.cpp /^std_method_impl CAgentImpl::OnComplete(IBase *pOperation, event_id event, ULONG error_code)$/;" f class:CAgentImpl OnComplete msgbus/broker.cpp /^std_method_impl CBrokerImpl::OnComplete(IBase *pOperation, event_id event, ULONG error_code)$/;" f class:CBrokerImpl OnComplete msgbus/consumer.cpp /^std_method_impl CConsumerImpl::OnComplete(IBase *pOperation, event_id event, ULONG error_code)$/;" f class:CConsumerImpl OnComplete msgbus/producer.cpp /^std_method_impl CProducerImpl::OnComplete(IBase *pOperation, event_id event, ULONG error_code)$/;" f class:CProducerImpl OnComplete net/dnsimpl.cpp /^std_method_impl CDnsImpl::OnComplete(IBase *pOperation, event_id event, ULONG error_code)$/;" f class:CDnsImpl -OnConnect http/httptimpl.cpp /^std_method_impl CHttptImpl::OnConnect(NET_ADDR url, NET_PORT uport)$/;" f class:CHttptImpl +OnComplete net/httptimpl.cpp /^std_method_impl CHttptImpl::OnComplete(IBase *pOperation, event_id event, ULONG error_code)$/;" f class:CHttptImpl +OnConnect net/httptimpl.cpp /^std_method_impl CHttptImpl::OnConnect(NET_ADDR url, NET_PORT uport)$/;" f class:CHttptImpl OnConnected msgbus/agent.cpp /^std_method_impl CAgentImpl::OnConnected(IBase *pIBase)$/;" f class:CAgentImpl OnConnected msgbus/consumer.cpp /^std_method_impl CConsumerImpl::OnConnected(IBase *pIBase)$/;" f class:CConsumerImpl OnConnected msgbus/producer.cpp /^std_method_impl CProducerImpl::OnConnected(IBase *pIBase)$/;" f class:CProducerImpl @@ -4917,7 +4633,7 @@ OnFinalMessage uibase/uilib/control/uiedit.cpp /^ void CEditWnd::OnFinalMessage( OnFinalMessage uibase/uilib/core/uibase.cpp /^void CWindowWnd::OnFinalMessage(HWND \/*hWnd*\/)$/;" f class:DuiLib::CWindowWnd OnFinalMessage uibase/uilib/utils/winimplbase.cpp /^void WindowImplBase::OnFinalMessage( HWND hWnd )$/;" f class:DuiLib::WindowImplBase OnFolderChanged uibase/uilib/control/uitreeview.cpp /^ bool CTreeViewUI::OnFolderChanged( void* param )$/;" f class:DuiLib::CTreeViewUI -OnGetHost http/httptimpl.cpp /^std_method_impl CHttptImpl::OnGetHost(int error, LPCSTR hostname, LPCSTR host)$/;" f class:CHttptImpl +OnGetHost net/httptimpl.cpp /^std_method_impl CHttptImpl::OnGetHost(int error, LPCSTR hostname, LPCSTR host)$/;" f class:CHttptImpl OnGetMinMaxInfo uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::OnGetMinMaxInfo(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)$/;" f class:DuiLib::WindowImplBase OnGetMinMaxInfo uibase/uiwindowimpl.cpp /^LRESULT CUiWindowsImpl::OnGetMinMaxInfo(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)$/;" f class:CUiWindowsImpl OnInit uibase/uilib/core/uicontrol.h /^ CEventSource OnInit;$/;" m class:DuiLib::CControlUI @@ -4983,6 +4699,7 @@ OnTxViewChanged uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::OnTxView OnUiEvent mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::OnUiEvent(const NotifyEvent* event)$/;" f class:CMainViewImpl OnWriteChannel include/comutiliy/cchannel.hpp /^ std_method_impl OnWriteChannel(ULONG pos, ULONG size, event_id event) {$/;" f class:CChannel OneThird uibase/uilib/core/uirender.cpp /^static const float OneThird = 1.0f \/ 3;$/;" v file: +OnlyExplorerWindowsOpen vim_tool/.vim/plugin/winmanager.vim /^function! OnlyExplorerWindowsOpen()$/;" f Op access/sqlite3.c /^typedef struct VdbeOp Op;$/;" t typeref:struct:VdbeOp file: Op logs/sqlite3.c /^typedef struct VdbeOp Op;$/;" t typeref:struct:VdbeOp file: OpHelp access/sqlite3.c 23186;" d file: @@ -4999,10 +4716,13 @@ OpenCounter logs/sqlite3.c 23838;" d file: OpenCounter logs/sqlite3.c 23840;" d file: OpenCounter logs/sqlite3.c 31263;" d file: OpenCounter logs/sqlite3.c 31265;" d file: +OpenEntry vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:OpenEntry()$/;" f +OpenEntryPrevWindow vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:OpenEntryPrevWindow()$/;" f OpenErrorLogDataBase logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::OpenErrorLogDataBase()$/;" f class:CLogDataBaseImpl OpenIo asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::OpenIo()$/;" f class:CTcpListenSocketImpl OpenIo asynio/tcpsocketimpl.cpp /^std_method_impl CTcpSocketImpl::OpenIo()$/;" f class:CTcpSocketImpl OpenIo asynio/udpsocketimpl.cpp /^std_method_impl CUdpSocketImpl::CUdpSocketImpl::OpenIo()$/;" f class:CUdpSocketImpl::CUdpSocketImpl +OpenTag vim_tool/.vim/plugin/wintagexplorer.vim /^function! OpenTag(split)$/;" f OperationPtr include/comutiliy/asynio.h /^typedef _lComPtr OperationPtr;$/;" t OptimizationDisabled access/sqlite3.c 10398;" d file: OptimizationDisabled access/sqlite3.c 10401;" d file: @@ -5052,10 +4772,10 @@ P5_ConstraintNotNull access/sqlite3.c 9040;" d file: P5_ConstraintNotNull logs/sqlite3.c 9040;" d file: P5_ConstraintUnique access/sqlite3.c 9041;" d file: P5_ConstraintUnique logs/sqlite3.c 9041;" d file: -PACK_EIGHTBYTE compat/compat_common.hpp 38;" d -PACK_ONEBYTE compat/compat_common.hpp 37;" d -PADDING base/algorithm/compat_md5.c /^static unsigned char PADDING[] = {$/;" v file: +PACK_EIGHTBYTE crt/crt_common.hpp 38;" d +PACK_ONEBYTE crt/crt_common.hpp 37;" d PADDING polipo/md5.c /^unsigned char PADDING[64] = {$/;" v file: +PADDING stdcrt/algorithm/compat_md5.c /^static unsigned char PADDING[] = {$/;" v file: PAGERID access/sqlite3.c 39524;" d file: PAGERID logs/sqlite3.c 39524;" d file: PAGERTRACE access/sqlite3.c 39513;" d file: @@ -5135,15 +4855,15 @@ PAGER_WRITER_LOCKED logs/sqlite3.c 39746;" d file: PARAM_THROW dispatch/src/dispatch.cc 22;" d file: PARSE_ANSWER polipo/dns.c 1580;" d file: PARSE_ANSWER polipo/dns.c 1720;" d file: -PARSING_HEADER http/http/http_parser.cpp 356;" d file: -PASCAL compat/darwinosdef.h 46;" d -PASCAL compat/darwinosdef.h 48;" d -PASCAL compat/darwinosdef.h 76;" d -PASCAL compat/posixosdef.h 34;" d -PBYTE compat/darwinossysdef.h /^typedef BYTE *PBYTE;$/;" t -PBYTE compat/posixossysdef.h /^typedef BYTE *PBYTE;$/;" t -PCFILETIME compat/darwinossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t -PCFILETIME compat/posixossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t +PARSING_HEADER net/http_protocol/http_parser.cpp 356;" d file: +PASCAL crt/darwinosdef.h 46;" d +PASCAL crt/darwinosdef.h 48;" d +PASCAL crt/darwinosdef.h 76;" d +PASCAL crt/posixosdef.h 34;" d +PBYTE crt/darwinossysdef.h /^typedef BYTE *PBYTE;$/;" t +PBYTE crt/posixossysdef.h /^typedef BYTE *PBYTE;$/;" t +PCFILETIME crt/darwinossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t +PCFILETIME crt/posixossysdef.h /^typedef const FILETIME *PCFILETIME, *LPCFILETIME;$/;" t PCache access/sqlite3.c /^struct PCache {$/;" s file: PCache access/sqlite3.c /^typedef struct PCache PCache;$/;" t typeref:struct:PCache file: PCache logs/sqlite3.c /^struct PCache {$/;" s file: @@ -5155,8 +4875,8 @@ PCache1 logs/sqlite3.c /^typedef struct PCache1 PCache1;$/;" t typeref:struct:PC PCacheGlobal access/sqlite3.c /^static SQLITE_WSD struct PCacheGlobal {$/;" s file: PCacheGlobal logs/sqlite3.c /^static SQLITE_WSD struct PCacheGlobal {$/;" s file: PDWM_MARGINS uibase/uilib/dwm.hpp /^} DWM_MARGINS, *PDWM_MARGINS;$/;" t typeref:struct:tagDWL_MARGINS -PDWORD compat/darwinossysdef.h /^typedef DWORD*PDWORD;$/;" t -PDWORD compat/posixossysdef.h /^typedef DWORD*PDWORD;$/;" t +PDWORD crt/darwinossysdef.h /^typedef DWORD*PDWORD;$/;" t +PDWORD crt/posixossysdef.h /^typedef DWORD*PDWORD;$/;" t PENDING_BYTE access/sqlite3.c 9959;" d file: PENDING_BYTE access/sqlite3.c 9961;" d file: PENDING_BYTE logs/sqlite3.c 9959;" d file: @@ -5165,8 +4885,8 @@ PENDING_BYTE_PAGE access/sqlite3.c 50291;" d file: PENDING_BYTE_PAGE logs/sqlite3.c 50291;" d file: PENDING_LOCK access/sqlite3.c 9900;" d file: PENDING_LOCK logs/sqlite3.c 9900;" d file: -PFILETIME compat/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME -PFILETIME compat/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME +PFILETIME crt/darwinossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME +PFILETIME crt/posixossysdef.h /^} FILETIME, *PFILETIME, *LPFILETIME;$/;" t typeref:struct:_FILETIME PFUNCUPDATELAYEREDWINDOW uibase/uilib/core/uimanager.cpp /^typedef BOOL (__stdcall *PFUNCUPDATELAYEREDWINDOW)(HWND, HDC, POINT*, SIZE*, HDC, POINT*, COLORREF, BLENDFUNCTION*, DWORD);$/;" t namespace:DuiLib file: PGHDR_DIRTY access/sqlite3.c 9621;" d file: PGHDR_DIRTY logs/sqlite3.c 9621;" d file: @@ -5185,82 +4905,18 @@ PGroup access/sqlite3.c /^typedef struct PGroup PGroup;$/;" t typeref:struct:PGr PGroup logs/sqlite3.c /^struct PGroup {$/;" s file: PGroup logs/sqlite3.c /^typedef struct PGroup PGroup;$/;" t typeref:struct:PGroup file: PING_TIMEOUT net/protocol/icmp.c 4;" d file: -PINT compat/darwinossysdef.h /^typedef int *PINT;$/;" t -PINT compat/posixossysdef.h /^typedef int *PINT;$/;" t -PINT_PTR compat/compat_bits.hpp /^ typedef int INT_PTR, *PINT_PTR;$/;" t -PINT_PTR compat/compat_bits.hpp /^ typedef long long INT_PTR, *PINT_PTR;$/;" t -PLARGE_INTEGER compat/darwinossysdef.h /^typedef LARGE_INTEGER *PLARGE_INTEGER;$/;" t -PLARGE_INTEGER compat/posixossysdef.h /^typedef LARGE_INTEGER *PLARGE_INTEGER;$/;" t -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 339;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 342;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 345;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 348;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 351;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 354;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 357;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 360;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 363;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 366;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 369;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 372;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 375;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 378;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 381;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 384;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 387;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 390;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 393;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 396;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 399;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 402;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 405;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 408;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 412;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 415;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 418;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 421;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 424;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 429;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 432;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 436;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 324;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 327;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 330;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 333;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 336;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 339;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 342;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 345;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 348;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 351;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 354;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 357;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 360;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 363;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 366;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 369;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 372;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 375;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 378;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 381;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 384;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 387;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 390;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 393;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 397;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 400;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 403;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 406;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 409;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 414;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 417;" d file: -PLATFORM_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 421;" d file: -PLONG_PTR compat/compat_bits.hpp /^ typedef long LONG_PTR, *PLONG_PTR;$/;" t -PLONG_PTR compat/compat_bits.hpp /^ typedef long long LONG_PTR, *PLONG_PTR;$/;" t -POINT compat/darwinossysdef.h /^} POINT;$/;" t typeref:struct:tagPOINT -POINT compat/posixossysdef.h /^} POINT;$/;" t typeref:struct:tagPOINT -POINTL compat/darwinossysdef.h /^}POINTL;$/;" t typeref:struct:_POINTL -POINTL compat/posixossysdef.h /^}POINTL;$/;" t typeref:struct:_POINTL +PINT crt/darwinossysdef.h /^typedef int *PINT;$/;" t +PINT crt/posixossysdef.h /^typedef int *PINT;$/;" t +PINT_PTR crt/crt_bits.hpp /^ typedef int INT_PTR, *PINT_PTR;$/;" t +PINT_PTR crt/crt_bits.hpp /^ typedef long long INT_PTR, *PINT_PTR;$/;" t +PLARGE_INTEGER crt/darwinossysdef.h /^typedef LARGE_INTEGER *PLARGE_INTEGER;$/;" t +PLARGE_INTEGER crt/posixossysdef.h /^typedef LARGE_INTEGER *PLARGE_INTEGER;$/;" t +PLONG_PTR crt/crt_bits.hpp /^ typedef long LONG_PTR, *PLONG_PTR;$/;" t +PLONG_PTR crt/crt_bits.hpp /^ typedef long long LONG_PTR, *PLONG_PTR;$/;" t +POINT crt/darwinossysdef.h /^} POINT;$/;" t typeref:struct:tagPOINT +POINT crt/posixossysdef.h /^} POINT;$/;" t typeref:struct:tagPOINT +POINTL crt/darwinossysdef.h /^}POINTL;$/;" t typeref:struct:_POINTL +POINTL crt/posixossysdef.h /^}POINTL;$/;" t typeref:struct:_POINTL POLLERR polipo/mingw.h 114;" d POLLHUP polipo/mingw.h 115;" d POLLIN polipo/mingw.h 111;" d @@ -5274,14 +4930,14 @@ POS_COLUMN access/sqlite3.c 123828;" d file: POS_COLUMN logs/sqlite3.c 123828;" d file: POS_END access/sqlite3.c 123829;" d file: POS_END logs/sqlite3.c 123829;" d file: -PPOINT compat/darwinossysdef.h /^typedef struct tagPOINT *PPOINT;$/;" t typeref:struct:tagPOINT -PPOINT compat/posixossysdef.h /^typedef struct tagPOINT *PPOINT;$/;" t typeref:struct:tagPOINT -PPOINTL compat/darwinossysdef.h /^typedef struct _POINTL *PPOINTL;$/;" t typeref:struct:_POINTL -PPOINTL compat/posixossysdef.h /^typedef struct _POINTL *PPOINTL;$/;" t typeref:struct:_POINTL -PRECT compat/darwinossysdef.h /^typedef struct tagRECT *PRECT;$/;" t typeref:struct:tagRECT -PRECT compat/posixossysdef.h /^typedef struct tagRECT *PRECT;$/;" t typeref:struct:tagRECT -PRECTL compat/darwinossysdef.h /^typedef struct _RECTL *PRECTL;$/;" t typeref:struct:_RECTL -PRECTL compat/posixossysdef.h /^typedef struct _RECTL *PRECTL;$/;" t typeref:struct:_RECTL +PPOINT crt/darwinossysdef.h /^typedef struct tagPOINT *PPOINT;$/;" t typeref:struct:tagPOINT +PPOINT crt/posixossysdef.h /^typedef struct tagPOINT *PPOINT;$/;" t typeref:struct:tagPOINT +PPOINTL crt/darwinossysdef.h /^typedef struct _POINTL *PPOINTL;$/;" t typeref:struct:_POINTL +PPOINTL crt/posixossysdef.h /^typedef struct _POINTL *PPOINTL;$/;" t typeref:struct:_POINTL +PRECT crt/darwinossysdef.h /^typedef struct tagRECT *PRECT;$/;" t typeref:struct:tagRECT +PRECT crt/posixossysdef.h /^typedef struct tagRECT *PRECT;$/;" t typeref:struct:tagRECT +PRECTL crt/darwinossysdef.h /^typedef struct _RECTL *PRECTL;$/;" t typeref:struct:_RECTL +PRECTL crt/posixossysdef.h /^typedef struct _RECTL *PRECTL;$/;" t typeref:struct:_RECTL PREFIX polipo/Makefile /^PREFIX = \/usr\/local$/;" m PRINT_SEP polipo/config.c 357;" d file: PRINT_SEP polipo/config.c 454;" d file: @@ -5293,7 +4949,7 @@ PROCESS_PER_MONITOR_DPI_AWARE uibase/uilib/dpi.hpp /^ PROCESS_PER_MONITOR_DPI_AW PROCESS_SYSTEM_DPI_AWARE uibase/uilib/dpi.hpp /^ PROCESS_SYSTEM_DPI_AWARE = 1,$/;" e enum:_PROCESS_DPI_AWARENESS PROXY_CONCHVERSION access/sqlite3.c 30131;" d file: PROXY_CONCHVERSION logs/sqlite3.c 30131;" d file: -PROXY_CONNECTION http/http/http_parser.cpp 160;" d file: +PROXY_CONNECTION net/http_protocol/http_parser.cpp 160;" d file: PROXY_HEADERLEN access/sqlite3.c 30132;" d file: PROXY_HEADERLEN logs/sqlite3.c 30132;" d file: PROXY_HOSTIDLEN access/sqlite3.c 30093;" d file: @@ -5302,10 +4958,10 @@ PROXY_MAXCONCHLEN access/sqlite3.c 30134;" d file: PROXY_MAXCONCHLEN logs/sqlite3.c 30134;" d file: PROXY_PATHINDEX access/sqlite3.c 30133;" d file: PROXY_PATHINDEX logs/sqlite3.c 30133;" d file: -PSIZE compat/darwinossysdef.h /^typedef struct tagSIZE *PSIZE;$/;" t typeref:struct:tagSIZE -PSIZE compat/posixossysdef.h /^typedef struct tagSIZE *PSIZE;$/;" t typeref:struct:tagSIZE -PSIZEL compat/darwinossysdef.h /^typedef struct tagSIZEL *PSIZEL;$/;" t typeref:struct:tagSIZEL -PSIZEL compat/posixossysdef.h /^typedef struct tagSIZEL *PSIZEL;$/;" t typeref:struct:tagSIZEL +PSIZE crt/darwinossysdef.h /^typedef struct tagSIZE *PSIZE;$/;" t typeref:struct:tagSIZE +PSIZE crt/posixossysdef.h /^typedef struct tagSIZE *PSIZE;$/;" t typeref:struct:tagSIZE +PSIZEL crt/darwinossysdef.h /^typedef struct tagSIZEL *PSIZEL;$/;" t typeref:struct:tagSIZEL +PSIZEL crt/posixossysdef.h /^typedef struct tagSIZEL *PSIZEL;$/;" t typeref:struct:tagSIZEL PTF_INTKEY access/sqlite3.c 49986;" d file: PTF_INTKEY logs/sqlite3.c 49986;" d file: PTF_LEAF access/sqlite3.c 49989;" d file: @@ -5330,8 +4986,8 @@ PTRMAP_PTROFFSET access/sqlite3.c 50309;" d file: PTRMAP_PTROFFSET logs/sqlite3.c 50309;" d file: PTRMAP_ROOTPAGE access/sqlite3.c 50343;" d file: PTRMAP_ROOTPAGE logs/sqlite3.c 50343;" d file: -PUCHAR compat/darwinossysdef.h /^typedef UCHAR* PUCHAR;$/;" t -PUCHAR compat/posixossysdef.h /^typedef UCHAR* PUCHAR;$/;" t +PUCHAR crt/darwinossysdef.h /^typedef UCHAR* PUCHAR;$/;" t +PUCHAR crt/posixossysdef.h /^typedef UCHAR* PUCHAR;$/;" t PUGIXML_API uibase/uilib/core/pugixml.hpp 48;" d PUGIXML_CHAR uibase/uilib/core/pugixml.hpp 120;" d PUGIXML_CHAR uibase/uilib/core/pugixml.hpp 123;" d @@ -5440,16 +5096,16 @@ PUGI__UNSIGNED_OVERFLOW uibase/uilib/core/pugixml.cpp 112;" d file: PUGI__UNSIGNED_OVERFLOW uibase/uilib/core/pugixml.cpp 114;" d file: PUGI__UNSIGNED_OVERFLOW uibase/uilib/core/pugixml.cpp 117;" d file: PUGI__UNSIGNED_OVERFLOW uibase/uilib/core/pugixml.cpp 12969;" d file: -PUINT compat/darwinossysdef.h /^typedef unsigned int *PUINT;$/;" t -PUINT compat/posixossysdef.h /^typedef unsigned int *PUINT;$/;" t -PUINT_PTR compat/compat_bits.hpp /^ typedef unsigned int UINT_PTR, *PUINT_PTR;$/;" t -PUINT_PTR compat/compat_bits.hpp /^ typedef unsigned long long UINT_PTR, *PUINT_PTR;$/;" t -PULONG compat/darwinossysdef.h /^typedef ULONG *PULONG;$/;" t -PULONG compat/posixossysdef.h /^typedef ULONG *PULONG;$/;" t -PULONG_PTR compat/compat_bits.hpp /^ typedef unsigned long ULONG_PTR, *PULONG_PTR;$/;" t -PULONG_PTR compat/compat_bits.hpp /^ typedef unsigned long long ULONG_PTR, *PULONG_PTR;$/;" t +PUINT crt/darwinossysdef.h /^typedef unsigned int *PUINT;$/;" t +PUINT crt/posixossysdef.h /^typedef unsigned int *PUINT;$/;" t +PUINT_PTR crt/crt_bits.hpp /^ typedef unsigned int UINT_PTR, *PUINT_PTR;$/;" t +PUINT_PTR crt/crt_bits.hpp /^ typedef unsigned long long UINT_PTR, *PUINT_PTR;$/;" t +PULONG crt/darwinossysdef.h /^typedef ULONG *PULONG;$/;" t +PULONG crt/posixossysdef.h /^typedef ULONG *PULONG;$/;" t +PULONG_PTR crt/crt_bits.hpp /^ typedef unsigned long ULONG_PTR, *PULONG_PTR;$/;" t +PULONG_PTR crt/crt_bits.hpp /^ typedef unsigned long long ULONG_PTR, *PULONG_PTR;$/;" t PULVCompareFunc uibase/uilib/control/uilist.h /^typedef int (CALLBACK *PULVCompareFunc)(UINT_PTR, UINT_PTR, UINT_PTR);$/;" t namespace:DuiLib -PURE compat/compat_comutil.hpp 61;" d +PURE crt/crt_comutil.hpp 61;" d PURE include/utilex/semthread.hpp /^ std_method(Sem_Thread_Run)() PURE;$/;" m class:CSemThread PURE include/utilex/thread.hpp /^ std_method(Thread_Init)() PURE;$/;" m class:CThread PURE include/utilex/thread.hpp /^ std_method(Thread_Run)() PURE;$/;" m class:CThread @@ -5459,13 +5115,13 @@ PURE include/utilex/threadpool.hpp /^ std_method(ThreadPool_Run)(void* data, voi PURE include/utilex/threadpool.hpp /^ std_method(ThreadPool_Start)() PURE;$/;" m class:CThreadPool PURE include/utilex/threadpool.hpp /^ std_method(ThreadPool_Stop)() PURE;$/;" m class:CThreadPool PURE include/utilex/timethread.hpp /^ std_method(Time_Thread_Run)() PURE;$/;" m class:CTimeThread -PUSHORT compat/darwinossysdef.h /^typedef USHORT* PUSHORT;$/;" t -PUSHORT compat/posixossysdef.h /^typedef USHORT* PUSHORT;$/;" t -PVOID compat/darwinossysdef.h /^typedef void* PVOID;$/;" t -PVOID compat/posixossysdef.h /^typedef void* PVOID;$/;" t -PWORD compat/darwinossysdef.h /^typedef WORD *PWORD;$/;" t -PWORD compat/posixossysdef.h /^typedef WORD *PWORD;$/;" t -Package_Protocol msgbus/auth.hpp /^} Package_Protocol;$/;" t typeref:struct:__anon71 +PUSHORT crt/darwinossysdef.h /^typedef USHORT* PUSHORT;$/;" t +PUSHORT crt/posixossysdef.h /^typedef USHORT* PUSHORT;$/;" t +PVOID crt/darwinossysdef.h /^typedef void* PVOID;$/;" t +PVOID crt/posixossysdef.h /^typedef void* PVOID;$/;" t +PWORD crt/darwinossysdef.h /^typedef WORD *PWORD;$/;" t +PWORD crt/posixossysdef.h /^typedef WORD *PWORD;$/;" t +Package_Protocol msgbus/auth.hpp /^} Package_Protocol;$/;" t typeref:struct:__anon66 PageDown uibase/uilib/control/uilist.cpp /^void CListUI::PageDown()$/;" f class:DuiLib::CListUI PageDown uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::PageDown()$/;" f class:DuiLib::CRichEditUI PageDown uibase/uilib/core/uicontainer.cpp /^ void CContainerUI::PageDown()$/;" f class:DuiLib::CContainerUI @@ -5525,12 +5181,14 @@ ParseContext logs/sqlite3.c /^typedef struct ParseContext ParseContext;$/;" t ty ParseRectString uibase/uilib/utils/utils.cpp /^int ParseRectString(LPCSTR lpszRect, RECT& rc)$/;" f ParseSizeString uibase/uilib/utils/utils.cpp /^int ParseSizeString(LPCSTR lpszSize, SIZE& Size)$/;" f Paste uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::Paste()$/;" f class:DuiLib::CRichEditUI +Path vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:Path(p)$/;" f +Path vim_tool/.vim/plugin/winmanager.vim /^function! Path(p)$/;" f PauseGif uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::PauseGif()$/;" f class:DuiLib::CGifAnimUI PendingList access/sqlite3.c /^struct PendingList {$/;" s file: PendingList access/sqlite3.c /^typedef struct PendingList PendingList;$/;" t typeref:struct:PendingList file: PendingList logs/sqlite3.c /^struct PendingList {$/;" s file: PendingList logs/sqlite3.c /^typedef struct PendingList PendingList;$/;" t typeref:struct:PendingList file: -Perform http/httptimpl.cpp /^std_method_impl CHttptImpl::Perform(http_addr_s url, http_addr_s scheme, http_port uport)$/;" f class:CHttptImpl +Perform net/httptimpl.cpp /^std_method_impl CHttptImpl::Perform(http_addr_s url, http_addr_s scheme, http_port uport)$/;" f class:CHttptImpl PgFreeslot access/sqlite3.c /^struct PgFreeslot {$/;" s file: PgFreeslot access/sqlite3.c /^typedef struct PgFreeslot PgFreeslot;$/;" t typeref:struct:PgFreeslot file: PgFreeslot logs/sqlite3.c /^struct PgFreeslot {$/;" s file: @@ -5664,6 +5322,8 @@ PragTyp_WAL_CHECKPOINT logs/sqlite3.c 96328;" d file: PreMessageHandler uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::PreMessageHandler(UINT uMsg, WPARAM wParam, LPARAM lParam, LRESULT& \/*lRes*\/)$/;" f class:DuiLib::CPaintManagerUI PreMultiply uibase/uilib/utils/wndshadow.h /^ inline DWORD PreMultiply(COLORREF cl, unsigned char nAlpha)$/;" f class:CWndShadow Previous access/recordset.cpp /^std_method_type_impl(UINT) CRecordSet::Previous()$/;" f class:CRecordSet +PrintError vim_tool/.vim/plugin/winmanager.vim /^function! PrintError(eline)$/;" f +PrintFavDirs vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:PrintFavDirs()$/;" f PrintfArguments access/sqlite3.c /^struct PrintfArguments {$/;" s file: PrintfArguments access/sqlite3.c /^typedef struct PrintfArguments PrintfArguments;$/;" t typeref:struct:PrintfArguments file: PrintfArguments logs/sqlite3.c /^struct PrintfArguments {$/;" s file: @@ -5675,7 +5335,8 @@ ProgIDFromCLSID container/objectloader.cpp /^std_method_type_impl(LPCSTR) CObjec ProgIDFromCLSID container/rot.cpp /^std_method_type_impl(LPCSTR) CComRunningObjectTableImpl::ProgIDFromCLSID(REFCLSID clsid)$/;" f class:CComRunningObjectTableImpl ProgIDFromCLSID include/dlcom/loadcom.hpp /^ LPCSTR ProgIDFromCLSID(REFCLSID clsid)$/;" f class:CComLoader Protocol_base extensions/include/net/inet.h /^ Protocol_base = 0,$/;" e enum:NET_PROTOCOL -Protocol_dns extensions/include/net/inet.h /^ Protocol_dns = 2$/;" e enum:NET_PROTOCOL +Protocol_dns extensions/include/net/inet.h /^ Protocol_dns = 2,$/;" e enum:NET_PROTOCOL +Protocol_http extensions/include/net/inet.h /^ Protocol_http = 3$/;" e enum:NET_PROTOCOL Protocol_websocket extensions/include/net/inet.h /^ Protocol_websocket = 1,$/;" e enum:NET_PROTOCOL Push mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Push(REFCLSID sn, REFCLSID tn, UINT msg, IBase* pMsg)$/;" f class:CMainViewImpl Push msgbus/msgqueue.cpp /^void CMsgQueue::Push(IMsg* pMessage)$/;" f class:CMsgQueue @@ -5686,10 +5347,10 @@ PutBytes include/comutiliy/serialize.hpp /^ std_method_impl PutBytes(const unsig PutUByte include/comutiliy/serialize.hpp /^ std_method_impl PutUByte(unsigned char nVal)$/;" f class:Serialize PutUInt include/comutiliy/serialize.hpp /^ std_method_impl PutUInt(unsigned int nVal)$/;" f class:Serialize PutUShort include/comutiliy/serialize.hpp /^ std_method_impl PutUShort(unsigned short nVal)$/;" f class:Serialize -QuadPart compat/darwinossysdef.h /^ LONGLONG QuadPart;$/;" m struct:_LARGE_INTEGER -QuadPart compat/darwinossysdef.h /^ ULONGLONG QuadPart;$/;" m struct:_ULARGE_INTEGER -QuadPart compat/posixossysdef.h /^ ULONGLONG QuadPart;$/;" m struct:_ULARGE_INTEGER -QuadPart compat/posixossysdef.h /^ LONGLONG QuadPart;$/;" m struct:_LARGE_INTEGER +QuadPart crt/darwinossysdef.h /^ LONGLONG QuadPart;$/;" m struct:_LARGE_INTEGER +QuadPart crt/darwinossysdef.h /^ ULONGLONG QuadPart;$/;" m struct:_ULARGE_INTEGER +QuadPart crt/posixossysdef.h /^ ULONGLONG QuadPart;$/;" m struct:_ULARGE_INTEGER +QuadPart crt/posixossysdef.h /^ LONGLONG QuadPart;$/;" m struct:_LARGE_INTEGER QuadraticPickNext access/sqlite3.c /^static RtreeCell *QuadraticPickNext($/;" f file: QuadraticPickNext logs/sqlite3.c /^static RtreeCell *QuadraticPickNext($/;" f file: QuadraticPickSeeds access/sqlite3.c /^static void QuadraticPickSeeds($/;" f file: @@ -5715,20 +5376,20 @@ READ_UTF8 logs/sqlite3.c 140829;" d file: READ_UTF8 logs/sqlite3.c 21230;" d file: REARGUARD access/sqlite3.c 16345;" d file: REARGUARD logs/sqlite3.c 16345;" d file: -RECT compat/darwinossysdef.h /^} RECT;$/;" t typeref:struct:tagRECT -RECT compat/posixossysdef.h /^} RECT;$/;" t typeref:struct:tagRECT -RECTL compat/darwinossysdef.h /^}RECTL;$/;" t typeref:struct:_RECTL -RECTL compat/posixossysdef.h /^}RECTL;$/;" t typeref:struct:_RECTL +RECT crt/darwinossysdef.h /^} RECT;$/;" t typeref:struct:tagRECT +RECT crt/posixossysdef.h /^} RECT;$/;" t typeref:struct:tagRECT +RECTL crt/darwinossysdef.h /^}RECTL;$/;" t typeref:struct:_RECTL +RECTL crt/posixossysdef.h /^}RECTL;$/;" t typeref:struct:_RECTL REDIRECTOR_BUFFER_SIZE polipo/forbidden.c 63;" d file: -REEXECUTE http/http/http_parser.cpp 62;" d file: -REFCLSID compat/compat_guid.hpp 76;" d -REFCLSID compat/compat_guid.hpp 78;" d -REFFMTID compat/compat_guid.hpp 85;" d -REFFMTID compat/compat_guid.hpp 87;" d -REFGUID compat/compat_guid.hpp 58;" d -REFGUID compat/compat_guid.hpp 60;" d -REFIID compat/compat_guid.hpp 67;" d -REFIID compat/compat_guid.hpp 69;" d +REEXECUTE net/http_protocol/http_parser.cpp 62;" d file: +REFCLSID crt/crt_guid.hpp 76;" d +REFCLSID crt/crt_guid.hpp 78;" d +REFFMTID crt/crt_guid.hpp 85;" d +REFFMTID crt/crt_guid.hpp 87;" d +REFGUID crt/crt_guid.hpp 58;" d +REFGUID crt/crt_guid.hpp 60;" d +REFIID crt/crt_guid.hpp 67;" d +REFIID crt/crt_guid.hpp 69;" d REGISTER_TRACE access/sqlite3.c 66791;" d file: REGISTER_TRACE access/sqlite3.c 66793;" d file: REGISTER_TRACE logs/sqlite3.c 66791;" d file: @@ -5746,37 +5407,20 @@ RESERVED_LOCK access/sqlite3.c 9899;" d file: RESERVED_LOCK logs/sqlite3.c 9899;" d file: RESIZE_HBUF polipo/http_parse.c 1374;" d file: RESIZE_HBUF polipo/http_parse.c 790;" d file: -RESOLV_BUFSZ net/protocol/dns.cpp 51;" d file: -RES_MAXNDOTS net/protocol/dns.cpp 46;" d file: +RESOLV_BUFSZ net/protocol/dns.c 51;" d file: +RES_MAXNDOTS net/protocol/dns.c 46;" d file: RES_TYPE_COLOR uibase/uilib/core/uirender.cpp 3;" d file: -RETURN http/http/http_parser.cpp 57;" d file: -RFC1123_STRFTIME http/http/httputil.cpp 3;" d file: +RETURN net/http_protocol/http_parser.cpp 57;" d file: +RFC1123_STRFTIME net/http_protocol/httputil.cpp 3;" d file: RGBtoHSL uibase/uilib/core/uirender.cpp /^static void RGBtoHSL(DWORD ARGB, float* H, float* S, float* L) {$/;" f namespace:DuiLib file: -RM Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM access/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM asynio/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM base/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM base_test/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM container/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM dispatch/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM guidgen/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM http/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM license/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM logs/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM main/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM mainview/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM mempool/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM msgbus/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM net/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM render/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m -RM testmain/Makefile /^RM = \/usr\/bin\/cmake -E remove -f$/;" m RNDAWAY access/sqlite3.c 144321;" d file: RNDAWAY logs/sqlite3.c 144321;" d file: RNDTOWARDS access/sqlite3.c 144320;" d file: RNDTOWARDS logs/sqlite3.c 144320;" d file: -ROTATE_LEFT base/algorithm/compat_md5.c 7;" d file: ROTATE_LEFT polipo/md5.c /^inline UINT4 ROTATE_LEFT(UINT4 x, int n)$/;" f ROTATE_LEFT polipo/md5.c 90;" d file: +ROTATE_LEFT stdcrt/algorithm/compat_md5.c 7;" d file: +ROT_COMPOENT include/dlcom/icombase.h 101;" d ROUND8 access/sqlite3.c 8427;" d file: ROUND8 logs/sqlite3.c 8427;" d file: ROUNDDOWN8 access/sqlite3.c 8432;" d file: @@ -5791,7 +5435,7 @@ ROWSET_NEXT access/sqlite3.c 38866;" d file: ROWSET_NEXT logs/sqlite3.c 38866;" d file: ROWSET_SORTED access/sqlite3.c 38865;" d file: ROWSET_SORTED logs/sqlite3.c 38865;" d file: -RTLD_LAZY compat/compat_dll.h 12;" d +RTLD_LAZY crt/crt_dl.h 12;" d RTREE_COORD_INT32 access/sqlite3.c 141739;" d file: RTREE_COORD_INT32 logs/sqlite3.c 141739;" d file: RTREE_COORD_REAL32 access/sqlite3.c 141738;" d file: @@ -5825,7 +5469,7 @@ RTREE_MIN_ROWEST logs/sqlite3.c 141693;" d file: RTREE_REINSERT access/sqlite3.c 141764;" d file: RTREE_REINSERT logs/sqlite3.c 141764;" d file: RUNNINGTABLEITEM container/rot.h /^ }RUNNINGTABLEITEM;$/;" t class:CComRunningObjectTableImpl typeref:struct:CComRunningObjectTableImpl::tagRunningTableItem -ReSet http/httptimpl.cpp /^std_method_impl CHttptImpl::ReSet()$/;" f class:CHttptImpl +ReSet net/httptimpl.cpp /^std_method_impl CHttptImpl::ReSet()$/;" f class:CHttptImpl ReadBuffer asynio/fileimpl.cpp /^std_method_impl CFileImpl::ReadBuffer(char* szBuffer,int64 ulReadFileLen, int64* ulReadSize)$/;" f class:CFileImpl ReadChannel include/comutiliy/cchannel.hpp /^ std_method_type_impl(BUFFER_SIZE) ReadChannel(BUFFER_PTR buf, BUFFER_SIZE size) {$/;" f class:CChannel ReadFileMem include/utilex/file.hpp /^static_inline BYTE* ReadFileMem(const basic_tstring &src, unsigned long& len) {$/;" f @@ -5846,13 +5490,16 @@ RedirectRequestPtr polipo/forbidden.h /^} RedirectRequestRec, *RedirectRequestPt RedirectRequestRec polipo/forbidden.h /^} RedirectRequestRec, *RedirectRequestPtr;$/;" t typeref:struct:_RedirectRequest Redo uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::Redo()$/;" f class:DuiLib::CRichEditUI Refresh logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Refresh(LPCSTR name, cJSON* pRoot,$/;" f class:CLogDataBaseImpl -Register container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::Register(REFCLSID clsid, LPCSTR progId, IBase *punk, ULONG id)$/;" f class:CComRunningObjectTableImpl +RefreshWinManager vim_tool/.vim/plugin/winmanager.vim /^function! RefreshWinManager(...)$/;" f +Register container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::Register(REFCLSID clsid, LPCSTR progId, IBase *punk, UINT id)$/;" f class:CComRunningObjectTableImpl RegisterCode container/mainrun.cpp /^std_method_impl CMainRun::RegisterCode(LPCSTR buf, ULONG ulen)$/;" f class:CMainRun +RegisterComponent include/dlcom/objectrun.hpp /^ HRESULT RegisterComponent(REFCLSID clsid, LPCSTR progId, IBase* pBase, ULONG Id, LPCSTR Component, UINT type) {$/;" f class:CContainer RegisterContainer container/mainrun.cpp /^std_method_impl CMainRun::RegisterContainer(LPCSTR name)$/;" f class:CMainRun -RegisterContainer include/dlcom/objectrun.hpp /^ int RegisterContainer(LPCSTR buf, ULONG len) {$/;" f class:CContainer +RegisterContainer include/dlcom/objectrun.hpp /^ HRESULT RegisterContainer(LPCSTR buf, ULONG len) {$/;" f class:CContainer +RegisterExplorerGroup vim_tool/.vim/plugin/winmanager.vim /^function! RegisterExplorerGroup()$/;" f RegisterPluginClsid container/mainrun.cpp /^std_method_impl CMainRun::RegisterPluginClsid()$/;" f class:CMainRun RegisterPluginComponents container/mainrun.cpp /^std_method_impl CMainRun::RegisterPluginComponents()$/;" f class:CMainRun -RegisterPlugins container/mainrun.cpp /^std_method_impl CMainRun::RegisterPlugins(LPCSTR Buf)$/;" f class:CMainRun +RegisterPlugins container/mainrun.cpp /^std_method_impl CMainRun::RegisterPlugins(LPCSTR Buf)$/;" f class:CMainRun RegisterRotAndlibManager container/mainrun.cpp /^std_method_impl CMainRun::RegisterRotAndlibManager()$/;" f class:CMainRun RegisterRunArgc container/mainrun.cpp /^std_method_impl CMainRun::RegisterRunArgc(int iArgc, basic_tchar* Argv[])$/;" f class:CMainRun RegisterSuperclass uibase/uilib/core/uibase.cpp /^bool CWindowWnd::RegisterSuperclass()$/;" f class:DuiLib::CWindowWnd @@ -5892,6 +5539,7 @@ RemoveAt uibase/uilib/control/uilist.cpp /^bool CListUI::RemoveAt(int iIndex, bo RemoveAt uibase/uilib/control/uitreeview.cpp /^ bool CTreeNodeUI::RemoveAt( CTreeNodeUI* _pTreeNodeUI )$/;" f class:DuiLib::CTreeNodeUI RemoveAt uibase/uilib/control/uitreeview.cpp /^ bool CTreeViewUI::RemoveAt( int iIndex, bool bDoNotDestroy )$/;" f class:DuiLib::CTreeViewUI RemoveAt uibase/uilib/core/uicontainer.cpp /^ bool CContainerUI::RemoveAt(int iIndex, bool bDoNotDestroy)$/;" f class:DuiLib::CContainerUI +RemoveCComments vim_tool/.vim/autoload/omni/cpp/utils.vim /^function! s:RemoveCComments(szLine)$/;" f RemoveCustomAttribute uibase/uilib/core/uicontrol.cpp /^ bool CControlUI::RemoveCustomAttribute(LPCTSTR pstrName)$/;" f class:DuiLib::CControlUI RemoveDefaultAttributeList uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::RemoveDefaultAttributeList(LPCTSTR pStrControlName, bool bShared)$/;" f class:DuiLib::CPaintManagerUI RemoveFont uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::RemoveFont(HFONT hFont, bool bShared)$/;" f class:DuiLib::CPaintManagerUI @@ -5904,10 +5552,13 @@ RemoveNotifier uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::RemoveNot RemoveOptionGroup uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::RemoveOptionGroup(LPCTSTR pStrGroupName, CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI RemovePostPaint uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::RemovePostPaint(CControlUI* pControl)$/;" f class:DuiLib::CPaintManagerUI RemovePreMessageFilter uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::RemovePreMessageFilter(IMessageFilterUI* pFilter)$/;" f class:DuiLib::CPaintManagerUI +RemoveSeparators vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:RemoveSeparators()$/;" f RemoveVirtualWnd uibase/uilib/core/uibase.cpp /^bool CNotifyPump::RemoveVirtualWnd(CDuiString strName)$/;" f class:DuiLib::CNotifyPump RemoveWindowAttribute uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::RemoveWindowAttribute(LPCTSTR pstrName)$/;" f class:DuiLib::CPaintManagerUI RemoveWindowCustomAttribute uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::RemoveWindowCustomAttribute(LPCTSTR pstrName)$/;" f class:DuiLib::CPaintManagerUI RenameControl uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::RenameControl(CControlUI* pControl, LPCTSTR pstrName)$/;" f class:DuiLib::CPaintManagerUI +RenameFile vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:RenameFile()$/;" f +RepairAltRegister vim_tool/.vim/plugin/winmanager.vim /^function! RepairAltRegister()$/;" f Replace uibase/uilib/utils/utils.cpp /^ int CDuiString::Replace(LPCTSTR pstrFrom, LPCTSTR pstrTo)$/;" f class:DuiLib::CDuiString ReplaceSel uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::ReplaceSel(LPCTSTR lpszNewText, bool bCanUndo)$/;" f class:DuiLib::CRichEditUI ReplaceSelW uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::ReplaceSelW(LPCWSTR lpszNewText, bool bCanUndo)$/;" f class:DuiLib::CRichEditUI @@ -5918,8 +5569,18 @@ Reset container/msg.cpp /^std_method_impl CMsgImpl::Reset()$/;" f class:CMsgImpl ResetOffset uibase/uilib/utils/utils.cpp /^ void CDuiRect::ResetOffset()$/;" f class:DuiLib::CDuiRect Resize uibase/uilib/utils/utils.cpp /^ void CDuiPtrArray::Resize(int iSize)$/;" f class:DuiLib::CDuiPtrArray Resize uibase/uilib/utils/utils.cpp /^ void CDuiStringPtrMap::Resize(int nSize)$/;" f class:DuiLib::CDuiStringPtrMap +ResizeAllExplorers vim_tool/.vim/plugin/winmanager.vim /^function! ResizeAllExplorers()$/;" f ResizeClient uibase/uilib/core/uibase.cpp /^void CWindowWnd::ResizeClient(int cx \/*= -1*\/, int cy \/*= -1*\/)$/;" f class:DuiLib::CWindowWnd +ResolveAliasInNamespaceList vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:ResolveAliasInNamespaceList(mapNamespaceAlias, listNamespaces)$/;" f +ResolveAliasKey vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:ResolveAliasKey(mapNamespaceAlias, szAlias)$/;" f +ResolveAliasKeys vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:ResolveAliasKeys(mapNamespaceAlias)$/;" f +ResolveCCast vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:ResolveCCast(tokens)$/;" f +ResolveCast vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:ResolveCast(tokens, startChar, endChar)$/;" f +ResolveCppCast vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:ResolveCppCast(tokens)$/;" f +ResolveNamespace vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^function! s:ResolveNamespace(namespace, mapCurrentContexts)$/;" f +ResolveSymbol vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:ResolveSymbol(contextStack, szSymbol, szTagFilter)$/;" f ResponseDefaultKeyEvent uibase/uilib/utils/winimplbase.cpp /^LRESULT WindowImplBase::ResponseDefaultKeyEvent(WPARAM wParam)$/;" f class:DuiLib::WindowImplBase +RestoreFileDisplay vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:RestoreFileDisplay()$/;" f ReverseFind uibase/uilib/utils/utils.cpp /^ int CDuiString::ReverseFind(TCHAR ch) const$/;" f class:DuiLib::CDuiString Revoke container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::Revoke(REFCLSID clsid)$/;" f class:CComRunningObjectTableImpl RevokeAll container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::RevokeAll()$/;" f class:CComRunningObjectTableImpl @@ -5974,24 +5635,22 @@ RtreeValue logs/sqlite3.c /^ typedef float RtreeValue; \/* Low a RtreeValue logs/sqlite3.c /^ typedef int RtreeValue; \/* Low accuracy coordinate *\/$/;" t file: RuleList logs/stdafx.h /^typedef list RuleList;$/;" t RuleListIterator logs/stdafx.h /^typedef RuleList::iterator RuleListIterator;$/;" t -Rule_Fields logs/stdafx.h 24;" d -Rule_Fields_Index logs/stdafx.h 28;" d -Rule_Fields_Name logs/stdafx.h 25;" d -Rule_Fields_Size logs/stdafx.h 27;" d -Rule_Fields_Type logs/stdafx.h 26;" d -Rule_Op logs/stdafx.h 22;" d -Rule_Save logs/stdafx.h 21;" d -Rule_Table logs/stdafx.h 20;" d -Rule_Tables logs/stdafx.h 19;" d -Rule_log logs/stdafx.h 18;" d +Rule_Fields logs/stdafx.h 23;" d +Rule_Fields_Index logs/stdafx.h 27;" d +Rule_Fields_Name logs/stdafx.h 24;" d +Rule_Fields_Size logs/stdafx.h 26;" d +Rule_Fields_Type logs/stdafx.h 25;" d +Rule_Op logs/stdafx.h 21;" d +Rule_Save logs/stdafx.h 20;" d +Rule_Table logs/stdafx.h 19;" d +Rule_Tables logs/stdafx.h 18;" d +Rule_log logs/stdafx.h 17;" d Run container/mainrun.cpp /^std_method_type_impl(UINT) CMainRun::Run(_pinstance instance, UINT type)$/;" f class:CMainRun -RunBasePlugin_Start container/mainrun.cpp /^std_method_impl CMainRun::RunBasePlugin_Start(const _lComPtr* pBase)$/;" f class:CMainRun -RunBasePlugin_Stop container/mainrun.cpp /^std_method_impl CMainRun::RunBasePlugin_Stop(const _lComPtr* pBase)$/;" f class:CMainRun -RunContainer include/dlcom/objectrun.hpp /^ int RunContainer(_pinstance instance, basic_tchar* argv[], int argc, UINT type) {$/;" f class:CContainer -RunCorePlugin_Start container/mainrun.cpp /^std_method_impl CMainRun::RunCorePlugin_Start(const _lComPtr* pBase)$/;" f class:CMainRun -RunCorePlugin_Stop container/mainrun.cpp /^std_method_impl CMainRun::RunCorePlugin_Stop(const _lComPtr* pBase)$/;" f class:CMainRun +RunContainer include/dlcom/objectrun.hpp /^ HRESULT RunContainer(_pinstance instance, basic_tchar* argv[], int argc, UINT type) {$/;" f class:CContainer RunMsgPlugin_Start container/mainrun.cpp /^std_method_impl CMainRun::RunMsgPlugin_Start(const _lComPtr* pBase)$/;" f class:CMainRun RunMsgPlugin_Stop container/mainrun.cpp /^std_method_impl CMainRun::RunMsgPlugin_Stop(const _lComPtr* pBase)$/;" f class:CMainRun +RunPlugin_Start container/mainrun.cpp /^std_method_impl CMainRun::RunPlugin_Start(_pinstance hInstance, const _lComPtr* pBase, UINT uType)$/;" f class:CMainRun +RunPlugin_Stop container/mainrun.cpp /^std_method_impl CMainRun::RunPlugin_Stop(_pinstance hInstance, const _lComPtr* pBase, UINT uExit)$/;" f class:CMainRun RunStdPlugin_Start container/mainrun.cpp /^std_method_impl CMainRun::RunStdPlugin_Start(_pinstance hInstance, const _lComPtr* pBase, UINT uType)$/;" f class:CMainRun RunStdPlugin_Stop container/mainrun.cpp /^std_method_impl CMainRun::RunStdPlugin_Stop(_pinstance hInstance, const _lComPtr* pBase, UINT uExit)$/;" f class:CMainRun S11 polipo/md5.c 221;" d file: @@ -6010,10 +5669,10 @@ S41 polipo/md5.c 288;" d file: S42 polipo/md5.c 289;" d file: S43 polipo/md5.c 290;" d file: S44 polipo/md5.c 291;" d file: -SAFE_ALLOC net/protocol/dns.cpp 4;" d file: -SAFE_DELETE net/protocol/dns.cpp 21;" d file: -SAFE_DELETE_ARRAY net/protocol/dns.cpp 25;" d file: -SAFE_FREE net/protocol/dns.cpp 17;" d file: +SAFE_ALLOC net/protocol/dns.c 4;" d file: +SAFE_DELETE net/protocol/dns.c 21;" d file: +SAFE_DELETE_ARRAY net/protocol/dns.c 25;" d file: +SAFE_FREE net/protocol/dns.c 17;" d file: SAVEPOINT_BEGIN access/sqlite3.c 10544;" d file: SAVEPOINT_BEGIN logs/sqlite3.c 10544;" d file: SAVEPOINT_RELEASE access/sqlite3.c 10545;" d file: @@ -6024,17 +5683,17 @@ SAVE_SZ access/sqlite3.c 84337;" d file: SAVE_SZ logs/sqlite3.c 84337;" d file: SCHEMA_TABLE access/sqlite3.c 8539;" d file: SCHEMA_TABLE logs/sqlite3.c 8539;" d file: -SCODE compat/darwinossysdef.h /^typedef LONG SCODE;$/;" t -SCODE compat/posixossysdef.h /^typedef LONG SCODE;$/;" t +SCODE crt/darwinossysdef.h /^typedef LONG SCODE;$/;" t +SCODE crt/posixossysdef.h /^typedef LONG SCODE;$/;" t SCROLLBAR_LINESIZE uibase/uilib/core/uidefine.h 10;" d SChannel include/comutiliy/schannel.hpp /^ SChannel(void) {$/;" f class:SChannel SChannel include/comutiliy/schannel.hpp /^class SChannel $/;" c SETBIT access/sqlite3.c 36979;" d file: SETBIT logs/sqlite3.c 36979;" d file: -SET_ERRNO base/compat_error.c 12;" d file: -SET_ERRNO base/compat_error.c 17;" d file: -SET_ERRNO base/compat_error.c 7;" d file: -SET_ERRNO http/http/http_parser.cpp 50;" d file: +SET_ERRNO net/http_protocol/http_parser.cpp 50;" d file: +SET_ERRNO stdcrt/compat_error.c 12;" d file: +SET_ERRNO stdcrt/compat_error.c 17;" d file: +SET_ERRNO stdcrt/compat_error.c 7;" d file: SET_FULLSYNC access/sqlite3.c 9845;" d file: SET_FULLSYNC logs/sqlite3.c 9845;" d file: SF_Aggregate access/sqlite3.c 11481;" d file: @@ -6067,67 +5726,21 @@ SHARED_LOCK access/sqlite3.c 9898;" d file: SHARED_LOCK logs/sqlite3.c 9898;" d file: SHARED_SIZE access/sqlite3.c 9965;" d file: SHARED_SIZE logs/sqlite3.c 9965;" d file: -SHELL Makefile /^SHELL = \/bin\/sh$/;" m -SHELL access/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL asynio/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL base/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL base_test/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL container/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL dispatch/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL guidgen/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL http/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL license/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL logs/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL main/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL mainview/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL mempool/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL msgbus/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL net/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL render/Makefile /^SHELL = \/bin\/sh$/;" m -SHELL testmain/Makefile /^SHELL = \/bin\/sh$/;" m -SHORT compat/darwinossysdef.h /^typedef short SHORT;$/;" t -SHORT compat/posixossysdef.h /^typedef short SHORT;$/;" t -SHUT_SOCK_BOTN compat/compat_sock.h 53;" d -SHUT_SOCK_BOTN compat/compat_sock.h 61;" d -SHUT_SOCK_BOTN compat/compat_sock.h 69;" d -SHUT_SOCK_RD compat/compat_sock.h 51;" d -SHUT_SOCK_RD compat/compat_sock.h 59;" d -SHUT_SOCK_RD compat/compat_sock.h 67;" d -SHUT_SOCK_RW compat/compat_sock.h 52;" d -SHUT_SOCK_RW compat/compat_sock.h 60;" d -SHUT_SOCK_RW compat/compat_sock.h 68;" d -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 209;" d file: -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 21;" d file: -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 231;" d file: -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 24;" d file: -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 203;" d file: -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 21;" d file: -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 225;" d file: -SIMULATE_ID CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 24;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 216;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 238;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 40;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 44;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 46;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 210;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 232;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 40;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 44;" d file: -SIMULATE_VERSION_MAJOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 46;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 217;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 239;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 41;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 49;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 211;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 233;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 41;" d file: -SIMULATE_VERSION_MINOR CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 49;" d file: -SIMULATE_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 52;" d file: -SIMULATE_VERSION_PATCH CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 52;" d file: -SIZE compat/darwinossysdef.h /^} SIZE;$/;" t typeref:struct:tagSIZE -SIZE compat/posixossysdef.h /^} SIZE;$/;" t typeref:struct:tagSIZE -SIZEL compat/darwinossysdef.h /^}SIZEL;$/;" t typeref:struct:tagSIZEL -SIZEL compat/posixossysdef.h /^}SIZEL;$/;" t typeref:struct:tagSIZEL +SHORT crt/darwinossysdef.h /^typedef short SHORT;$/;" t +SHORT crt/posixossysdef.h /^typedef short SHORT;$/;" t +SHUT_SOCK_BOTN crt/crt_sock.h 53;" d +SHUT_SOCK_BOTN crt/crt_sock.h 61;" d +SHUT_SOCK_BOTN crt/crt_sock.h 69;" d +SHUT_SOCK_RD crt/crt_sock.h 51;" d +SHUT_SOCK_RD crt/crt_sock.h 59;" d +SHUT_SOCK_RD crt/crt_sock.h 67;" d +SHUT_SOCK_RW crt/crt_sock.h 52;" d +SHUT_SOCK_RW crt/crt_sock.h 60;" d +SHUT_SOCK_RW crt/crt_sock.h 68;" d +SIZE crt/darwinossysdef.h /^} SIZE;$/;" t typeref:struct:tagSIZE +SIZE crt/posixossysdef.h /^} SIZE;$/;" t typeref:struct:tagSIZE +SIZEL crt/darwinossysdef.h /^}SIZEL;$/;" t typeref:struct:tagSIZEL +SIZEL crt/posixossysdef.h /^}SIZEL;$/;" t typeref:struct:tagSIZEL SLOT_2_0 access/sqlite3.c 22296;" d file: SLOT_2_0 logs/sqlite3.c 22296;" d file: SLOT_4_2_0 access/sqlite3.c 22297;" d file: @@ -6136,14 +5749,14 @@ SMALLEST_INT64 access/sqlite3.c 127061;" d file: SMALLEST_INT64 access/sqlite3.c 8421;" d file: SMALLEST_INT64 logs/sqlite3.c 127061;" d file: SMALLEST_INT64 logs/sqlite3.c 8421;" d file: -SMTPS_PORT net/protocol/smtp.h 7;" d +SMTPS_PORT net/protocol/smtp.h 13;" d SMTP_COMMAND_MAP net/protocol/smtp.h /^ SMTP_COMMAND_MAP(XX)$/;" e enum:smtp_command -SMTP_COMMAND_MAP net/protocol/smtp.h 13;" d -SMTP_EOB net/protocol/smtp.h 8;" d -SMTP_EOB_LEN net/protocol/smtp.h 9;" d -SMTP_PORT net/protocol/smtp.h 6;" d +SMTP_COMMAND_MAP net/protocol/smtp.h 19;" d +SMTP_EOB net/protocol/smtp.h 14;" d +SMTP_EOB_LEN net/protocol/smtp.h 15;" d +SMTP_PORT net/protocol/smtp.h 12;" d SMTP_STATUS_MAP net/protocol/smtp.h /^ SMTP_STATUS_MAP(XXX)$/;" e enum:smtp_status -SMTP_STATUS_MAP net/protocol/smtp.h 30;" d +SMTP_STATUS_MAP net/protocol/smtp.h 36;" d SOL_CONTM extensions/include/io/isocket.h 14;" d SOL_CORK extensions/include/io/isocket.h 8;" d SOL_KEEPLIVE extensions/include/io/isocket.h 7;" d @@ -6165,7 +5778,7 @@ SORTER_MAX_MERGE_COUNT logs/sqlite3.c 73384;" d file: SORTER_MIN_WORKING access/sqlite3.c 73381;" d file: SORTER_MIN_WORKING logs/sqlite3.c 73381;" d file: SOURCE_PUGIXML_CPP uibase/uilib/core/pugixml.cpp 15;" d file: -SPACE_LEFT base/stdlib/compat_argv.c 6;" d file: +SPACE_LEFT stdcrt/stdlib/compat_argv.c 6;" d file: SPILLFLAG_NOSYNC access/sqlite3.c 39854;" d file: SPILLFLAG_NOSYNC logs/sqlite3.c 39854;" d file: SPILLFLAG_OFF access/sqlite3.c 39852;" d file: @@ -7900,16 +7513,22 @@ STBI_rgb uibase/uilib/utils/stb_image.h /^ STBI_rgb = 3,$/;" e enum:__a STBI_rgb_alpha uibase/uilib/utils/stb_image.c /^ STBI_rgb_alpha = 4$/;" e enum:__anon100 file: STBI_rgb_alpha uibase/uilib/utils/stb_image.h /^ STBI_rgb_alpha = 4$/;" e enum:__anon116 STB_IMAGE_IMPLEMENTATION uibase/uilib/utils/stb_image.c 2;" d file: -STDCOM_ADDREF include/dlcom/comfunc.hpp 95;" d -STDCOM_INTERFACE_BASECLASS_ENTRY_ include/dlcom/comfunc.hpp 86;" d -STDCOM_INTERFACE_ENTRY include/dlcom/comfunc.hpp 78;" d -STDCOM_INTERFACE_ENTRY_UNKNOWN include/dlcom/comfunc.hpp 62;" d -STDCOM_INTERFACE_ENTRY_UNKNOWN_ include/dlcom/comfunc.hpp 70;" d +STDCOM_ADDREF include/dlcom/comfunc.hpp 94;" d +STDCOM_INTERFACE_BASECLASS_ENTRY_ include/dlcom/comfunc.hpp 85;" d +STDCOM_INTERFACE_ENTRY include/dlcom/comfunc.hpp 77;" d +STDCOM_INTERFACE_ENTRY_UNKNOWN include/dlcom/comfunc.hpp 61;" d +STDCOM_INTERFACE_ENTRY_UNKNOWN_ include/dlcom/comfunc.hpp 69;" d STDCOM_OBJMAP_ENTRY include/dlcom/comfactory.hpp /^ }STDCOM_OBJMAP_ENTRY, *pSTDCOM_OBJMAP_ENTRY;$/;" t typeref:struct:_STDCOM_OBJMAP_ENTRY -STDCOM_RELEASE include/dlcom/comfunc.hpp 98;" d +STDCOM_RELEASE include/dlcom/comfunc.hpp 97;" d +STD_COMPOENT include/dlcom/icombase.h 100;" d +STD_INIT include/dlcom/icombase.h 92;" d +STD_ROT include/dlcom/icombase.h 98;" d +STD_SEQ_VEC include/dlcom/icombase.h 96;" d +STD_START include/dlcom/icombase.h 93;" d +STD_VEC include/dlcom/icombase.h 95;" d STFunDesc include/dlcom/calldll.hpp /^ struct STFunDesc$/;" s class:IImpModuleBase STFunDesc include/utilex/calldll.hpp /^ struct STFunDesc$/;" s class:IImpModuleBase -STR compat/compat_debug.hpp 11;" d +STR crt/crt_debug.hpp 11;" d STR polipo/log.c 41;" d file: STRACCUM_NOMEM access/sqlite3.c 11913;" d file: STRACCUM_NOMEM logs/sqlite3.c 11913;" d file: @@ -7921,36 +7540,14 @@ STREAM_WRITE_ERROR 3rd/include/iostream.hpp 8;" d STREAM_WRITE_TIMEOUT 3rd/include/iostream.hpp 9;" d STRICMP access/sqlite3.c 85100;" d file: STRICMP logs/sqlite3.c 85100;" d file: -STRICT_CHECK http/http/http_parser.cpp 447;" d file: -STRICT_CHECK http/http/http_parser.cpp 456;" d file: -STRICT_TOKEN http/http/http_parser.cpp 422;" d file: -STRINGIFY CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 335;" d file: -STRINGIFY CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 320;" d file: -STRINGIFY_HELPER CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 334;" d file: -STRINGIFY_HELPER CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp 319;" d file: +STRICT_CHECK net/http_protocol/http_parser.cpp 447;" d file: +STRICT_CHECK net/http_protocol/http_parser.cpp 456;" d file: +STRICT_TOKEN net/http_protocol/http_parser.cpp 422;" d file: STRINGorID uibase/uilib/utils/utils.cpp /^ STRINGorID::STRINGorID(unsigned int nID) : m_lpstr(MAKEINTRESOURCE(nID))$/;" f class:DuiLib::STRINGorID STRINGorID uibase/uilib/utils/utils.cpp /^ STRINGorID::STRINGorID(LPSTRING lpString) : m_lpstr(lpString)$/;" f class:DuiLib::STRINGorID STRINGorID uibase/uilib/utils/utils.h /^ class STRINGorID$/;" c namespace:DuiLib STR_FUNCTION access/sqlite3.c 10517;" d file: STR_FUNCTION logs/sqlite3.c 10517;" d file: -SUFFIXES Makefile /^SUFFIXES =$/;" m -SUFFIXES access/Makefile /^SUFFIXES =$/;" m -SUFFIXES asynio/Makefile /^SUFFIXES =$/;" m -SUFFIXES base/Makefile /^SUFFIXES =$/;" m -SUFFIXES base_test/Makefile /^SUFFIXES =$/;" m -SUFFIXES container/Makefile /^SUFFIXES =$/;" m -SUFFIXES dispatch/Makefile /^SUFFIXES =$/;" m -SUFFIXES guidgen/Makefile /^SUFFIXES =$/;" m -SUFFIXES http/Makefile /^SUFFIXES =$/;" m -SUFFIXES license/Makefile /^SUFFIXES =$/;" m -SUFFIXES logs/Makefile /^SUFFIXES =$/;" m -SUFFIXES main/Makefile /^SUFFIXES =$/;" m -SUFFIXES mainview/Makefile /^SUFFIXES =$/;" m -SUFFIXES mempool/Makefile /^SUFFIXES =$/;" m -SUFFIXES msgbus/Makefile /^SUFFIXES =$/;" m -SUFFIXES net/Makefile /^SUFFIXES =$/;" m -SUFFIXES render/Makefile /^SUFFIXES =$/;" m -SUFFIXES testmain/Makefile /^SUFFIXES =$/;" m SWAP access/sqlite3.c 109196;" d file: SWAP logs/sqlite3.c 109196;" d file: SYNC_GET 3rd/include/boost_sharedlock.h 10;" d @@ -7958,32 +7555,32 @@ SYNC_OBJ include/utilex/autolock.hpp 54;" d SYNC_SET 3rd/include/boost_sharedlock.h 11;" d SYSCALL access/sqlite3.c 31669;" d file: SYSCALL logs/sqlite3.c 31669;" d file: -SYS_LOG_DEBUG compat/compat_log.h /^ SYS_LOG_DEBUG,$/;" e enum:sys_LogPriority -SYS_LOG_DEFAULT compat/compat_log.h /^ SYS_LOG_DEFAULT, \/* only for SetMinPriority() *\/$/;" e enum:sys_LogPriority -SYS_LOG_ERROR compat/compat_log.h /^ SYS_LOG_ERROR,$/;" e enum:sys_LogPriority -SYS_LOG_FATAL compat/compat_log.h /^ SYS_LOG_FATAL,$/;" e enum:sys_LogPriority -SYS_LOG_INFO compat/compat_log.h /^ SYS_LOG_INFO,$/;" e enum:sys_LogPriority -SYS_LOG_SILENT compat/compat_log.h /^ SYS_LOG_SILENT, \/* only for SetMinPriority(); must be last *\/$/;" e enum:sys_LogPriority -SYS_LOG_UNKNOWN compat/compat_log.h /^ SYS_LOG_UNKNOWN = 0,$/;" e enum:sys_LogPriority -SYS_LOG_VERBOSE compat/compat_log.h /^ SYS_LOG_VERBOSE,$/;" e enum:sys_LogPriority -SYS_LOG_WARN compat/compat_log.h /^ SYS_LOG_WARN,$/;" e enum:sys_LogPriority -S_DELETE compat/compat_comutil.hpp 49;" d -S_ERROR compat/compat_comutil.hpp 29;" d -S_ERROR compat/compat_def.h 13;" d -S_FAILD compat/compat_comutil.hpp 33;" d -S_FAILD compat/compat_def.h 17;" d -S_FAILED compat/compat_comutil.hpp 57;" d -S_FALSE compat/compat_comutil.hpp 45;" d -S_IOERROR compat/compat_def.h 5;" d +SYS_LOG_DEBUG crt/crt_log.h /^ SYS_LOG_DEBUG,$/;" e enum:sys_LogPriority +SYS_LOG_DEFAULT crt/crt_log.h /^ SYS_LOG_DEFAULT, \/* only for SetMinPriority() *\/$/;" e enum:sys_LogPriority +SYS_LOG_ERROR crt/crt_log.h /^ SYS_LOG_ERROR,$/;" e enum:sys_LogPriority +SYS_LOG_FATAL crt/crt_log.h /^ SYS_LOG_FATAL,$/;" e enum:sys_LogPriority +SYS_LOG_INFO crt/crt_log.h /^ SYS_LOG_INFO,$/;" e enum:sys_LogPriority +SYS_LOG_SILENT crt/crt_log.h /^ SYS_LOG_SILENT, \/* only for SetMinPriority(); must be last *\/$/;" e enum:sys_LogPriority +SYS_LOG_UNKNOWN crt/crt_log.h /^ SYS_LOG_UNKNOWN = 0,$/;" e enum:sys_LogPriority +SYS_LOG_VERBOSE crt/crt_log.h /^ SYS_LOG_VERBOSE,$/;" e enum:sys_LogPriority +SYS_LOG_WARN crt/crt_log.h /^ SYS_LOG_WARN,$/;" e enum:sys_LogPriority +S_DELETE crt/crt_comutil.hpp 49;" d +S_ERROR crt/crt_comutil.hpp 29;" d +S_ERROR crt/crt_def.h 13;" d +S_FAILD crt/crt_comutil.hpp 33;" d +S_FAILD crt/crt_def.h 17;" d +S_FAILED crt/crt_comutil.hpp 57;" d +S_FALSE crt/crt_comutil.hpp 45;" d +S_IOERROR crt/crt_def.h 5;" d S_IROTH polipo/mingw.h 61;" d S_ISDIR polipo/mingw.h 147;" d S_ISREG polipo/mingw.h 150;" d S_OFFSET msgbus/auth.hpp 23;" d -S_OK compat/compat_comutil.hpp 41;" d -S_SUCCEEDED compat/compat_comutil.hpp 53;" d -S_SUCCESS compat/compat_comutil.hpp 25;" d -S_SUCCESS compat/compat_def.h 9;" d -S_TIMEOUT compat/compat_comutil.hpp 37;" d +S_OK crt/crt_comutil.hpp 41;" d +S_SUCCEEDED crt/crt_comutil.hpp 53;" d +S_SUCCESS crt/crt_comutil.hpp 25;" d +S_SUCCESS crt/crt_def.h 9;" d +S_TIMEOUT crt/crt_comutil.hpp 37;" d SafePtr include/utilex/safeptr.hpp /^ SafePtr()$/;" f class:SafePtr SafePtr include/utilex/safeptr.hpp /^ SafePtr(_Ptr p) : m_p(p)$/;" f class:SafePtr SafePtr include/utilex/safeptr.hpp /^ SafePtr(const SafePtr& other)$/;" f class:SafePtr @@ -8006,6 +7603,10 @@ ScratchFreeslot logs/sqlite3.c /^} ScratchFreeslot;$/;" t typeref:struct:Scratch Scroll uibase/uilib/control/uicombo.cpp /^void CComboWnd::Scroll(int dx, int dy)$/;" f class:DuiLib::CComboWnd Scroll uibase/uilib/control/uilist.cpp /^void CListUI::Scroll(int dx, int dy)$/;" f class:DuiLib::CListUI ScrollCaret uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::ScrollCaret()$/;" f class:DuiLib::CRichEditUI +SearchDecl vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:SearchDecl(szVariable)$/;" f +SearchGlobalMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:SearchGlobalMembers(szBase)$/;" f +SearchMembers vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:SearchMembers(resolvedTagItem, szBase)$/;" f +SearchTypeInfoOfDecl vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:SearchTypeInfoOfDecl(szVariable)$/;" f SegmentNode access/sqlite3.c /^struct SegmentNode {$/;" s file: SegmentNode access/sqlite3.c /^typedef struct SegmentNode SegmentNode;$/;" t typeref:struct:SegmentNode file: SegmentNode logs/sqlite3.c /^struct SegmentNode {$/;" s file: @@ -8107,7 +7708,7 @@ SetBorderSize uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetBorderSize( SetBorderSize uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetBorderSize(int iSize)$/;" f class:DuiLib::CControlUI SetBorderStyle uibase/uicontrolimpl.cpp /^std_method_impl CUiControlImpl::SetBorderStyle(UINT nStyle)$/;" f class:CUiControlImpl SetBorderStyle uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetBorderStyle(int nStyle)$/;" f class:DuiLib::CControlUI -SetBroadCast base/net/compat_sock.c /^int SetBroadCast(_sock_t* s, int turn)$/;" f +SetBroadCast stdcrt/net/compat_sock.c /^int SetBroadCast(_sock_t* s, int turn)$/;" f SetButton1Color uibase/uilib/control/uiscrollbar.cpp /^void CScrollBarUI::SetButton1Color(DWORD dwColor)$/;" f class:DuiLib::CScrollBarUI SetButton1DisabledImage uibase/uilib/control/uiscrollbar.cpp /^void CScrollBarUI::SetButton1DisabledImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CScrollBarUI SetButton1HotImage uibase/uilib/control/uiscrollbar.cpp /^void CScrollBarUI::SetButton1HotImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CScrollBarUI @@ -8133,10 +7734,10 @@ SetClientPos uibase/uicontrolimpl.cpp /^std_method_impl CUiControlImpl::SetClien SetClientRect uibase/uilib/control/uirichedit.cpp /^void CTxtWinHost::SetClientRect(RECT *prc) $/;" f class:DuiLib::CTxtWinHost SetColor uibase/uilib/control/uirichedit.cpp /^void CTxtWinHost::SetColor(DWORD dwColor)$/;" f class:DuiLib::CTxtWinHost SetColor uibase/uilib/utils/wndshadow.cpp /^bool CWndShadow::SetColor(COLORREF NewColor)$/;" f class:CWndShadow -SetConTimeOut base/net/compat_sock.c /^int SetConTimeOut(_sock_t* s, int sec)$/;" f +SetConTimeOut stdcrt/net/compat_sock.c /^int SetConTimeOut(_sock_t* s, int sec)$/;" f SetContextMenuUsed uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetContextMenuUsed(bool bMenuUsed)$/;" f class:DuiLib::CControlUI -SetCookies http/httptimpl.cpp /^std_method_impl CHttptImpl::SetCookies(http_header_data *data)$/;" f class:CHttptImpl -SetCork base/net/compat_sock.c /^int SetCork(_sock_t* s, int turn)$/;" f +SetCookies net/httptimpl.cpp /^std_method_impl CHttptImpl::SetCookies(http_header_data *data)$/;" f class:CHttptImpl +SetCork stdcrt/net/compat_sock.c /^int SetCork(_sock_t* s, int turn)$/;" f SetCover uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetCover(CControlUI *pControl)$/;" f class:DuiLib::CControlUI SetDarkness uibase/uilib/utils/wndshadow.cpp /^bool CWndShadow::SetDarkness(unsigned int NewDarkness)$/;" f class:CWndShadow SetDateTime access/statement.cpp /^std_method_impl CStatementImpl::SetDateTime(unsigned int nIndex, int64 nDateTime)$/;" f class:CStatementImpl @@ -8164,8 +7765,8 @@ SetDisabledItemImage uibase/uilib/control/uilist.cpp /^void CListUI::SetDisabled SetDisabledItemTextColor uibase/uilib/control/uicombo.cpp /^void CComboUI::SetDisabledItemTextColor(DWORD dwTextColor)$/;" f class:DuiLib::CComboUI SetDisabledItemTextColor uibase/uilib/control/uilist.cpp /^void CListUI::SetDisabledItemTextColor(DWORD dwTextColor)$/;" f class:DuiLib::CListUI SetDisabledTextColor uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetDisabledTextColor(DWORD dwTextColor)$/;" f class:DuiLib::CLabelUI -SetDoLinger base/net/compat_sock.c /^int SetDoLinger(_sock_t* s, int turn)$/;" f -SetDontRoute base/net/compat_sock.c /^int SetDontRoute(_sock_t* s, int turn)$/;" f +SetDoLinger stdcrt/net/compat_sock.c /^int SetDoLinger(_sock_t* s, int turn)$/;" f +SetDontRoute stdcrt/net/compat_sock.c /^int SetDontRoute(_sock_t* s, int turn)$/;" f SetDouble access/statement.cpp /^std_method_impl CStatementImpl::SetDouble(unsigned int nIndex, double dbValue)$/;" f class:CStatementImpl SetDragable uibase/uilib/control/uilist.cpp /^void CListHeaderItemUI::SetDragable(bool bDragable)$/;" f class:DuiLib::CListHeaderItemUI SetDrawIndex uibase/uilib/control/uilist.cpp /^void CListContainerElementUI::SetDrawIndex(int iIndex)$/;" f class:DuiLib::CListContainerElementUI @@ -8188,7 +7789,7 @@ SetEnabledEffect uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetEnabledEf SetEnabledLuminous uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetEnabledLuminous(bool bEnableLuminous)$/;" f class:DuiLib::CLabelUI SetEnabledShadow uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetEnabledShadow( bool _EnabledShadowe )$/;" f class:DuiLib::CLabelUI SetEnabledStroke uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetEnabledStroke( bool _EnabledStroke )$/;" f class:DuiLib::CLabelUI -SetError base/net/compat_sock.c /^int SetError(_sock_t* s, int turn)$/;" f +SetError stdcrt/net/compat_sock.c /^int SetError(_sock_t* s, int turn)$/;" f SetEventMask uibase/uilib/control/uirichedit.cpp /^DWORD CRichEditUI::SetEventMask(DWORD dwEventMask)$/;" f class:DuiLib::CRichEditUI SetExpandable uibase/uilib/control/uilist.cpp /^void CListContainerElementUI::SetExpandable(bool bExpandable)$/;" f class:DuiLib::CListContainerElementUI SetExpect asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::SetExpect(ULONG uExpectBytes)$/;" f class:CIoOperationImpl @@ -8231,8 +7832,8 @@ SetForceUseSharedRes uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::Set SetForeImage uibase/uilib/control/uibutton.cpp /^ void CButtonUI::SetForeImage( LPCTSTR pStrImage )$/;" f class:DuiLib::CButtonUI SetForeImage uibase/uilib/control/uioption.cpp /^ void COptionUI::SetForeImage(LPCTSTR pStrImage)$/;" f class:DuiLib::COptionUI SetForeImage uibase/uilib/control/uiprogress.cpp /^ void CProgressUI::SetForeImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CProgressUI -SetFuncAddress extensions/include/platform/services/license.hpp /^ virtual bool SetFuncAddress(int i, void *p)$/;" f class:CLicenseLoader -SetFuncAddress include/dlcom/loadcom.hpp /^ virtual bool SetFuncAddress(int i,void *p)$/;" f class:CComLoader +SetFuncAddress extensions/include/platform/services/license.hpp /^ virtual bool SetFuncAddress(size_t i, void *p)$/;" f class:CLicenseLoader +SetFuncAddress include/dlcom/loadcom.hpp /^ virtual bool SetFuncAddress(size_t i,void *p)$/;" f class:CComLoader SetGradientAngle uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetGradientAngle( int _SetGradientAngle )$/;" f class:DuiLib::CLabelUI SetGradientLength uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetGradientLength( int _GradientLength )$/;" f class:DuiLib::CLabelUI SetGroup uibase/uilib/control/uioption.cpp /^ void COptionUI::SetGroup(LPCTSTR pStrGroupName)$/;" f class:DuiLib::COptionUI @@ -8310,7 +7911,7 @@ SetItemVLineColor uibase/uilib/control/uicombo.cpp /^void CComboUI::SetItemVLine SetItemVLineColor uibase/uilib/control/uilist.cpp /^void CListUI::SetItemVLineColor(DWORD dwLineColor)$/;" f class:DuiLib::CListUI SetItemVLineSize uibase/uilib/control/uicombo.cpp /^void CComboUI::SetItemVLineSize(int iSize)$/;" f class:DuiLib::CComboUI SetItemVLineSize uibase/uilib/control/uilist.cpp /^void CListUI::SetItemVLineSize(int iSize)$/;" f class:DuiLib::CListUI -SetKeepalive base/net/compat_sock.c /^int SetKeepalive(_sock_t* s, int turn)$/;" f +SetKeepalive stdcrt/net/compat_sock.c /^int SetKeepalive(_sock_t* s, int turn)$/;" f SetKey dispatch/AppDispatch.java /^ public static native String SetKey(String key,String value);$/;" m class:AppDispatch SetKeyValue logs/tablestruct.cpp /^std_method_impl CTableStruct::SetKeyValue(LPCSTR name, UINT op)$/;" f class:CTableStruct SetKeyboardEnabled uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetKeyboardEnabled(bool bEnabled)$/;" f class:DuiLib::CControlUI @@ -8322,7 +7923,7 @@ SetLength access/fieldinfo.cpp /^std_method_impl CXFieldInfo::SetLength(unsigned SetLength container/msg.cpp /^std_method_impl CMsgImpl::SetLength(unsigned int len)$/;" f class:CMsgImpl SetLimitText uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::SetLimitText(int iChars)$/;" f class:DuiLib::CRichEditUI SetLineSize uibase/uilib/control/uiscrollbar.cpp /^void CScrollBarUI::SetLineSize(int nSize)$/;" f class:DuiLib::CScrollBarUI -SetLinger base/net/compat_sock.c /^int SetLinger(_sock_t* s, int sec)$/;" f +SetLinger stdcrt/net/compat_sock.c /^int SetLinger(_sock_t* s, int sec)$/;" f SetLuminousFuzzy uibase/uilib/control/uilabel.cpp /^ void CLabelUI::SetLuminousFuzzy(float fFuzzy)$/;" f class:DuiLib::CLabelUI SetManager uibase/uilib/control/uioption.cpp /^ void COptionUI::SetManager(CPaintManagerUI* pManager, CControlUI* pParent, bool bInit)$/;" f class:DuiLib::COptionUI SetManager uibase/uilib/core/uicontainer.cpp /^ void CContainerUI::SetManager(CPaintManagerUI* pManager, CControlUI* pParent, bool bInit)$/;" f class:DuiLib::CContainerUI @@ -8354,14 +7955,14 @@ SetName uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetName(LPCTSTR pstr SetNativeEditBkColor uibase/uilib/control/uiedit.cpp /^ void CEditUI::SetNativeEditBkColor(DWORD dwBkColor)$/;" f class:DuiLib::CEditUI SetNextTabControl uibase/uilib/core/uimanager.cpp /^bool CPaintManagerUI::SetNextTabControl(bool bForward)$/;" f class:DuiLib::CPaintManagerUI SetNoActivate uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::SetNoActivate(bool bNoActivate)$/;" f class:DuiLib::CPaintManagerUI -SetNoDelay base/net/compat_sock.c /^int SetNoDelay(_sock_t* s, int turn)$/;" f -SetNoSigPipe base/net/compat_sock.c /^int SetNoSigPipe(_sock_t* s, int turn)$/;" f -SetNonblock base/net/compat_sock.c /^int SetNonblock(_sock_t* s, int turn)$/;" f +SetNoDelay stdcrt/net/compat_sock.c /^int SetNoDelay(_sock_t* s, int turn)$/;" f +SetNoSigPipe stdcrt/net/compat_sock.c /^int SetNoSigPipe(_sock_t* s, int turn)$/;" f +SetNonblock stdcrt/net/compat_sock.c /^int SetNonblock(_sock_t* s, int turn)$/;" f SetNormalImage uibase/uilib/control/uibutton.cpp /^ void CButtonUI::SetNormalImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CButtonUI SetNormalImage uibase/uilib/control/uicombo.cpp /^void CComboUI::SetNormalImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CComboUI SetNormalImage uibase/uilib/control/uiedit.cpp /^ void CEditUI::SetNormalImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CEditUI SetNormalImage uibase/uilib/control/uilist.cpp /^void CListHeaderItemUI::SetNormalImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CListHeaderItemUI -SetNotify http/httptimpl.cpp /^std_method_impl CHttptImpl::SetNotify(IHttpNotify *Notify)$/;" f class:CHttptImpl +SetNotify net/httptimpl.cpp /^std_method_impl CHttptImpl::SetNotify(IHttpNotify *Notify)$/;" f class:CHttptImpl SetNumberOnly uibase/uilib/control/uiedit.cpp /^ void CEditUI::SetNumberOnly(bool bNumberOnly)$/;" f class:DuiLib::CEditUI SetOpacity uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::SetOpacity(BYTE nOpacity)$/;" f class:DuiLib::CPaintManagerUI SetOption access/dbimpl.cpp /^std_method_impl CDatabaseImpl::SetOption(LPCWSTR lpszName, LPCWSTR lpszValue)$/;" f class:CDatabaseImpl @@ -8415,16 +8016,16 @@ SetReadOnly uibase/uilib/control/uiedit.cpp /^ void CEditUI::SetReadOnly(bool bR SetReadOnly uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::SetReadOnly(bool bReadOnly)$/;" f class:DuiLib::CRichEditUI SetReadOnly uibase/uilib/control/uirichedit.cpp /^void CTxtWinHost::SetReadOnly(BOOL fReadOnly)$/;" f class:DuiLib::CTxtWinHost SetRecord logs/tablestruct.cpp /^std_method_impl CTableStruct::SetRecord(const FieldSturct& field)$/;" f class:CTableStruct -SetRecvBufLen base/net/compat_sock.c /^int SetRecvBufLen(_sock_t* s, int size)$/;" f -SetRecvLoWat base/net/compat_sock.c /^int SetRecvLoWat(_sock_t* s, int size)$/;" f -SetRecvTimeOut base/net/compat_sock.c /^int SetRecvTimeOut(_sock_t* s, int sec)$/;" f +SetRecvBufLen stdcrt/net/compat_sock.c /^int SetRecvBufLen(_sock_t* s, int size)$/;" f +SetRecvLoWat stdcrt/net/compat_sock.c /^int SetRecvLoWat(_sock_t* s, int size)$/;" f +SetRecvTimeOut stdcrt/net/compat_sock.c /^int SetRecvTimeOut(_sock_t* s, int sec)$/;" f SetRelativePos uibase/uicontrolimpl.cpp /^std_method_impl CUiControlImpl::SetRelativePos(RECT rc)$/;" f class:CUiControlImpl SetReplaceSel uibase/uilib/control/uiedit.cpp /^ void CEditUI::SetReplaceSel(LPCTSTR lpszReplace)$/;" f class:DuiLib::CEditUI SetResource uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::SetResource(HINSTANCE instance, LPSTRING path)$/;" f class:CUiWindowsImpl SetResourceFile uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::SetResourceFile(LPSTRING file)$/;" f class:CUiWindowsImpl SetResourcePath uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::SetResourcePath(LPCTSTR pStrPath)$/;" f class:DuiLib::CPaintManagerUI SetResult asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::SetResult(ERROR_CODE Error, BUFFER_SIZE uTransferedBytes)$/;" f class:CIoOperationImpl -SetReuseAddr base/net/compat_sock.c /^int SetReuseAddr(_sock_t* s, int turn)$/;" f +SetReuseAddr stdcrt/net/compat_sock.c /^int SetReuseAddr(_sock_t* s, int turn)$/;" f SetRich uibase/uilib/control/uirichedit.cpp /^void CRichEditUI::SetRich(bool bRich)$/;" f class:DuiLib::CRichEditUI SetRichTextFlag uibase/uilib/control/uirichedit.cpp /^void CTxtWinHost::SetRichTextFlag(BOOL fNew)$/;" f class:DuiLib::CTxtWinHost SetRoundCorner uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::SetRoundCorner(int cx, int cy)$/;" f class:DuiLib::CPaintManagerUI @@ -8462,9 +8063,9 @@ SetSelectedItemTextColor uibase/uilib/control/uicombo.cpp /^void CComboUI::SetSe SetSelectedItemTextColor uibase/uilib/control/uilist.cpp /^void CListUI::SetSelectedItemTextColor(DWORD dwTextColor)$/;" f class:DuiLib::CListUI SetSelectedTextColor uibase/uilib/control/uioption.cpp /^ void COptionUI::SetSelectedTextColor(DWORD dwTextColor)$/;" f class:DuiLib::COptionUI SetSelectionCharFormat uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::SetSelectionCharFormat(CHARFORMAT2 &cf)$/;" f class:DuiLib::CRichEditUI -SetSendBufLen base/net/compat_sock.c /^int SetSendBufLen(_sock_t* s, int size)$/;" f -SetSendLoWat base/net/compat_sock.c /^int SetSendLoWat(_sock_t* s, int size)$/;" f -SetSendTimeOut base/net/compat_sock.c /^int SetSendTimeOut(_sock_t* s, int sec)$/;" f +SetSendBufLen stdcrt/net/compat_sock.c /^int SetSendBufLen(_sock_t* s, int size)$/;" f +SetSendLoWat stdcrt/net/compat_sock.c /^int SetSendLoWat(_sock_t* s, int size)$/;" f +SetSendTimeOut stdcrt/net/compat_sock.c /^int SetSendTimeOut(_sock_t* s, int sec)$/;" f SetSepColor uibase/uilib/control/uilist.cpp /^void CListHeaderItemUI::SetSepColor(DWORD dwSepColor)$/;" f class:DuiLib::CListHeaderItemUI SetSepHeight uibase/uilib/layout/uiverticallayout.cpp /^ void CVerticalLayoutUI::SetSepHeight(int iHeight)$/;" f class:DuiLib::CVerticalLayoutUI SetSepImage uibase/uilib/control/uilist.cpp /^void CListHeaderItemUI::SetSepImage(LPCTSTR pStrImage)$/;" f class:DuiLib::CListHeaderItemUI @@ -8494,6 +8095,7 @@ SetSubControlFixedHeight uibase/uilib/core/uicontainer.cpp /^ bool CContainerUI: SetSubControlFixedWdith uibase/uilib/core/uicontainer.cpp /^ bool CContainerUI::SetSubControlFixedWdith(LPCTSTR pstrSubControlName, int cx)$/;" f class:DuiLib::CContainerUI SetSubControlText uibase/uilib/core/uicontainer.cpp /^ bool CContainerUI::SetSubControlText(LPCTSTR pstrSubControlName, LPCTSTR pstrText)$/;" f class:DuiLib::CContainerUI SetSubControlUserData uibase/uilib/core/uicontainer.cpp /^ bool CContainerUI::SetSubControlUserData(LPCTSTR pstrSubControlName, LPCTSTR pstrText)$/;" f class:DuiLib::CContainerUI +SetSuffixesLast vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:SetSuffixesLast()$/;" f SetTableName logs/tablestruct.cpp /^std_method_impl CTableStruct::SetTableName(LPCSTR name)$/;" f class:CTableStruct SetTag uibase/uilib/core/uicontrol.cpp /^ void CControlUI::SetTag(UINT_PTR pTag)$/;" f class:DuiLib::CControlUI SetText uibase/uicontrolimpl.cpp /^std_method_impl CUiControlImpl::SetText(LPCSTR name)$/;" f class:CUiControlImpl @@ -8573,7 +8175,10 @@ SetZoomOff uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::SetZoomOff()$ ShadowStatus uibase/uilib/utils/wndshadow.h /^ enum ShadowStatus$/;" g class:CWndShadow ShmRegion access/sqlite3.c /^ struct ShmRegion {$/;" s struct:winShmNode file: ShmRegion logs/sqlite3.c /^ struct ShmRegion {$/;" s struct:winShmNode file: +ShowAllFiles vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ShowAllFiles()$/;" f +ShowDirectory vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ShowDirectory()$/;" f ShowUiWindow uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::ShowUiWindow(int nCmdShow)$/;" f class:CUiWindowsImpl +ShowVariableValue vim_tool/.vim/plugin/winmanager.vim /^function! ShowVariableValue(...)$/;" f ShowWindow uibase/uilib/core/uibase.cpp /^void CWindowWnd::ShowWindow(bool bShow \/*= true*\/, bool bTakeFocus \/*= false*\/)$/;" f class:DuiLib::CWindowWnd Signal include/utilex/cond.hpp /^ HRESULT Signal() {$/;" f class:CCondHandle SimulateDiskfullError access/sqlite3.c 23816;" d file: @@ -8627,12 +8232,17 @@ SocketOptionTable asynio/tcpsocketimpl.h /^ typedef map SocketOpt SocketOptionTable asynio/udpsocketimpl.h /^ typedef map SocketOptionTable;$/;" t class:CUdpSocketImpl SocksRequestPtr polipo/socks.h /^} SocksRequestRec, *SocksRequestPtr;$/;" t typeref:struct:_SocksRequest SocksRequestRec polipo/socks.h /^} SocksRequestRec, *SocksRequestPtr;$/;" t typeref:struct:_SocksRequest +Sort vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:Sort(cmp,direction) range$/;" f SortByDimension access/sqlite3.c /^static void SortByDimension($/;" f file: SortByDimension logs/sqlite3.c /^static void SortByDimension($/;" f file: SortByDistance access/sqlite3.c /^static void SortByDistance($/;" f file: SortByDistance logs/sqlite3.c /^static void SortByDistance($/;" f file: SortItems uibase/uilib/control/uilist.cpp /^bool CListBodyUI::SortItems(PULVCompareFunc pfnCompare, UINT_PTR dwData, int& iCurSel)$/;" f class:DuiLib::CListBodyUI SortItems uibase/uilib/control/uilist.cpp /^bool CListUI::SortItems(PULVCompareFunc pfnCompare, UINT_PTR dwData)$/;" f class:DuiLib::CListUI +SortListing vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:SortListing(msg)$/;" f +SortR vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:SortR(start, end, cmp, direction)$/;" f +SortReverse vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:SortReverse()$/;" f +SortSelect vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:SortSelect()$/;" f SortVector container/stdafx.h /^class SortVector : public std::vector<_Ty>$/;" c SorterRecord access/sqlite3.c /^struct SorterRecord {$/;" s file: SorterRecord access/sqlite3.c /^typedef struct SorterRecord SorterRecord;$/;" t typeref:struct:SorterRecord file: @@ -8657,10 +8267,11 @@ Start asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::Start(_pinstanc Start asynio/timerimpl.cpp /^std_method_impl CTimerImpl::Start()$/;" f class:CTimerImpl Start container/mainrun.cpp /^std_method_impl CMainRun::Start(_pinstance instance, UINT type)$/;" f class:CMainRun Start dispatch/src/loadcontainer.cc /^int CLoadContainer::Start(_pinstance hinstance, UINT type)$/;" f class:CLoadContainer -Start http/httpimpl.cpp /^std_method_impl CHttpImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CHttpImpl Start logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CLogDataBaseImpl Start logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CLogFiltersImpl Start logs/logsimpl.cpp /^std_method_impl CLogsImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CLogsImpl +Start mainui/appviewimpl.cpp /^std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CAppViewImpl +Start mainuiapp/appviewimpl.cpp /^std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CAppViewImpl Start mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CMainViewImpl Start mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CMemPoolImpl Start msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CMsgBusImpl @@ -8668,10 +8279,14 @@ Start net/netimpl.cpp /^std_method_impl CNetImpl::Start(_pinstance hInstance, UI Start render/renderimpl.cpp /^std_method_impl CRenderImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CRenderImpl Start res/fontimpl.cpp /^std_method_impl CFontImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CFontImpl Start res/langimpl.cpp /^std_method_impl CLangImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CLangImpl +Start testmain/appviewimpl.cpp /^std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CAppViewImpl Start uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::Start(_pinstance hInstance, UINT uType)$/;" f class:CUiBaseImpl -StartContainer include/dlcom/objectrun.hpp /^ int StartContainer(_pinstance instance, UINT type) {$/;" f class:CContainer +StartContainer include/dlcom/objectrun.hpp /^ HRESULT StartContainer(_pinstance instance, UINT type) {$/;" f class:CContainer +StartExplorer vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:StartExplorer(split, start_dir)$/;" f StartInstanceFunc dispatch/src/dispatch.cc /^ void StartInstanceFunc(const FunctionCallbackInfo& args) {$/;" f namespace:app +StartTagsFileDisplay vim_tool/.vim/plugin/wintagexplorer.vim /^function! StartTagsFileDisplay()$/;" f StartThreadPool include/utilex/threadpool.hpp /^ int StartThreadPool(int count) {$/;" f class:CThreadPool +StartWindowsManager vim_tool/.vim/plugin/winmanager.vim /^function! StartWindowsManager()$/;" f Start_Thread include/utilex/semthread.hpp /^ int Start_Thread() {$/;" f class:CSemThread Start_Thread include/utilex/thread.hpp /^ int Start_Thread() {$/;" f class:CThread Start_Tm_Thread include/utilex/timethread.hpp /^ int Start_Tm_Thread() {$/;" f class:CTimeThread @@ -8689,10 +8304,11 @@ Stop asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::Stop(UINT uExitC Stop asynio/timerimpl.cpp /^std_method_impl CTimerImpl::Stop()$/;" f class:CTimerImpl Stop container/mainrun.cpp /^std_method_impl CMainRun::Stop(_pinstance instance, UINT type,UINT exit)$/;" f class:CMainRun Stop dispatch/src/loadcontainer.cc /^int CLoadContainer::Stop(_pinstance hinstance, UINT type, UINT exit)$/;" f class:CLoadContainer -Stop http/httpimpl.cpp /^std_method_impl CHttpImpl::Stop(UINT uExitCode)$/;" f class:CHttpImpl Stop logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Stop(UINT uExitCode)$/;" f class:CLogDataBaseImpl Stop logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Stop(UINT uExitCode)$/;" f class:CLogFiltersImpl Stop logs/logsimpl.cpp /^std_method_impl CLogsImpl::Stop(UINT uExitCode)$/;" f class:CLogsImpl +Stop mainui/appviewimpl.cpp /^std_method_impl CAppViewImpl::Stop(UINT uExitCode)$/;" f class:CAppViewImpl +Stop mainuiapp/appviewimpl.cpp /^std_method_impl CAppViewImpl::Stop(UINT uExitCode)$/;" f class:CAppViewImpl Stop mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Stop(UINT uExitCode)$/;" f class:CMainViewImpl Stop mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::Stop(UINT uExitCode)$/;" f class:CMemPoolImpl Stop msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::Stop(UINT uExitCode)$/;" f class:CMsgBusImpl @@ -8700,8 +8316,9 @@ Stop net/netimpl.cpp /^std_method_impl CNetImpl::Stop(UINT uExitCode)$/;" f clas Stop render/renderimpl.cpp /^std_method_impl CRenderImpl::Stop(UINT uExitCode)$/;" f class:CRenderImpl Stop res/fontimpl.cpp /^std_method_impl CFontImpl::Stop(UINT uExitCode)$/;" f class:CFontImpl Stop res/langimpl.cpp /^std_method_impl CLangImpl::Stop(UINT uExitCode)$/;" f class:CLangImpl +Stop testmain/appviewimpl.cpp /^std_method_impl CAppViewImpl::Stop(UINT uExitCode)$/;" f class:CAppViewImpl Stop uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::Stop(UINT uExitCode)$/;" f class:CUiBaseImpl -StopContainer include/dlcom/objectrun.hpp /^ int StopContainer(_pinstance instance, UINT type, UINT exit) {$/;" f class:CContainer +StopContainer include/dlcom/objectrun.hpp /^ HRESULT StopContainer(_pinstance instance, UINT type, UINT exit) {$/;" f class:CContainer StopGif uibase/uilib/control/uigifanim.cpp /^ void CGifAnimUI::StopGif()$/;" f class:DuiLib::CGifAnimUI StopInstanceFunc dispatch/src/dispatch.cc /^ void StopInstanceFunc(const FunctionCallbackInfo& args) {$/;" f namespace:app StopThreadPool include/utilex/threadpool.hpp /^ int StopThreadPool() {$/;" f class:CThreadPool @@ -8716,6 +8333,7 @@ StrBuffer access/sqlite3.c /^struct StrBuffer {$/;" s file: StrBuffer access/sqlite3.c /^typedef struct StrBuffer StrBuffer;$/;" t typeref:struct:StrBuffer file: StrBuffer logs/sqlite3.c /^struct StrBuffer {$/;" s file: StrBuffer logs/sqlite3.c /^typedef struct StrBuffer StrBuffer;$/;" t typeref:struct:StrBuffer file: +StrCmp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:StrCmp(line1, line2, direction)$/;" f StreamEventcb asynio/tcpsocketimpl.cpp /^void CTcpSocketImpl::StreamEventcb(void *data, event_id what)$/;" f class:CTcpSocketImpl StreamIn uibase/uilib/control/uirichedit.cpp /^long CRichEditUI::StreamIn(int nFormat, EDITSTREAM &es)$/;" f class:DuiLib::CRichEditUI StreamOut uibase/uilib/control/uirichedit.cpp /^long CRichEditUI::StreamOut(int nFormat, EDITSTREAM &es)$/;" f class:DuiLib::CRichEditUI @@ -8724,10 +8342,13 @@ StreamRequestPtr polipo/io.h /^} StreamRequestRec, *StreamRequestPtr;$/;" t type StreamRequestRec polipo/io.h /^} StreamRequestRec, *StreamRequestPtr;$/;" t typeref:struct:_StreamRequest StreamWritecb asynio/tcpsocketimpl.cpp /^void CTcpSocketImpl::StreamWritecb(void *data, BUFFER_SIZE len)$/;" f class:CTcpSocketImpl StringPtr msgbus/auth.hpp /^} StringPtr;$/;" t typeref:struct:_StringPtr -StringToGUID base/stdlib/compat_guid.c /^GUID StringToGUID(const char* lpString)$/;" f -StringToGUIDClassName base/stdlib/compat_guid.c /^const char* StringToGUIDClassName(const char* strguid, char* lpGuidBuf)$/;" f +StringToGUID stdcrt/stdlib/compat_guid.c /^GUID StringToGUID(const char* lpString)$/;" f +StringToGUIDClassName stdcrt/stdlib/compat_guid.c /^const char* StringToGUIDClassName(const char* strguid, char* lpGuidBuf)$/;" f Stringify access/sqlite3.c 66481;" d file: Stringify logs/sqlite3.c 66481;" d file: +Strntok vim_tool/.vim/plugin/winmanager.vim /^fun! Strntok(s, tok, n)$/;" f +Strntok vim_tool/.vim/plugin/wintagexplorer.vim /^fun! Strntok(s, tok, n)$/;" f +Strntok2 vim_tool/.vim/plugin/winmanager.vim /^fun! Strntok2(s, tok, n)$/;" f SubProgram access/sqlite3.c /^struct SubProgram {$/;" s file: SubProgram access/sqlite3.c /^typedef struct SubProgram SubProgram;$/;" t typeref:struct:SubProgram file: SubProgram logs/sqlite3.c /^struct SubProgram {$/;" s file: @@ -8744,46 +8365,46 @@ SyncSend asynio/tcpsocketimpl.cpp /^std_method_type_impl(BUFFER_SIZE) CTcpSocket SyncSend asynio/udpsocketimpl.cpp /^std_method_type_impl(BUFFER_SIZE) CUdpSocketImpl::SyncSend(NET_ADDR addr, NET_PORT port,$/;" f class:CUdpSocketImpl SyncTable logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::SyncTable(LPCSTR name, IBase *pBase)$/;" f class:CLogDataBaseImpl SyncTable logs/logsimpl.cpp /^std_method_impl CLogsImpl::SyncTable(const cJSON* JsRoot)$/;" f class:CLogsImpl -T http/http/http_parser.cpp 233;" d file: -T http/http/http_parser.cpp 235;" d file: -T http/http/http_parser.cpp 273;" d file: -TABLE_OP_BASE logs/stdafx.h 41;" d -TABLE_OP_INSERT logs/stdafx.h 43;" d -TABLE_OP_REFRESH logs/stdafx.h 44;" d -TABLE_OP_UPDATE logs/stdafx.h 42;" d -TARGET_ARM_X64 compat/compat_targetos.hpp 53;" d -TARGET_ARM_X86 compat/compat_targetos.hpp 52;" d -TARGET_BITS compat/compat_targetos.hpp 113;" d -TARGET_BITS compat/compat_targetos.hpp 115;" d -TARGET_BITS compat/compat_targetos.hpp 119;" d -TARGET_MIPS_X64 compat/compat_targetos.hpp 50;" d -TARGET_MIPS_X86 compat/compat_targetos.hpp 49;" d -TARGET_OS compat/compat_targetos.hpp 59;" d -TARGET_OS compat/compat_targetos.hpp 63;" d -TARGET_OS compat/compat_targetos.hpp 67;" d -TARGET_OS compat/compat_targetos.hpp 71;" d -TARGET_OS compat/compat_targetos.hpp 77;" d -TARGET_OS compat/compat_targetos.hpp 81;" d -TARGET_OS compat/compat_targetos.hpp 86;" d -TARGET_OS compat/compat_targetos.hpp 90;" d -TARGET_OS compat/compat_targetos.hpp 94;" d -TARGET_OS compat/compat_targetos.hpp 98;" d -TARGET_TYPE compat/compat_targetos.hpp 100;" d -TARGET_TYPE compat/compat_targetos.hpp 61;" d -TARGET_TYPE compat/compat_targetos.hpp 65;" d -TARGET_TYPE compat/compat_targetos.hpp 69;" d -TARGET_TYPE compat/compat_targetos.hpp 73;" d -TARGET_TYPE compat/compat_targetos.hpp 79;" d -TARGET_TYPE compat/compat_targetos.hpp 83;" d -TARGET_TYPE compat/compat_targetos.hpp 88;" d -TARGET_TYPE compat/compat_targetos.hpp 92;" d -TARGET_TYPE compat/compat_targetos.hpp 96;" d -TARGET_X64 compat/compat_targetos.hpp 47;" d -TARGET_X86 compat/compat_targetos.hpp 46;" d -TCHAR compat/darwinossysdef.h /^ typedef char TCHAR;$/;" t -TCHAR compat/darwinossysdef.h /^ typedef wchar_t TCHAR;$/;" t -TCHAR compat/posixossysdef.h /^ typedef char TCHAR;$/;" t -TCHAR compat/posixossysdef.h /^ typedef wchar_t TCHAR;$/;" t +T net/http_protocol/http_parser.cpp 233;" d file: +T net/http_protocol/http_parser.cpp 235;" d file: +T net/http_protocol/http_parser.cpp 273;" d file: +TABLE_OP_BASE logs/stdafx.h 40;" d +TABLE_OP_INSERT logs/stdafx.h 42;" d +TABLE_OP_REFRESH logs/stdafx.h 43;" d +TABLE_OP_UPDATE logs/stdafx.h 41;" d +TARGET_ARM_X64 crt/crt_targetos.hpp 53;" d +TARGET_ARM_X86 crt/crt_targetos.hpp 52;" d +TARGET_BITS crt/crt_targetos.hpp 113;" d +TARGET_BITS crt/crt_targetos.hpp 115;" d +TARGET_BITS crt/crt_targetos.hpp 119;" d +TARGET_MIPS_X64 crt/crt_targetos.hpp 50;" d +TARGET_MIPS_X86 crt/crt_targetos.hpp 49;" d +TARGET_OS crt/crt_targetos.hpp 59;" d +TARGET_OS crt/crt_targetos.hpp 63;" d +TARGET_OS crt/crt_targetos.hpp 67;" d +TARGET_OS crt/crt_targetos.hpp 71;" d +TARGET_OS crt/crt_targetos.hpp 77;" d +TARGET_OS crt/crt_targetos.hpp 81;" d +TARGET_OS crt/crt_targetos.hpp 86;" d +TARGET_OS crt/crt_targetos.hpp 90;" d +TARGET_OS crt/crt_targetos.hpp 94;" d +TARGET_OS crt/crt_targetos.hpp 98;" d +TARGET_TYPE crt/crt_targetos.hpp 100;" d +TARGET_TYPE crt/crt_targetos.hpp 61;" d +TARGET_TYPE crt/crt_targetos.hpp 65;" d +TARGET_TYPE crt/crt_targetos.hpp 69;" d +TARGET_TYPE crt/crt_targetos.hpp 73;" d +TARGET_TYPE crt/crt_targetos.hpp 79;" d +TARGET_TYPE crt/crt_targetos.hpp 83;" d +TARGET_TYPE crt/crt_targetos.hpp 88;" d +TARGET_TYPE crt/crt_targetos.hpp 92;" d +TARGET_TYPE crt/crt_targetos.hpp 96;" d +TARGET_X64 crt/crt_targetos.hpp 47;" d +TARGET_X86 crt/crt_targetos.hpp 46;" d +TCHAR crt/darwinossysdef.h /^ typedef char TCHAR;$/;" t +TCHAR crt/darwinossysdef.h /^ typedef wchar_t TCHAR;$/;" t +TCHAR crt/posixossysdef.h /^ typedef char TCHAR;$/;" t +TCHAR crt/posixossysdef.h /^ typedef wchar_t TCHAR;$/;" t TCP_ACCEPT_CONNECTED 3rd/include/iotcpaccept.hpp 7;" d TCP_ACCEPT_FAILD 3rd/include/iotcpaccept.hpp 8;" d TCP_CONNECTED 3rd/include/iotcp.hpp 6;" d @@ -8825,6 +8446,7 @@ TESTONLY logs/sqlite3.c 7881;" d file: TESTONLY logs/sqlite3.c 7883;" d file: TE_CHUNKED polipo/http.h 119;" d TE_IDENTITY polipo/http.h 118;" d +TE_ShowVariableValue vim_tool/.vim/plugin/wintagexplorer.vim /^function! TE_ShowVariableValue(...)$/;" f TE_UNKNOWN polipo/http.h 120;" d TEventUI uibase/uilib/core/uimanager.h /^} TEventUI;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagTEventUI TF_Autoincrement access/sqlite3.c 10760;" d file: @@ -8868,7 +8490,7 @@ TIMER_START logs/sqlite3.c 23784;" d file: TIMER_START logs/sqlite3.c 23788;" d file: TIMER_START logs/sqlite3.c 31209;" d file: TIMER_START logs/sqlite3.c 31213;" d file: -TIME_FORMAT base/stdlib/compat_stdtime.c 73;" d file: +TIME_FORMAT stdcrt/stdlib/compat_stdtime.c 81;" d file: TITEM uibase/uilib/utils/utils.cpp /^ struct TITEM$/;" s namespace:DuiLib file: TImageInfo uibase/uilib/core/uimanager.h /^} TImageInfo;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagTImageInfo TK_ABORT access/sqlite3.c 8074;" d file: @@ -9192,9 +8814,9 @@ TK_WITHOUT logs/sqlite3.c 8070;" d file: TListInfoUI uibase/uilib/control/uilist.h /^} TListInfoUI;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagTListInfoUI TNotifyUI uibase/uilib/core/uidefine.h /^ } TNotifyUI;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagTNotifyUI TOKEN access/sqlite3.c 118039;" d file: -TOKEN http/http/http_parser.cpp 425;" d file: -TOKEN http/http/http_parser.cpp 429;" d file: TOKEN logs/sqlite3.c 118039;" d file: +TOKEN net/http_protocol/http_parser.cpp 425;" d file: +TOKEN net/http_protocol/http_parser.cpp 429;" d file: TPercentInfo uibase/uilib/core/uimanager.h /^} TPercentInfo;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagTPercentInfo TRACE access/sqlite3.c 50705;" d file: TRACE logs/sqlite3.c 50705;" d file: @@ -9207,7 +8829,7 @@ TRACE_IDX_OUTPUTS access/sqlite3.c /^static void TRACE_IDX_OUTPUTS(sqlite3_index TRACE_IDX_OUTPUTS access/sqlite3.c 110369;" d file: TRACE_IDX_OUTPUTS logs/sqlite3.c /^static void TRACE_IDX_OUTPUTS(sqlite3_index_info *p){$/;" f file: TRACE_IDX_OUTPUTS logs/sqlite3.c 110369;" d file: -TRANSFER_ENCODING http/http/http_parser.cpp 163;" d file: +TRANSFER_ENCODING net/http_protocol/http_parser.cpp 163;" d file: TRANS_NONE access/sqlite3.c 50098;" d file: TRANS_NONE logs/sqlite3.c 50098;" d file: TRANS_READ access/sqlite3.c 50099;" d file: @@ -9218,8 +8840,8 @@ TRIGGER_AFTER access/sqlite3.c 11831;" d file: TRIGGER_AFTER logs/sqlite3.c 11831;" d file: TRIGGER_BEFORE access/sqlite3.c 11830;" d file: TRIGGER_BEFORE logs/sqlite3.c 11830;" d file: -TRUE compat/darwinossysdef.h 8;" d -TRUE compat/posixossysdef.h 8;" d +TRUE crt/darwinossysdef.h 8;" d +TRUE crt/posixossysdef.h 8;" d TResInfo uibase/uilib/core/uimanager.h /^} TResInfo;$/;" t namespace:DuiLib typeref:struct:DuiLib::tagTResInfo TUNNEL_EOF1 polipo/tunnel.h 31;" d TUNNEL_EOF2 polipo/tunnel.h 35;" d @@ -9252,7 +8874,20 @@ TableStructConstIter access/tableinfo.h /^ typedef std::map >::iterator TableStructIter;$/;" t class:CXTableInfo TagEVENTTYPE_UI uibase/uilib/core/uimanager.h /^typedef enum TagEVENTTYPE_UI$/;" g namespace:DuiLib TagFieldSturct extensions/include/log/ilogdatabase.h /^typedef struct TagFieldSturct {$/;" s +TagListAutoCmds vim_tool/.vim/plugin/taglist.vim /^ augroup TagListAutoCmds$/;" a +TagListMenuCmds vim_tool/.vim/plugin/taglist.vim /^ augroup TagListMenuCmds$/;" a +TagList_IsValid vim_tool/.vim/plugin/taglist.vim /^function! TagList_IsValid()$/;" f +TagList_Start vim_tool/.vim/plugin/taglist.vim /^function! TagList_Start()$/;" f +TagList_WrapUp vim_tool/.vim/plugin/taglist.vim /^function! TagList_WrapUp()$/;" f +TagList_title vim_tool/.vim/plugin/taglist.vim /^ let TagList_title = "__Tag_List__"$/;" v TagNotifyEvent extensions/include/ui/iuibase.h /^typedef struct TagNotifyEvent {$/;" s +TagPopupList vim_tool/.vim/autoload/omni/cpp/complete.vim /^function! s:TagPopupList(szTypeName, szBase)$/;" f +TagsExplorerSkipError vim_tool/.vim/plugin/wintagexplorer.vim /^ let g:TagsExplorerSkipError = 0$/;" v +TagsExplorer_IsPossible vim_tool/.vim/plugin/wintagexplorer.vim /^function! TagsExplorer_IsPossible()$/;" f +TagsExplorer_IsValid vim_tool/.vim/plugin/wintagexplorer.vim /^function! TagsExplorer_IsValid()$/;" f +TagsExplorer_Start vim_tool/.vim/plugin/wintagexplorer.vim /^function! TagsExplorer_Start()$/;" f +TagsExplorer_WrapUp vim_tool/.vim/plugin/wintagexplorer.vim /^function! TagsExplorer_WrapUp()$/;" f +TagsExplorer_title vim_tool/.vim/plugin/wintagexplorer.vim /^let g:TagsExplorer_title = "[Tag List]"$/;" v TaskList logs/stdafx.h /^typedef list TaskList;$/;" t TaskListIterator logs/stdafx.h /^typedef TaskList::iterator TaskListIterator;$/;" t TcpListenPtr include/comutiliy/asynio.h /^typedef _lComPtr TcpListenPtr;$/;" t @@ -9284,11 +8919,128 @@ TimeEventHandlerRec polipo/event.h /^} TimeEventHandlerRec, *TimeEventHandlerPtr Time_Thread_Run logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Time_Thread_Run()$/;" f class:CLogFiltersImpl Time_Thread_Run_Proc include/utilex/timethread.hpp /^ HRESULT Time_Thread_Run_Proc() {$/;" f class:CTimeThread TimerPtr include/comutiliy/asynio.h /^typedef _lComPtr TimerPtr;$/;" t +Tlist_Add_Files vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Add_Files(...)$/;" f +Tlist_Add_Files_Recursive vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Add_Files_Recursive(dir, ...)$/;" f +Tlist_Auto_Highlight_Tag vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Auto_Highlight_Tag = 1$/;" v +Tlist_Auto_Open vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Auto_Open = 0$/;" v +Tlist_Auto_Update vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Auto_Update = 1$/;" v +Tlist_Ballon_Expr vim_tool/.vim/plugin/taglist.vim /^function! Tlist_Ballon_Expr()$/;" f +Tlist_Buffer_Removed vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Buffer_Removed(filename)$/;" f +Tlist_Change_Sort vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Change_Sort(caller, action, sort_type)$/;" f +Tlist_Close_On_Select vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Close_On_Select = 0$/;" v +Tlist_Compact_Format vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Compact_Format = 0$/;" v +Tlist_Create_Folds_For_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Create_Folds_For_File(fidx)$/;" f +Tlist_Ctags_Cmd vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Ctags_Cmd = 'ctags'$/;" v +Tlist_Ctags_Cmd vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Ctags_Cmd = 'ctags.exe'$/;" v +Tlist_Ctags_Cmd vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Ctags_Cmd = 'exctags'$/;" v +Tlist_Ctags_Cmd vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Ctags_Cmd = 'exuberant-ctags'$/;" v +Tlist_Ctags_Cmd vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Ctags_Cmd = 'tags'$/;" v +Tlist_Debug_Disable vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Debug_Disable(...)$/;" f +Tlist_Debug_Enable vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Debug_Enable(...)$/;" f +Tlist_Debug_Show vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Debug_Show()$/;" f +Tlist_Detect_Filetype vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Detect_Filetype(fname)$/;" f +Tlist_Discard_FileInfo vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Discard_FileInfo(fidx)$/;" f +Tlist_Discard_TagInfo vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Discard_TagInfo(fidx)$/;" f +Tlist_Display_Prototype vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Display_Prototype = 0$/;" v +Tlist_Display_Tag_Scope vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Display_Tag_Scope = 1$/;" v +Tlist_Enable_Fold_Column vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Enable_Fold_Column = 1$/;" v +Tlist_Exe_Cmd_No_Acmds vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Exe_Cmd_No_Acmds(cmd)$/;" f +Tlist_Exit_OnlyWindow vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Exit_OnlyWindow = 0$/;" v +Tlist_Extract_Tag_Scope vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Extract_Tag_Scope(tag_line)$/;" f +Tlist_Extract_Tagtype vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Extract_Tagtype(tag_line)$/;" f +Tlist_FileType_Init vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_FileType_Init(ftype)$/;" f +Tlist_File_Fold_Auto_Close vim_tool/.vim/plugin/taglist.vim /^ let Tlist_File_Fold_Auto_Close = 0$/;" v +Tlist_Find_Nearest_Tag_Idx vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Find_Nearest_Tag_Idx(fidx, linenum)$/;" f +Tlist_GainFocus_On_ToggleOpen vim_tool/.vim/plugin/taglist.vim /^ let Tlist_GainFocus_On_ToggleOpen = 0$/;" v +Tlist_Get_Buffer_Filetype vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Get_Buffer_Filetype(bnum)$/;" f +Tlist_Get_File_Index vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Get_File_Index(fname)$/;" f +Tlist_Get_Filenames vim_tool/.vim/plugin/taglist.vim /^function! Tlist_Get_Filenames()$/;" f +Tlist_Get_Tag_Linenum vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Get_Tag_Linenum(fidx, tidx)$/;" f +Tlist_Get_Tag_Prototype vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Get_Tag_Prototype(fidx, tidx)$/;" f +Tlist_Get_Tag_Prototype_By_Line vim_tool/.vim/plugin/taglist.vim /^function! Tlist_Get_Tag_Prototype_By_Line(...)$/;" f +Tlist_Get_Tag_Scope vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Get_Tag_Scope(fidx, tidx)$/;" f +Tlist_Get_Tag_SearchPat vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Get_Tag_SearchPat(fidx, tidx)$/;" f +Tlist_Get_Tag_Type_By_Tag vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Get_Tag_Type_By_Tag(fidx, tidx)$/;" f +Tlist_Get_Tagname_By_Line vim_tool/.vim/plugin/taglist.vim /^function! Tlist_Get_Tagname_By_Line(...)$/;" f +Tlist_Highlight_Tag_On_BufEnter vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Highlight_Tag_On_BufEnter = 1$/;" v +Tlist_Inc_Winwidth vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Inc_Winwidth = 0$/;" v +Tlist_Inc_Winwidth vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Inc_Winwidth = 1$/;" v +Tlist_Init_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Init_File(filename, ftype)$/;" f +Tlist_Log_Msg vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Log_Msg(msg)$/;" f +Tlist_Max_Submenu_Items vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Max_Submenu_Items = 20$/;" v +Tlist_Max_Tag_Length vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Max_Tag_Length = 10$/;" v +Tlist_Menu_Add_Base_Menu vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_Add_Base_Menu()$/;" f +Tlist_Menu_File_Refresh vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_File_Refresh(fidx)$/;" f +Tlist_Menu_Get_Tag_Type_Cmd vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_Get_Tag_Type_Cmd(fidx, ftype, add_ttype_name, ttype_idx)$/;" f +Tlist_Menu_Init vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_Init()$/;" f +Tlist_Menu_Jump_To_Tag vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_Jump_To_Tag(tidx)$/;" f +Tlist_Menu_Refresh vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_Refresh()$/;" f +Tlist_Menu_Remove_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_Remove_File()$/;" f +Tlist_Menu_Update_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Menu_Update_File(clear_menu)$/;" f +Tlist_Parse_Tagline vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Parse_Tagline(tag_line)$/;" f +Tlist_Post_Close_Cleanup vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Post_Close_Cleanup()$/;" f +Tlist_Process_Dir vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Process_Dir(dir_name, pat)$/;" f +Tlist_Process_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Process_File(filename, ftype)$/;" f +Tlist_Process_File_Always vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Process_File_Always = 0$/;" v +Tlist_Process_Filelist vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Process_Filelist(file_names)$/;" f +Tlist_Refresh vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Refresh()$/;" f +Tlist_Refresh_Folds vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Refresh_Folds()$/;" f +Tlist_Remove_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Remove_File(file_idx, user_request)$/;" f +Tlist_Session_Load vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Session_Load(...)$/;" f +Tlist_Session_Save vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Session_Save(...)$/;" f +Tlist_Set_App vim_tool/.vim/plugin/taglist.vim /^function! Tlist_Set_App(name)$/;" f +Tlist_Show_Menu vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Show_Menu = 0$/;" v +Tlist_Show_One_File vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Show_One_File = 0$/;" v +Tlist_Skip_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Skip_File(filename, ftype)$/;" f +Tlist_Skip_Refresh vim_tool/.vim/plugin/taglist.vim /^let s:Tlist_Skip_Refresh = 0$/;" v +Tlist_Sort_Type vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Sort_Type = 'order'$/;" v +Tlist_Update_Current_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Update_Current_File()$/;" f +Tlist_Update_File vim_tool/.vim/plugin/taglist.vim /^function! Tlist_Update_File(filename, ftype)$/;" f +Tlist_Update_Remove_List vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Update_Remove_List(filename, add)$/;" f +Tlist_Use_Horiz_Window vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Use_Horiz_Window = 0$/;" v +Tlist_Use_Right_Window vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Use_Right_Window = 0$/;" v +Tlist_Use_SingleClick vim_tool/.vim/plugin/taglist.vim /^ let Tlist_Use_SingleClick = 0$/;" v +Tlist_User_Removed_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_User_Removed_File(filename)$/;" f +Tlist_Vim_Session_Load vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Vim_Session_Load()$/;" f +Tlist_Warning_Msg vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Warning_Msg(msg)$/;" f +Tlist_WinHeight vim_tool/.vim/plugin/taglist.vim /^ let Tlist_WinHeight = 10$/;" v +Tlist_WinWidth vim_tool/.vim/plugin/taglist.vim /^ let Tlist_WinWidth = 30$/;" v +Tlist_Window_Check_Auto_Open vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Check_Auto_Open()$/;" f +Tlist_Window_Check_Width vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Check_Width()$/;" f +Tlist_Window_Close vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Close()$/;" f +Tlist_Window_Create vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Create()$/;" f +Tlist_Window_Display_Help vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Display_Help()$/;" f +Tlist_Window_Exit_Only_Window vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Exit_Only_Window()$/;" f +Tlist_Window_Get_File_Index_By_Linenum vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Get_File_Index_By_Linenum(lnum)$/;" f +Tlist_Window_Get_Tag_Index vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Get_Tag_Index(fidx, lnum)$/;" f +Tlist_Window_Get_Tag_Type_By_Linenum vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Get_Tag_Type_By_Linenum(fidx, lnum)$/;" f +Tlist_Window_Goto_Window vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Goto_Window()$/;" f +Tlist_Window_Highlight_Line vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Highlight_Line()$/;" f +Tlist_Window_Highlight_Tag vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Highlight_Tag(filename, cur_lnum, cntx, center)$/;" f +Tlist_Window_Init vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Init()$/;" f +Tlist_Window_Jump_To_Tag vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Jump_To_Tag(win_ctrl)$/;" f +Tlist_Window_Mark_File_Window vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Mark_File_Window()$/;" f +Tlist_Window_Move_To_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Move_To_File(dir)$/;" f +Tlist_Window_Open vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Open()$/;" f +Tlist_Window_Open_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Open_File(win_ctrl, filename, tagpat)$/;" f +Tlist_Window_Open_File_Fold vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Open_File_Fold(acmd_bufnr)$/;" f +Tlist_Window_Refresh vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Refresh()$/;" f +Tlist_Window_Refresh_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Refresh_File(filename, ftype)$/;" f +Tlist_Window_Remove_File_From_Display vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Remove_File_From_Display(fidx)$/;" f +Tlist_Window_Show_Info vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Show_Info()$/;" f +Tlist_Window_Toggle vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Toggle()$/;" f +Tlist_Window_Toggle_Help_Text vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Toggle_Help_Text()$/;" f +Tlist_Window_Update_File vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Update_File()$/;" f +Tlist_Window_Update_Line_Offsets vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Update_Line_Offsets(start_idx, increment, offset)$/;" f +Tlist_Window_Zoom vim_tool/.vim/plugin/taglist.vim /^function! s:Tlist_Window_Zoom()$/;" f ToString include/utilex/slice.hpp /^ std::string ToString() const {$/;" f class:Slice ToString uibase/uilib/utils/utils.cpp /^ CDuiString CDuiPoint::ToString()$/;" f class:DuiLib::CDuiPoint ToString uibase/uilib/utils/utils.cpp /^ CDuiString CDuiRect::ToString()$/;" f class:DuiLib::CDuiRect ToString uibase/uilib/utils/utils.cpp /^ CDuiString CDuiSize::ToString()$/;" f class:DuiLib::CDuiSize ToString uibase/uilib/utils/utils.cpp /^ CDuiString CDuiString::ToString()$/;" f class:DuiLib::CDuiString +ToggleHelp vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ToggleHelp()$/;" f +ToggleLongList vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:ToggleLongList()$/;" f +ToggleWindowsManager vim_tool/.vim/plugin/winmanager.vim /^function! ToggleWindowsManager()$/;" f Token access/sqlite3.c /^struct Token {$/;" s file: Token access/sqlite3.c /^typedef struct Token Token;$/;" t typeref:struct:Token file: Token logs/sqlite3.c /^struct Token {$/;" s file: @@ -9297,6 +9049,7 @@ TokenDoclist access/sqlite3.c /^struct TokenDoclist {$/;" s file: TokenDoclist access/sqlite3.c /^typedef struct TokenDoclist TokenDoclist;$/;" t typeref:struct:TokenDoclist file: TokenDoclist logs/sqlite3.c /^struct TokenDoclist {$/;" s file: TokenDoclist logs/sqlite3.c /^typedef struct TokenDoclist TokenDoclist;$/;" t typeref:struct:TokenDoclist file: +TokensToString vim_tool/.vim/autoload/omni/cpp/items.vim /^function! s:TokensToString(tokens)$/;" f Transform polipo/md5.c /^static void Transform (buf, in)$/;" f file: TranslateMessage uibase/uiwindowimpl.cpp /^std_method_type_impl(int) CUiWindowsImpl::TranslateMessage(const NotifyEvent* event)$/;" f class:CUiWindowsImpl TrigEvent access/sqlite3.c /^struct TrigEvent { int a; IdList * b; };$/;" s file: @@ -9354,19 +9107,19 @@ TxShowCaret uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::TxShowCaret( TxShowScrollBar uibase/uilib/control/uirichedit.cpp /^BOOL CTxtWinHost::TxShowScrollBar(INT fnBar, BOOL fShow)$/;" f class:DuiLib::CTxtWinHost TxViewChange uibase/uilib/control/uirichedit.cpp /^void CTxtWinHost::TxViewChange(BOOL fUpdate) $/;" f class:DuiLib::CTxtWinHost Type uibase/uilib/core/uimanager.h /^ int Type;$/;" m struct:DuiLib::tagTEventUI -UCHAR compat/darwinossysdef.h /^typedef unsigned char UCHAR;$/;" t -UCHAR compat/posixossysdef.h /^typedef unsigned char UCHAR;$/;" t +UCHAR crt/darwinossysdef.h /^typedef unsigned char UCHAR;$/;" t +UCHAR crt/posixossysdef.h /^typedef unsigned char UCHAR;$/;" t UCHAR_SIZE include/comutiliy/serialize.hpp 7;" d UCharArrayPtr include/utilex/safeptr.hpp 130;" d UCharPtr include/utilex/safeptr.hpp 132;" d -UF_FRAGMENT http/http/http_parser.h /^ , UF_FRAGMENT = 5$/;" e enum:http_parser_url_fields -UF_HOST http/http/http_parser.h /^ , UF_HOST = 1$/;" e enum:http_parser_url_fields -UF_MAX http/http/http_parser.h /^ , UF_MAX = 7$/;" e enum:http_parser_url_fields -UF_PATH http/http/http_parser.h /^ , UF_PATH = 3$/;" e enum:http_parser_url_fields -UF_PORT http/http/http_parser.h /^ , UF_PORT = 2$/;" e enum:http_parser_url_fields -UF_QUERY http/http/http_parser.h /^ , UF_QUERY = 4$/;" e enum:http_parser_url_fields -UF_SCHEMA http/http/http_parser.h /^ { UF_SCHEMA = 0$/;" e enum:http_parser_url_fields -UF_USERINFO http/http/http_parser.h /^ , UF_USERINFO = 6$/;" e enum:http_parser_url_fields +UF_FRAGMENT net/http_protocol/http_parser.h /^ , UF_FRAGMENT = 5$/;" e enum:http_parser_url_fields +UF_HOST net/http_protocol/http_parser.h /^ , UF_HOST = 1$/;" e enum:http_parser_url_fields +UF_MAX net/http_protocol/http_parser.h /^ , UF_MAX = 7$/;" e enum:http_parser_url_fields +UF_PATH net/http_protocol/http_parser.h /^ , UF_PATH = 3$/;" e enum:http_parser_url_fields +UF_PORT net/http_protocol/http_parser.h /^ , UF_PORT = 2$/;" e enum:http_parser_url_fields +UF_QUERY net/http_protocol/http_parser.h /^ , UF_QUERY = 4$/;" e enum:http_parser_url_fields +UF_SCHEMA net/http_protocol/http_parser.h /^ { UF_SCHEMA = 0$/;" e enum:http_parser_url_fields +UF_USERINFO net/http_protocol/http_parser.h /^ , UF_USERINFO = 6$/;" e enum:http_parser_url_fields UIEVENT_BUTTONDOWN uibase/uilib/core/uimanager.h /^ UIEVENT_BUTTONDOWN,$/;" e enum:DuiLib::TagEVENTTYPE_UI UIEVENT_BUTTONUP uibase/uilib/core/uimanager.h /^ UIEVENT_BUTTONUP,$/;" e enum:DuiLib::TagEVENTTYPE_UI UIEVENT_CHAR uibase/uilib/core/uimanager.h /^ UIEVENT_CHAR,$/;" e enum:DuiLib::TagEVENTTYPE_UI @@ -9410,8 +9163,8 @@ UILIB_FILE uibase/uilib/utils/winimplbase.h /^ UILIB_FILE=1, \/\/ UILIB_RESOURCETYPE uibase/uilib/utils/winimplbase.h /^ enum UILIB_RESOURCETYPE$/;" g namespace:DuiLib UILIB_STATIC uibase/uilib/uilib.h 5;" d UILIST_MAX_COLUMNS uibase/uilib/control/uilist.h 16;" d -UINT compat/darwinossysdef.h /^typedef unsigned int UINT;$/;" t -UINT compat/posixossysdef.h /^typedef unsigned int UINT;$/;" t +UINT crt/darwinossysdef.h /^typedef unsigned int UINT;$/;" t +UINT crt/posixossysdef.h /^typedef unsigned int UINT;$/;" t UINT16_TYPE access/sqlite3.c 8313;" d file: UINT16_TYPE access/sqlite3.c 8315;" d file: UINT16_TYPE logs/sqlite3.c 8313;" d file: @@ -9426,8 +9179,8 @@ UINT8_TYPE access/sqlite3.c 8329;" d file: UINT8_TYPE logs/sqlite3.c 8327;" d file: UINT8_TYPE logs/sqlite3.c 8329;" d file: UINT_COUNT_SIZE msgbus/auth.hpp 61;" d -UINT_PTR compat/compat_bits.hpp /^ typedef unsigned int UINT_PTR, *PUINT_PTR;$/;" t -UINT_PTR compat/compat_bits.hpp /^ typedef unsigned long long UINT_PTR, *PUINT_PTR;$/;" t +UINT_PTR crt/crt_bits.hpp /^ typedef unsigned int UINT_PTR, *PUINT_PTR;$/;" t +UINT_PTR crt/crt_bits.hpp /^ typedef unsigned long long UINT_PTR, *PUINT_PTR;$/;" t UINT_SIZE include/comutiliy/serialize.hpp 9;" d UISTATE_CAPTURED uibase/uilib/core/uimanager.h 80;" d UISTATE_DISABLED uibase/uilib/core/uimanager.h 76;" d @@ -9458,16 +9211,16 @@ UI_WNDSTYLE_DIALOG uibase/uilib/core/uibase.h 14;" d UI_WNDSTYLE_EX_DIALOG uibase/uilib/core/uibase.h 17;" d UI_WNDSTYLE_EX_FRAME uibase/uilib/core/uibase.h 16;" d UI_WNDSTYLE_FRAME uibase/uilib/core/uibase.h 12;" d -ULARGE_INTEGER compat/darwinossysdef.h /^} ULARGE_INTEGER;$/;" t typeref:struct:_ULARGE_INTEGER -ULARGE_INTEGER compat/posixossysdef.h /^} ULARGE_INTEGER;$/;" t typeref:struct:_ULARGE_INTEGER -ULLONG_MAX http/http/http_parser.cpp 29;" d file: +ULARGE_INTEGER crt/darwinossysdef.h /^} ULARGE_INTEGER;$/;" t typeref:struct:_ULARGE_INTEGER +ULARGE_INTEGER crt/posixossysdef.h /^} ULARGE_INTEGER;$/;" t typeref:struct:_ULARGE_INTEGER +ULLONG_MAX net/http_protocol/http_parser.cpp 29;" d file: ULLONG_MAX uibase/uilib/core/pugixml.cpp 131;" d file: -ULONG compat/darwinossysdef.h /^typedef unsigned long ULONG;$/;" t -ULONG compat/posixossysdef.h /^typedef unsigned long ULONG;$/;" t -ULONGLONG compat/darwinossysdef.h /^typedef unsigned long long ULONGLONG;$/;" t -ULONGLONG compat/posixossysdef.h /^typedef unsigned long long ULONGLONG;$/;" t -ULONG_PTR compat/compat_bits.hpp /^ typedef unsigned long ULONG_PTR, *PULONG_PTR;$/;" t -ULONG_PTR compat/compat_bits.hpp /^ typedef unsigned long long ULONG_PTR, *PULONG_PTR;$/;" t +ULONG crt/darwinossysdef.h /^typedef unsigned long ULONG;$/;" t +ULONG crt/posixossysdef.h /^typedef unsigned long ULONG;$/;" t +ULONGLONG crt/darwinossysdef.h /^typedef unsigned long long ULONGLONG;$/;" t +ULONGLONG crt/posixossysdef.h /^typedef unsigned long long ULONGLONG;$/;" t +ULONG_PTR crt/crt_bits.hpp /^ typedef unsigned long ULONG_PTR, *PULONG_PTR;$/;" t +ULONG_PTR crt/crt_bits.hpp /^ typedef unsigned long long ULONG_PTR, *PULONG_PTR;$/;" t ULW_ALPHA uibase/uilib/utils/wndshadow.cpp 53;" d file: UNALIGNED_ACCESS polipo/polipo.h 178;" d UNICODE_STRING_MAX_CHARS access/sqlite3.c 31354;" d file: @@ -9500,10 +9253,10 @@ UNIX_SHM_DMS access/sqlite3.c 27615;" d file: UNIX_SHM_DMS logs/sqlite3.c 27615;" d file: UNKNOWN_LOCK access/sqlite3.c 39800;" d file: UNKNOWN_LOCK logs/sqlite3.c 39800;" d file: -UNLIKELY compat/compat_core.hpp 11;" d -UNLIKELY compat/compat_core.hpp 8;" d -UNLIKELY http/http/http_parser.cpp 68;" d file: -UNLIKELY http/http/http_parser.cpp 71;" d file: +UNLIKELY crt/crt_core.hpp 11;" d +UNLIKELY crt/crt_core.hpp 8;" d +UNLIKELY net/http_protocol/http_parser.cpp 68;" d file: +UNLIKELY net/http_protocol/http_parser.cpp 71;" d file: UNPACKED_INCRKEY access/sqlite3.c 10909;" d file: UNPACKED_INCRKEY logs/sqlite3.c 10909;" d file: UNPACKED_PREFIX_MATCH access/sqlite3.c 10910;" d file: @@ -9522,34 +9275,33 @@ UPDATE_MAX_BLOBSIZE access/sqlite3.c 66472;" d file: UPDATE_MAX_BLOBSIZE access/sqlite3.c 66474;" d file: UPDATE_MAX_BLOBSIZE logs/sqlite3.c 66472;" d file: UPDATE_MAX_BLOBSIZE logs/sqlite3.c 66474;" d file: -UPDATE_STATE http/http/http_parser.cpp 56;" d file: -UPGRADE http/http/http_parser.cpp 164;" d file: +UPDATE_STATE net/http_protocol/http_parser.cpp 56;" d file: +UPGRADE net/http_protocol/http_parser.cpp 164;" d file: USEFETCH access/sqlite3.c 40179;" d file: USEFETCH access/sqlite3.c 40181;" d file: USEFETCH logs/sqlite3.c 40179;" d file: USEFETCH logs/sqlite3.c 40181;" d file: -USHORT compat/darwinossysdef.h /^typedef unsigned short USHORT;$/;" t -USHORT compat/posixossysdef.h /^typedef unsigned short USHORT;$/;" t +USHORT crt/darwinossysdef.h /^typedef unsigned short USHORT;$/;" t +USHORT crt/posixossysdef.h /^typedef unsigned short USHORT;$/;" t USHORT_SIZE include/comutiliy/serialize.hpp 8;" d -UUID compat/compat_guid.hpp /^typedef GUID UUID;$/;" t -UUID_DEFINED compat/compat_guid.hpp 17;" d +UUID crt/crt_guid.hpp /^typedef GUID UUID;$/;" t +UUID_DEFINED crt/crt_guid.hpp 17;" d U_OFFSET msgbus/auth.hpp 19;" d UdpSocketPtr include/comutiliy/asynio.h /^typedef _lComPtr UdpSocketPtr;$/;" t UnBind asynio/timerimpl.cpp /^std_method_impl CTimerImpl::UnBind()$/;" f class:CTimerImpl UnBindAccpet asynio/tcplistensocketimpl.cpp /^std_method_impl CTcpListenSocketImpl::UnBindAccpet()$/;" f class:CTcpListenSocketImpl UnBindEvent asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::UnBindEvent()$/;" f class:CIoOperationImpl UnBindEvent include/comutiliy/cchannel.hpp /^ std_method_impl UnBindEvent() {$/;" f class:CChannel -UnBindEvent include/comutiliy/ctimer.hpp /^ std_method_impl UnBindEvent() {$/;" f class:CChannel UnBindEvent include/comutiliy/schannel.hpp /^ std_method_impl UnBindEvent() {$/;" f class:SChannel UnBindEvent uibase/uiwindowimpl.cpp /^std_method_impl CUiWindowsImpl::UnBindEvent()$/;" f class:CUiWindowsImpl UnBindIBase asynio/iooperationimpl.cpp /^std_method_impl CIoOperationImpl::UnBindIBase()$/;" f class:CIoOperationImpl UnInit dispatch/src/loadcontainer.cc /^int CLoadContainer::UnInit(_pinstance hinstance)$/;" f class:CLoadContainer UnInit msgbus/broker.cpp /^std_method_impl CBrokerImpl::UnInit()$/;" f class:CBrokerImpl UnInitBus mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::UnInitBus()$/;" f class:CMainViewImpl -UnInitContainer include/dlcom/objectrun.hpp /^ int UnInitContainer(_pinstance instance) {$/;" f class:CContainer +UnInitContainer include/dlcom/objectrun.hpp /^ HRESULT UnInitContainer(_pinstance instance) {$/;" f class:CContainer UnInitEnv dispatch/AppDispatch.java /^ public static native String UnInitEnv(String key,String value);$/;" m class:AppDispatch -UnInitRPCEnv base/init/compat_init.c /^HRESULT UnInitRPCEnv(LPCSTR guid)$/;" f -UnInitSocketEnv base/init/compat_init.c /^HRESULT UnInitSocketEnv(int low, int high)$/;" f +UnInitRPCEnv stdcrt/init/compat_init.c /^HRESULT UnInitRPCEnv(LPCSTR guid)$/;" f +UnInitSocketEnv stdcrt/init/compat_init.c /^HRESULT UnInitSocketEnv(int low, int high)$/;" f UnLoad include/dlcom/calldll.hpp /^ virtual void UnLoad()$/;" f class:IImpModuleBase UnLoad include/utilex/calldll.hpp /^ virtual void UnLoad()$/;" f class:IImpModuleBase UnLock include/utilex/autolock.hpp /^ void UnLock()$/;" f class:CAutoLock @@ -9558,10 +9310,11 @@ Undo uibase/uilib/control/uirichedit.cpp /^bool CRichEditUI::Undo()$/;" f class: Uninit access/dbimpl.cpp /^std_method_impl CDatabaseImpl::Uninit()$/;" f class:CDatabaseImpl Uninit asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::Uninit()$/;" f class:CAsynFrameImpl Uninit container/mainrun.cpp /^std_method_impl CMainRun::Uninit(_pinstance hInstance)$/;" f class:CMainRun -Uninit http/httpimpl.cpp /^std_method_impl CHttpImpl::Uninit()$/;" f class:CHttpImpl Uninit logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Uninit()$/;" f class:CLogDataBaseImpl Uninit logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::Uninit()$/;" f class:CLogFiltersImpl Uninit logs/logsimpl.cpp /^std_method_impl CLogsImpl::Uninit()$/;" f class:CLogsImpl +Uninit mainui/appviewimpl.cpp /^std_method_impl CAppViewImpl::Uninit()$/;" f class:CAppViewImpl +Uninit mainuiapp/appviewimpl.cpp /^std_method_impl CAppViewImpl::Uninit()$/;" f class:CAppViewImpl Uninit mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::Uninit()$/;" f class:CMainViewImpl Uninit mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::Uninit()$/;" f class:CMemPoolImpl Uninit msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::Uninit()$/;" f class:CMsgBusImpl @@ -9569,6 +9322,7 @@ Uninit net/netimpl.cpp /^std_method_impl CNetImpl::Uninit()$/;" f class:CNetImpl Uninit render/renderimpl.cpp /^std_method_impl CRenderImpl::Uninit()$/;" f class:CRenderImpl Uninit res/fontimpl.cpp /^std_method_impl CFontImpl::Uninit()$/;" f class:CFontImpl Uninit res/langimpl.cpp /^std_method_impl CLangImpl::Uninit()$/;" f class:CLangImpl +Uninit testmain/appviewimpl.cpp /^std_method_impl CAppViewImpl::Uninit()$/;" f class:CAppViewImpl Uninit uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::Uninit()$/;" f class:CUiBaseImpl UninitAllPlugins container/mainrun.cpp /^std_method_impl CMainRun::UninitAllPlugins()$/;" f class:CMainRun Union uibase/uilib/utils/utils.cpp /^ void CDuiRect::Union(CDuiRect& rc)$/;" f class:DuiLib::CDuiRect @@ -9584,6 +9338,7 @@ UnpackedRecord logs/sqlite3.c /^typedef struct UnpackedRecord UnpackedRecord;$/; Unsubclass uibase/uilib/core/uibase.cpp /^void CWindowWnd::Unsubclass()$/;" f class:DuiLib::CWindowWnd Update logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::Update(LPCSTR name, cJSON* pRoot,$/;" f class:CLogDataBaseImpl Update uibase/uilib/utils/wndshadow.cpp /^void CWndShadow::Update(HWND hParent)$/;" f class:CWndShadow +UpdateHeader vim_tool/.vim/plugin/winfileexplorer.vim /^function! s:UpdateHeader()$/;" f UpdateTable access/dbimpl.cpp /^std_method_impl CDatabaseImpl::UpdateTable(ITableInfo* pTableInfo)$/;" f class:CDatabaseImpl UpdateTable logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::UpdateTable(LPCSTR name,$/;" f class:CLogDataBaseImpl UpdateText uibase/uilib/control/uidatetime.cpp /^ void CDateTimeUI::UpdateText()$/;" f class:DuiLib::CDateTimeUI @@ -9593,8 +9348,8 @@ UpperToLower logs/sqlite3.c 21820;" d file: UseOldClipBegin uibase/uilib/core/uirender.cpp /^void CRenderClip::UseOldClipBegin(HDC hDC, CRenderClip& clip)$/;" f class:DuiLib::CRenderClip UseOldClipEnd uibase/uilib/core/uirender.cpp /^void CRenderClip::UseOldClipEnd(HDC hDC, CRenderClip& clip)$/;" f class:DuiLib::CRenderClip UsedVirtualWnd uibase/uilib/core/uimanager.cpp /^void CPaintManagerUI::UsedVirtualWnd(bool bUsed)$/;" f class:DuiLib::CPaintManagerUI -VALID_HOSTNAME_LEN compat/compat_sockinet.h 10;" d -VALID_LABEL_LEN compat/compat_sockinet.h 11;" d +VALID_HOSTNAME_LEN crt/crt_sockinet.h 10;" d +VALID_LABEL_LEN crt/crt_sockinet.h 11;" d VARIANT_GUTTMAN_LINEAR_SPLIT access/sqlite3.c 141622;" d file: VARIANT_GUTTMAN_LINEAR_SPLIT logs/sqlite3.c 141622;" d file: VARIANT_GUTTMAN_QUADRATIC_SPLIT access/sqlite3.c 141621;" d file: @@ -9615,27 +9370,27 @@ VDBE_MAGIC_INIT access/sqlite3.c 13941;" d file: VDBE_MAGIC_INIT logs/sqlite3.c 13941;" d file: VDBE_MAGIC_RUN access/sqlite3.c 13942;" d file: VDBE_MAGIC_RUN logs/sqlite3.c 13942;" d file: -VET_EMPTY compat/compat_var.h /^ VET_EMPTY = 0,$/;" e enum:var_enum_t -VET_I1 compat/compat_var.h /^ VET_I1 = 2,$/;" e enum:var_enum_t -VET_I2 compat/compat_var.h /^ VET_I2 = 3,$/;" e enum:var_enum_t -VET_I4 compat/compat_var.h /^ VET_I4 = 4,$/;" e enum:var_enum_t -VET_I8 compat/compat_var.h /^ VET_I8 = 5,$/;" e enum:var_enum_t -VET_INT compat/compat_var.h /^ VET_INT = 12,$/;" e enum:var_enum_t -VET_LPSTR compat/compat_var.h /^ VET_LPSTR = 14,$/;" e enum:var_enum_t -VET_LPWSTR compat/compat_var.h /^ VET_LPWSTR = 15,$/;" e enum:var_enum_t -VET_NULL compat/compat_var.h /^ VET_NULL = 1,$/;" e enum:var_enum_t -VET_R4 compat/compat_var.h /^ VET_R4 = 10,$/;" e enum:var_enum_t -VET_R8 compat/compat_var.h /^ VET_R8 = 11,$/;" e enum:var_enum_t -VET_UI1 compat/compat_var.h /^ VET_UI1 = 6,$/;" e enum:var_enum_t -VET_UI2 compat/compat_var.h /^ VET_UI2 = 7,$/;" e enum:var_enum_t -VET_UI4 compat/compat_var.h /^ VET_UI4 = 8,$/;" e enum:var_enum_t -VET_UI8 compat/compat_var.h /^ VET_UI8 = 9,$/;" e enum:var_enum_t -VET_UINT compat/compat_var.h /^ VET_UINT = 13,$/;" e enum:var_enum_t -VET_VOID compat/compat_var.h /^ VET_VOID = 20$/;" e enum:var_enum_t +VET_EMPTY crt/crt_var.h /^ VET_EMPTY = 0,$/;" e enum:var_enum_t +VET_I1 crt/crt_var.h /^ VET_I1 = 2,$/;" e enum:var_enum_t +VET_I2 crt/crt_var.h /^ VET_I2 = 3,$/;" e enum:var_enum_t +VET_I4 crt/crt_var.h /^ VET_I4 = 4,$/;" e enum:var_enum_t +VET_I8 crt/crt_var.h /^ VET_I8 = 5,$/;" e enum:var_enum_t +VET_INT crt/crt_var.h /^ VET_INT = 12,$/;" e enum:var_enum_t +VET_LPSTR crt/crt_var.h /^ VET_LPSTR = 14,$/;" e enum:var_enum_t +VET_LPWSTR crt/crt_var.h /^ VET_LPWSTR = 15,$/;" e enum:var_enum_t +VET_NULL crt/crt_var.h /^ VET_NULL = 1,$/;" e enum:var_enum_t +VET_R4 crt/crt_var.h /^ VET_R4 = 10,$/;" e enum:var_enum_t +VET_R8 crt/crt_var.h /^ VET_R8 = 11,$/;" e enum:var_enum_t +VET_UI1 crt/crt_var.h /^ VET_UI1 = 6,$/;" e enum:var_enum_t +VET_UI2 crt/crt_var.h /^ VET_UI2 = 7,$/;" e enum:var_enum_t +VET_UI4 crt/crt_var.h /^ VET_UI4 = 8,$/;" e enum:var_enum_t +VET_UI8 crt/crt_var.h /^ VET_UI8 = 9,$/;" e enum:var_enum_t +VET_UINT crt/crt_var.h /^ VET_UINT = 13,$/;" e enum:var_enum_t +VET_VOID crt/crt_var.h /^ VET_VOID = 20$/;" e enum:var_enum_t VFUNCTION access/sqlite3.c 10511;" d file: VFUNCTION logs/sqlite3.c 10511;" d file: -VOID compat/darwinossysdef.h 86;" d -VOID compat/posixossysdef.h 79;" d +VOID crt/darwinossysdef.h 86;" d +VOID crt/posixossysdef.h 79;" d VTable access/sqlite3.c /^struct VTable {$/;" s file: VTable access/sqlite3.c /^typedef struct VTable VTable;$/;" t typeref:struct:VTable file: VTable logs/sqlite3.c /^struct VTable {$/;" s file: @@ -9703,7 +9458,7 @@ VtabCtx access/sqlite3.c /^struct VtabCtx {$/;" s file: VtabCtx access/sqlite3.c /^typedef struct VtabCtx VtabCtx;$/;" t typeref:struct:VtabCtx file: VtabCtx logs/sqlite3.c /^struct VtabCtx {$/;" s file: VtabCtx logs/sqlite3.c /^typedef struct VtabCtx VtabCtx;$/;" t typeref:struct:VtabCtx file: -WAIT_TIME_RELATIVE compat/compat_cond.h 11;" d +WAIT_TIME_RELATIVE crt/crt_cond.h 11;" d WALINDEX_HDR_SIZE access/sqlite3.c 46994;" d file: WALINDEX_HDR_SIZE logs/sqlite3.c 46994;" d file: WALINDEX_LOCK_OFFSET access/sqlite3.c 46992;" d file: @@ -9756,8 +9511,8 @@ WAL_SYNC_TRANSACTIONS access/sqlite3.c 39301;" d file: WAL_SYNC_TRANSACTIONS logs/sqlite3.c 39301;" d file: WAL_WRITE_LOCK access/sqlite3.c 46893;" d file: WAL_WRITE_LOCK logs/sqlite3.c 46893;" d file: -WCHAR compat/darwinossysdef.h /^typedef wchar_t WCHAR;$/;" t -WCHAR compat/posixossysdef.h /^typedef wchar_t WCHAR;$/;" t +WCHAR crt/darwinossysdef.h /^typedef wchar_t WCHAR;$/;" t +WCHAR crt/posixossysdef.h /^typedef wchar_t WCHAR;$/;" t WCharPtr include/utilex/safeptr.hpp 134;" d WHERETRACE access/sqlite3.c 108411;" d file: WHERETRACE access/sqlite3.c 108414;" d file: @@ -9833,12 +9588,12 @@ WHERE_VIRTUALTABLE access/sqlite3.c 108839;" d file: WHERE_VIRTUALTABLE logs/sqlite3.c 108839;" d file: WHERE_WANT_DISTINCT access/sqlite3.c 11385;" d file: WHERE_WANT_DISTINCT logs/sqlite3.c 11385;" d file: -WINAPI compat/darwinosdef.h 41;" d -WINAPI compat/darwinosdef.h 53;" d -WINAPI compat/posixosdef.h 30;" d -WINAPIV compat/darwinosdef.h 42;" d -WINAPIV compat/darwinosdef.h 61;" d -WINAPIV compat/posixosdef.h 31;" d +WINAPI crt/darwinosdef.h 41;" d +WINAPI crt/darwinosdef.h 53;" d +WINAPI crt/posixosdef.h 30;" d +WINAPIV crt/darwinosdef.h 42;" d +WINAPIV crt/darwinosdef.h 61;" d +WINAPIV crt/posixosdef.h 31;" d WINCE_DELETION_ATTEMPTS access/sqlite3.c 33608;" d file: WINCE_DELETION_ATTEMPTS logs/sqlite3.c 33608;" d file: WINFILE_PERSIST_WAL access/sqlite3.c 31521;" d file: @@ -9854,7 +9609,6 @@ WINMEM_MAGIC2 logs/sqlite3.c 31613;" d file: WINVER access/targetver.h 11;" d WINVER container/targetver.h 11;" d WINVER dispatch/targetver.h 11;" d -WINVER http/targetver.h 11;" d WINVER license/targetver.h 11;" d WINVER logs/targetver.h 11;" d WINVER mainview/targetver.h 11;" d @@ -9871,8 +9625,8 @@ WIN_SHM_BASE logs/sqlite3.c 34556;" d file: WIN_SHM_DMS access/sqlite3.c 34557;" d file: WIN_SHM_DMS logs/sqlite3.c 34557;" d file: WM_DPICHANGED uibase/uilib/dpi.hpp 7;" d -WORD compat/darwinossysdef.h /^typedef unsigned short WORD;$/;" t -WORD compat/posixossysdef.h /^typedef unsigned short WORD;$/;" t +WORD crt/darwinossysdef.h /^typedef unsigned short WORD;$/;" t +WORD crt/posixossysdef.h /^typedef unsigned short WORD;$/;" t WO_ALL access/sqlite3.c 108820;" d file: WO_ALL logs/sqlite3.c 108820;" d file: WO_AND access/sqlite3.c 108816;" d file: @@ -9901,8 +9655,8 @@ WO_OR access/sqlite3.c 108815;" d file: WO_OR logs/sqlite3.c 108815;" d file: WO_SINGLE access/sqlite3.c 108821;" d file: WO_SINGLE logs/sqlite3.c 108821;" d file: -WPARAM compat/darwinossysdef.h /^typedef UINT_PTR WPARAM;$/;" t -WPARAM compat/posixossysdef.h /^typedef UINT_PTR WPARAM;$/;" t +WPARAM crt/darwinossysdef.h /^typedef UINT_PTR WPARAM;$/;" t +WPARAM crt/posixossysdef.h /^typedef UINT_PTR WPARAM;$/;" t WRC_Abort access/sqlite3.c 12024;" d file: WRC_Abort logs/sqlite3.c 12024;" d file: WRC_Continue access/sqlite3.c 12022;" d file: @@ -9925,12 +9679,12 @@ WRITE_UTF8 logs/sqlite3.c 140841;" d file: WRITE_UTF8 logs/sqlite3.c 21139;" d file: WRONG_STRING dispatch/src/dispatch.cc 21;" d file: WS_EX_LAYERED uibase/uilib/utils/wndshadow.cpp 45;" d file: -WStringToGUID base/stdlib/compat_guid.c /^GUID WStringToGUID(wchar_t* lpString)$/;" f +WStringToGUID stdcrt/stdlib/compat_guid.c /^GUID WStringToGUID(wchar_t* lpString)$/;" f Wait include/utilex/cond.hpp /^ HRESULT Wait() {$/;" f class:CCondHandle Wait include/utilex/sem.hpp /^ HRESULT Wait() {$/;" f class:CSemHandle Wait include/utilex/semthread.hpp /^ int Wait() {$/;" f class:CSemThread Wait include/utilex/timethread.hpp /^ HRESULT Wait() {$/;" f class:CTimeThread -WaitDebug compat/compat_break.hpp /^inline static void WaitDebug() {$/;" f +WaitDebug crt/crt_break.hpp /^static_inline void WaitDebug() {$/;" f WaitSem include/utilex/thread.hpp /^ int WaitSem() {$/;" f class:CThread WaitSem msgbus/msgqueue.cpp /^void CMsgQueue::WaitSem()$/;" f class:CMsgQueue WaitTime include/utilex/cond.hpp /^ HRESULT WaitTime(int sec) {$/;" f class:CCondHandle @@ -10013,9 +9767,16 @@ WhereTerm access/sqlite3.c /^struct WhereTerm {$/;" s file: WhereTerm access/sqlite3.c /^typedef struct WhereTerm WhereTerm;$/;" t typeref:struct:WhereTerm file: WhereTerm logs/sqlite3.c /^struct WhereTerm {$/;" s file: WhereTerm logs/sqlite3.c /^typedef struct WhereTerm WhereTerm;$/;" t typeref:struct:WhereTerm file: +WhichMemberVisible vim_tool/.vim/plugin/winmanager.vim /^function! WhichMemberVisible(i)$/;" f WinMain guidgen/main.cpp /^int WINAPI WinMain(HINSTANCE hInstance,$/;" f WinMain main/main.cpp /^int WINAPI WinMain(HINSTANCE hInstance,$/;" f WinMain testmain/main.cpp /^int WINAPI WinMain(HINSTANCE hInstance,$/;" f +WinManagerFileEdit vim_tool/.vim/plugin/winmanager.vim /^function! WinManagerFileEdit(bufName, split)$/;" f +WinManagerForceReSize vim_tool/.vim/plugin/winmanager.vim /^function! WinManagerForceReSize(explName)$/;" f +WinManagerGetLastEditedFile vim_tool/.vim/plugin/winmanager.vim /^function! WinManagerGetLastEditedFile(...)$/;" f +WinManagerRefresh vim_tool/.vim/plugin/winmanager.vim /^ augroup WinManagerRefresh$/;" a +WinManagerResumeAUs vim_tool/.vim/plugin/winmanager.vim /^function! WinManagerResumeAUs()$/;" f +WinManagerSuspendAUs vim_tool/.vim/plugin/winmanager.vim /^function! WinManagerSuspendAUs()$/;" f Window extensions/include/ui/iuibase.h /^ void* Window;$/;" m struct:TagNotifyEvent WindowImplBase uibase/uilib/utils/winimplbase.h /^ WindowImplBase(){};$/;" f class:DuiLib::WindowImplBase WindowImplBase uibase/uilib/utils/winimplbase.h /^ class WindowImplBase$/;" c namespace:DuiLib @@ -10032,32 +9793,32 @@ WriteIo asynio/udpsocketimpl.cpp /^std_method_impl CUdpSocketImpl::WriteIo(NET_A WriteStream include/comutiliy/cchannel.hpp /^ std_method_impl WriteStream(BUFFER_PTR Ptr, BUFFER_SIZE Pos, BUFFER_SIZE Size) {$/;" f class:CChannel X net/protocol/ftp.c 6;" d file: X net/protocol/ftp.c 8;" d file: -X net/protocol/ftp.h 36;" d -X net/protocol/ftp.h 38;" d -XMLATTRIBUTE uibase/uilib/core/uimarkup.h /^ } XMLATTRIBUTE;$/;" t class:DuiLib::CMarkupNode typeref:struct:DuiLib::CMarkupNode::__anon99 +X net/protocol/ftp.h 41;" d +X net/protocol/ftp.h 43;" d +XMLATTRIBUTE uibase/uilib/core/uimarkup.h /^ } XMLATTRIBUTE;$/;" t class:DuiLib::CMarkupNode typeref:struct:DuiLib::CMarkupNode::__anon93 XMLELEMENT uibase/uilib/core/uimarkup.h /^ } XMLELEMENT;$/;" t class:DuiLib::CMarkup typeref:struct:DuiLib::CMarkup::tagXMLELEMENT -XMLFILE_ENCODING_UTF8 uibase/uilib/core/uimarkup.h /^ XMLFILE_ENCODING_UTF8 = 0,$/;" e enum:DuiLib::__anon97 +XMLFILE_ENCODING_UTF8 uibase/uilib/core/uimarkup.h /^ XMLFILE_ENCODING_UTF8 = 0,$/;" e enum:DuiLib::__anon91 XSTR polipo/log.c 42;" d file: -XX http/http/http_parser.cpp 1000;" d file: -XX http/http/http_parser.cpp 172;" d file: -XX http/http/http_parser.cpp 174;" d file: -XX http/http/http_parser.cpp 977;" d file: -XX http/http/http_parser.h 156;" d -XX http/http/http_parser.h 158;" d -XX http/http/http_parser.h 209;" d -XX http/http/http_parser.h 211;" d +XX net/http_protocol/http_parser.cpp 1000;" d file: +XX net/http_protocol/http_parser.cpp 172;" d file: +XX net/http_protocol/http_parser.cpp 174;" d file: +XX net/http_protocol/http_parser.cpp 977;" d file: +XX net/http_protocol/http_parser.h 156;" d +XX net/http_protocol/http_parser.h 158;" d +XX net/http_protocol/http_parser.h 209;" d +XX net/http_protocol/http_parser.h 211;" d XX net/protocol/smtp.c 6;" d file: XX net/protocol/smtp.c 8;" d file: -XX net/protocol/smtp.h 23;" d -XX net/protocol/smtp.h 25;" d +XX net/protocol/smtp.h 29;" d +XX net/protocol/smtp.h 31;" d XXX net/protocol/ftp.c 15;" d file: XXX net/protocol/ftp.c 17;" d file: -XXX net/protocol/ftp.h 55;" d -XXX net/protocol/ftp.h 57;" d +XXX net/protocol/ftp.h 60;" d +XXX net/protocol/ftp.h 62;" d XXX net/protocol/smtp.c 15;" d file: XXX net/protocol/smtp.c 17;" d file: -XXX net/protocol/smtp.h 46;" d -XXX net/protocol/smtp.h 48;" d +XXX net/protocol/smtp.h 52;" d +XXX net/protocol/smtp.h 54;" d XmlAttributeIterator uibase/uilib/core/pugiconfig.hpp /^typedef pugi::xml_attribute_iterator XmlAttributeIterator;$/;" t XmlAttributeIterator uibase/uilib/uilib.h /^typedef pugi::xml_attribute_iterator XmlAttributeIterator;$/;" t XmlDocument uibase/uilib/core/pugiconfig.hpp /^typedef pugi::xml_document XmlDocument;$/;" t @@ -10078,7 +9839,7 @@ YYCODETYPE logs/sqlite3.c 114929;" d file: YYFALLBACK access/sqlite3.c 114962;" d file: YYFALLBACK logs/sqlite3.c 114962;" d file: YYMINORTYPE access/sqlite3.c /^} YYMINORTYPE;$/;" t typeref:union:__anon22 file: -YYMINORTYPE logs/sqlite3.c /^} YYMINORTYPE;$/;" t typeref:union:__anon67 file: +YYMINORTYPE logs/sqlite3.c /^} YYMINORTYPE;$/;" t typeref:union:__anon62 file: YYNOCODE access/sqlite3.c 114930;" d file: YYNOCODE logs/sqlite3.c 114930;" d file: YYNOERRORRECOVERY access/sqlite3.c 114766;" d file: @@ -10117,6 +9878,9 @@ YY_SHIFT_USE_DFLT access/sqlite3.c 115336;" d file: YY_SHIFT_USE_DFLT logs/sqlite3.c 115336;" d file: _AGENTIMPL_H_ msgbus/agent.h 2;" d _ALLOC_h mempool/alloc.h 2;" d +_APPVIEWIMPL_H_ mainui/appviewimpl.h 2;" d +_APPVIEWIMPL_H_ mainuiapp/appviewimpl.h 2;" d +_APPVIEWIMPL_H_ testmain/appviewimpl.h 2;" d _APS_NEXT_COMMAND_VALUE container/resource.h 21;" d _APS_NEXT_COMMAND_VALUE guidgen/resource.h 12;" d _APS_NEXT_COMMAND_VALUE main/resource.h 12;" d @@ -10138,12 +9902,10 @@ _ASYNCTCPSOCKIMPL_H_ asynio/tcpsocketimpl.h 2;" d _ASYNCUDPSOCKIMPL_H_ asynio/udpsocketimpl.h 2;" d _ASYNFRAMEIMPL_H_ asynio/asynframeimpl.h 2;" d _ASYNIOIMPL_H_ mempool/mempoolimpl.h 2;" d -_ASYNIO_H_ include/comutiliy/asynio.h 2;" d _AUTH_HPP_ msgbus/auth.hpp 2;" d _AcceptRequest polipo/io.h /^typedef struct _AcceptRequest {$/;" s _Atom polipo/atom.h /^typedef struct _Atom {$/;" s _AtomList polipo/atom.h /^typedef struct _AtomList {$/;" s -_BASE_H_ base/base.h 9;" d _BOOST_DEF_H_ 3rd/include/boost_def.hpp 2;" d _BOOST_SHAREDLOCK_H_ 3rd/include/boost_sharedlock.h 2;" d _BOOST_SPTR_H_ 3rd/include/boost_sptr.h 2;" d @@ -10152,66 +9914,17 @@ _BSD_SOURCE access/sqlite3.c 7698;" d file: _BSD_SOURCE logs/sqlite3.c 7698;" d file: _BTREE_H_ access/sqlite3.c 8678;" d file: _BTREE_H_ logs/sqlite3.c 8678;" d file: -_BYTE_DEFINED compat/darwinossysdef.h 93;" d -_BYTE_DEFINED compat/posixossysdef.h 86;" d +_BYTE_DEFINED crt/darwinossysdef.h 93;" d +_BYTE_DEFINED crt/posixossysdef.h 86;" d _BusProtocol msgbus/auth.hpp /^typedef struct _BusProtocol {$/;" s _CALL_DLL_HPP_ include/dlcom/calldll.hpp 2;" d -_CCHANNEL_HPP_ include/comutiliy/cchannel.hpp 2;" d -_CCHANNEL_HPP_ include/comutiliy/ctimer.hpp 2;" d _CDATABASE_H_ logs/database.h 2;" d -_COLORREF_DEFINED compat/darwinossysdef.h 176;" d -_COLORREF_DEFINED compat/posixossysdef.h 169;" d -_COMPAT_ARGV_H_ compat/compat_argv.h 2;" d -_COMPAT_ARRAY_H_ compat/compat_array.h 2;" d -_COMPAT_ASSERT_HPP_ compat/compat_assert.hpp 2;" d -_COMPAT_ATOMIC_H_ compat/compat_atomic.h 2;" d -_COMPAT_BARRIER_H_ compat/compat_barrier.h 2;" d -_COMPAT_BASE64_H_ compat/compat_base64.h 2;" d -_COMPAT_BITS_HPP_ compat/compat_bits.hpp 2;" d -_COMPAT_BREAK_HPP_ compat/compat_break.hpp 2;" d -_COMPAT_CJSON_H_ compat/compat_cjson.h 2;" d -_COMPAT_COMMON_HPP_ compat/compat_common.hpp 2;" d -_COMPAT_COMUTIL_HPP_ compat/compat_comutil.hpp 2;" d -_COMPAT_COND_H_ compat/compat_cond.h 2;" d -_COMPAT_CORE_HPP_ compat/compat_core.hpp 2;" d -_COMPAT_DEBUG_HPP_ compat/compat_debug.hpp 2;" d -_COMPAT_DEFINE_H_ compat/compat_define.h 2;" d -_COMPAT_DEF_H_ compat/compat_def.h 2;" d -_COMPAT_DLL_H_ compat/compat_dll.h 2;" d -_COMPAT_ENDIAN_H compat/compat_endian.h 2;" d -_COMPAT_ERROR_H compat/compat_error.h 2;" d -_COMPAT_FILE_H_ compat/compat_file.h 2;" d -_COMPAT_GUID_HPP_ compat/compat_guid.hpp 2;" d -_COMPAT_GUID_H_ compat/compat_guid.h 2;" d -_COMPAT_INIT_H_ compat/compat_init.h 2;" d -_COMPAT_ITERATOR_H_ compat/compat_iterator.h 2;" d -_COMPAT_LIST_ compat/compat_list.h 2;" d -_COMPAT_LOG_H_ compat/compat_log.h 2;" d -_COMPAT_MD5_H_ compat/compat_md5.h 2;" d -_COMPAT_MEMORY_H_ compat/compat_memory.h 2;" d -_COMPAT_MSGHDR_H_ compat/compat_msghdr.h 2;" d -_COMPAT_MUTEX_H_ compat/compat_mutex.h 2;" d -_COMPAT_PATH_H_ compat/compat_path.h 2;" d -_COMPAT_PROCTL_H_ compat/compat_proctl.h 2;" d -_COMPAT_PTR_H_ compat/compat_funcb.h 2;" d -_COMPAT_QQUEUE_H_ compat/compat_qqueue.h 2;" d -_COMPAT_QUEUE_H_ compat/compat_queue.h 2;" d -_COMPAT_RWLOCK_H_ compat/compat_rwlock.h 2;" d -_COMPAT_SEM_H_ compat/compat_sem.h 2;" d -_COMPAT_SHA1_H_ compat/compat_sha1.h 2;" d -_COMPAT_SLEEP_HPP_ compat/compat_sleep.hpp 2;" d -_COMPAT_SOCKINET_H_ compat/compat_sockinet.h 2;" d -_COMPAT_SOCK_H_ compat/compat_sock.h 2;" d -_COMPAT_STDTIME_H_ compat/compat_stdtime.h 2;" d -_COMPAT_STR_H_ compat/compat_str.h 2;" d -_COMPAT_TARGETOS_HPP_ compat/compat_targetos.hpp 2;" d -_COMPAT_THREAD_H_ compat/compat_thread.h 2;" d -_COMPAT_TPID_HPP_ compat/compat_tpid.hpp 2;" d -_COMPAT_TSTRING_H_ compat/compat_tstring.h 2;" d -_COMPAT_UTF8_H_ compat/compat_utf8.h 2;" d -_COMPAT_UTIL_H_ compat/compat_util.h 2;" d -_COMPAT_VAR_H_ compat/compat_var.h 2;" d -_COMPAT_WSTR_H_ compat/compat_wstr.h 2;" d +_COLORREF_DEFINED crt/darwinossysdef.h 176;" d +_COLORREF_DEFINED crt/posixossysdef.h 169;" d +_COMUTILIY_ASYNIO_H_ include/comutiliy/asynio.h 2;" d +_COMUTILIY_CCHANNEL_HPP_ include/comutiliy/cchannel.hpp 2;" d +_COMUTILIY_SCHANNEL_HPP_ include/comutiliy/schannel.hpp 2;" d +_COMUTILIY_SERIALIZE_HPP_ include/comutiliy/serialize.hpp 2;" d _COM_FACTORY_HPP_ include/dlcom/comfactory.hpp 2;" d _COM_FUNC_HPP_ include/dlcom/comfunc.hpp 2;" d _COM_INC_H_ include/dlcom/cominc.h 2;" d @@ -10219,6 +9932,58 @@ _COM_SENTRY_HPP_ include/dlcom/comsentry.hpp 2;" d _CONSUMERIMPL_H_ msgbus/consumer.h 2;" d _CONTAINER_RUN_HPP_ include/dlcom/objectrun.hpp 2;" d _CORE_LICENSE_H_ extensions/include/platform/core/license.h 2;" d +_CRT_ARGV_H_ crt/crt_argv.h 2;" d +_CRT_ARRAY_H_ crt/crt_array.h 2;" d +_CRT_ASSERT_HPP_ crt/crt_assert.hpp 2;" d +_CRT_ATOMIC_H_ crt/crt_atomic.h 2;" d +_CRT_BARRIER_H_ crt/crt_barrier.h 2;" d +_CRT_BASE64_H_ crt/crt_base64.h 2;" d +_CRT_BITS_HPP_ crt/crt_bits.hpp 2;" d +_CRT_BREAK_HPP_ crt/crt_break.hpp 2;" d +_CRT_CJSON_H_ crt/crt_cjson.h 2;" d +_CRT_COMMON_HPP_ crt/crt_common.hpp 2;" d +_CRT_COMUTIL_HPP_ crt/crt_comutil.hpp 2;" d +_CRT_COND_H_ crt/crt_cond.h 2;" d +_CRT_CORE_HPP_ crt/crt_core.hpp 2;" d +_CRT_DEBUG_HPP_ crt/crt_debug.hpp 2;" d +_CRT_DEFINE_H_ crt/crt_define.h 2;" d +_CRT_DEF_H_ crt/crt_def.h 2;" d +_CRT_DL_H_ crt/crt_dl.h 2;" d +_CRT_ENDIAN_H crt/crt_endian.h 2;" d +_CRT_ERROR_H crt/crt_error.h 2;" d +_CRT_FILE_H_ crt/crt_file.h 2;" d +_CRT_GUID_HPP_ crt/crt_guid.hpp 2;" d +_CRT_GUID_H_ crt/crt_guid.h 2;" d +_CRT_INIT_H_ crt/crt_init.h 2;" d +_CRT_ITERATOR_H_ crt/crt_iterator.h 2;" d +_CRT_LIST_ crt/crt_list.h 2;" d +_CRT_LOG_H_ crt/crt_log.h 2;" d +_CRT_MD5_H_ crt/crt_md5.h 2;" d +_CRT_MEMORY_H_ crt/crt_memory.h 2;" d +_CRT_MSGHDR_H_ crt/crt_msghdr.h 2;" d +_CRT_MUTEX_H_ crt/crt_mutex.h 2;" d +_CRT_PATH_H_ crt/crt_path.h 2;" d +_CRT_PROCTL_H_ crt/crt_proctl.h 2;" d +_CRT_PTR_H_ crt/crt_funcb.h 2;" d +_CRT_QQUEUE_H_ crt/crt_qqueue.h 2;" d +_CRT_QUEUE_H_ crt/crt_queue.h 2;" d +_CRT_RWLOCK_H_ crt/crt_rwlock.h 2;" d +_CRT_SEM_H_ crt/crt_sem.h 2;" d +_CRT_SHA1_H_ crt/crt_sha1.h 2;" d +_CRT_SLEEP_HPP_ crt/crt_sleep.hpp 2;" d +_CRT_SOCKINET_H_ crt/crt_sockinet.h 2;" d +_CRT_SOCK_H_ crt/crt_sock.h 2;" d +_CRT_STDTIME_H_ crt/crt_stdtime.h 2;" d +_CRT_STR_H_ crt/crt_str.h 2;" d +_CRT_TARGETOS_HPP_ crt/crt_targetos.hpp 2;" d +_CRT_THREADPOOL_H_ crt/crt_threadpool.h 2;" d +_CRT_THREAD_H_ crt/crt_thread.h 2;" d +_CRT_TPID_HPP_ crt/crt_tpid.hpp 2;" d +_CRT_TSTRING_H_ crt/crt_tstring.h 2;" d +_CRT_UTF8_H_ crt/crt_utf8.h 2;" d +_CRT_UTIL_H_ crt/crt_util.h 2;" d +_CRT_VAR_H_ crt/crt_var.h 2;" d +_CRT_WSTR_H_ crt/crt_wstr.h 2;" d _CacheControl polipo/object.h /^typedef struct _CacheControl {$/;" s _Chunk polipo/object.h /^typedef struct _Chunk {$/;" s _ChunkArena polipo/chunk.c /^typedef struct _ChunkArena {$/;" s file: @@ -10229,9 +9994,9 @@ _ConfigVariable polipo/config.h /^typedef struct _ConfigVariable {$/;" s _ConnectRequest polipo/io.h /^typedef struct _ConnectRequest {$/;" s _Connect_Protocol msgbus/auth.hpp /^typedef struct _Connect_Protocol {$/;" s _CppSQLite3_H_ logs/CppSQLite3.h 29;" d -_DARWIN_OSDEF_H_ compat/darwinosdef.h 2;" d -_DARWIN_OSSYSDEF_H_ compat/darwinossysdef.h 2;" d -_DARWIN_SYSVAR_HPP_ compat/darwinsysvar.hpp 2;" d +_DARWIN_OSDEF_H_ crt/darwinosdef.h 2;" d +_DARWIN_OSSYSDEF_H_ crt/darwinossysdef.h 2;" d +_DARWIN_SYSVAR_HPP_ crt/darwinsysvar.hpp 2;" d _DBIMPL_H access/dbimpl.h 2;" d _DEFINE_GUID include/dlcom/id.hpp 6;" d _DEFINE_GUID_IMPL include/dlcom/id.hpp 13;" d @@ -10241,16 +10006,16 @@ _DIP_HPP_ uibase/uilib/dpi.hpp 2;" d _DNSIMPL_H_ net/dnsimpl.h 2;" d _DNS_H_ net/protocol/dns.h 2;" d _DWM_HPP_ uibase/uilib/dwm.hpp 2;" d -_DWORD_DEFINED compat/darwinossysdef.h 116;" d -_DWORD_DEFINED compat/posixossysdef.h 109;" d +_DWORD_DEFINED crt/darwinossysdef.h 116;" d +_DWORD_DEFINED crt/posixossysdef.h 109;" d _DiskCacheEntry polipo/diskcache.h /^typedef struct _DiskCacheEntry {$/;" s _DiskObject polipo/diskcache.h /^typedef struct _DiskObject {$/;" s _DnsQuery polipo/dns.c /^typedef struct _DnsQuery {$/;" s file: _Domain polipo/forbidden.c /^typedef struct _Domain {$/;" s file: _FIELDINFOIMPL_H_ access/fieldinfo.h 2;" d _FILEREADIMPL_H_ asynio/fileimpl.h 2;" d -_FILETIME compat/darwinossysdef.h /^typedef struct _FILETIME {$/;" s -_FILETIME compat/posixossysdef.h /^typedef struct _FILETIME {$/;" s +_FILETIME crt/darwinossysdef.h /^typedef struct _FILETIME {$/;" s +_FILETIME crt/posixossysdef.h /^typedef struct _FILETIME {$/;" s _FILE_OFFSET_BITS access/sqlite3.c 23456;" d file: _FILE_OFFSET_BITS access/sqlite3.c 7456;" d file: _FILE_OFFSET_BITS logs/sqlite3.c 23456;" d file: @@ -10269,28 +10034,27 @@ _FTS_COMPAT_H polipo/fts_compat.h 24;" d _FdEventHandler polipo/event.h /^typedef struct _FdEventHandler {$/;" s _FdEventHandlerPoke polipo/event.c /^typedef struct _FdEventHandlerPoke {$/;" s file: _GNU_SOURCE access/sqlite3.c 7694;" d file: -_GNU_SOURCE compat/compat_core.hpp 15;" d -_GNU_SOURCE compat/compat_core.hpp 28;" d +_GNU_SOURCE crt/crt_core.hpp 15;" d +_GNU_SOURCE crt/crt_core.hpp 28;" d _GNU_SOURCE logs/sqlite3.c 7694;" d file: _GNU_SOURCE polipo/ftsimport.c 2;" d file: _GNU_SOURCE polipo/md5import.c 2;" d file: _GNU_SOURCE polipo/polipo.h 24;" d -_GUID compat/compat_guid.hpp /^typedef struct _GUID {$/;" s -_GUIDDEF_H_ compat/compat_guid.hpp 26;" d +_GUID crt/crt_guid.hpp /^typedef struct _GUID {$/;" s +_GUIDDEF_H_ crt/crt_guid.hpp 26;" d _GethostbynameRequest polipo/dns.h /^typedef struct _GethostbynameRequest {$/;" s -_HFILE_DEFINED compat/darwinossysdef.h 158;" d -_HFILE_DEFINED compat/posixossysdef.h 151;" d -_HRESULT_DEFINED compat/compat_comutil.hpp 5;" d -_HTTPCREATORIMPL_H_ http/httpimpl.h 2;" d +_HFILE_DEFINED crt/darwinossysdef.h 158;" d +_HFILE_DEFINED crt/posixossysdef.h 151;" d +_HRESULT_DEFINED crt/crt_comutil.hpp 5;" d _HTTPCondition polipo/http.h /^typedef struct _HTTPCondition {$/;" s _HTTPConnection polipo/http.h /^typedef struct _HTTPConnection {$/;" s -_HTTPIMPL_H_ http/httptimpl.h 2;" d +_HTTPIMPL_H_ net/httptimpl.h 2;" d _HTTPRequest polipo/http.h /^typedef struct _HTTPRequest {$/;" s _HTTPServer polipo/server.h /^typedef struct _HTTPServer {$/;" s -_HTTPWARPRESP_H_ http/http/chttpparser.h 2;" d -_HTTPWARPRESP_H_ http/http/httputil.h 2;" d -_HTTP_CONTENT_TYPE_HPP_ http/http/http_content_type.hpp 2;" d -_HTTP_HEADER_HPP_ http/http/http_header.hpp 2;" d +_HTTPWARPRESP_H_ net/http_protocol/chttpparser.h 2;" d +_HTTPWARPRESP_H_ net/http_protocol/httputil.h 2;" d +_HTTP_CONTENT_TYPE_HPP_ net/http_protocol/http_content_type.hpp 2;" d +_HTTP_HEADER_HPP_ net/http_protocol/http_header.hpp 2;" d _HWTIME_H_ access/sqlite3.c 23709;" d file: _HWTIME_H_ access/sqlite3.c 31134;" d file: _HWTIME_H_ access/sqlite3.c 66821;" d file: @@ -10307,7 +10071,7 @@ _ID_HPP_ include/dlcom/id.hpp 2;" d _IFILE_H_ extensions/include/io/ifile.h 2;" d _IFONT_H_ extensions/include/ui/ifont.h 2;" d _IFRAME_H_ extensions/include/io/iframe.h 2;" d -_IHTTP_H_ extensions/include/http/ihttp.h 2;" d +_IHTTP_H_ extensions/include/net/ihttp.h 2;" d _IIODEVICE_H_ extensions/include/io/iiodevice.h 2;" d _IIOOPERATION_H_ extensions/include/io/ioperation.h 2;" d _ILANG_H_ extensions/include/ui/ilang.h 2;" d @@ -10324,7 +10088,6 @@ _IO_DGRAM_H_ 3rd/include/iodgram.hpp 2;" d _IO_STREAM_H_ 3rd/include/iostream.hpp 2;" d _IO_TCPACCEPT_H_ 3rd/include/iotcpaccept.hpp 2;" d _IO_TCP_H_ 3rd/include/iotcp.hpp 2;" d -_IO_THREADPOOL_H_ compat/compat_threadpool.h 2;" d _IO_TIMER_H_ 3rd/include/iotimer.hpp 2;" d _IO_UDP_H_ 3rd/include/ioudp.hpp 2;" d _IPARSER_H_ extensions/include/data/iparser.h 2;" d @@ -10342,7 +10105,7 @@ _IYANGCONTEXT_H_ extensions/include/data/iyangcontext.h 2;" d _Included_app_AppDispatch dispatch/app_AppDispatch.h 6;" d _IntList polipo/util.h /^typedef struct _IntList {$/;" s _IntRange polipo/util.h /^typedef struct _IntRange {$/;" s -_Is_BigLittle_Endian base/code/compat_endian.c /^int _Is_BigLittle_Endian()$/;" f +_Is_BigLittle_Endian stdcrt/code/compat_endian.c /^int _Is_BigLittle_Endian(void)$/;" f _Iter_cat uibase/uilib/core/pugixml.cpp /^ PUGI__FN std::bidirectional_iterator_tag _Iter_cat(const pugi::xml_attribute_iterator&)$/;" f namespace:std _Iter_cat uibase/uilib/core/pugixml.cpp /^ PUGI__FN std::bidirectional_iterator_tag _Iter_cat(const pugi::xml_named_node_iterator&)$/;" f namespace:std _Iter_cat uibase/uilib/core/pugixml.cpp /^ PUGI__FN std::bidirectional_iterator_tag _Iter_cat(const pugi::xml_node_iterator&)$/;" f namespace:std @@ -10355,31 +10118,31 @@ _LARGE_FILE access/sqlite3.c 23454;" d file: _LARGE_FILE access/sqlite3.c 7454;" d file: _LARGE_FILE logs/sqlite3.c 23454;" d file: _LARGE_FILE logs/sqlite3.c 7454;" d file: -_LARGE_INTEGER compat/darwinossysdef.h /^typedef struct _LARGE_INTEGER$/;" s -_LARGE_INTEGER compat/posixossysdef.h /^typedef struct _LARGE_INTEGER$/;" s -_LIST_ITEM_INITIALIZER compat/compat_list.h 108;" d -_LIST_NOTINLIST compat/compat_list.h 106;" d +_LARGE_INTEGER crt/darwinossysdef.h /^typedef struct _LARGE_INTEGER$/;" s +_LARGE_INTEGER crt/posixossysdef.h /^typedef struct _LARGE_INTEGER$/;" s +_LIST_ITEM_INITIALIZER crt/crt_list.h 108;" d +_LIST_NOTINLIST crt/crt_list.h 106;" d _LOAD_COM_HPP_ include/dlcom/loadcom.hpp 2;" d _LOAD_CONTAINER_H_ dispatch/src/loadcontainer.h 2;" d _LOGDATBASE_H_ logs/logdatabase.h 2;" d _LOGFILTERSIMPL_H_ logs/logfilters.h 2;" d _LOGSIMPL_H_ logs/logsimpl.h 2;" d -_LONG_DEFINED compat/darwinossysdef.h 106;" d -_LONG_DEFINED compat/posixossysdef.h 99;" d -_LPARAM_DEFINED compat/darwinossysdef.h 120;" d -_LPARAM_DEFINED compat/posixossysdef.h 113;" d -_LPCOLORREF_DEFINED compat/darwinossysdef.h 181;" d -_LPCOLORREF_DEFINED compat/posixossysdef.h 174;" d -_LPDWORD_DEFINED compat/darwinossysdef.h 169;" d -_LPDWORD_DEFINED compat/posixossysdef.h 162;" d -_LPWORD_DEFINED compat/darwinossysdef.h 163;" d -_LPWORD_DEFINED compat/posixossysdef.h 156;" d -_LRESULT_DEFINED compat/darwinossysdef.h 125;" d -_LRESULT_DEFINED compat/posixossysdef.h 118;" d +_LONG_DEFINED crt/darwinossysdef.h 106;" d +_LONG_DEFINED crt/posixossysdef.h 99;" d +_LPARAM_DEFINED crt/darwinossysdef.h 120;" d +_LPARAM_DEFINED crt/posixossysdef.h 113;" d +_LPCOLORREF_DEFINED crt/darwinossysdef.h 181;" d +_LPCOLORREF_DEFINED crt/posixossysdef.h 174;" d +_LPDWORD_DEFINED crt/darwinossysdef.h 169;" d +_LPDWORD_DEFINED crt/posixossysdef.h 162;" d +_LPWORD_DEFINED crt/darwinossysdef.h 163;" d +_LPWORD_DEFINED crt/posixossysdef.h 156;" d +_LRESULT_DEFINED crt/darwinossysdef.h 125;" d +_LRESULT_DEFINED crt/posixossysdef.h 118;" d _LingeringClose polipo/io.c /^typedef struct _LingeringClose {$/;" s file: _MAINRUN_H_ container/mainrun.h 2;" d -_MAX_PATH compat/darwinossysdef.h 293;" d -_MAX_PATH compat/posixossysdef.h 283;" d +_MAX_PATH crt/darwinossysdef.h 293;" d +_MAX_PATH crt/posixossysdef.h 283;" d _MD5IMPROT_H_ polipo/md5import.h 2;" d _MESSAGEIMPL_H_ container/msg.h 2;" d _MONITOR_DPI_TYPE uibase/uilib/dpi.hpp /^typedef enum _MONITOR_DPI_TYPE {$/;" g @@ -10395,7 +10158,7 @@ _NETIMPL_H_ net/netimpl.h 2;" d _NODE_H_ msgbus/node.h 2;" d _NetAddress polipo/io.h /^typedef struct _NetAddress {$/;" s _OBJECTLOADER_H_ container/objectloader.h 2;" d -_OFF_T_DEFINED compat/compat_common.hpp 5;" d +_OFF_T_DEFINED crt/crt_common.hpp 5;" d _OS_COMMON_H_ access/sqlite3.c 23660;" d file: _OS_COMMON_H_ access/sqlite3.c 31085;" d file: _OS_COMMON_H_ logs/sqlite3.c 23660;" d file: @@ -10403,14 +10166,14 @@ _OS_COMMON_H_ logs/sqlite3.c 31085;" d file: _Object polipo/object.h /^typedef struct _Object {$/;" s _PAGER_H_ access/sqlite3.c 9375;" d file: _PAGER_H_ logs/sqlite3.c 9375;" d file: -_PATH_RESCONF net/protocol/dns.cpp 31;" d file: +_PATH_RESCONF net/protocol/dns.c 31;" d file: _PLUGINITEM_H_ container/plugins.h 2;" d _PLUS_H_ include/utilex/plus.hpp 2;" d -_POINTL compat/darwinossysdef.h /^typedef struct _POINTL$/;" s -_POINTL compat/posixossysdef.h /^typedef struct _POINTL$/;" s -_POSIX_OSDEF_H_ compat/posixosdef.h 2;" d -_POSIX_OSSYSDEF_H_ compat/posixossysdef.h 2;" d -_POSIX_SYSVAR_HPP_ compat/posixsysvar.hpp 2;" d +_POINTL crt/darwinossysdef.h /^typedef struct _POINTL$/;" s +_POINTL crt/posixossysdef.h /^typedef struct _POINTL$/;" s +_POSIX_OSDEF_H_ crt/posixosdef.h 2;" d +_POSIX_OSSYSDEF_H_ crt/posixossysdef.h 2;" d +_POSIX_SYSVAR_HPP_ crt/posixsysvar.hpp 2;" d _PROCESS_DPI_AWARENESS uibase/uilib/dpi.hpp /^typedef enum _PROCESS_DPI_AWARENESS {$/;" g _PRODUCERIMPL_H_ msgbus/producer.h 2;" d _Parse uibase/uilib/core/uidlgbuilder.cpp /^CControlUI* CDlgBuilder::_Parse(CMarkupNode* pRoot, CControlUI* pParent, CPaintManagerUI* pManager)$/;" f class:DuiLib::CDlgBuilder @@ -10419,35 +10182,33 @@ _Parse uibase/uilib/core/uimarkup.cpp /^bool CMarkup::_Parse(LPTSTR& pstrText, U _ParseAttributes uibase/uilib/core/uimarkup.cpp /^bool CMarkup::_ParseAttributes(LPTSTR& pstrText)$/;" f class:DuiLib::CMarkup _ParseData uibase/uilib/core/uimarkup.cpp /^bool CMarkup::_ParseData(LPTSTR& pstrText, LPTSTR& pstrDest, char cEnd)$/;" f class:DuiLib::CMarkup _ParseMetaChar uibase/uilib/core/uimarkup.cpp /^void CMarkup::_ParseMetaChar(LPTSTR& pstrText, LPTSTR& pstrDest)$/;" f class:DuiLib::CMarkup -_QUEUE compat/compat_qqueue.h /^typedef void *_QUEUE[2];$/;" t -_QUEUE_ADD compat/compat_qqueue.h 33;" d -_QUEUE_DATA compat/compat_qqueue.h 13;" d -_QUEUE_EMPTY compat/compat_qqueue.h 20;" d -_QUEUE_FOREACH compat/compat_qqueue.h 17;" d -_QUEUE_HEAD compat/compat_qqueue.h 23;" d -_QUEUE_INIT compat/compat_qqueue.h 26;" d -_QUEUE_INSERT_HEAD compat/compat_qqueue.h 64;" d -_QUEUE_INSERT_TAIL compat/compat_qqueue.h 73;" d -_QUEUE_MOVE compat/compat_qqueue.h 53;" d -_QUEUE_NEXT compat/compat_qqueue.h 8;" d -_QUEUE_NEXT_PREV compat/compat_qqueue.h 11;" d -_QUEUE_PREV compat/compat_qqueue.h 9;" d -_QUEUE_PREV_NEXT compat/compat_qqueue.h 10;" d -_QUEUE_REMOVE compat/compat_qqueue.h 82;" d -_QUEUE_SPLIT compat/compat_qqueue.h 42;" d +_QUEUE crt/crt_qqueue.h /^typedef void *_QUEUE[2];$/;" t +_QUEUE_ADD crt/crt_qqueue.h 33;" d +_QUEUE_DATA crt/crt_qqueue.h 13;" d +_QUEUE_EMPTY crt/crt_qqueue.h 20;" d +_QUEUE_FOREACH crt/crt_qqueue.h 17;" d +_QUEUE_HEAD crt/crt_qqueue.h 23;" d +_QUEUE_INIT crt/crt_qqueue.h 26;" d +_QUEUE_INSERT_HEAD crt/crt_qqueue.h 64;" d +_QUEUE_INSERT_TAIL crt/crt_qqueue.h 73;" d +_QUEUE_MOVE crt/crt_qqueue.h 53;" d +_QUEUE_NEXT crt/crt_qqueue.h 8;" d +_QUEUE_NEXT_PREV crt/crt_qqueue.h 11;" d +_QUEUE_PREV crt/crt_qqueue.h 9;" d +_QUEUE_PREV_NEXT crt/crt_qqueue.h 10;" d +_QUEUE_REMOVE crt/crt_qqueue.h 82;" d +_QUEUE_SPLIT crt/crt_qqueue.h 42;" d _RECORDSET_H_ access/recordset.h 2;" d -_RECTL compat/darwinossysdef.h /^typedef struct _RECTL$/;" s -_RECTL compat/posixossysdef.h /^typedef struct _RECTL$/;" s -_REFCLSID_DEFINED compat/compat_guid.hpp 74;" d -_REFFMTID_DEFINED compat/compat_guid.hpp 83;" d -_REFGUID_DEFINED compat/compat_guid.hpp 56;" d -_REFIID_DEFINED compat/compat_guid.hpp 65;" d +_RECTL crt/darwinossysdef.h /^typedef struct _RECTL$/;" s +_RECTL crt/posixossysdef.h /^typedef struct _RECTL$/;" s +_REFCLSID_DEFINED crt/crt_guid.hpp 74;" d +_REFFMTID_DEFINED crt/crt_guid.hpp 83;" d +_REFGUID_DEFINED crt/crt_guid.hpp 56;" d +_REFIID_DEFINED crt/crt_guid.hpp 65;" d _RENDERIMPL_H_ render/renderimpl.h 2;" d _ROT_H_ container/rot.h 2;" d _RedirectRequest polipo/forbidden.h /^typedef struct _RedirectRequest {$/;" s _ReserveElement uibase/uilib/core/uimarkup.cpp /^CMarkup::XMLELEMENT* CMarkup::_ReserveElement()$/;" f class:DuiLib::CMarkup -_SCHANNEL_HPP_ include/comutiliy/schannel.hpp 2;" d -_SERIALIZE_HPP_ include/comutiliy/serialize.hpp 2;" d _SERVICES_LICENSE_H_ extensions/include/platform/services/license.hpp 2;" d _SHM_RDLCK access/sqlite3.c 34563;" d file: _SHM_RDLCK logs/sqlite3.c 34563;" d file: @@ -10476,14 +10237,13 @@ _SQLITE_OS_H_ access/sqlite3.c 9760;" d file: _SQLITE_OS_H_ logs/sqlite3.c 9760;" d file: _SQLITE_VDBE_H_ access/sqlite3.c 8938;" d file: _SQLITE_VDBE_H_ logs/sqlite3.c 8938;" d file: -_SSIZE_T_ compat/winosdef.h 16;" d +_SSIZE_T_ crt/winosdef.h 16;" d _STATEMENTIMPL_H_ access/statement.h 2;" d _STDAFX_H_ access/stdafx.h 7;" d _STDAFX_H_ asynio/stdafx.h 6;" d _STDAFX_H_ container/stdafx.h 7;" d _STDAFX_H_ dispatch/stdafx.h 7;" d _STDAFX_H_ guidgen/stdafx.h 7;" d -_STDAFX_H_ http/stdafx.h 7;" d _STDAFX_H_ license/stdafx.h 7;" d _STDAFX_H_ logs/stdafx.h 7;" d _STDAFX_H_ main/stdafx.h 7;" d @@ -10497,7 +10257,7 @@ _STDAFX_H_ res/stdafx.h 7;" d _STDAFX_H_ testmain/stdafx.h 7;" d _STDAFX_H_ uibase/stdafx.h 7;" d _STDCOM_OBJMAP_ENTRY include/dlcom/comfactory.hpp /^ typedef struct _STDCOM_OBJMAP_ENTRY{ $/;" s -_STR compat/compat_debug.hpp 15;" d +_STR crt/crt_debug.hpp 15;" d _STRINGUTIL_H_ access/stringutil.h 2;" d _SkipIdentifier uibase/uilib/core/uimarkup.cpp /^void CMarkup::_SkipIdentifier(LPCTSTR& pstr) const$/;" f class:DuiLib::CMarkup _SkipIdentifier uibase/uilib/core/uimarkup.cpp /^void CMarkup::_SkipIdentifier(LPTSTR& pstr) const$/;" f class:DuiLib::CMarkup @@ -10507,15 +10267,15 @@ _SocksRequest polipo/socks.h /^typedef struct _SocksRequest {$/;" s _SpecialRequest polipo/local.h /^typedef struct _SpecialRequest {$/;" s _StreamRequest polipo/io.h /^typedef struct _StreamRequest {$/;" s _StringPtr msgbus/auth.hpp /^typedef struct _StringPtr {$/;" s -_T compat/darwinossysdef.h 74;" d -_T compat/darwinossysdef.h 80;" d -_T compat/posixossysdef.h 67;" d -_T compat/posixossysdef.h 73;" d +_T crt/darwinossysdef.h 74;" d +_T crt/darwinossysdef.h 80;" d +_T crt/posixossysdef.h 67;" d +_T crt/posixossysdef.h 73;" d _TABLEINFOIMPL_H_ access/tableinfo.h 2;" d _TABLESTRUCT_H_ logs/tablestruct.h 2;" d _TCP_H_ net/protocol/tcp.h 2;" d _TIMEIMPL_H_ asynio/timerimpl.h 2;" d -_TOSTRING compat/compat_debug.hpp 8;" d +_TOSTRING crt/crt_debug.hpp 8;" d _TimeEventHandler polipo/event.h /^typedef struct _TimeEventHandler {$/;" s _Tunnel polipo/tunnel.h /^typedef struct _Tunnel {$/;" s _UDP_H_ net/protocol/udp.h 2;" d @@ -10526,8 +10286,8 @@ _UIDEFINE_H_ extensions/include/ui/uidefine.h 2;" d _UILIB_H_ uibase/uilib/uilib.h 2;" d _UIMESSAGELOOPIMPL_H_ uibase/uimessageloopimpl.h 2;" d _UIWINDOWIMPL_H_ uibase/uiwindowimpl.h 2;" d -_ULARGE_INTEGER compat/darwinossysdef.h /^typedef struct _ULARGE_INTEGER$/;" s -_ULARGE_INTEGER compat/posixossysdef.h /^typedef struct _ULARGE_INTEGER$/;" s +_ULARGE_INTEGER crt/darwinossysdef.h /^typedef struct _ULARGE_INTEGER$/;" s +_ULARGE_INTEGER crt/posixossysdef.h /^typedef struct _ULARGE_INTEGER$/;" s _UNKNOWN_H_ include/dlcom/unknown.h 2;" d _USEIMM uibase/uilib/core/uidefine.h 6;" d _USE_32BIT_TIME_T logs/stdafx.h 9;" d @@ -10551,21 +10311,20 @@ _UTILEX_UTIL_H_ include/utilex/util.h 2;" d _UTILEX__LOCKQUEUE_H_ include/utilex/lockqueue.hpp 2;" d _VDBEINT_H_ access/sqlite3.c 13586;" d file: _VDBEINT_H_ logs/sqlite3.c 13586;" d file: -_VISIBILITY_DEFAULT compat/compat_common.hpp 43;" d -_VISIBILITY_DEFAULT compat/compat_common.hpp 47;" d -_VISIBILITY_DEFAULT compat/compat_common.hpp 51;" d -_VISIBILITY_HIDDEN compat/compat_common.hpp 44;" d -_VISIBILITY_HIDDEN compat/compat_common.hpp 48;" d -_VISIBILITY_HIDDEN compat/compat_common.hpp 52;" d +_VISIBILITY_DEFAULT crt/crt_common.hpp 43;" d +_VISIBILITY_DEFAULT crt/crt_common.hpp 47;" d +_VISIBILITY_DEFAULT crt/crt_common.hpp 51;" d +_VISIBILITY_HIDDEN crt/crt_common.hpp 44;" d +_VISIBILITY_HIDDEN crt/crt_common.hpp 48;" d +_VISIBILITY_HIDDEN crt/crt_common.hpp 52;" d _WAL_H_ access/sqlite3.c 39295;" d file: _WAL_H_ logs/sqlite3.c 39295;" d file: -_WCHAR_DEFINED compat/darwinossysdef.h 58;" d -_WCHAR_DEFINED compat/posixossysdef.h 51;" d +_WCHAR_DEFINED crt/darwinossysdef.h 58;" d +_WCHAR_DEFINED crt/posixossysdef.h 51;" d _WEBSOCKETIMPL_H_ net/websocketimpl.h 2;" d _WIN32_IE access/targetver.h 23;" d _WIN32_IE container/targetver.h 23;" d _WIN32_IE dispatch/targetver.h 23;" d -_WIN32_IE http/targetver.h 23;" d _WIN32_IE license/targetver.h 23;" d _WIN32_IE logs/targetver.h 23;" d _WIN32_IE mainview/targetver.h 23;" d @@ -10579,7 +10338,6 @@ _WIN32_IE uibase/targetver.h 23;" d _WIN32_WINDOWS access/targetver.h 19;" d _WIN32_WINDOWS container/targetver.h 19;" d _WIN32_WINDOWS dispatch/targetver.h 19;" d -_WIN32_WINDOWS http/targetver.h 19;" d _WIN32_WINDOWS license/targetver.h 19;" d _WIN32_WINDOWS logs/targetver.h 19;" d _WIN32_WINDOWS mainview/targetver.h 19;" d @@ -10593,7 +10351,6 @@ _WIN32_WINDOWS uibase/targetver.h 19;" d _WIN32_WINNT access/targetver.h 15;" d _WIN32_WINNT container/targetver.h 15;" d _WIN32_WINNT dispatch/targetver.h 15;" d -_WIN32_WINNT http/targetver.h 15;" d _WIN32_WINNT license/targetver.h 15;" d _WIN32_WINNT logs/targetver.h 15;" d _WIN32_WINNT mainview/targetver.h 15;" d @@ -10604,13 +10361,13 @@ _WIN32_WINNT polipo/mingw.h 45;" d _WIN32_WINNT render/targetver.h 15;" d _WIN32_WINNT res/targetver.h 15;" d _WIN32_WINNT uibase/targetver.h 15;" d -_WIN_OSDEF_H_ compat/winosdef.h 2;" d -_WIN_OSSYSDEF_H_ compat/winossysdef.h 2;" d -_WIN_SYSVAR_HPP_ compat/winsysvar.hpp 2;" d -_WORD_DEFINED compat/darwinossysdef.h 100;" d -_WORD_DEFINED compat/posixossysdef.h 93;" d -_WPARAM_DEFINED compat/darwinossysdef.h 111;" d -_WPARAM_DEFINED compat/posixossysdef.h 104;" d +_WIN_OSDEF_H_ crt/winosdef.h 2;" d +_WIN_OSSYSDEF_H_ crt/winossysdef.h 2;" d +_WIN_SYSVAR_HPP_ crt/winsysvar.hpp 2;" d +_WORD_DEFINED crt/darwinossysdef.h 100;" d +_WORD_DEFINED crt/posixossysdef.h 93;" d +_WPARAM_DEFINED crt/darwinossysdef.h 111;" d +_WPARAM_DEFINED crt/posixossysdef.h 104;" d _XOPEN_SOURCE access/sqlite3.c 7826;" d file: _XOPEN_SOURCE logs/sqlite3.c 7826;" d file: __ControlProc uibase/uilib/core/uibase.cpp /^LRESULT CALLBACK CWindowWnd::__ControlProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::CWindowWnd @@ -10622,11 +10379,11 @@ __FindControlFromShortcut uibase/uilib/core/uimanager.cpp /^CControlUI* CALLBACK __FindControlFromTab uibase/uilib/core/uimanager.cpp /^CControlUI* CALLBACK CPaintManagerUI::__FindControlFromTab(CControlUI* pThis, LPVOID pData)$/;" f class:DuiLib::CPaintManagerUI __FindControlsFromClass uibase/uilib/core/uimanager.cpp /^CControlUI* CALLBACK CPaintManagerUI::__FindControlsFromClass(CControlUI* pThis, LPVOID pData)$/;" f class:DuiLib::CPaintManagerUI __FindControlsFromUpdate uibase/uilib/core/uimanager.cpp /^CControlUI* CALLBACK CPaintManagerUI::__FindControlsFromUpdate(CControlUI* pThis, LPVOID pData)$/;" f class:DuiLib::CPaintManagerUI -__IID_DEFINED__ compat/compat_guid.hpp 39;" d -__LPCGUID_DEFINED__ compat/compat_guid.hpp 34;" d -__LPGUID_DEFINED__ compat/compat_guid.hpp 29;" d -__STDC_CONSTANT_MACROS compat/compat_core.hpp 19;" d -__STDC_LIMIT_MACROS compat/compat_core.hpp 23;" d +__IID_DEFINED__ crt/crt_guid.hpp 39;" d +__LPCGUID_DEFINED__ crt/crt_guid.hpp 34;" d +__LPGUID_DEFINED__ crt/crt_guid.hpp 29;" d +__STDC_CONSTANT_MACROS crt/crt_core.hpp 19;" d +__STDC_LIMIT_MACROS crt/crt_core.hpp 23;" d __UIBASE_H__ uibase/uilib/core/uibase.h 2;" d __UIBUTTON_H__ uibase/uilib/control/uibutton.h 2;" d __UICHECKBOX_H__ uibase/uilib/control/uicheckbox.h 2;" d @@ -10654,18 +10411,18 @@ __UITEXT_H__ uibase/uilib/control/uitext.h 2;" d __UITILELAYOUT_H__ uibase/uilib/layout/uitilelayout.h 2;" d __UITREEVIEW_H__ uibase/uilib/control/uitreeview.h 2;" d __UIVERTICALLAYOUT_H__ uibase/uilib/layout/uiverticallayout.h 2;" d -__USE_UNIX98 compat/compat_core.hpp 32;" d +__USE_UNIX98 crt/crt_core.hpp 32;" d __UTILS_H__ uibase/uilib/utils/utils.h 2;" d -__WINDOWS__ compat/compat_cjson.h 65;" d +__WINDOWS__ crt/crt_cjson.h 65;" d __WndProc uibase/uilib/core/uibase.cpp /^LRESULT CALLBACK CWindowWnd::__WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)$/;" f class:DuiLib::CWindowWnd -__aligned compat/compat_common.hpp 34;" d -__ascii_iswalpha compat/compat_define.h 12;" d -__ascii_iswdigit compat/compat_define.h 13;" d -__ascii_tolower compat/compat_define.h 14;" d -__ascii_toupper compat/compat_define.h 15;" d -__ascii_towlower compat/compat_wstr.h 10;" d -__ascii_towupper compat/compat_wstr.h 11;" d -__attribute__ compat/compat_common.hpp 22;" d +__aligned crt/crt_common.hpp 34;" d +__ascii_iswalpha crt/crt_define.h 12;" d +__ascii_iswdigit crt/crt_define.h 13;" d +__ascii_tolower crt/crt_define.h 14;" d +__ascii_toupper crt/crt_define.h 15;" d +__ascii_towlower crt/crt_wstr.h 10;" d +__ascii_towupper crt/crt_wstr.h 11;" d +__attribute__ crt/crt_common.hpp 22;" d __declspec access/sqlite3.c /^ __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){$/;" f __declspec access/sqlite3.c /^__declspec(dllexport)$/;" f __declspec logs/sqlite3.c /^ __declspec(naked) __inline sqlite_uint64 __cdecl sqlite3Hwtime(void){$/;" f @@ -10675,29 +10432,29 @@ __init__ bin/main.py /^ def __init__(self): $/;" m class:guestlist __iterator_category uibase/uilib/core/pugixml.cpp /^ PUGI__FN std::bidirectional_iterator_tag __iterator_category(const pugi::xml_attribute_iterator&)$/;" f namespace:std __iterator_category uibase/uilib/core/pugixml.cpp /^ PUGI__FN std::bidirectional_iterator_tag __iterator_category(const pugi::xml_named_node_iterator&)$/;" f namespace:std __iterator_category uibase/uilib/core/pugixml.cpp /^ PUGI__FN std::bidirectional_iterator_tag __iterator_category(const pugi::xml_node_iterator&)$/;" f namespace:std -_aligned compat/compat_common.hpp 29;" d -_aligned compat/compat_common.hpp 31;" d +_aligned crt/crt_common.hpp 29;" d +_aligned crt/crt_common.hpp 31;" d _alloc uibase/uilib/core/pugixml.cpp /^ xpath_allocator* _alloc;$/;" m struct:xpath_parser file: _assign uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xpath_node_set::_assign(const_iterator begin_, const_iterator end_, type_t type_)$/;" f class:pugi::xpath_node_set _assign uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xpath_variable_set::_assign(const xpath_variable_set& rhs)$/;" f class:pugi::xpath_variable_set -_atomic_add base/stdlib/compat_atomic.c /^atomic_type _atomic_add(_atomic_t *self)$/;" f -_atomic_cas base/stdlib/compat_atomic.c /^atomic_type _atomic_cas(_atomic_t *self, atomic_type oldval, atomic_type newval)$/;" f -_atomic_del base/stdlib/compat_atomic.c /^atomic_type _atomic_del(_atomic_t *self)$/;" f -_atomic_init base/stdlib/compat_atomic.c /^atomic_type _atomic_init(_atomic_t *self)$/;" f -_atomic_s compat/compat_atomic.h /^struct _atomic_s {$/;" s -_atomic_set base/stdlib/compat_atomic.c /^void _atomic_set(_atomic_t *self, void *value)$/;" f -_atomic_t compat/compat_atomic.h /^typedef struct _atomic_s _atomic_t;$/;" t typeref:struct:_atomic_s -_atomic_uninit base/stdlib/compat_atomic.c /^atomic_type _atomic_uninit(_atomic_t *self)$/;" f -_atomic_xchg base/stdlib/compat_atomic.c /^void _atomic_xchg(_atomic_t *self, void *value)$/;" f +_atomic_add stdcrt/stdlib/compat_atomic.c /^atomic_type _atomic_add(_atomic_t *self)$/;" f +_atomic_cas stdcrt/stdlib/compat_atomic.c /^atomic_type _atomic_cas(_atomic_t *self, atomic_type oldval, atomic_type newval)$/;" f +_atomic_del stdcrt/stdlib/compat_atomic.c /^atomic_type _atomic_del(_atomic_t *self)$/;" f +_atomic_init stdcrt/stdlib/compat_atomic.c /^atomic_type _atomic_init(_atomic_t *self)$/;" f +_atomic_s crt/crt_atomic.h /^struct _atomic_s {$/;" s +_atomic_set stdcrt/stdlib/compat_atomic.c /^void _atomic_set(_atomic_t *self, void *value)$/;" f +_atomic_t crt/crt_atomic.h /^typedef struct _atomic_s _atomic_t;$/;" t typeref:struct:_atomic_s +_atomic_uninit stdcrt/stdlib/compat_atomic.c /^atomic_type _atomic_uninit(_atomic_t *self)$/;" f +_atomic_xchg stdcrt/stdlib/compat_atomic.c /^void _atomic_xchg(_atomic_t *self, void *value)$/;" f _attr uibase/uilib/core/pugixml.hpp /^ xml_attribute_struct* _attr;$/;" m class:pugi::xml_attribute _attribute uibase/uilib/core/pugixml.hpp /^ xml_attribute _attribute;$/;" m class:pugi::xpath_node _axis uibase/uilib/core/pugixml.cpp /^ char _axis;$/;" m class:xpath_ast_node file: -_barrier_destroy base/thread/compat_barrier.c /^void _barrier_destroy(_barrier_t* barrier) {$/;" f -_barrier_init base/thread/compat_barrier.c /^int _barrier_init(_barrier_t* barrier, unsigned int count) {$/;" f -_barrier_t compat/darwinsysvar.hpp /^}_barrier_t;$/;" t typeref:struct:__anon32 -_barrier_t compat/posixsysvar.hpp /^} _barrier_t;$/;" t typeref:struct:__anon34 -_barrier_t compat/winsysvar.hpp /^}_barrier_t;$/;" t typeref:struct:__anon38 -_barrier_wait base/thread/compat_barrier.c /^int _barrier_wait(_barrier_t* barrier) {$/;" f +_barrier_destroy stdcrt/thread/compat_barrier.c /^void _barrier_destroy(_barrier_t* barrier) {$/;" f +_barrier_init stdcrt/thread/compat_barrier.c /^int _barrier_init(_barrier_t* barrier, unsigned int count) {$/;" f +_barrier_t crt/darwinsysvar.hpp /^}_barrier_t;$/;" t typeref:struct:__anon31 +_barrier_t crt/posixsysvar.hpp /^} _barrier_t;$/;" t typeref:struct:__anon28 +_barrier_t crt/winsysvar.hpp /^}_barrier_t;$/;" t typeref:struct:__anon35 +_barrier_wait stdcrt/thread/compat_barrier.c /^int _barrier_wait(_barrier_t* barrier) {$/;" f _base container/stdafx.h /^ typedef std::vector<_Ty> _base;$/;" t class:SortVector _base include/utilex/lockqueue.hpp /^ typedef std::queue<_Ty> _base;$/;" t class:CLockQueue _begin uibase/uilib/core/pugixml.cpp /^ xpath_node* _begin;$/;" m class:xpath_node_set_raw file: @@ -10708,21 +10465,21 @@ _buffer uibase/uilib/core/pugixml.hpp /^ char_t* _buffer;$/;" m class:pugi::xml _busy_size uibase/uilib/core/pugixml.cpp /^ size_t _busy_size;$/;" m struct:xml_allocator file: _capacity uibase/uilib/core/pugixml.cpp /^ size_t _capacity;$/;" m class:compact_hash_table file: _clone uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xpath_variable_set::_clone(xpath_variable* var, xpath_variable** out_result)$/;" f class:pugi::xpath_variable_set -_closesock base/net/compat_sock.c /^int _closesock(_sock_t s)$/;" f -_cond_broadcast base/thread/compat_cond.c /^void _cond_broadcast(_cond_t* cond) {$/;" f -_cond_destroy base/thread/compat_cond.c /^void _cond_destroy(_cond_t* cond) {$/;" f -_cond_init base/thread/compat_cond.c /^int _cond_init(_cond_t* cond, int relative) {$/;" f -_cond_signal base/thread/compat_cond.c /^void _cond_signal(_cond_t* cond) {$/;" f -_cond_t compat/darwinsysvar.hpp /^}_cond_t;$/;" t typeref:struct:__anon31 -_cond_t compat/posixsysvar.hpp /^}_cond_t;$/;" t typeref:struct:__anon33 -_cond_t compat/winsysvar.hpp /^}_cond_t;$/;" t typeref:struct:__anon35 -_cond_timedwait base/thread/compat_cond.c /^int _cond_timedwait(_cond_t* cond, _mutex_t* mutex, unsigned long ms) {$/;" f -_cond_timedwait base/thread/compat_cond.c /^int _cond_timedwait(_cond_t* cond, _mutex_t* mutex, unsigned long ms) {$/;" f -_cond_wait base/thread/compat_cond.c /^void _cond_wait(_cond_t* cond, _mutex_t* mutex) {$/;" f -_container_of compat/compat_def.h 42;" d +_closesock stdcrt/net/compat_sock.c /^int _closesock(_sock_t s)$/;" f +_cond_broadcast stdcrt/thread/compat_cond.c /^void _cond_broadcast(_cond_t* cond) {$/;" f +_cond_destroy stdcrt/thread/compat_cond.c /^void _cond_destroy(_cond_t* cond) {$/;" f +_cond_init stdcrt/thread/compat_cond.c /^int _cond_init(_cond_t* cond, int relative) {$/;" f +_cond_signal stdcrt/thread/compat_cond.c /^void _cond_signal(_cond_t* cond) {$/;" f +_cond_t crt/darwinsysvar.hpp /^}_cond_t;$/;" t typeref:struct:__anon30 +_cond_t crt/posixsysvar.hpp /^}_cond_t;$/;" t typeref:struct:__anon27 +_cond_t crt/winsysvar.hpp /^}_cond_t;$/;" t typeref:struct:__anon32 +_cond_timedwait stdcrt/thread/compat_cond.c /^int _cond_timedwait(_cond_t* cond, _mutex_t* mutex, unsigned long ms) {$/;" f +_cond_timedwait stdcrt/thread/compat_cond.c /^int _cond_timedwait(_cond_t* cond, _mutex_t* mutex, unsigned long ms) {$/;" f +_cond_wait stdcrt/thread/compat_cond.c /^void _cond_wait(_cond_t* cond, _mutex_t* mutex) {$/;" f +_container_of crt/crt_def.h 42;" d _count uibase/uilib/core/pugixml.cpp /^ size_t _count;$/;" m class:compact_hash_table file: _create uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xml_document::_create()$/;" f class:pugi::xml_document -_createsock base/net/compat_sock.c /^_sock_t _createsock($/;" f +_createsock stdcrt/net/compat_sock.c /^_sock_t _createsock($/;" f _cur uibase/uilib/core/pugixml.cpp /^ const char_t* _cur;$/;" m class:xpath_lexer file: _cur_lexeme uibase/uilib/core/pugixml.cpp /^ lexeme_t _cur_lexeme;$/;" m class:xpath_lexer file: _cur_lexeme_contents uibase/uilib/core/pugixml.cpp /^ xpath_lexer_string _cur_lexeme_contents;$/;" m class:xpath_lexer file: @@ -10730,7 +10487,7 @@ _cur_lexeme_pos uibase/uilib/core/pugixml.cpp /^ const char_t* _cur_lexeme_pos; _data uibase/uilib/core/pugixml.cpp /^ uint16_t _data;$/;" m class:compact_pointer_parent file: _data uibase/uilib/core/pugixml.cpp /^ unsigned char _data;$/;" m class:compact_pointer file: _data uibase/uilib/core/pugixml.cpp /^ unsigned char _data;$/;" m class:compact_string file: -_data uibase/uilib/core/pugixml.cpp /^ } _data;$/;" m class:xpath_ast_node typeref:union:xpath_ast_node::__anon96 file: +_data uibase/uilib/core/pugixml.cpp /^ } _data;$/;" m class:xpath_ast_node typeref:union:xpath_ast_node::__anon99 file: _data uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node_struct* xml_text::_data() const$/;" f class:pugi::xml_text _data uibase/uilib/core/pugixml.hpp /^ xpath_variable* _data[64];$/;" m class:pugi::xpath_variable_set _data_new uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node_struct* xml_text::_data_new()$/;" f class:pugi::xml_text @@ -10745,103 +10502,104 @@ _end uibase/uilib/core/pugixml.hpp /^ It _begin, _end;$/;" m class:pugi::xml_ob _end uibase/uilib/core/pugixml.hpp /^ xpath_node* _end;$/;" m class:pugi::xpath_node_set _eos uibase/uilib/core/pugixml.cpp /^ xpath_node* _eos;$/;" m class:xpath_node_set_raw file: _error uibase/uilib/core/pugixml.cpp /^ bool* _error;$/;" m struct:xpath_allocator file: -_fd_size compat/compat_file.h /^ typedef long _fd_size;$/;" t -_fd_size compat/compat_file.h /^ typedef long long _fd_size;$/;" t -_fd_t compat/compat_file.h /^ typedef HANDLE _fd_t;$/;" t -_fd_t compat/compat_file.h /^ typedef int _fd_t;$/;" t -_file_close base/io/compat_file.c /^int _file_close(_fd_t fh)$/;" f -_file_fsize base/io/compat_file.c /^int64_t _file_fsize(_fd_t fh)$/;" f -_file_lseek base/io/compat_file.c /^_fd_size _file_lseek(_fd_t fh, _off_t offset, int whence)$/;" f -_file_open base/io/compat_file.c /^_fd_t _file_open(const TCHAR *filepath, int flags, int mode)$/;" f -_file_open base/io/compat_file.c /^_fd_t _file_open(const basic_tchar *filepath, int flags, int mode)$/;" f -_file_read base/io/compat_file.c /^int _file_read(_fd_t fh, void *buf, size_t size)$/;" f -_file_write base/io/compat_file.c /^int _file_write(_fd_t fh, const void *buf, size_t size)$/;" f +_fd_size crt/crt_file.h /^ typedef long _fd_size;$/;" t +_fd_size crt/crt_file.h /^ typedef long long _fd_size;$/;" t +_fd_size crt/crt_file.h /^ typedef long long _fd_size;$/;" t +_fd_t crt/crt_file.h /^ typedef int _fd_t;$/;" t +_fd_t crt/crt_file.h /^ typedef HANDLE _fd_t;$/;" t +_file_close stdcrt/io/compat_file.c /^int _file_close(_fd_t fh)$/;" f +_file_fsize stdcrt/io/compat_file.c /^int64_t _file_fsize(_fd_t fh)$/;" f +_file_lseek stdcrt/io/compat_file.c /^_fd_size _file_lseek(_fd_t fh, _off_t offset, int whence)$/;" f +_file_open stdcrt/io/compat_file.c /^_fd_t _file_open(const TCHAR *filepath, int flags, int mode)$/;" f +_file_open stdcrt/io/compat_file.c /^_fd_t _file_open(const basic_tchar *filepath, int flags, int mode)$/;" f +_file_read stdcrt/io/compat_file.c /^int _file_read(_fd_t fh, void *buf, size_t size)$/;" f +_file_write stdcrt/io/compat_file.c /^int _file_write(_fd_t fh, const void *buf, size_t size)$/;" f _find uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_variable* xpath_variable_set::_find(const char_t* name) const$/;" f class:pugi::xpath_variable_set _flags uibase/uilib/core/pugixml.cpp /^ unsigned char _flags;$/;" m class:compact_header file: _fts3ht access/sqlite3.c /^ struct _fts3ht { \/* the hash table *\/$/;" s struct:Fts3Hash file: _fts3ht logs/sqlite3.c /^ struct _fts3ht { \/* the hash table *\/$/;" s struct:Fts3Hash file: -_gettimeofday base/stdlib/compat_stdtime.c /^int _gettimeofday(struct timeval * tp, struct timezone * tzp)$/;" f +_gettimeofday stdcrt/stdlib/compat_stdtime.c /^int _gettimeofday(struct timeval * tp, struct timezone * tzp)$/;" f _hash uibase/uilib/core/pugixml.cpp /^ compact_hash_table* _hash;$/;" m struct:xml_allocator file: _ht access/sqlite3.c /^ struct _ht { \/* the hash table *\/$/;" s struct:Hash file: _ht logs/sqlite3.c /^ struct _ht { \/* the hash table *\/$/;" s struct:Hash file: _impl uibase/uilib/core/pugixml.hpp /^ void* _impl;$/;" m class:pugi::xpath_query -_inet_addr_v4 base/net/compat_sockinet.c /^unsigned int _inet_addr_v4(const char* ip)$/;" f -_inet_ntop base/net/compat_sockinet.c /^char* _inet_ntop(int af, const void *src, char *buf, size_t size)$/;" f -_inet_pton base/net/compat_sockinet.c /^int _inet_pton(int af, const char *src, void *dst) $/;" f -_ipv4_addr_valid base/net/compat_sockinet.c /^int _ipv4_addr_valid(const char *addr)$/;" f -_is_ip base/net/compat_sockinet.c /^int _is_ip(const char *ip)$/;" f -_is_ipv4 base/net/compat_sockinet.c /^int _is_ipv4(const char *ip)$/;" f -_is_ipv6 base/net/compat_sockinet.c /^int _is_ipv6(const char *ip)$/;" f +_inet_addr_v4 stdcrt/net/compat_sockinet.c /^unsigned int _inet_addr_v4(const char* ip)$/;" f +_inet_ntop stdcrt/net/compat_sockinet.c /^char* _inet_ntop(int af, const void *src, char *buf, size_t size)$/;" f +_inet_pton stdcrt/net/compat_sockinet.c /^int _inet_pton(int af, const char *src, void *dst) $/;" f +_ipv4_addr_valid stdcrt/net/compat_sockinet.c /^int _ipv4_addr_valid(const char *addr)$/;" f +_is_ip stdcrt/net/compat_sockinet.c /^int _is_ip(const char *ip)$/;" f +_is_ipv4 stdcrt/net/compat_sockinet.c /^int _is_ipv4(const char *ip)$/;" f +_is_ipv6 stdcrt/net/compat_sockinet.c /^int _is_ipv6(const char *ip)$/;" f _items uibase/uilib/core/pugixml.cpp /^ item_t* _items;$/;" m class:compact_hash_table file: _lComPtr include/dlcom/comsentry.hpp 51;" d _left uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* _left;$/;" m class:xpath_ast_node file: _length_heap uibase/uilib/core/pugixml.cpp /^ size_t _length_heap;$/;" m class:xpath_string file: _lexer uibase/uilib/core/pugixml.cpp /^ xpath_lexer _lexer;$/;" m struct:xpath_parser file: -_list_begin base/stdlib/compat_list.c /^struct _list_item *_list_begin (struct _list_s *self)$/;" f -_list_empty base/stdlib/compat_list.c /^int _list_empty (struct _list_s *self)$/;" f -_list_end base/stdlib/compat_list.c /^struct _list_item *_list_end (struct _list_s *self)$/;" f -_list_erase base/stdlib/compat_list.c /^struct _list_item *_list_erase (struct _list_s *self,$/;" f -_list_init base/stdlib/compat_list.c /^void _list_init (struct _list_s *self)$/;" f -_list_insert base/stdlib/compat_list.c /^void _list_insert (struct _list_s *self, struct _list_item *item,$/;" f -_list_item compat/compat_list.h /^struct _list_item {$/;" s -_list_item_init base/stdlib/compat_list.c /^void _list_item_init (struct _list_item *self)$/;" f -_list_item_isinlist base/stdlib/compat_list.c /^int _list_item_isinlist (struct _list_item *self)$/;" f -_list_item_term base/stdlib/compat_list.c /^void _list_item_term (struct _list_item *self)$/;" f -_list_next base/stdlib/compat_list.c /^struct _list_item *_list_next (_unused struct _list_s *self,$/;" f -_list_prev base/stdlib/compat_list.c /^struct _list_item *_list_prev (struct _list_s *self,$/;" f -_list_s compat/compat_list.h /^struct _list_s {$/;" s -_list_term base/stdlib/compat_list.c /^void _list_term (struct _list_s *self)$/;" f -_localtime_t base/stdlib/compat_stdtime.c /^struct tm* _localtime_t(const time_t *timep, struct tm *result)$/;" f -_log_print base/compat_log.c /^static int _log_print(int proi,$/;" f file: -_max compat/compat_core.hpp 93;" d +_list_begin stdcrt/stdlib/compat_list.c /^struct _list_item *_list_begin (struct _list_s *self)$/;" f +_list_empty stdcrt/stdlib/compat_list.c /^int _list_empty (struct _list_s *self)$/;" f +_list_end stdcrt/stdlib/compat_list.c /^struct _list_item *_list_end (struct _list_s *self)$/;" f +_list_erase stdcrt/stdlib/compat_list.c /^struct _list_item *_list_erase (struct _list_s *self,$/;" f +_list_init stdcrt/stdlib/compat_list.c /^void _list_init (struct _list_s *self)$/;" f +_list_insert stdcrt/stdlib/compat_list.c /^void _list_insert (struct _list_s *self, struct _list_item *item,$/;" f +_list_item crt/crt_list.h /^struct _list_item {$/;" s +_list_item_init stdcrt/stdlib/compat_list.c /^void _list_item_init (struct _list_item *self)$/;" f +_list_item_isinlist stdcrt/stdlib/compat_list.c /^int _list_item_isinlist (struct _list_item *self)$/;" f +_list_item_term stdcrt/stdlib/compat_list.c /^void _list_item_term (struct _list_item *self)$/;" f +_list_next stdcrt/stdlib/compat_list.c /^struct _list_item *_list_next (_unused struct _list_s *self,$/;" f +_list_prev stdcrt/stdlib/compat_list.c /^struct _list_item *_list_prev (struct _list_s *self,$/;" f +_list_s crt/crt_list.h /^struct _list_s {$/;" s +_list_term stdcrt/stdlib/compat_list.c /^void _list_term (struct _list_s *self)$/;" f +_localtime_t stdcrt/stdlib/compat_stdtime.c /^struct tm* _localtime_t(const time_t *timep, struct tm *result)$/;" f +_log_print stdcrt/compat_log.c /^static int _log_print(int proi,$/;" f file: +_max crt/crt_core.hpp 93;" d _memory uibase/uilib/core/pugixml.hpp /^ char _memory[192];$/;" m class:pugi::xml_document -_min compat/compat_core.hpp 94;" d -_mutex_destroy base/thread/compat_mutex.c /^void _mutex_destroy(_mutex_t* mutex) {$/;" f -_mutex_init base/thread/compat_mutex.c /^int _mutex_init(_mutex_t* mutex) {$/;" f -_mutex_init_recursive base/thread/compat_mutex.c /^int _mutex_init_recursive(_mutex_t* mutex) {$/;" f -_mutex_init_recursive base/thread/compat_mutex.c /^int _mutex_init_recursive(_mutex_t* mutex) {$/;" f -_mutex_init_recursive base/thread/compat_mutex.c /^int _mutex_init_recursive(_mutex_t* mutex) {$/;" f -_mutex_lock base/thread/compat_mutex.c /^void _mutex_lock(_mutex_t* mutex) {$/;" f -_mutex_t compat/darwinsysvar.hpp /^typedef pthread_mutex_t _mutex_t;$/;" t -_mutex_t compat/posixsysvar.hpp /^typedef pthread_mutex_t _mutex_t;$/;" t -_mutex_t compat/winsysvar.hpp /^typedef CRITICAL_SECTION _mutex_t;$/;" t -_mutex_trylock base/thread/compat_mutex.c /^int _mutex_trylock(_mutex_t* mutex) {$/;" f -_mutex_unlock base/thread/compat_mutex.c /^void _mutex_unlock(_mutex_t* mutex) {$/;" f +_min crt/crt_core.hpp 94;" d +_mutex_destroy stdcrt/thread/compat_mutex.c /^void _mutex_destroy(_mutex_t* mutex) {$/;" f +_mutex_init stdcrt/thread/compat_mutex.c /^int _mutex_init(_mutex_t* mutex) {$/;" f +_mutex_init_recursive stdcrt/thread/compat_mutex.c /^int _mutex_init_recursive(_mutex_t* mutex) {$/;" f +_mutex_init_recursive stdcrt/thread/compat_mutex.c /^int _mutex_init_recursive(_mutex_t* mutex) {$/;" f +_mutex_init_recursive stdcrt/thread/compat_mutex.c /^int _mutex_init_recursive(_mutex_t* mutex) {$/;" f +_mutex_lock stdcrt/thread/compat_mutex.c /^void _mutex_lock(_mutex_t* mutex) {$/;" f +_mutex_t crt/darwinsysvar.hpp /^typedef pthread_mutex_t _mutex_t;$/;" t +_mutex_t crt/posixsysvar.hpp /^typedef pthread_mutex_t _mutex_t;$/;" t +_mutex_t crt/winsysvar.hpp /^typedef CRITICAL_SECTION _mutex_t;$/;" t +_mutex_trylock stdcrt/thread/compat_mutex.c /^int _mutex_trylock(_mutex_t* mutex) {$/;" f +_mutex_unlock stdcrt/thread/compat_mutex.c /^void _mutex_unlock(_mutex_t* mutex) {$/;" f _name uibase/uilib/core/pugixml.hpp /^ const char_t* _name;$/;" m class:pugi::xml_named_node_iterator _next uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* _next;$/;" m class:xpath_ast_node file: _next uibase/uilib/core/pugixml.hpp /^ xpath_variable* _next;$/;" m class:pugi::xpath_variable _node uibase/uilib/core/pugixml.hpp /^ xml_node _node;$/;" m class:pugi::xpath_node -_off_t compat/compat_common.hpp /^ typedef long _off_t; $/;" t +_off_t crt/crt_common.hpp /^ typedef long _off_t; $/;" t _page uibase/uilib/core/pugixml.cpp /^ unsigned char _page;$/;" m class:compact_header file: _parent uibase/uilib/core/pugixml.hpp /^ xml_node _parent;$/;" m class:pugi::xml_attribute_iterator _parent uibase/uilib/core/pugixml.hpp /^ xml_node _parent;$/;" m class:pugi::xml_named_node_iterator _parent uibase/uilib/core/pugixml.hpp /^ xml_node _parent;$/;" m class:pugi::xml_node_iterator -_pid_t compat/compat_tpid.hpp /^ typedef int _pid_t;$/;" t -_pid_t compat/compat_tpid.hpp /^ typedef pid_t _pid_t;$/;" t -_pinstance compat/compat_tpid.hpp /^ typedef HINSTANCE _pinstance;$/;" t -_pinstance compat/compat_tpid.hpp /^ typedef pid_t _pinstance;$/;" t -_pinstance compat/compat_tpid.hpp /^ typedef pid_t _pinstance;$/;" t -_pipe_t compat/compat_tpid.hpp /^ typedef HANDLE _pipe_t;$/;" t -_pipe_t compat/compat_tpid.hpp /^ typedef int _pipe_t;$/;" t +_pid_t crt/crt_tpid.hpp /^ typedef int _pid_t;$/;" t +_pid_t crt/crt_tpid.hpp /^ typedef pid_t _pid_t;$/;" t +_pinstance crt/crt_tpid.hpp /^ typedef HINSTANCE _pinstance;$/;" t +_pinstance crt/crt_tpid.hpp /^ typedef pid_t _pinstance;$/;" t +_pinstance crt/crt_tpid.hpp /^ typedef pid_t _pinstance;$/;" t +_pipe_t crt/crt_tpid.hpp /^ typedef HANDLE _pipe_t;$/;" t +_pipe_t crt/crt_tpid.hpp /^ typedef int _pipe_t;$/;" t _query uibase/uilib/core/pugixml.cpp /^ const char_t* _query;$/;" m struct:xpath_parser file: -_queue_add compat/compat_queue.h 79;" d -_queue_data compat/compat_queue.h 86;" d -_queue_empty compat/compat_queue.h 24;" d -_queue_head compat/compat_queue.h 45;" d -_queue_init compat/compat_queue.h 20;" d -_queue_insert_after compat/compat_queue.h 35;" d -_queue_insert_head compat/compat_queue.h 28;" d -_queue_insert_tail compat/compat_queue.h 38;" d -_queue_last compat/compat_queue.h 49;" d -_queue_next compat/compat_queue.h 57;" d -_queue_prev compat/compat_queue.h 61;" d -_queue_remove compat/compat_queue.h 65;" d -_queue_s compat/compat_queue.h /^struct _queue_s {$/;" s -_queue_sentinel compat/compat_queue.h 53;" d -_queue_split compat/compat_queue.h 70;" d -_queue_t compat/compat_queue.h /^typedef struct _queue_s _queue_t;$/;" t typeref:struct:_queue_s -_read16_le base/code/compat_endian.c /^unsigned short _read16_le(const unsigned char *buf)$/;" f -_read32_le base/code/compat_endian.c /^unsigned int _read32_le(const unsigned char *buf)$/;" f +_queue_add crt/crt_queue.h 79;" d +_queue_data crt/crt_queue.h 86;" d +_queue_empty crt/crt_queue.h 24;" d +_queue_head crt/crt_queue.h 45;" d +_queue_init crt/crt_queue.h 20;" d +_queue_insert_after crt/crt_queue.h 35;" d +_queue_insert_head crt/crt_queue.h 28;" d +_queue_insert_tail crt/crt_queue.h 38;" d +_queue_last crt/crt_queue.h 49;" d +_queue_next crt/crt_queue.h 57;" d +_queue_prev crt/crt_queue.h 61;" d +_queue_remove crt/crt_queue.h 65;" d +_queue_s crt/crt_queue.h /^struct _queue_s {$/;" s +_queue_sentinel crt/crt_queue.h 53;" d +_queue_split crt/crt_queue.h 70;" d +_queue_t crt/crt_queue.h /^typedef struct _queue_s _queue_t;$/;" t typeref:struct:_queue_s +_read16_le stdcrt/code/compat_endian.c /^unsigned short _read16_le(const unsigned char *buf)$/;" f +_read32_le stdcrt/code/compat_endian.c /^unsigned int _read32_le(const unsigned char *buf)$/;" f _result uibase/uilib/core/pugixml.cpp /^ xpath_parse_result* _result;$/;" m struct:xpath_parser file: _result uibase/uilib/core/pugixml.hpp /^ xpath_parse_result _result;$/;" m class:pugi::xpath_exception _result uibase/uilib/core/pugixml.hpp /^ xpath_parse_result _result;$/;" m class:pugi::xpath_query @@ -10852,34 +10610,34 @@ _root uibase/uilib/core/pugixml.cpp /^ xpath_memory_block* _root;$/;" m struct: _root uibase/uilib/core/pugixml.hpp /^ xml_node_struct* _root;$/;" m class:pugi::xml_node _root uibase/uilib/core/pugixml.hpp /^ xml_node_struct* _root;$/;" m class:pugi::xml_text _root_size uibase/uilib/core/pugixml.cpp /^ size_t _root_size;$/;" m struct:xpath_allocator file: -_rwlock_destroy base/thread/compat_rwlock.c /^void _rwlock_destroy(_rwlock_t* rwlock) {$/;" f -_rwlock_init base/thread/compat_rwlock.c /^int _rwlock_init(_rwlock_t* rwlock) {$/;" f -_rwlock_rdlock base/thread/compat_rwlock.c /^void _rwlock_rdlock(_rwlock_t* rwlock) {$/;" f -_rwlock_rdunlock base/thread/compat_rwlock.c /^void _rwlock_rdunlock(_rwlock_t* rwlock) {$/;" f -_rwlock_t compat/darwinsysvar.hpp /^typedef pthread_rwlock_t _rwlock_t;$/;" t -_rwlock_t compat/posixsysvar.hpp /^typedef pthread_rwlock_t _rwlock_t;$/;" t -_rwlock_t compat/winsysvar.hpp /^}_rwlock_t;$/;" t typeref:union:__anon36 -_rwlock_tryrdlock base/thread/compat_rwlock.c /^int _rwlock_tryrdlock(_rwlock_t* rwlock) {$/;" f -_rwlock_trywrlock base/thread/compat_rwlock.c /^ int _rwlock_trywrlock(_rwlock_t* rwlock) {$/;" f -_rwlock_trywrlock base/thread/compat_rwlock.c /^int _rwlock_trywrlock(_rwlock_t* rwlock) {$/;" f -_rwlock_wrlock base/thread/compat_rwlock.c /^void _rwlock_wrlock(_rwlock_t* rwlock) {$/;" f -_rwlock_wrunlock base/thread/compat_rwlock.c /^void _rwlock_wrunlock(_rwlock_t* rwlock) {$/;" f +_rwlock_destroy stdcrt/thread/compat_rwlock.c /^void _rwlock_destroy(_rwlock_t* rwlock) {$/;" f +_rwlock_init stdcrt/thread/compat_rwlock.c /^int _rwlock_init(_rwlock_t* rwlock) {$/;" f +_rwlock_rdlock stdcrt/thread/compat_rwlock.c /^void _rwlock_rdlock(_rwlock_t* rwlock) {$/;" f +_rwlock_rdunlock stdcrt/thread/compat_rwlock.c /^void _rwlock_rdunlock(_rwlock_t* rwlock) {$/;" f +_rwlock_t crt/darwinsysvar.hpp /^typedef pthread_rwlock_t _rwlock_t;$/;" t +_rwlock_t crt/posixsysvar.hpp /^typedef pthread_rwlock_t _rwlock_t;$/;" t +_rwlock_t crt/winsysvar.hpp /^}_rwlock_t;$/;" t typeref:union:__anon33 +_rwlock_tryrdlock stdcrt/thread/compat_rwlock.c /^int _rwlock_tryrdlock(_rwlock_t* rwlock) {$/;" f +_rwlock_trywrlock stdcrt/thread/compat_rwlock.c /^ int _rwlock_trywrlock(_rwlock_t* rwlock) {$/;" f +_rwlock_trywrlock stdcrt/thread/compat_rwlock.c /^int _rwlock_trywrlock(_rwlock_t* rwlock) {$/;" f +_rwlock_wrlock stdcrt/thread/compat_rwlock.c /^void _rwlock_wrlock(_rwlock_t* rwlock) {$/;" f +_rwlock_wrunlock stdcrt/thread/compat_rwlock.c /^void _rwlock_wrunlock(_rwlock_t* rwlock) {$/;" f _scratch uibase/uilib/core/pugixml.cpp /^ char_t _scratch[32];$/;" m struct:xpath_parser file: -_sem_destroy base/thread/compat_sem.c /^void _sem_destroy(_sem_t* sem) {$/;" f -_sem_init base/thread/compat_sem.c /^int _sem_init(_sem_t* sem, unsigned int value) {$/;" f -_sem_init base/thread/compat_sem.c /^int _sem_init(_sem_t* sem, unsigned int value) {$/;" f -_sem_post base/thread/compat_sem.c /^void _sem_post(_sem_t* sem) {$/;" f -_sem_t compat/darwinsysvar.hpp /^typedef semaphore_t _sem_t;$/;" t -_sem_t compat/posixsysvar.hpp /^typedef sem_t _sem_t;$/;" t -_sem_t compat/winsysvar.hpp /^typedef HANDLE _sem_t;$/;" t -_sem_trywait base/thread/compat_sem.c /^ int _sem_trywait(_sem_t* sem) {$/;" f -_sem_trywait base/thread/compat_sem.c /^int _sem_trywait(_sem_t* sem) {$/;" f -_sem_wait base/thread/compat_sem.c /^void _sem_wait(_sem_t* sem) {$/;" f -_sem_wait_time base/thread/compat_sem.c /^int _sem_wait_time(_sem_t* sem, unsigned int sec)$/;" f -_sem_wait_time base/thread/compat_sem.c /^int _sem_wait_time(_sem_t* sem, unsigned int sec)$/;" f -_shutdown_sock base/net/compat_sock.c /^int _shutdown_sock(_sock_t s, int howrw)$/;" f -_sock_t compat/compat_sock.h /^ typedef SOCKET _sock_t;$/;" t -_sock_t compat/compat_sock.h /^ typedef int _sock_t;$/;" t +_sem_destroy stdcrt/thread/compat_sem.c /^void _sem_destroy(_sem_t* sem) {$/;" f +_sem_init stdcrt/thread/compat_sem.c /^int _sem_init(_sem_t* sem, unsigned int value) {$/;" f +_sem_init stdcrt/thread/compat_sem.c /^int _sem_init(_sem_t* sem, unsigned int value) {$/;" f +_sem_post stdcrt/thread/compat_sem.c /^void _sem_post(_sem_t* sem) {$/;" f +_sem_t crt/darwinsysvar.hpp /^typedef semaphore_t _sem_t;$/;" t +_sem_t crt/posixsysvar.hpp /^typedef sem_t _sem_t;$/;" t +_sem_t crt/winsysvar.hpp /^typedef HANDLE _sem_t;$/;" t +_sem_trywait stdcrt/thread/compat_sem.c /^ int _sem_trywait(_sem_t* sem) {$/;" f +_sem_trywait stdcrt/thread/compat_sem.c /^int _sem_trywait(_sem_t* sem) {$/;" f +_sem_wait stdcrt/thread/compat_sem.c /^void _sem_wait(_sem_t* sem) {$/;" f +_sem_wait_time stdcrt/thread/compat_sem.c /^int _sem_wait_time(_sem_t* sem, unsigned int sec)$/;" f +_sem_wait_time stdcrt/thread/compat_sem.c /^int _sem_wait_time(_sem_t* sem, unsigned int sec)$/;" f +_shutdown_sock stdcrt/net/compat_sock.c /^int _shutdown_sock(_sock_t s, int howrw)$/;" f +_sock_t crt/crt_sock.h /^ typedef SOCKET _sock_t;$/;" t +_sock_t crt/crt_sock.h /^ typedef int _sock_t;$/;" t _sqliteZone_ access/sqlite3.c /^static malloc_zone_t* _sqliteZone_;$/;" v file: _sqliteZone_ logs/sqlite3.c /^static malloc_zone_t* _sqliteZone_;$/;" v file: _state uibase/uilib/core/pugixml.cpp /^ xpath_allocator _state;$/;" m struct:xpath_allocator_capture file: @@ -10889,16 +10647,13 @@ _stdmethod_export access/dllmain.cpp /^_stdmethod_export(LPCSTR, DllProgIDFromCL _stdmethod_export asynio/dllmain.cpp /^_stdmethod_export(CLSID, DllGetAt)(LONG nIndex)$/;" f _stdmethod_export asynio/dllmain.cpp /^_stdmethod_export(LONG, DllGetCount)()$/;" f _stdmethod_export asynio/dllmain.cpp /^_stdmethod_export(LPCSTR, DllProgIDFromCLSID)(REFCLSID clsid)$/;" f -_stdmethod_export compat/compat_common.hpp 114;" d -_stdmethod_export compat/compat_common.hpp 123;" d -_stdmethod_export compat/compat_common.hpp 132;" d _stdmethod_export container/dllmain.cpp /^_stdmethod_export(CLSID, DllGetAt)(LONG nIndex)$/;" f _stdmethod_export container/dllmain.cpp /^_stdmethod_export(LONG, DllGetCount)()$/;" f _stdmethod_export container/dllmain.cpp /^_stdmethod_export(LPCSTR, DllProgIDFromCLSID)(REFCLSID clsid)$/;" f +_stdmethod_export crt/crt_common.hpp 114;" d +_stdmethod_export crt/crt_common.hpp 123;" d +_stdmethod_export crt/crt_common.hpp 132;" d _stdmethod_export dispatch/dllmain.cpp /^_stdmethod_export(HRESULT,DoInit)() {$/;" f -_stdmethod_export http/dllmain.cpp /^_stdmethod_export(CLSID, DllGetAt)(LONG nIndex)$/;" f -_stdmethod_export http/dllmain.cpp /^_stdmethod_export(LONG, DllGetCount)()$/;" f -_stdmethod_export http/dllmain.cpp /^_stdmethod_export(LPCSTR, DllProgIDFromCLSID)(REFCLSID clsid)$/;" f _stdmethod_export license/dllmain.cpp /^_stdmethod_export(HRESULT, GetLicenseCode)(const char* id, LicenseProc proc, void** lpContext, ULONG* size) {$/;" f _stdmethod_export logs/dllmain.cpp /^_stdmethod_export(CLSID, DllGetAt)(LONG nIndex)$/;" f _stdmethod_export logs/dllmain.cpp /^_stdmethod_export(LONG, DllGetCount)()$/;" f @@ -10928,45 +10683,45 @@ _stdmethod_export uibase/dllmain.cpp /^_stdmethod_export(CLSID, DllGetAt)(LONG n _stdmethod_export uibase/dllmain.cpp /^_stdmethod_export(LONG, DllGetCount)()$/;" f _stdmethod_export uibase/dllmain.cpp /^_stdmethod_export(LPCSTR, DllProgIDFromCLSID)(REFCLSID clsid)$/;" f _storage uibase/uilib/core/pugixml.hpp /^ xpath_node _storage[1];$/;" m class:pugi::xpath_node_set -_stprintf compat/darwinossysdef.h 73;" d -_stprintf compat/darwinossysdef.h 79;" d -_stprintf compat/posixossysdef.h 66;" d -_stprintf compat/posixossysdef.h 72;" d +_stprintf crt/darwinossysdef.h 73;" d +_stprintf crt/darwinossysdef.h 79;" d +_stprintf crt/posixossysdef.h 66;" d +_stprintf crt/posixossysdef.h 72;" d _swap uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xpath_variable_set::_swap(xpath_variable_set& rhs)$/;" f class:pugi::xpath_variable_set _target uibase/uilib/core/pugixml.cpp /^ xpath_allocator* _target;$/;" m struct:xpath_allocator_capture file: _test uibase/uilib/core/pugixml.cpp /^ char _test;$/;" m class:xpath_ast_node file: -_thread_cb base/thread/compat_thread.c /^static UINT __stdcall _thread_cb(void* arg) {$/;" f file: -_thread_create base/thread/compat_thread.c /^ int _thread_create(_thread_t *tid, os_thread_cb entry, void *arg) {$/;" f -_thread_create base/thread/compat_thread.c /^int _thread_create(_thread_t *tid, os_thread_cb entry, void *arg) {$/;" f -_thread_equal base/thread/compat_thread.c /^int _thread_equal(const _thread_t* t1, const _thread_t* t2) {$/;" f -_thread_equal base/thread/compat_thread.c /^int _thread_equal(const _thread_t* t1, const _thread_t* t2) {$/;" f -_thread_equal base/thread/compat_thread.c /^int _thread_equal(const _thread_t* t1, const _thread_t* t2) {$/;" f -_thread_id compat/compat_tpid.hpp /^ typedef DWORD _thread_id;$/;" t -_thread_join base/thread/compat_thread.c /^int _thread_join(_thread_t *tid) {$/;" f -_thread_join base/thread/compat_thread.c /^int _thread_join(_thread_t *tid) {$/;" f -_thread_join base/thread/compat_thread.c /^int _thread_join(_thread_t *tid) {$/;" f -_thread_t compat/compat_tpid.hpp /^ typedef HANDLE _thread_t;$/;" t -_thread_t compat/compat_tpid.hpp /^ typedef pthread_t _thread_t;$/;" t -_threadpool_s compat/compat_threadpool.h /^struct _threadpool_s {$/;" s -_threadpool_t compat/compat_threadpool.h /^typedef struct _threadpool_s _threadpool_t;$/;" t typeref:struct:_threadpool_s +_thread_cb stdcrt/thread/compat_thread.c /^static UINT __stdcall _thread_cb(void* arg) {$/;" f file: +_thread_create stdcrt/thread/compat_thread.c /^ int _thread_create(_thread_t *tid, os_thread_cb entry, void *arg) {$/;" f +_thread_create stdcrt/thread/compat_thread.c /^int _thread_create(_thread_t *tid, os_thread_cb entry, void *arg) {$/;" f +_thread_equal stdcrt/thread/compat_thread.c /^int _thread_equal(const _thread_t* t1, const _thread_t* t2) {$/;" f +_thread_equal stdcrt/thread/compat_thread.c /^int _thread_equal(const _thread_t* t1, const _thread_t* t2) {$/;" f +_thread_equal stdcrt/thread/compat_thread.c /^int _thread_equal(const _thread_t* t1, const _thread_t* t2) {$/;" f +_thread_id crt/crt_tpid.hpp /^ typedef DWORD _thread_id;$/;" t +_thread_join stdcrt/thread/compat_thread.c /^int _thread_join(_thread_t *tid) {$/;" f +_thread_join stdcrt/thread/compat_thread.c /^int _thread_join(_thread_t *tid) {$/;" f +_thread_join stdcrt/thread/compat_thread.c /^int _thread_join(_thread_t *tid) {$/;" f +_thread_t crt/crt_tpid.hpp /^ typedef HANDLE _thread_t;$/;" t +_thread_t crt/crt_tpid.hpp /^ typedef pthread_t _thread_t;$/;" t +_threadpool_s crt/crt_threadpool.h /^struct _threadpool_s {$/;" s +_threadpool_t crt/crt_threadpool.h /^typedef struct _threadpool_s _threadpool_t;$/;" t typeref:struct:_threadpool_s _type uibase/uilib/core/pugixml.cpp /^ char _type;$/;" m class:xpath_ast_node file: _type uibase/uilib/core/pugixml.cpp /^ xpath_node_set::type_t _type;$/;" m class:xpath_node_set_raw file: _type uibase/uilib/core/pugixml.hpp /^ type_t _type;$/;" m class:pugi::xpath_node_set _type uibase/uilib/core/pugixml.hpp /^ xpath_value_type _type;$/;" m class:pugi::xpath_variable -_unused compat/compat_common.hpp 42;" d -_unused compat/compat_common.hpp 46;" d -_unused compat/compat_common.hpp 50;" d +_unused crt/crt_common.hpp 42;" d +_unused crt/crt_common.hpp 46;" d +_unused crt/crt_common.hpp 50;" d _uses_heap uibase/uilib/core/pugixml.cpp /^ bool _uses_heap;$/;" m class:xpath_string file: _uuidof include/dlcom/id.hpp 8;" d -_valid_hostaddr base/net/compat_sockinet.c /^int _valid_hostaddr(const char *addr, int gripe)$/;" f -_valid_ipv4_hostaddr base/net/compat_sockinet.c /^int _valid_ipv4_hostaddr(const char *addr_in, int gripe)$/;" f -_valid_ipv6_hostaddr base/net/compat_sockinet.c /^int _valid_ipv6_hostaddr(const char *addr_in, int gripe)$/;" f +_valid_hostaddr stdcrt/net/compat_sockinet.c /^int _valid_hostaddr(const char *addr, int gripe)$/;" f +_valid_ipv4_hostaddr stdcrt/net/compat_sockinet.c /^int _valid_ipv4_hostaddr(const char *addr_in, int gripe)$/;" f +_valid_ipv6_hostaddr stdcrt/net/compat_sockinet.c /^int _valid_ipv6_hostaddr(const char *addr_in, int gripe)$/;" f _variables uibase/uilib/core/pugixml.cpp /^ xpath_variable_set* _variables;$/;" m struct:xpath_parser file: _wrap uibase/uilib/core/pugixml.hpp /^ mutable xml_attribute _wrap;$/;" m class:pugi::xml_attribute_iterator _wrap uibase/uilib/core/pugixml.hpp /^ mutable xml_node _wrap;$/;" m class:pugi::xml_named_node_iterator _wrap uibase/uilib/core/pugixml.hpp /^ mutable xml_node _wrap;$/;" m class:pugi::xml_node_iterator -_write32_le base/code/compat_endian.c /^void _write32_le(const int value, unsigned char *buffer)$/;" f -_write64_le base/code/compat_endian.c /^void _write64_le(const int64_t value, unsigned char *buffer)$/;" f +_write32_le stdcrt/code/compat_endian.c /^void _write32_le(const int value, unsigned char *buffer)$/;" f +_write64_le stdcrt/code/compat_endian.c /^void _write64_le(const int64_t value, unsigned char *buffer)$/;" f a access/sqlite3.c /^ FuncDef *a[23]; \/* Hash table for functions *\/$/;" m struct:FuncDefHash file: a access/sqlite3.c /^ Stat4Sample *a; \/* Array of mxSample Stat4Sample objects *\/$/;" m struct:Stat4Accum file: a access/sqlite3.c /^ WhereLevel a[1]; \/* Information about each nest loop in WHERE *\/$/;" m struct:WhereInfo file: @@ -10990,7 +10745,7 @@ a logs/sqlite3.c /^ } a[1]; \/* One entry for each identifier on th a logs/sqlite3.c /^ } a[1];$/;" m struct:With typeref:struct:With::Cte file: a logs/sqlite3.c /^struct TrigEvent { int a; IdList * b; };$/;" m struct:TrigEvent file: a msgbus/auth.hpp /^ unsigned int a; \/\/ack$/;" m struct:_BusProtocol -a polipo/config.h /^ struct _Atom **a;$/;" m union:_ConfigVariable::__anon78 typeref:struct:_ConfigVariable::__anon78::_Atom +a polipo/config.h /^ struct _Atom **a;$/;" m union:_ConfigVariable::__anon76 typeref:struct:_ConfigVariable::__anon76::_Atom aAction access/sqlite3.c /^ u8 aAction[2]; \/* ON DELETE and ON UPDATE actions, respectively *\/$/;" m struct:FKey file: aAction logs/sqlite3.c /^ u8 aAction[2]; \/* ON DELETE and ON UPDATE actions, respectively *\/$/;" m struct:FKey file: aAll access/sqlite3.c /^ char *aAll; \/* Array containing doclist (or NULL) *\/$/;" m struct:Fts3Doclist file: @@ -11002,7 +10757,7 @@ aAvgEq logs/sqlite3.c /^ tRowcnt *aAvgEq; \/* Average nEq values for ke aBest access/sqlite3.c /^ Stat4Sample *aBest; \/* Array of nCol best samples *\/$/;" m struct:Stat4Accum file: aBest logs/sqlite3.c /^ Stat4Sample *aBest; \/* Array of nCol best samples *\/$/;" m struct:Stat4Accum file: aBitmap access/sqlite3.c /^ BITVEC_TELEM aBitmap[BITVEC_NELEM]; \/* Bitmap representation *\/$/;" m union:Bitvec::__anon14 file: -aBitmap logs/sqlite3.c /^ BITVEC_TELEM aBitmap[BITVEC_NELEM]; \/* Bitmap representation *\/$/;" m union:Bitvec::__anon59 file: +aBitmap logs/sqlite3.c /^ BITVEC_TELEM aBitmap[BITVEC_NELEM]; \/* Bitmap representation *\/$/;" m union:Bitvec::__anon54 file: aBuffer access/sqlite3.c /^ char *aBuffer; \/* Buffer to merge doclists in *\/$/;" m struct:Fts3MultiSegReader file: aBuffer access/sqlite3.c /^ u8 *aBuffer; \/* Current read buffer *\/$/;" m struct:VdbeSorterIter file: aBuffer access/sqlite3.c /^ u8 *aBuffer; \/* Pointer to write buffer *\/$/;" m struct:FileWriter file: @@ -11089,10 +10844,10 @@ aHardLimit access/sqlite3.c /^static const int aHardLimit[] = {$/;" v file: aHardLimit logs/sqlite3.c /^static const int aHardLimit[] = {$/;" v file: aHash access/sqlite3.c /^ u32 aHash[BITVEC_NINT]; \/* Hash table representation *\/$/;" m union:Bitvec::__anon14 file: aHash access/sqlite3.c /^ RtreeNode *aHash[HASHSIZE]; \/* Hash table of in-memory nodes. *\/ $/;" m struct:Rtree file: -aHash logs/sqlite3.c /^ u32 aHash[BITVEC_NINT]; \/* Hash table representation *\/$/;" m union:Bitvec::__anon59 file: +aHash logs/sqlite3.c /^ u32 aHash[BITVEC_NINT]; \/* Hash table representation *\/$/;" m union:Bitvec::__anon54 file: aHash logs/sqlite3.c /^ RtreeNode *aHash[HASHSIZE]; \/* Hash table of in-memory nodes. *\/ $/;" m struct:Rtree file: aInLoop access/sqlite3.c /^ } *aInLoop; \/* Information about each nested IN operator *\/$/;" m struct:WhereLevel::__anon16::__anon17 typeref:struct:WhereLevel::__anon16::__anon17::InLoop file: -aInLoop logs/sqlite3.c /^ } *aInLoop; \/* Information about each nested IN operator *\/$/;" m struct:WhereLevel::__anon61::__anon62 typeref:struct:WhereLevel::__anon61::__anon62::InLoop file: +aInLoop logs/sqlite3.c /^ } *aInLoop; \/* Information about each nested IN operator *\/$/;" m struct:WhereLevel::__anon56::__anon57 typeref:struct:WhereLevel::__anon56::__anon57::InLoop file: aIndent access/sqlite3.c /^ u16 aIndent[100]; \/* Levels of indentation *\/$/;" m struct:Explain file: aIndent logs/sqlite3.c /^ u16 aIndent[100]; \/* Levels of indentation *\/$/;" m struct:Explain file: aIndex access/sqlite3.c /^ ht_slot *aIndex; \/* i0, i1, i2... such that aPgno[iN] ascend *\/$/;" m struct:WalIterator::WalSegment file: @@ -11169,6 +10924,7 @@ aPhrase access/sqlite3.c /^ SnippetPhrase *aPhrase; \/* Array of size n aPhrase logs/sqlite3.c /^ SnippetPhrase *aPhrase; \/* Array of size nPhrase *\/$/;" m struct:SnippetIter file: aPool access/sqlite3.c /^ Mem3Block *aPool;$/;" m struct:Mem3Global file: aPool logs/sqlite3.c /^ Mem3Block *aPool;$/;" m struct:Mem3Global file: +aPos vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let aPos = matchend(code.code, '::\\s*\\~*\\s*\\w\\+\\s*(')$/;" v aPragmaNames access/sqlite3.c /^} aPragmaNames[] = {$/;" v typeref:struct:sPragmaNames file: aPragmaNames logs/sqlite3.c /^} aPragmaNames[] = {$/;" v typeref:struct:sPragmaNames file: aPrefix access/sqlite3.c /^static const char aPrefix[] = "-x0\\000X0";$/;" v file: @@ -11180,7 +10936,7 @@ aRegion logs/sqlite3.c /^ } *aRegion;$/;" m struct:winShmNode typeref:struct:wi aRow access/sqlite3.c /^ const u8 *aRow; \/* Data for the current row, if all on one page *\/$/;" m struct:VdbeCursor file: aRow logs/sqlite3.c /^ const u8 *aRow; \/* Data for the current row, if all on one page *\/$/;" m struct:VdbeCursor file: aRowid access/sqlite3.c /^ u8 *aRowid; \/* Key for WITHOUT ROWID tables *\/$/;" m union:Stat4Sample::__anon15 file: -aRowid logs/sqlite3.c /^ u8 *aRowid; \/* Key for WITHOUT ROWID tables *\/$/;" m union:Stat4Sample::__anon60 file: +aRowid logs/sqlite3.c /^ u8 *aRowid; \/* Key for WITHOUT ROWID tables *\/$/;" m union:Stat4Sample::__anon55 file: aSalt access/sqlite3.c /^ u32 aSalt[2]; \/* Two salt values copied from WAL header *\/$/;" m struct:WalIndexHdr file: aSalt logs/sqlite3.c /^ u32 aSalt[2]; \/* Two salt values copied from WAL header *\/$/;" m struct:WalIndexHdr file: aSample access/sqlite3.c /^ IndexSample *aSample; \/* Samples of the left-most key *\/$/;" m struct:Index file: @@ -11246,7 +11002,7 @@ accept polipo/mingw.c 35;" d file: accept polipo/mingw.h 132;" d accept_add_ref 3rd/include/iotcpaccept.hpp /^ long accept_add_ref() {$/;" f class:IoTcpAccpet accept_del_ref 3rd/include/iotcpaccept.hpp /^ long accept_del_ref() {$/;" f class:IoTcpAccpet -accept_gzip http/http/http_header.cpp /^int http_header_t::accept_gzip(bool on)$/;" f class:http_header_t +accept_gzip net/http_protocol/http_header.cpp /^int http_header_t::accept_gzip(bool on)$/;" f class:http_header_t accept_handle 3rd/include/iotcpaccept.hpp /^ int accept_handle(io_c_error_code ec, void* data, const IoTcpBase* tcp) {$/;" f class:IoTcpAccpet accept_is_open 3rd/include/iotcpaccept.hpp /^ int accept_is_open() {$/;" f class:IoTcpAccpet accept_post_sem 3rd/include/iotcpaccept.hpp /^ void accept_post_sem() {$/;" f class:IoTcpAccpet @@ -11255,6 +11011,8 @@ acceptptr 3rd/include/iotcpaccept.hpp /^ io_acceptor_ptr acceptptr;$/;" m class access polipo/diskcache.h /^ time_t access;$/;" m struct:_DiskObject accessPayload access/sqlite3.c /^static int accessPayload($/;" f file: accessPayload logs/sqlite3.c /^static int accessPayload($/;" f file: +accessVersionNumber access/access.h /^FOUNDATION_EXPORT double accessVersionNumber;$/;" v +accessVersionString access/access.h /^FOUNDATION_EXPORT const unsigned char accessVersionString[];$/;" v accpet_assign 3rd/include/iotcpaccept.hpp /^ int accpet_assign(_sock_t* s) {$/;" f class:IoTcpAccpet accpet_bind 3rd/include/iotcpaccept.hpp /^ int accpet_bind(const char* addr, unsigned short port) {$/;" f class:IoTcpAccpet accpet_close 3rd/include/iotcpaccept.hpp /^ int accpet_close() {$/;" f class:IoTcpAccpet @@ -11264,8 +11022,8 @@ accpet_listen 3rd/include/iotcpaccept.hpp /^ int accpet_listen() {$/;" f class:I accpet_wait 3rd/include/iotcpaccept.hpp /^ int accpet_wait(const IoTcpBase* tcp, void* data) {$/;" f class:IoTcpAccpet accumulateSyslogN polipo/log.c /^accumulateSyslogN(int type, const char *s, int len)$/;" f file: accumulateSyslogV polipo/log.c /^accumulateSyslogV(int type, const char *f, va_list args)$/;" f file: -ack net/protocol/tcp.h /^ uint16_t ack : 1;$/;" m struct:tcphdr_s -ack_seq net/protocol/tcp.h /^ uint32_t ack_seq;$/;" m struct:tcphdr_s +ack net/protocol/tcp.h /^ uint16_t ack:1;$/;" m struct:tcphdr_s +ack_seq net/protocol/tcp.h /^ uint32_t ack_seq;$/;" m struct:tcphdr_s actionName access/sqlite3.c /^static const char *actionName(u8 action){$/;" f file: actionName logs/sqlite3.c /^static const char *actionName(u8 action){$/;" f file: ad net/protocol/dns.h /^ uint8_t ad:1;$/;" m struct:dnshdr_s @@ -11290,8 +11048,8 @@ addToVTrans access/sqlite3.c /^static void addToVTrans(sqlite3 *db, VTable *pVTa addToVTrans logs/sqlite3.c /^static void addToVTrans(sqlite3 *db, VTable *pVTab){$/;" f file: addWhereTerm access/sqlite3.c /^static void addWhereTerm($/;" f file: addWhereTerm logs/sqlite3.c /^static void addWhereTerm($/;" f file: -add_cookie http/http/http_header.cpp /^int http_header_t::add_cookie(const char* name, const char* value,$/;" f class:http_header_t -add_entry http/http/http_header.cpp /^int http_header_t::add_entry(const char* name, const char* value, bool replace)$/;" f class:http_header_t +add_cookie net/http_protocol/http_header.cpp /^int http_header_t::add_cookie(const char* name, const char* value,$/;" f class:http_header_t +add_entry net/http_protocol/http_header.cpp /^int http_header_t::add_entry(const char* name, const char* value, bool replace)$/;" f class:http_header_t addr include/dlcom/comfactory.hpp /^ ULONG addr;$/;" m struct:_STDCOM_OBJMAP_ENTRY addr polipo/dns.h /^ AtomPtr addr;$/;" m struct:_GethostbynameRequest addr polipo/io.h /^ struct _Atom *addr;$/;" m struct:_ConnectRequest typeref:struct:_ConnectRequest::_Atom @@ -11308,7 +11066,7 @@ addrFillSub logs/sqlite3.c /^ int addrFillSub; \/* Address of subroutine to addrFirst access/sqlite3.c /^ int addrFirst; \/* First instruction of interior of the loop *\/$/;" m struct:WhereLevel file: addrFirst logs/sqlite3.c /^ int addrFirst; \/* First instruction of interior of the loop *\/$/;" m struct:WhereLevel file: addrInTop access/sqlite3.c /^ int addrInTop; \/* Top of the IN loop *\/$/;" m struct:WhereLevel::__anon16::__anon17::InLoop file: -addrInTop logs/sqlite3.c /^ int addrInTop; \/* Top of the IN loop *\/$/;" m struct:WhereLevel::__anon61::__anon62::InLoop file: +addrInTop logs/sqlite3.c /^ int addrInTop; \/* Top of the IN loop *\/$/;" m struct:WhereLevel::__anon56::__anon57::InLoop file: addrNxt access/sqlite3.c /^ int addrNxt; \/* Jump here to start the next IN combination *\/$/;" m struct:WhereLevel file: addrNxt logs/sqlite3.c /^ int addrNxt; \/* Jump here to start the next IN combination *\/$/;" m struct:WhereLevel file: addrOpenEphm access/sqlite3.c /^ int addrOpenEphm[3]; \/* OP_OpenEphem opcodes related to this select *\/$/;" m struct:Select file: @@ -11355,7 +11113,7 @@ aggregate_context logs/sqlite3.c /^ void * (*aggregate_context)(sqlite3_context aggregate_count access/sqlite3.c /^ int (*aggregate_count)(sqlite3_context*);$/;" m struct:sqlite3_api_routines file: aggregate_count logs/sqlite3.c /^ int (*aggregate_count)(sqlite3_context*);$/;" m struct:sqlite3_api_routines file: ai access/sqlite3.c /^ int *ai; \/* Used when p4type is P4_INTARRAY *\/$/;" m union:VdbeOp::__anon1 file: -ai logs/sqlite3.c /^ int *ai; \/* Used when p4type is P4_INTARRAY *\/$/;" m union:VdbeOp::__anon46 file: +ai logs/sqlite3.c /^ int *ai; \/* Used when p4type is P4_INTARRAY *\/$/;" m union:VdbeOp::__anon41 file: aiColumn access/sqlite3.c /^ i16 *aiColumn; \/* Which columns are used by this index. 1st is 0 *\/$/;" m struct:Index file: aiColumn logs/sqlite3.c /^ i16 *aiColumn; \/* Which columns are used by this index. 1st is 0 *\/$/;" m struct:Index file: aiCurOnePass access/sqlite3.c /^ int aiCurOnePass[2]; \/* OP_OpenWrite cursors for the ONEPASS opt *\/$/;" m struct:WhereInfo file: @@ -11374,7 +11132,7 @@ aiRowEst access/sqlite3.c /^ tRowcnt *aiRowEst; \/* From ANALYZE: Est. ro aiRowEst logs/sqlite3.c /^ tRowcnt *aiRowEst; \/* From ANALYZE: Est. rows selected by each column *\/$/;" m struct:Index file: aiSmall access/sqlite3.c /^ u32 aiSmall[MX_SMALL-1]; \/* For sizes 2 through MX_SMALL, inclusive *\/$/;" m struct:Mem3Global file: aiSmall logs/sqlite3.c /^ u32 aiSmall[MX_SMALL-1]; \/* For sizes 2 through MX_SMALL, inclusive *\/$/;" m struct:Mem3Global file: -al polipo/config.h /^ struct _AtomList **al;$/;" m union:_ConfigVariable::__anon78 typeref:struct:_ConfigVariable::__anon78::_AtomList +al polipo/config.h /^ struct _AtomList **al;$/;" m union:_ConfigVariable::__anon76 typeref:struct:_ConfigVariable::__anon76::_AtomList alarmArg access/sqlite3.c /^ void *alarmArg;$/;" m struct:Mem0Global file: alarmArg logs/sqlite3.c /^ void *alarmArg;$/;" m struct:Mem0Global file: alarmBusy access/sqlite3.c /^ int alarmBusy;$/;" m struct:Mem3Global file: @@ -11383,7 +11141,7 @@ alarmCallback access/sqlite3.c /^ void (*alarmCallback)(void*, sqlite3_int64,in alarmCallback logs/sqlite3.c /^ void (*alarmCallback)(void*, sqlite3_int64,int);$/;" m struct:Mem0Global file: alarmThreshold access/sqlite3.c /^ sqlite3_int64 alarmThreshold;$/;" m struct:Mem0Global file: alarmThreshold logs/sqlite3.c /^ sqlite3_int64 alarmThreshold;$/;" m struct:Mem0Global file: -alignment uibase/uilib/core/pugixml.cpp /^ double alignment;$/;" m union:xpath_memory_block::__anon95 file: +alignment uibase/uilib/core/pugixml.cpp /^ double alignment;$/;" m union:xpath_memory_block::__anon98 file: allSpaces access/sqlite3.c /^static int allSpaces(const char *z, int n){$/;" f file: allSpaces logs/sqlite3.c /^static int allSpaces(const char *z, int n){$/;" f file: alloc mempool/alloc.h /^ void *alloc;$/;" m struct:ngx_pool_large_s @@ -11401,7 +11159,7 @@ alloc_node uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* alloc_node(ast_type alloc_node uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* alloc_node(ast_type_t type, xpath_value_type rettype, xpath_ast_node* left = 0, xpath_ast_node* right = 0)$/;" f struct:xpath_parser alloc_node uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* alloc_node(ast_type_t type, xpath_value_type rettype, xpath_variable* value)$/;" f struct:xpath_parser alloc_string uibase/uilib/core/pugixml.cpp /^ const char_t* alloc_string(const xpath_lexer_string& value)$/;" f struct:xpath_parser -allocate base/code/compat_cjson.c /^ void *(*allocate)(size_t size);$/;" m struct:internal_hooks file: +allocate stdcrt/code/compat_cjson.c /^ void *(*allocate)(size_t size);$/;" m struct:internal_hooks file: allocate uibase/uilib/core/pugixml.cpp /^ static allocation_function allocate;$/;" m struct:xml_memory_management_function_storage file: allocate uibase/uilib/core/pugixml.cpp /^ void* allocate(size_t size)$/;" f struct:xpath_allocator allocate uibase/uilib/core/pugixml.cpp /^ template allocation_function xml_memory_management_function_storage::allocate = default_allocate;$/;" m class:xml_memory_management_function_storage file: @@ -11492,7 +11250,7 @@ apSegment access/sqlite3.c /^ Fts3SegReader **apSegment; \/* Array of Fts3 apSegment logs/sqlite3.c /^ Fts3SegReader **apSegment; \/* Array of Fts3SegReader objects *\/$/;" m struct:Fts3MultiSegReader file: apSub access/sqlite3.c /^ Bitvec *apSub[BITVEC_NPTR]; \/* Recursive representation *\/$/;" m union:Bitvec::__anon14 file: apSub access/sqlite3.c /^ SubProgram **apSub; \/* Array of subprograms *\/$/;" m struct:VdbeOpIter file: -apSub logs/sqlite3.c /^ Bitvec *apSub[BITVEC_NPTR]; \/* Recursive representation *\/$/;" m union:Bitvec::__anon59 file: +apSub logs/sqlite3.c /^ Bitvec *apSub[BITVEC_NPTR]; \/* Recursive representation *\/$/;" m union:Bitvec::__anon54 file: apSub logs/sqlite3.c /^ SubProgram **apSub; \/* Array of subprograms *\/$/;" m struct:VdbeOpIter file: apTrigger access/sqlite3.c /^ Trigger *apTrigger[2];\/* Triggers for aAction[] actions *\/$/;" m struct:FKey file: apTrigger logs/sqlite3.c /^ Trigger *apTrigger[2];\/* Triggers for aAction[] actions *\/$/;" m struct:FKey file: @@ -11526,68 +11284,68 @@ apply_predicate_number_const uibase/uilib/core/pugixml.cpp /^ static void apply apply_predicates uibase/uilib/core/pugixml.cpp /^ void apply_predicates(xpath_node_set_raw& ns, size_t first, const xpath_stack& stack, nodeset_eval_t eval)$/;" f class:xpath_ast_node file: approx access/sqlite3.c /^ u8 approx; \/* True if non-integer value was input to the sum *\/$/;" m struct:SumCtx file: approx logs/sqlite3.c /^ u8 approx; \/* True if non-integer value was input to the sum *\/$/;" m struct:SumCtx file: -arg base/thread/compat_thread.c /^ void* arg;$/;" m struct:thread_ctx file: -argc compat/compat_argv.h /^ int argc;$/;" m struct:argv_s -argv compat/compat_argv.h /^ char **argv;$/;" m struct:argv_s +arg stdcrt/thread/compat_thread.c /^ void* arg;$/;" m struct:thread_ctx file: +argc crt/crt_argv.h /^ int argc;$/;" m struct:argv_s +argv crt/crt_argv.h /^ char **argv;$/;" m struct:argv_s argvIndex access/sqlite3.c /^ int argvIndex; \/* if >0, constraint is part of argv to xFilter *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint_usage file: argvIndex access/sqlite3.h /^ int argvIndex; \/* if >0, constraint is part of argv to xFilter *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint_usage argvIndex logs/sqlite3.c /^ int argvIndex; \/* if >0, constraint is part of argv to xFilter *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint_usage file: argvIndex logs/sqlite3.h /^ int argvIndex; \/* if >0, constraint is part of argv to xFilter *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint_usage -argv_add base/stdlib/compat_argv.c /^static void argv_add(argv_t *argvp, ...)$/;" f file: -argv_clean base/stdlib/compat_argv.c /^void argv_clean(argv_t *argvp)$/;" f -argv_extend base/stdlib/compat_argv.c /^static void argv_extend(argv_t* argvp)$/;" f file: -argv_init base/stdlib/compat_argv.c /^int argv_init(argv_t* argvp,int size)$/;" f -argv_iter_head base/stdlib/compat_argv.c /^static void *argv_iter_head(ITER *iter, argv_t* argv)$/;" f file: -argv_iter_next base/stdlib/compat_argv.c /^static void *argv_iter_next(ITER *iter, argv_t *argv)$/;" f file: -argv_iter_prev base/stdlib/compat_argv.c /^static void *argv_iter_prev(ITER *iter, argv_t *argv)$/;" f file: -argv_iter_tail base/stdlib/compat_argv.c /^static void *argv_iter_tail(ITER *iter, argv_t *argv)$/;" f file: -argv_pop_back base/stdlib/compat_argv.c /^static char *argv_pop_back(argv_t* argvp)$/;" f file: -argv_pop_front base/stdlib/compat_argv.c /^static char *argv_pop_front(argv_t* argvp)$/;" f file: -argv_push_back base/stdlib/compat_argv.c /^static void argv_push_back(argv_t* argvp, const char *s)$/;" f file: -argv_push_front base/stdlib/compat_argv.c /^static void argv_push_front(argv_t* argvp, const char *s)$/;" f file: -argv_s compat/compat_argv.h /^struct argv_s {$/;" s -argv_size base/stdlib/compat_argv.c /^int argv_size(argv_t *argvp)$/;" f -argv_size compat/compat_argv.h /^ int (*argv_size)(argv_t*);$/;" m struct:argv_s -argv_split base/stdlib/compat_argv.c /^argv_t* argv_split(argv_t* argvp, const char *str, const char *delim)$/;" f -argv_split compat/compat_argv.h /^ argv_t* (*argv_split)(argv_t*, const char *, const char *);$/;" m struct:argv_s -argv_t compat/compat_argv.h /^typedef struct argv_s argv_t;$/;" t typeref:struct:argv_s -argv_terminate base/stdlib/compat_argv.c /^void argv_terminate(argv_t *argvp)$/;" f -argv_terminate compat/compat_argv.h /^ void (*argv_terminate)(argv_t*);$/;" m struct:argv_s -array compat/compat_cjson.h /^CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array);$/;" v -array_append base/stdlib/compat_array.c /^static int array_append(array_t *a, void *obj)$/;" f file: -array_clean base/stdlib/compat_array.c /^void array_clean(array_t *a, void(*free_fn)(void *))$/;" f -array_delete base/stdlib/compat_array.c /^static int array_delete(array_t *a, int idx, void (*free_fn)(void*))$/;" f file: -array_delete compat/compat_array.h /^ int (*array_delete)(array_t *a, int position, void(*free_fn)(void*));$/;" m struct:array_s -array_delete_idx base/stdlib/compat_array.c /^static int array_delete_idx(array_t *a, int position, void (*free_fn)(void *))$/;" f file: -array_delete_idx compat/compat_array.h /^ int (*array_delete_idx)(array_t *a, int position, void(*free_fn)(void *));$/;" m struct:array_s -array_delete_obj base/stdlib/compat_array.c /^static int array_delete_obj(array_t *a, void *obj, void (*free_fn)(void *))$/;" f file: -array_delete_range base/stdlib/compat_array.c /^static int array_delete_range(array_t *a, int ibegin, int iend,void (*free_fn)(void*))$/;" f file: -array_delete_range compat/compat_array.h /^ int (*array_delete_range)(array_t *a, int ibegin, int iend, void(*free_fn)(void*));$/;" m struct:array_s -array_grow base/stdlib/compat_array.c /^static void array_grow(array_t *a, int min_capacity)$/;" f file: -array_index base/stdlib/compat_array.c /^static void* array_index(const array_t *a, int idx)$/;" f file: -array_index compat/compat_array.h /^ void* (*array_index)(const array_t *a, int idx);$/;" m struct:array_s -array_init base/stdlib/compat_array.c /^int array_init(array_t* a, int init_size)$/;" f -array_iter_head base/stdlib/compat_array.c /^static void *array_iter_head(ITER *iter, struct array_s *a)$/;" f file: -array_iter_next base/stdlib/compat_array.c /^static void *array_iter_next(ITER *iter, struct array_s *a)$/;" f file: -array_iter_prev base/stdlib/compat_array.c /^static void *array_iter_prev(ITER *iter, struct array_s *a)$/;" f file: -array_iter_tail base/stdlib/compat_array.c /^static void *array_iter_tail(ITER *iter, struct array_s *a)$/;" f file: -array_mv_idx base/stdlib/compat_array.c /^static int array_mv_idx(array_t *a, int ito, int ifrom, void (*free_fn)(void *))$/;" f file: -array_mv_idx compat/compat_array.h /^ int (*array_mv_idx)(array_t *a, int ito, int ifrom, void(*free_fn)(void *));$/;" m struct:array_s -array_pop_back base/stdlib/compat_array.c /^static void *array_pop_back(struct array_s *a)$/;" f file: -array_pop_front base/stdlib/compat_array.c /^static void *array_pop_front(struct array_s *a)$/;" f file: -array_pre_append base/stdlib/compat_array.c /^static void array_pre_append(array_t *a, int app_count)$/;" f file: -array_pre_append compat/compat_array.h /^ void (*array_pre_append)(array_t *a, int app_count);$/;" m struct:array_s -array_pred_insert base/stdlib/compat_array.c /^static int array_pred_insert(array_t *a, int position, void *obj)$/;" f file: -array_pred_insert compat/compat_array.h /^ int (*array_pred_insert)(array_t *a, int position, void *obj);$/;" m struct:array_s -array_prepend base/stdlib/compat_array.c /^static int array_prepend(array_t *a, void *obj)$/;" f file: -array_push_back base/stdlib/compat_array.c /^static int array_push_back(struct array_s *a, void *obj)$/;" f file: -array_push_front base/stdlib/compat_array.c /^static int array_push_front(struct array_s *a, void *obj)$/;" f file: -array_s compat/compat_array.h /^struct array_s {$/;" s -array_size base/stdlib/compat_array.c /^static int array_size(const array_t *a)$/;" f file: -array_size compat/compat_array.h /^ int (*array_size)(const array_t *a);$/;" m struct:array_s -array_succ_insert base/stdlib/compat_array.c /^static int array_succ_insert(array_t *a, int position, void *obj)$/;" f file: -array_succ_insert compat/compat_array.h /^ int (*array_succ_insert)(array_t *a, int position, void *obj);$/;" m struct:array_s -array_t compat/compat_array.h /^typedef struct array_s array_t;$/;" t typeref:struct:array_s +argv_add stdcrt/stdlib/compat_argv.c /^static void argv_add(argv_t *argvp, ...)$/;" f file: +argv_clean stdcrt/stdlib/compat_argv.c /^void argv_clean(argv_t *argvp)$/;" f +argv_extend stdcrt/stdlib/compat_argv.c /^static void argv_extend(argv_t* argvp)$/;" f file: +argv_init stdcrt/stdlib/compat_argv.c /^int argv_init(argv_t* argvp,int size)$/;" f +argv_iter_head stdcrt/stdlib/compat_argv.c /^static void *argv_iter_head(ITER *iter, argv_t* argv)$/;" f file: +argv_iter_next stdcrt/stdlib/compat_argv.c /^static void *argv_iter_next(ITER *iter, argv_t *argv)$/;" f file: +argv_iter_prev stdcrt/stdlib/compat_argv.c /^static void *argv_iter_prev(ITER *iter, argv_t *argv)$/;" f file: +argv_iter_tail stdcrt/stdlib/compat_argv.c /^static void *argv_iter_tail(ITER *iter, argv_t *argv)$/;" f file: +argv_pop_back stdcrt/stdlib/compat_argv.c /^static char *argv_pop_back(argv_t* argvp)$/;" f file: +argv_pop_front stdcrt/stdlib/compat_argv.c /^static char *argv_pop_front(argv_t* argvp)$/;" f file: +argv_push_back stdcrt/stdlib/compat_argv.c /^static void argv_push_back(argv_t* argvp, const char *s)$/;" f file: +argv_push_front stdcrt/stdlib/compat_argv.c /^static void argv_push_front(argv_t* argvp, const char *s)$/;" f file: +argv_s crt/crt_argv.h /^struct argv_s {$/;" s +argv_size crt/crt_argv.h /^ int (*argv_size)(argv_t*);$/;" m struct:argv_s +argv_size stdcrt/stdlib/compat_argv.c /^int argv_size(argv_t *argvp)$/;" f +argv_split crt/crt_argv.h /^ argv_t* (*argv_split)(argv_t*, const char *, const char *);$/;" m struct:argv_s +argv_split stdcrt/stdlib/compat_argv.c /^argv_t* argv_split(argv_t* argvp, const char *str, const char *delim)$/;" f +argv_t crt/crt_argv.h /^typedef struct argv_s argv_t;$/;" t typeref:struct:argv_s +argv_terminate crt/crt_argv.h /^ void (*argv_terminate)(argv_t*);$/;" m struct:argv_s +argv_terminate stdcrt/stdlib/compat_argv.c /^void argv_terminate(argv_t *argvp)$/;" f +array crt/crt_cjson.h /^CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array);$/;" v +array_append stdcrt/stdlib/compat_array.c /^static int array_append(array_t *a, void *obj)$/;" f file: +array_clean stdcrt/stdlib/compat_array.c /^void array_clean(array_t *a, void(*free_fn)(void *))$/;" f +array_delete crt/crt_array.h /^ int (*array_delete)(array_t *a, int position, void(*free_fn)(void*));$/;" m struct:array_s +array_delete stdcrt/stdlib/compat_array.c /^static int array_delete(array_t *a, int idx, void (*free_fn)(void*))$/;" f file: +array_delete_idx crt/crt_array.h /^ int (*array_delete_idx)(array_t *a, int position, void(*free_fn)(void *));$/;" m struct:array_s +array_delete_idx stdcrt/stdlib/compat_array.c /^static int array_delete_idx(array_t *a, int position, void (*free_fn)(void *))$/;" f file: +array_delete_obj stdcrt/stdlib/compat_array.c /^static int array_delete_obj(array_t *a, void *obj, void (*free_fn)(void *))$/;" f file: +array_delete_range crt/crt_array.h /^ int (*array_delete_range)(array_t *a, int ibegin, int iend, void(*free_fn)(void*));$/;" m struct:array_s +array_delete_range stdcrt/stdlib/compat_array.c /^static int array_delete_range(array_t *a, int ibegin, int iend,void (*free_fn)(void*))$/;" f file: +array_grow stdcrt/stdlib/compat_array.c /^static void array_grow(array_t *a, int min_capacity)$/;" f file: +array_index crt/crt_array.h /^ void* (*array_index)(const array_t *a, int idx);$/;" m struct:array_s +array_index stdcrt/stdlib/compat_array.c /^static void* array_index(const array_t *a, int idx)$/;" f file: +array_init stdcrt/stdlib/compat_array.c /^int array_init(array_t* a, int init_size)$/;" f +array_iter_head stdcrt/stdlib/compat_array.c /^static void *array_iter_head(ITER *iter, struct array_s *a)$/;" f file: +array_iter_next stdcrt/stdlib/compat_array.c /^static void *array_iter_next(ITER *iter, struct array_s *a)$/;" f file: +array_iter_prev stdcrt/stdlib/compat_array.c /^static void *array_iter_prev(ITER *iter, struct array_s *a)$/;" f file: +array_iter_tail stdcrt/stdlib/compat_array.c /^static void *array_iter_tail(ITER *iter, struct array_s *a)$/;" f file: +array_mv_idx crt/crt_array.h /^ int (*array_mv_idx)(array_t *a, int ito, int ifrom, void(*free_fn)(void *));$/;" m struct:array_s +array_mv_idx stdcrt/stdlib/compat_array.c /^static int array_mv_idx(array_t *a, int ito, int ifrom, void (*free_fn)(void *))$/;" f file: +array_pop_back stdcrt/stdlib/compat_array.c /^static void *array_pop_back(struct array_s *a)$/;" f file: +array_pop_front stdcrt/stdlib/compat_array.c /^static void *array_pop_front(struct array_s *a)$/;" f file: +array_pre_append crt/crt_array.h /^ void (*array_pre_append)(array_t *a, int app_count);$/;" m struct:array_s +array_pre_append stdcrt/stdlib/compat_array.c /^static void array_pre_append(array_t *a, int app_count)$/;" f file: +array_pred_insert crt/crt_array.h /^ int (*array_pred_insert)(array_t *a, int position, void *obj);$/;" m struct:array_s +array_pred_insert stdcrt/stdlib/compat_array.c /^static int array_pred_insert(array_t *a, int position, void *obj)$/;" f file: +array_prepend stdcrt/stdlib/compat_array.c /^static int array_prepend(array_t *a, void *obj)$/;" f file: +array_push_back stdcrt/stdlib/compat_array.c /^static int array_push_back(struct array_s *a, void *obj)$/;" f file: +array_push_front stdcrt/stdlib/compat_array.c /^static int array_push_front(struct array_s *a, void *obj)$/;" f file: +array_s crt/crt_array.h /^struct array_s {$/;" s +array_size crt/crt_array.h /^ int (*array_size)(const array_t *a);$/;" m struct:array_s +array_size stdcrt/stdlib/compat_array.c /^static int array_size(const array_t *a)$/;" f file: +array_succ_insert crt/crt_array.h /^ int (*array_succ_insert)(array_t *a, int position, void *obj);$/;" m struct:array_s +array_succ_insert stdcrt/stdlib/compat_array.c /^static int array_succ_insert(array_t *a, int position, void *obj)$/;" f file: +array_t crt/crt_array.h /^typedef struct array_s array_t;$/;" t typeref:struct:array_s as_bool uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_attribute::as_bool(bool def) const$/;" f class:pugi::xml_attribute as_bool uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_text::as_bool(bool def) const$/;" f class:pugi::xml_text as_double uibase/uilib/core/pugixml.cpp /^ PUGI__FN double xml_attribute::as_double(double def) const$/;" f class:pugi::xml_attribute @@ -11761,17 +11519,17 @@ atomXPolipoAccess polipo/http_parse.c /^ atomXPolipoDate, atomXPolipoAccess, atomXPolipoBodyOffset polipo/http_parse.c /^ atomXPolipoBodyOffset;$/;" v file: atomXPolipoDate polipo/http_parse.c /^ atomXPolipoDate, atomXPolipoAccess, atomXPolipoLocation, $/;" v file: atomXPolipoLocation polipo/http_parse.c /^ atomXPolipoDate, atomXPolipoAccess, atomXPolipoLocation, $/;" v file: -atomic_type compat/compat_atomic.h /^ typedef int32_t atomic_type;$/;" t -atomic_type compat/compat_atomic.h /^ typedef long atomic_type;$/;" t -atomic_type compat/compat_core.hpp /^ typedef int32_t atomic_type;$/;" t -atomic_type compat/compat_core.hpp /^ typedef long atomic_type;$/;" t +atomic_type crt/crt_atomic.h /^ typedef int32_t atomic_type;$/;" t +atomic_type crt/crt_atomic.h /^ typedef long atomic_type;$/;" t +atomic_type crt/crt_core.hpp /^ typedef int32_t atomic_type;$/;" t +atomic_type crt/crt_core.hpp /^ typedef long atomic_type;$/;" t attach include/dlcom/comsentry.hpp /^ void attach(I* p) $/;" f class:ComPtr attachBackupObject access/sqlite3.c /^static void attachBackupObject(sqlite3_backup *p){$/;" f file: attachBackupObject logs/sqlite3.c /^static void attachBackupObject(sqlite3_backup *p){$/;" f file: attachFunc access/sqlite3.c /^static void attachFunc($/;" f file: attachFunc logs/sqlite3.c /^static void attachFunc($/;" f file: -attr compat/darwinsysvar.hpp /^ pthread_condattr_t attr;$/;" m struct:__anon31 -attr compat/posixsysvar.hpp /^ pthread_condattr_t attr;$/;" m struct:__anon33 +attr crt/darwinsysvar.hpp /^ pthread_condattr_t attr;$/;" m struct:__anon30 +attr crt/posixsysvar.hpp /^ pthread_condattr_t attr;$/;" m struct:__anon27 attribute uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_attribute xml_node::attribute(const char_t* name_) const$/;" f class:pugi::xml_node attribute uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_attribute xml_node::attribute(const char_t* name_, xml_attribute& hint_) const$/;" f class:pugi::xml_node attribute uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_attribute xpath_node::attribute() const$/;" f class:pugi::xpath_node @@ -11845,7 +11603,7 @@ azVar logs/sqlite3.c /^ char **azVar; \/* Pointers to names of para azVar logs/sqlite3.c /^ char **azVar; \/* Name of variables *\/$/;" m struct:Vdbe file: b access/sqlite3.c /^struct TrigEvent { int a; IdList * b; };$/;" m struct:TrigEvent file: b logs/sqlite3.c /^struct TrigEvent { int a; IdList * b; };$/;" m struct:TrigEvent file: -b polipo/io.h /^ } b;$/;" m union:_StreamRequest::__anon80 typeref:struct:_StreamRequest::__anon80::__anon82 +b polipo/io.h /^ } b;$/;" m union:_StreamRequest::__anon77 typeref:struct:_StreamRequest::__anon77::__anon79 b64 polipo/util.c /^static const char b64[64] =$/;" v file: b64cmp polipo/util.c /^b64cmp(const char *restrict a, int an, const char *restrict b, int bn)$/;" f b64cpy polipo/util.c /^b64cpy(char *restrict dst, const char *restrict src, int n, int fss)$/;" f @@ -11867,6 +11625,7 @@ bDescIdx access/sqlite3.c /^ u8 bDescIdx; \/* True if doclis bDescIdx logs/sqlite3.c /^ u8 bDescIdx; \/* True if doclists are in reverse order *\/$/;" m struct:Fts3Table file: bDestLocked access/sqlite3.c /^ int bDestLocked; \/* True once a write-transaction is open on pDest *\/$/;" m struct:sqlite3_backup file: bDestLocked logs/sqlite3.c /^ int bDestLocked; \/* True once a write-transaction is open on pDest *\/$/;" m struct:sqlite3_backup file: +bDoNotComplete vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let s:bDoNotComplete = 0$/;" v bDoTruncate access/sqlite3.c /^ u8 bDoTruncate; \/* True to truncate db on commit *\/$/;" m struct:BtShared file: bDoTruncate logs/sqlite3.c /^ u8 bDoTruncate; \/* True to truncate db on commit *\/$/;" m struct:BtShared file: bEnabled access/sqlite3.c /^ u8 bEnabled; \/* False to disable new lookaside allocations *\/$/;" m struct:Lookaside file: @@ -11912,6 +11671,7 @@ bLookup logs/sqlite3.c /^ int bLookup; \/* True if a lookup bLookup logs/sqlite3.c /^ u8 bLookup; \/* True for a lookup only *\/$/;" m struct:Fts3SegReader file: bMalloced access/sqlite3.c /^ u8 bMalloced; \/* True if pStart obtained from sqlite3_malloc() *\/$/;" m struct:Lookaside file: bMalloced logs/sqlite3.c /^ u8 bMalloced; \/* True if pStart obtained from sqlite3_malloc() *\/$/;" m struct:Lookaside file: +bMayComplete vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:bMayComplete = 0$/;" v bMemstat access/sqlite3.c /^ int bMemstat; \/* True to enable memory status *\/$/;" m struct:Sqlite3Config file: bMemstat logs/sqlite3.c /^ int bMemstat; \/* True to enable memory status *\/$/;" m struct:Sqlite3Config file: bMultiExpandable uibase/uilib/control/uilist.h /^ bool bMultiExpandable;$/;" m struct:DuiLib::tagTListInfoUI @@ -11939,6 +11699,7 @@ bRemoveDiacritic access/sqlite3.c /^ int bRemoveDiacritic;$/;" m struct:unicode bRemoveDiacritic logs/sqlite3.c /^ int bRemoveDiacritic;$/;" m struct:unicode_tokenizer file: bReserved access/sqlite3.c /^ BOOL bReserved; \/* Indicates a reserved lock has been obtained *\/$/;" m struct:winceLock file: bReserved logs/sqlite3.c /^ BOOL bReserved; \/* Indicates a reserved lock has been obtained *\/$/;" m struct:winceLock file: +bResolved vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let bResolved = 1$/;" v bRestart access/sqlite3.c /^ int bRestart;$/;" m struct:Fts3MultiSegReader file: bRestart logs/sqlite3.c /^ int bRestart;$/;" m struct:Fts3MultiSegReader file: bShowHtml uibase/uilib/control/uilist.h /^ bool bShowHtml;$/;" m struct:DuiLib::tagTListInfoUI @@ -12021,15 +11782,13 @@ base logs/sqlite3.c /^ sqlite3_vtab_cursor base; \/* Base class used by S base logs/sqlite3.c /^ sqlite3_vtab_cursor base; \/* Base class used by SQLite core *\/$/;" m struct:Fts3auxCursor file: base logs/sqlite3.c /^ sqlite3_vtab_cursor base; \/* Base class used by SQLite core *\/$/;" m struct:Fts3tokCursor file: base logs/sqlite3.c /^ sqlite3_vtab_cursor base;$/;" m struct:RtreeCursor file: -base64_decode base/algorithm/compat_base64.c /^int base64_decode(const char *in, unsigned int inlen, unsigned char *out) {$/;" f -base64_encode base/algorithm/compat_base64.c /^int base64_encode(const unsigned char *in, unsigned int inlen, char *out) {$/;" f -base64de base/algorithm/compat_base64.c /^static const signed char base64de[] = {$/;" v file: -base64en base/algorithm/compat_base64.c /^static const char base64en[] = {$/;" v file: -baseVersionNumber base/base.h /^FOUNDATION_EXPORT double baseVersionNumber;$/;" v -baseVersionString base/base.h /^FOUNDATION_EXPORT const unsigned char baseVersionString[];$/;" v +base64_decode stdcrt/algorithm/compat_base64.c /^int base64_decode(const char *in, unsigned int inlen, unsigned char *out) {$/;" f +base64_encode stdcrt/algorithm/compat_base64.c /^int base64_encode(const unsigned char *in, unsigned int inlen, char *out) {$/;" f +base64de stdcrt/algorithm/compat_base64.c /^static const signed char base64de[] = {$/;" v file: +base64en stdcrt/algorithm/compat_base64.c /^static const char base64en[] = {$/;" v file: basename_a polipo/fts_compat.c /^basename_a(const char *path)$/;" f file: -basic_tchar compat/compat_core.hpp /^ typedef char basic_tchar;$/;" t -basic_tchar compat/compat_core.hpp /^ typedef wchar_t basic_tchar;$/;" t +basic_tchar crt/crt_core.hpp /^ typedef char basic_tchar;$/;" t +basic_tchar crt/crt_core.hpp /^ typedef wchar_t basic_tchar;$/;" t basic_tstring include/utilex/plus.hpp /^ typedef std::wstring basic_tstring;$/;" t begin uibase/uilib/core/pugixml.cpp /^ const char_t* begin;$/;" m struct:xpath_lexer_string file: begin uibase/uilib/core/pugixml.cpp /^ xpath_node* begin() const$/;" f class:xpath_node_set_raw @@ -12039,6 +11798,7 @@ begin uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_tree_walker::begin(xml_ begin uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node::iterator xml_node::begin() const$/;" f class:pugi::xml_node begin uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_node_set::const_iterator xpath_node_set::begin() const$/;" f class:pugi::xpath_node_set begin uibase/uilib/core/pugixml.hpp /^ It begin() const { return _begin; }$/;" f class:pugi::xml_object_range +behavsCurrent vim_tool/.vim/autoload/acp.vim /^let s:behavsCurrent = []$/;" v bft access/sqlite3.c /^typedef unsigned bft; \/* Bit Field Type *\/$/;" t file: bft logs/sqlite3.c /^typedef unsigned bft; \/* Bit Field Type *\/$/;" t file: bgindex uibase/uilib/utils/stb_image.c /^ int flags, bgindex, ratio, transparent, eflags;$/;" m struct:__anon115 file: @@ -12113,15 +11873,15 @@ body net/protocol/smtp.h /^ char* body;$/;" m struct:mail_s body_offset polipo/diskcache.h /^ int body_offset;$/;" m struct:_DiskCacheEntry body_offset polipo/diskcache.h /^ int body_offset;$/;" m struct:_DiskObject bodylen polipo/http.h /^ int bodylen;$/;" m struct:_HTTPConnection -bool compat/compat_common.hpp 103;" d -boolean compat/compat_cjson.h /^CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);$/;" v -bottom compat/darwinossysdef.h /^ LONG bottom;$/;" m struct:tagRECT -bottom compat/darwinossysdef.h /^ LONG bottom;$/;" m struct:_RECTL -bottom compat/posixossysdef.h /^ LONG bottom;$/;" m struct:tagRECT -bottom compat/posixossysdef.h /^ LONG bottom;$/;" m struct:_RECTL +bool crt/crt_common.hpp 103;" d +boolean crt/crt_cjson.h /^CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);$/;" v +bottom crt/darwinossysdef.h /^ LONG bottom;$/;" m struct:tagRECT +bottom crt/darwinossysdef.h /^ LONG bottom;$/;" m struct:_RECTL +bottom crt/posixossysdef.h /^ LONG bottom;$/;" m struct:tagRECT +bottom crt/posixossysdef.h /^ LONG bottom;$/;" m struct:_RECTL bottom uibase/uilib/core/uimanager.h /^ double bottom;$/;" m struct:DuiLib::tagTPercentInfo btree access/sqlite3.c /^ } btree;$/;" m union:WhereLoop::__anon18 typeref:struct:WhereLoop::__anon18::__anon19 file: -btree logs/sqlite3.c /^ } btree;$/;" m union:WhereLoop::__anon63 typeref:struct:WhereLoop::__anon63::__anon64 file: +btree logs/sqlite3.c /^ } btree;$/;" m union:WhereLoop::__anon58 typeref:struct:WhereLoop::__anon58::__anon59 file: btreeClearHasContent access/sqlite3.c /^static void btreeClearHasContent(BtShared *pBt){$/;" f file: btreeClearHasContent logs/sqlite3.c /^static void btreeClearHasContent(BtShared *pBt){$/;" f file: btreeCreateTable access/sqlite3.c /^static int btreeCreateTable(Btree *p, int *piTable, int createTabFlags){$/;" f file: @@ -12169,38 +11929,38 @@ buf mempool/alloc.h /^ ngx_buf_t *buf;$/;" m struct:ngx_chain_s buf polipo/http.h /^ char *buf;$/;" m struct:_HTTPConnection buf polipo/io.h /^ char *buf;$/;" m struct:_StreamRequest buf polipo/local.h /^ void *buf;$/;" m struct:_SpecialRequest -buf polipo/md5.h /^ UINT4 buf[4]; \/* scratch buffer *\/$/;" m struct:__anon84 +buf polipo/md5.h /^ UINT4 buf[4]; \/* scratch buffer *\/$/;" m struct:__anon81 buf polipo/socks.h /^ char *buf;$/;" m struct:_SocksRequest buf polipo/tunnel.h /^ char *buf;$/;" m struct:_CircularBuffer buf1 polipo/tunnel.h /^ CircularBufferRec buf1;$/;" m struct:_Tunnel buf2 polipo/io.h /^ char *buf2;$/;" m struct:_StreamRequest buf2 polipo/tunnel.h /^ CircularBufferRec buf2;$/;" m struct:_Tunnel -buf3 polipo/io.h /^ char *buf3;$/;" m struct:_StreamRequest::__anon80::__anon82 +buf3 polipo/io.h /^ char *buf3;$/;" m struct:_StreamRequest::__anon77::__anon79 bufRead polipo/tunnel.c /^bufRead(int fd, CircularBufferPtr buf,$/;" f file: bufWrite polipo/tunnel.c /^bufWrite(int fd, CircularBufferPtr buf,$/;" f file: -buf_location polipo/io.h /^ char **buf_location;$/;" m struct:_StreamRequest::__anon80::__anon83 -bufcapacity uibase/uilib/core/pugixml.cpp /^ bufcapacity = bufcapacitybytes \/ (sizeof(char_t) + 4)$/;" e enum:xml_buffered_writer::__anon93 file: -bufcapacitybytes uibase/uilib/core/pugixml.cpp /^ bufcapacitybytes =$/;" e enum:xml_buffered_writer::__anon93 file: -buffer base/code/compat_cjson.c /^ unsigned char *buffer;$/;" m struct:__anon27 file: -buffer compat/compat_md5.h /^ unsigned char buffer[64];$/;" m struct:__anon29 +buf_location polipo/io.h /^ char **buf_location;$/;" m struct:_StreamRequest::__anon77::__anon80 +bufcapacity uibase/uilib/core/pugixml.cpp /^ bufcapacity = bufcapacitybytes \/ (sizeof(char_t) + 4)$/;" e enum:xml_buffered_writer::__anon96 file: +bufcapacitybytes uibase/uilib/core/pugixml.cpp /^ bufcapacitybytes =$/;" e enum:xml_buffered_writer::__anon96 file: +buffer crt/crt_md5.h /^ unsigned char buffer[64];$/;" m struct:__anon29 +buffer stdcrt/code/compat_cjson.c /^ unsigned char *buffer;$/;" m struct:__anon84 file: buffer uibase/uilib/core/pugixml.cpp /^ char_t buffer[bufcapacity];$/;" m class:xml_buffered_writer file: buffer uibase/uilib/core/pugixml.cpp /^ char_t* buffer;$/;" m struct:xml_extra_buffer file: buffer uibase/uilib/core/pugixml.cpp /^ const char_t* buffer;$/;" m struct:xml_document_struct file: -buffer_at_offset base/code/compat_cjson.c 224;" d file: -buffer_skip_whitespace base/code/compat_cjson.c /^static parse_buffer *buffer_skip_whitespace(parse_buffer * const buffer)$/;" f file: +buffer_at_offset stdcrt/code/compat_cjson.c 224;" d file: +buffer_skip_whitespace stdcrt/code/compat_cjson.c /^static parse_buffer *buffer_skip_whitespace(parse_buffer * const buffer)$/;" f file: buffer_start uibase/uilib/utils/stb_image.c /^ stbi_uc buffer_start[128];$/;" m struct:__anon102 file: buflen uibase/uilib/utils/stb_image.c /^ int buflen;$/;" m struct:__anon102 file: bufsize uibase/uilib/core/pugixml.cpp /^ size_t bufsize;$/;" m class:xml_buffered_writer file: buildClientAuthHeaders polipo/auth.c /^buildClientAuthHeaders(AtomPtr url, char *word,$/;" f buildServerAuthHeaders polipo/auth.c /^buildServerAuthHeaders(char* buf, int n, int size, AtomPtr authCredentials)$/;" f -build_req http/http/http_header.cpp /^const char* http_header_t::build_req() $/;" f class:http_header_t -build_req_http http/http/http_header.cpp /^void http_header_t::build_req_http()$/;" f class:http_header_t -build_req_len http/http/http_header.cpp /^size_t http_header_t::build_req_len()$/;" f class:http_header_t -build_res http/http/http_header.cpp /^const char* http_header_t::build_res() $/;" f class:http_header_t -build_res_http http/http/http_header.cpp /^void http_header_t::build_res_http()$/;" f class:http_header_t -build_res_len http/http/http_header.cpp /^size_t http_header_t::build_res_len()$/;" f class:http_header_t +build_req net/http_protocol/http_header.cpp /^const char* http_header_t::build_req() $/;" f class:http_header_t +build_req_http net/http_protocol/http_header.cpp /^void http_header_t::build_req_http()$/;" f class:http_header_t +build_req_len net/http_protocol/http_header.cpp /^size_t http_header_t::build_req_len()$/;" f class:http_header_t +build_res net/http_protocol/http_header.cpp /^const char* http_header_t::build_res() $/;" f class:http_header_t +build_res_http net/http_protocol/http_header.cpp /^void http_header_t::build_res_http()$/;" f class:http_header_t +build_res_len net/http_protocol/http_header.cpp /^size_t http_header_t::build_res_len()$/;" f class:http_header_t bus msgbus/auth.hpp /^ BusProtocol bus;$/;" m struct:_Connect_Protocol -bus msgbus/auth.hpp /^ BusProtocol bus;$/;" m struct:__anon71 +bus msgbus/auth.hpp /^ BusProtocol bus;$/;" m struct:__anon66 busy access/sqlite3.c /^ u8 busy; \/* TRUE if currently initializing *\/$/;" m struct:sqlite3::sqlite3InitInfo file: busy logs/sqlite3.c /^ u8 busy; \/* TRUE if currently initializing *\/$/;" m struct:sqlite3::sqlite3InitInfo file: busyHandler access/sqlite3.c /^ BusyHandler busyHandler; \/* Busy callback *\/$/;" m struct:sqlite3 file: @@ -12212,94 +11972,94 @@ busy_handler logs/sqlite3.c /^ int (*busy_handler)(sqlite3*,int(*)(void*,int), busy_size uibase/uilib/core/pugixml.cpp /^ size_t busy_size;$/;" m struct:xml_memory_page file: busy_timeout access/sqlite3.c /^ int (*busy_timeout)(sqlite3*,int ms);$/;" m struct:sqlite3_api_routines file: busy_timeout logs/sqlite3.c /^ int (*busy_timeout)(sqlite3*,int ms);$/;" m struct:sqlite3_api_routines file: -byte compat/darwinossysdef.h /^typedef unsigned char byte;$/;" t -byte compat/posixossysdef.h /^typedef unsigned char byte;$/;" t -bzero compat/compat_tstring.h 18;" d -c compat/compat_cjson.h /^CJSON_PUBLIC(void) cJSON_Delete(cJSON *c);$/;" v -c compat/darwinsysvar.hpp /^ pthread_cond_t c;$/;" m struct:__anon31 -c compat/posixsysvar.hpp /^ pthread_cond_t c;$/;" m struct:__anon33 +byte crt/darwinossysdef.h /^typedef unsigned char byte;$/;" t +byte crt/posixossysdef.h /^typedef unsigned char byte;$/;" t +bzero crt/crt_tstring.h 18;" d +c crt/crt_cjson.h /^CJSON_PUBLIC(void) cJSON_Delete(cJSON *c);$/;" v +c crt/darwinsysvar.hpp /^ pthread_cond_t c;$/;" m struct:__anon30 +c crt/posixsysvar.hpp /^ pthread_cond_t c;$/;" m struct:__anon27 cId access/sqlite3.c /^ char cId; \/* Symbolic ID of this loop for debugging use *\/$/;" m struct:WhereLoop file: cId logs/sqlite3.c /^ char cId; \/* Symbolic ID of this loop for debugging use *\/$/;" m struct:WhereLoop file: cInitTextMax uibase/uilib/control/uirichedit.cpp /^const LONG cInitTextMax = (32 * 1024) - 1;$/;" v -cJSON compat/compat_cjson.h /^typedef struct cJSON$/;" s -cJSON compat/compat_cjson.h /^} cJSON;$/;" t typeref:struct:cJSON -cJSON_AddBoolToObject compat/compat_cjson.h 183;" d -cJSON_AddFalseToObject compat/compat_cjson.h 182;" d -cJSON_AddItemReferenceToArray base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item)$/;" f -cJSON_AddItemReferenceToObject base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item)$/;" f -cJSON_AddItemToArray base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item)$/;" f -cJSON_AddItemToObject base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item)$/;" f -cJSON_AddItemToObjectCS base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item)$/;" f -cJSON_AddNullToObject compat/compat_cjson.h 180;" d -cJSON_AddNumberToObject compat/compat_cjson.h 184;" d -cJSON_AddRawToObject compat/compat_cjson.h 186;" d -cJSON_AddStringToObject compat/compat_cjson.h 185;" d -cJSON_AddTrueToObject compat/compat_cjson.h 181;" d -cJSON_Array compat/compat_cjson.h 26;" d -cJSON_ArrayForEach compat/compat_cjson.h 195;" d -cJSON_CreateArray base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void)$/;" f -cJSON_CreateBool base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b)$/;" f -cJSON_CreateDoubleArray base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count)$/;" f -cJSON_CreateFalse base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)$/;" f -cJSON_CreateFloatArray base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count)$/;" f -cJSON_CreateIntArray base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)$/;" f -cJSON_CreateNull base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void)$/;" f -cJSON_CreateNumber base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num)$/;" f -cJSON_CreateObject base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void)$/;" f -cJSON_CreateRaw base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw)$/;" f -cJSON_CreateString base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string)$/;" f -cJSON_CreateStringArray base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char **strings, int count)$/;" f -cJSON_CreateTrue base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)$/;" f -cJSON_Delete base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_Delete(cJSON *item)$/;" f -cJSON_DeleteItemFromArray base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which)$/;" f -cJSON_DeleteItemFromObject base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string)$/;" f -cJSON_DeleteItemFromObjectCaseSensitive base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string)$/;" f -cJSON_DetachItemFromArray base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which)$/;" f -cJSON_DetachItemFromObject base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string)$/;" f -cJSON_DetachItemFromObjectCaseSensitive base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string)$/;" f -cJSON_DetachItemViaPointer base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item)$/;" f -cJSON_Duplicate base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse)$/;" f -cJSON_False compat/compat_cjson.h 21;" d -cJSON_GetArrayItem base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index)$/;" f -cJSON_GetArraySize base/code/compat_cjson.c /^CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array)$/;" f -cJSON_GetErrorPtr base/code/compat_cjson.c /^CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void)$/;" f -cJSON_GetObjectItem base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string)$/;" f -cJSON_GetObjectItemCaseSensitive base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string)$/;" f -cJSON_Hooks compat/compat_cjson.h /^typedef struct cJSON_Hooks$/;" s -cJSON_Hooks compat/compat_cjson.h /^} cJSON_Hooks;$/;" t typeref:struct:cJSON_Hooks -cJSON_InsertItemInArray base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem)$/;" f -cJSON_Invalid compat/compat_cjson.h 20;" d -cJSON_IsReference compat/compat_cjson.h 30;" d -cJSON_Minify base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_Minify(char *json)$/;" f -cJSON_NULL compat/compat_cjson.h 23;" d -cJSON_New_Item base/code/compat_cjson.c /^static cJSON *cJSON_New_Item(const internal_hooks * const hooks)$/;" f file: -cJSON_Number compat/compat_cjson.h 24;" d -cJSON_Object compat/compat_cjson.h 27;" d -cJSON_Parse base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value)$/;" f -cJSON_ParseWithOpts base/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated)$/;" f -cJSON_Print base/code/compat_cjson.c /^CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item)$/;" f -cJSON_PrintBuffered base/code/compat_cjson.c /^CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt)$/;" f -cJSON_PrintUnformatted base/code/compat_cjson.c /^CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item)$/;" f -cJSON_Raw compat/compat_cjson.h 28;" d -cJSON_ReplaceItemInArray base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem)$/;" f -cJSON_ReplaceItemInObject base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem)$/;" f -cJSON_ReplaceItemInObjectCaseSensitive base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem)$/;" f -cJSON_SetIntValue compat/compat_cjson.h 189;" d -cJSON_SetNumberHelper base/code/compat_cjson.c /^CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number)$/;" f -cJSON_SetNumberValue compat/compat_cjson.h 192;" d -cJSON_String compat/compat_cjson.h 25;" d -cJSON_StringIsConst compat/compat_cjson.h 31;" d -cJSON_True compat/compat_cjson.h 22;" d -cJSON_bool compat/compat_cjson.h /^typedef int cJSON_bool;$/;" t -cJSON_free base/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_free(void *object)$/;" f -cJSON_malloc base/code/compat_cjson.c /^CJSON_PUBLIC(void *) cJSON_malloc(size_t size)$/;" f -cJSON_strdup base/code/compat_cjson.c /^static unsigned char* cJSON_strdup(const unsigned char* string, const internal_hooks * const hooks)$/;" f file: +cJSON crt/crt_cjson.h /^typedef struct cJSON$/;" s +cJSON crt/crt_cjson.h /^} cJSON;$/;" t typeref:struct:cJSON +cJSON_AddBoolToObject crt/crt_cjson.h 183;" d +cJSON_AddFalseToObject crt/crt_cjson.h 182;" d +cJSON_AddItemReferenceToArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item)$/;" f +cJSON_AddItemReferenceToObject stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item)$/;" f +cJSON_AddItemToArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item)$/;" f +cJSON_AddItemToObject stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item)$/;" f +cJSON_AddItemToObjectCS stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item)$/;" f +cJSON_AddNullToObject crt/crt_cjson.h 180;" d +cJSON_AddNumberToObject crt/crt_cjson.h 184;" d +cJSON_AddRawToObject crt/crt_cjson.h 186;" d +cJSON_AddStringToObject crt/crt_cjson.h 185;" d +cJSON_AddTrueToObject crt/crt_cjson.h 181;" d +cJSON_Array crt/crt_cjson.h 26;" d +cJSON_ArrayForEach crt/crt_cjson.h 195;" d +cJSON_CreateArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void)$/;" f +cJSON_CreateBool stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b)$/;" f +cJSON_CreateDoubleArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count)$/;" f +cJSON_CreateFalse stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)$/;" f +cJSON_CreateFloatArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count)$/;" f +cJSON_CreateIntArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)$/;" f +cJSON_CreateNull stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void)$/;" f +cJSON_CreateNumber stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num)$/;" f +cJSON_CreateObject stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void)$/;" f +cJSON_CreateRaw stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw)$/;" f +cJSON_CreateString stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string)$/;" f +cJSON_CreateStringArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char **strings, int count)$/;" f +cJSON_CreateTrue stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)$/;" f +cJSON_Delete stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_Delete(cJSON *item)$/;" f +cJSON_DeleteItemFromArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which)$/;" f +cJSON_DeleteItemFromObject stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string)$/;" f +cJSON_DeleteItemFromObjectCaseSensitive stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string)$/;" f +cJSON_DetachItemFromArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which)$/;" f +cJSON_DetachItemFromObject stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string)$/;" f +cJSON_DetachItemFromObjectCaseSensitive stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string)$/;" f +cJSON_DetachItemViaPointer stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item)$/;" f +cJSON_Duplicate stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse)$/;" f +cJSON_False crt/crt_cjson.h 21;" d +cJSON_GetArrayItem stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index)$/;" f +cJSON_GetArraySize stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array)$/;" f +cJSON_GetErrorPtr stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void)$/;" f +cJSON_GetObjectItem stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string)$/;" f +cJSON_GetObjectItemCaseSensitive stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string)$/;" f +cJSON_Hooks crt/crt_cjson.h /^typedef struct cJSON_Hooks$/;" s +cJSON_Hooks crt/crt_cjson.h /^} cJSON_Hooks;$/;" t typeref:struct:cJSON_Hooks +cJSON_InsertItemInArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem)$/;" f +cJSON_Invalid crt/crt_cjson.h 20;" d +cJSON_IsReference crt/crt_cjson.h 30;" d +cJSON_Minify stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_Minify(char *json)$/;" f +cJSON_NULL crt/crt_cjson.h 23;" d +cJSON_New_Item stdcrt/code/compat_cjson.c /^static cJSON *cJSON_New_Item(const internal_hooks * const hooks)$/;" f file: +cJSON_Number crt/crt_cjson.h 24;" d +cJSON_Object crt/crt_cjson.h 27;" d +cJSON_Parse stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value)$/;" f +cJSON_ParseWithOpts stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated)$/;" f +cJSON_Print stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item)$/;" f +cJSON_PrintBuffered stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt)$/;" f +cJSON_PrintUnformatted stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item)$/;" f +cJSON_Raw crt/crt_cjson.h 28;" d +cJSON_ReplaceItemInArray stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem)$/;" f +cJSON_ReplaceItemInObject stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem)$/;" f +cJSON_ReplaceItemInObjectCaseSensitive stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem)$/;" f +cJSON_SetIntValue crt/crt_cjson.h 189;" d +cJSON_SetNumberHelper stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number)$/;" f +cJSON_SetNumberValue crt/crt_cjson.h 192;" d +cJSON_String crt/crt_cjson.h 25;" d +cJSON_StringIsConst crt/crt_cjson.h 31;" d +cJSON_True crt/crt_cjson.h 22;" d +cJSON_bool crt/crt_cjson.h /^typedef int cJSON_bool;$/;" t +cJSON_free stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void) cJSON_free(void *object)$/;" f +cJSON_malloc stdcrt/code/compat_cjson.c /^CJSON_PUBLIC(void *) cJSON_malloc(size_t size)$/;" f +cJSON_strdup stdcrt/code/compat_cjson.c /^static unsigned char* cJSON_strdup(const unsigned char* string, const internal_hooks * const hooks)$/;" f file: cRefs uibase/uilib/control/uirichedit.cpp /^ ULONG cRefs; \/\/ Reference Count$/;" m class:DuiLib::CTxtWinHost file: cType access/sqlite3.c /^static const char cType[] = {$/;" v file: cType logs/sqlite3.c /^static const char cType[] = {$/;" v file: -cVal compat/compat_var.h /^ char cVal;$/;" m union:tag_varaint_t::__anon30 -c_assert compat/compat_assert.hpp 8;" d -c_assert_log compat/compat_assert.hpp 15;" d +cVal crt/crt_var.h /^ char cVal;$/;" m union:tag_varaint_t::__anon25 +c_assert crt/crt_assert.hpp 8;" d +c_assert_log crt/crt_assert.hpp 15;" d c_str uibase/uilib/core/pugixml.cpp /^ const char_t* c_str() const$/;" f class:xpath_string cacheCtr access/sqlite3.c /^ u32 cacheCtr; \/* VdbeCursor row cache generation counter *\/$/;" m struct:Vdbe file: cacheCtr logs/sqlite3.c /^ u32 cacheCtr; \/* VdbeCursor row cache generation counter *\/$/;" m struct:Vdbe file: @@ -12321,14 +12081,14 @@ callFinaliser access/sqlite3.c /^static void callFinaliser(sqlite3 *db, int offs callFinaliser logs/sqlite3.c /^static void callFinaliser(sqlite3 *db, int offset){$/;" f file: callStatGet access/sqlite3.c /^static void callStatGet(Vdbe *v, int regStat4, int iParam, int regOut){$/;" f file: callStatGet logs/sqlite3.c /^static void callStatGet(Vdbe *v, int regStat4, int iParam, int regOut){$/;" f file: -can_access_at_index base/code/compat_cjson.c 221;" d file: +can_access_at_index stdcrt/code/compat_cjson.c 221;" d file: can_mutate polipo/http.h /^ ObjectPtr can_mutate;$/;" m struct:_HTTPRequest -can_read base/code/compat_cjson.c 219;" d file: +can_read stdcrt/code/compat_cjson.c 219;" d file: cancelTimeEvent polipo/event.c /^cancelTimeEvent(TimeEventHandlerPtr event)$/;" f -cannot_access_at_index base/code/compat_cjson.c 222;" d file: -capacity compat/compat_array.h /^ int capacity;$/;" m struct:array_s +cannot_access_at_index stdcrt/code/compat_cjson.c 222;" d file: +capacity crt/crt_array.h /^ int capacity;$/;" m struct:array_s capacity uibase/uilib/core/pugixml.cpp /^ size_t capacity;$/;" m struct:xpath_memory_block file: -case_insensitive_strcmp base/code/compat_cjson.c /^static int case_insensitive_strcmp(const unsigned char *string1, const unsigned char *string2)$/;" f file: +case_insensitive_strcmp stdcrt/code/compat_cjson.c /^static int case_insensitive_strcmp(const unsigned char *string1, const unsigned char *string2)$/;" f file: cchTextMost uibase/uilib/control/uirichedit.cpp /^ LONG cchTextMost; \/\/ maximum text size$/;" m class:DuiLib::CTxtWinHost file: cd net/protocol/dns.h /^ uint8_t cd:1;$/;" m struct:dnshdr_s cd net/protocol/dns.h /^ uint8_t cd:1; \/\/ checking disable$/;" m struct:dnshdr_s @@ -12388,16 +12148,16 @@ charMap logs/sqlite3.c 118270;" d file: char_t uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool convert_string_to_number_scratch(char_t (&buffer)[32], const char_t* begin, const char_t* end, double* out_result)$/;" v char_t uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool get_variable_scratch(char_t (&buffer)[32], xpath_variable_set* set, const char_t* begin, const char_t* end, xpath_variable** out_result)$/;" v char_t uibase/uilib/core/pugixml.hpp /^ typedef PUGIXML_CHAR char_t;$/;" t namespace:pugi -char_to_ucs2 base/string/compat_utf8.c /^wchar_t* char_to_ucs2(const char *in, size_t len)$/;" f +char_to_ucs2 stdcrt/string/compat_utf8.c /^wchar_t* char_to_ucs2(const char *in, size_t len)$/;" f charset access/sqlite3.c /^ etByte charset; \/* Offset into aDigits[] of the digits string *\/$/;" m struct:et_info file: charset logs/sqlite3.c /^ etByte charset; \/* Offset into aDigits[] of the digits string *\/$/;" m struct:et_info file: chartype_t uibase/uilib/core/pugixml.cpp /^ enum chartype_t$/;" g file: chartype_table uibase/uilib/core/pugixml.cpp /^ static const unsigned char chartype_table[256] =$/;" v file: chartypex_t uibase/uilib/core/pugixml.cpp /^ enum chartypex_t$/;" g file: chartypex_table uibase/uilib/core/pugixml.cpp /^ static const unsigned char chartypex_table[256] =$/;" v file: -check net/protocol/ip.h /^ uint16_t check; \/\/ checksum$/;" m struct:iphdr_s -check net/protocol/tcp.h /^ uint16_t check; \/\/ checksum$/;" m struct:tcphdr_s -check net/protocol/udp.h /^ uint16_t check; \/\/ checksum$/;" m struct:udphdr_s +check net/protocol/ip.h /^ uint16_t check; \/\/ checksum$/;" m struct:iphdr_s +check net/protocol/tcp.h /^ uint16_t check; \/\/ checksum$/;" m struct:tcphdr_s +check net/protocol/udp.h /^ uint16_t check; \/\/ checksum$/;" m struct:udphdr_s checkActiveVdbeCnt access/sqlite3.c /^static void checkActiveVdbeCnt(sqlite3 *db){$/;" f file: checkActiveVdbeCnt access/sqlite3.c 63446;" d file: checkActiveVdbeCnt logs/sqlite3.c /^static void checkActiveVdbeCnt(sqlite3 *db){$/;" f file: @@ -12437,9 +12197,9 @@ checkVM logs/CppSQLite3.cpp /^void CppSQLite3Statement::checkVM()$/;" f class:Cp checkVia polipo/http_parse.c /^checkVia(AtomPtr name, AtomPtr via)$/;" f check_entry polipo/diskcache.c /^check_entry(DiskCacheEntryPtr entry)$/;" f file: check_string_to_number_format uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool check_string_to_number_format(const char_t* string)$/;" f -checksum net/protocol/icmp.h /^ uint16_t checksum;$/;" m struct:icmphdr_s -checksum net/protocol/icmp.h /^static_inline uint16_t checksum(uint8_t* buf, int len) {$/;" f -child compat/compat_cjson.h /^ struct cJSON *child;$/;" m struct:cJSON typeref:struct:cJSON::cJSON +checksum net/protocol/icmp.h /^ uint16_t checksum;$/;" m struct:icmphdr_s +checksum net/protocol/ip.h /^static_inline uint16_t checksum(uint8_t* buf, int len) {$/;" f +child crt/crt_cjson.h /^ struct cJSON *child;$/;" m struct:cJSON typeref:struct:cJSON::cJSON child uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node xml_node::child(const char_t* name_) const$/;" f class:pugi::xml_node childPtrSize access/sqlite3.c /^ u8 childPtrSize; \/* 0 if leaf==1. 4 if leaf==0 *\/$/;" m struct:MemPage file: childPtrSize logs/sqlite3.c /^ u8 childPtrSize; \/* 0 if leaf==1. 4 if leaf==0 *\/$/;" m struct:MemPage file: @@ -12461,7 +12221,7 @@ chunks polipo/chunk.c /^ char *chunks;$/;" m struct:_ChunkArena file: chunks polipo/object.h /^ ChunkPtr chunks;$/;" m struct:_Object circularBufferEmpty polipo/tunnel.c /^circularBufferEmpty(CircularBufferPtr buf)$/;" f file: circularBufferFull polipo/tunnel.c /^circularBufferFull(CircularBufferPtr buf)$/;" f file: -cjson_min base/code/compat_cjson.c 1046;" d file: +cjson_min stdcrt/code/compat_cjson.c 1046;" d file: ckBase access/sqlite3.c /^ int ckBase; \/* Base register of data during check constraints *\/$/;" m struct:Parse file: ckBase logs/sqlite3.c /^ int ckBase; \/* Base register of data during check constraints *\/$/;" m struct:Parse file: ckptLock access/sqlite3.c /^ u8 ckptLock; \/* True if holding a checkpoint lock *\/$/;" m struct:Wal file: @@ -12470,7 +12230,7 @@ ckptSyncFlags access/sqlite3.c /^ u8 ckptSyncFlags; \/* SYNC_NORMAL o ckptSyncFlags logs/sqlite3.c /^ u8 ckptSyncFlags; \/* SYNC_NORMAL or SYNC_FULL for checkpoint *\/$/;" m struct:Pager file: cksumInit access/sqlite3.c /^ u32 cksumInit; \/* Quasi-random value added to every checksum *\/$/;" m struct:Pager file: cksumInit logs/sqlite3.c /^ u32 cksumInit; \/* Quasi-random value added to every checksum *\/$/;" m struct:Pager file: -clamp compat/compat_core.hpp 95;" d +clamp crt/crt_core.hpp 95;" d cleanup mempool/alloc.h /^ ngx_pool_cleanup_t *cleanup;$/;" m struct:ngx_pool_s clear include/utilex/locklist.hpp /^ HRESULT clear() {$/;" f class:CLockList clear include/utilex/slice.hpp /^ void clear() {$/;" f class:Slice @@ -12506,7 +12266,7 @@ close_file uibase/uilib/core/pugixml.cpp /^ PUGI__FN void close_file(FILE* file) close_v2 access/sqlite3.c /^ int (*close_v2)(sqlite3*);$/;" m struct:sqlite3_api_routines file: close_v2 logs/sqlite3.c /^ int (*close_v2)(sqlite3*);$/;" m struct:sqlite3_api_routines file: closedir polipo/dirent_compat.c /^int closedir(DIR *dir)$/;" f -closelib base/stdlib/compat_dll.c /^int closelib(HMODULE handler) {$/;" f +closelib stdcrt/stdlib/compat_dll.c /^int closelib(HMODULE handler) {$/;" f cls container/rot.h /^ CLSID cls;$/;" m struct:CComRunningObjectTableImpl::tagRunningTableItem clsid include/dlcom/comfactory.hpp /^ CLSID clsid; $/;" m struct:_STDCOM_OBJMAP_ENTRY cnt access/sqlite3.c /^ i64 cnt; \/* Number of elements summed *\/$/;" m struct:SumCtx file: @@ -12516,7 +12276,7 @@ cnt logs/sqlite3.c /^ i64 cnt; \/* Number of elements summed *\/$/;" m cnt logs/sqlite3.c /^ int cnt; \/* Number of times this instruction was executed *\/$/;" m struct:VdbeOp file: cnt logs/sqlite3.c /^ int cnt; \/* Number of entries without a matching leave *\/$/;" m struct:sqlite3_debug_mutex file: co_interface_sentry include/dlcom/comsentry.hpp /^ struct co_interface_sentry$/;" s -code net/protocol/icmp.h /^ uint8_t code; \/\/ type sub-code$/;" m struct:icmphdr_s +code net/protocol/icmp.h /^ uint8_t code; \/\/ type sub-code$/;" m struct:icmphdr_s code polipo/object.h /^ unsigned short code;$/;" m struct:_Object code uibase/uilib/utils/stb_image.c /^ stbi__uint16 code[256];$/;" m struct:__anon104 file: codeAllEqualityTerms access/sqlite3.c /^static int codeAllEqualityTerms($/;" f file: @@ -12684,8 +12444,8 @@ conchFilePath access/sqlite3.c /^ char *conchFilePath; \/* Name of the conchFilePath logs/sqlite3.c /^ char *conchFilePath; \/* Name of the conch file *\/$/;" m struct:proxyLockingContext file: conchHeld access/sqlite3.c /^ int conchHeld; \/* 1 if the conch is held, -1 if lockless *\/$/;" m struct:proxyLockingContext file: conchHeld logs/sqlite3.c /^ int conchHeld; \/* 1 if the conch is held, -1 if lockless *\/$/;" m struct:proxyLockingContext file: -cond compat/darwinsysvar.hpp /^ pthread_cond_t cond;$/;" m struct:__anon32 -cond compat/posixsysvar.hpp /^ pthread_cond_t cond;$/;" m struct:__anon34 +cond crt/darwinsysvar.hpp /^ pthread_cond_t cond;$/;" m struct:__anon31 +cond crt/posixsysvar.hpp /^ pthread_cond_t cond;$/;" m struct:__anon28 condition polipo/event.h /^ struct _Condition *condition;$/;" m struct:_ConditionHandler typeref:struct:_ConditionHandler::_Condition condition polipo/http.h /^ HTTPConditionPtr condition;$/;" m struct:_HTTPRequest condition polipo/object.h /^ struct _Condition condition;$/;" m struct:_Object typeref:struct:_Object::_Condition @@ -12705,7 +12465,6 @@ connection polipo/server.h /^ HTTPConnectionPtr *connection;$/;" m struct:_HT connectionAddData polipo/server.c /^connectionAddData(HTTPConnectionPtr connection, int skip)$/;" f connectionIsBusy access/sqlite3.c /^static int connectionIsBusy(sqlite3 *db){$/;" f file: connectionIsBusy logs/sqlite3.c /^static int connectionIsBusy(sqlite3 *db){$/;" f file: -const CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 10;" d file: const_iterator uibase/uilib/core/pugixml.hpp /^ typedef It const_iterator;$/;" t class:pugi::xml_object_range const_iterator uibase/uilib/core/pugixml.hpp /^ typedef const xpath_node* const_iterator;$/;" t class:pugi::xpath_node_set constraintName access/sqlite3.c /^ Token constraintName;\/* Name of the constraint currently being parsed *\/$/;" m struct:Parse file: @@ -12715,8 +12474,8 @@ constructAutomaticIndex access/sqlite3.c /^static void constructAutomaticIndex($ constructAutomaticIndex logs/sqlite3.c /^static void constructAutomaticIndex($/;" f file: containerVersionNumber container/container.h /^FOUNDATION_EXPORT double containerVersionNumber;$/;" v containerVersionString container/container.h /^FOUNDATION_EXPORT const unsigned char containerVersionString[];$/;" v -content base/code/compat_cjson.c /^ const unsigned char *content;$/;" m struct:__anon26 file: -content_length http/http/http_parser.h /^ uint64_t content_length; \/* # bytes in body (0 if no Content-Length header) *\/$/;" m struct:http_parser +content stdcrt/code/compat_cjson.c /^ const unsigned char *content;$/;" m struct:__anon83 file: +content_length net/http_protocol/http_parser.h /^ uint64_t content_length; \/* # bytes in body (0 if no Content-Length header) *\/$/;" m struct:http_parser contents uibase/uilib/core/pugixml.cpp /^ const xpath_lexer_string& contents() const$/;" f class:xpath_lexer context 3rd/include/iocontext.hpp /^ io_context_t* context;$/;" m struct:io_contextpool_s contextMalloc access/sqlite3.c /^static void *contextMalloc(sqlite3_context *context, i64 nByte){$/;" f file: @@ -12769,10 +12528,10 @@ count access/sqlite3.c /^ int count; \/* Number of entries wi count access/sqlite3.c /^ int count; \/* Number of entries with this hash *\/$/;" m struct:Fts3Hash::_fts3ht file: count access/sqlite3.c /^ int count; \/* Number of entries in this table *\/$/;" m struct:Fts3Hash file: count access/sqlite3.c /^ unsigned int count; \/* Number of entries in this table *\/$/;" m struct:Hash file: -count compat/compat_array.h /^ int count; $/;" m struct:array_s -count compat/compat_md5.h /^ unsigned int count[2];$/;" m struct:__anon29 -count compat/compat_threadpool.h /^ unsigned long count;$/;" m struct:_threadpool_s -count compat/winsysvar.hpp /^ unsigned int count;$/;" m struct:__anon38 +count crt/crt_array.h /^ int count; $/;" m struct:array_s +count crt/crt_md5.h /^ unsigned int count[2];$/;" m struct:__anon29 +count crt/crt_threadpool.h /^ unsigned long count;$/;" m struct:_threadpool_s +count crt/winsysvar.hpp /^ unsigned int count;$/;" m struct:__anon35 count include/utilex/threadpool.hpp /^ int count;$/;" m class:CThreadPool count logs/sqlite3.c /^ int count; \/* Number of entries with this hash *\/$/;" m struct:Hash::_ht file: count logs/sqlite3.c /^ int count; \/* Number of entries with this hash *\/$/;" m struct:Fts3Hash::_fts3ht file: @@ -12789,6 +12548,17 @@ counter uibase/uilib/core/pugixml.cpp /^ typedef utf16_counter counter;$/;" t s counter uibase/uilib/core/pugixml.cpp /^ typedef utf32_counter counter;$/;" t struct:wchar_selector file: covered access/sqlite3.c /^ u64 covered; \/* Mask of query phrases covered *\/$/;" m struct:SnippetFragment file: covered logs/sqlite3.c /^ u64 covered; \/* Mask of query phrases covered *\/$/;" m struct:SnippetFragment file: +cpo vim_tool/.vim/plugin/taglist.vim /^ let &cpo = s:cpo_save$/;" v +cpo vim_tool/.vim/plugin/taglist.vim /^ let &cpo = s:cpo_save$/;" v +cpo vim_tool/.vim/plugin/taglist.vim /^ let &cpo = s:cpo_save$/;" v +cpo vim_tool/.vim/plugin/taglist.vim /^let &cpo = s:cpo_save$/;" v +cpo vim_tool/.vim/plugin/winfileexplorer.vim /^let &cpo = s:cpo_save$/;" v +cpo vim_tool/.vim/plugin/winmanager.vim /^let &cpo = s:cpo_save$/;" v +cpo_save vim_tool/.vim/plugin/taglist.vim /^ let s:cpo_save = &cpo$/;" v +cpo_save vim_tool/.vim/plugin/winfileexplorer.vim /^let s:cpo_save = &cpo$/;" v +cpo_save vim_tool/.vim/plugin/winmanager.vim /^let s:cpo_save = &cpo$/;" v +cppKeyword vim_tool/.vim/autoload/omni/cpp/tokenizer.vim /^let s:cppKeyword = ['asm', 'auto', 'bool', 'break', 'case', 'catch', 'char', 'class', 'const', 'const_cast', 'continue', 'default', 'delete', 'do', 'double', 'dynamic_cast', 'else', 'enum', 'explicit', 'export', 'extern', 'false', 'float', 'for', 'friend', 'goto', 'if', 'inline', 'int', 'long', 'mutable', 'namespace', 'new', 'operator', 'private', 'protected', 'public', 'register', 'reinterpret_cast', 'return', 'short', 'signed', 'sizeof', 'static', 'static_cast', 'struct', 'switch', 'template', 'this', 'throw', 'true', 'try', 'typedef', 'typeid', 'typename', 'union', 'unsigned', 'using', 'virtual', 'void', 'volatile', 'wchar_t', 'while', 'and', 'and_eq', 'bitand', 'bitor', 'compl', 'not', 'not_eq', 'or', 'or_eq', 'xor', 'xor_eq']$/;" v +cppOperatorPunctuator vim_tool/.vim/autoload/omni/cpp/tokenizer.vim /^let s:cppOperatorPunctuator = ['->*', '->', '--', '-=', '-', '!=', '!', '##', '#', '%:%:', '%=', '%>', '%:', '%', '&&', '&=', '&', '(', ')', '*=', '*', ',', '...', '.*', '.', '\/=', '\/', '::', ':>', ':', ';', '?', '[', ']', '^=', '^', '{', '||', '|=', '|', '}', '~', '++', '+=', '+', '<<=', '<%', '<:', '<<', '<=', '<', '==', '=', '>>=', '>>', '>=', '>']$/;" v create uibase/uilib/core/pugixml.cpp /^ static xml_stream_chunk* create()$/;" f struct:xml_stream_chunk create uibase/uilib/core/pugixml.cpp /^ static xpath_query_impl* create()$/;" f struct:xpath_query_impl createCollation access/sqlite3.c /^static int createCollation($/;" f file: @@ -12821,7 +12591,7 @@ create_module access/sqlite3.c /^ int (*create_module)(sqlite3*,const char*,con create_module logs/sqlite3.c /^ int (*create_module)(sqlite3*,const char*,const sqlite3_module*,void*);$/;" m struct:sqlite3_api_routines file: create_module_v2 access/sqlite3.c /^ int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,$/;" m struct:sqlite3_api_routines file: create_module_v2 logs/sqlite3.c /^ int (*create_module_v2)(sqlite3*,const char*,const sqlite3_module*,void*,$/;" m struct:sqlite3_api_routines file: -create_reference base/code/compat_cjson.c /^static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks)$/;" f file: +create_reference stdcrt/code/compat_cjson.c /^static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks)$/;" f file: csr access/sqlite3.c /^ Fts3MultiSegReader csr; \/* Must be right after "base" *\/$/;" m struct:Fts3auxCursor file: csr logs/sqlite3.c /^ Fts3MultiSegReader csr; \/* Must be right after "base" *\/$/;" m struct:Fts3auxCursor file: ct_parse_attr uibase/uilib/core/pugixml.cpp /^ ct_parse_attr = 2, \/\/ \\0, &, \\r, ', "$/;" e enum:chartype_t file: @@ -12842,8 +12612,8 @@ ctrlFlags logs/sqlite3.c /^ u8 ctrlFlags; \/* Flags. See WINFILE_* b ctrlFlags logs/sqlite3.c /^ unsigned short int ctrlFlags; \/* Behavioral bits. UNIXFILE_* flags *\/$/;" m struct:unixFile file: ctx 3rd/include/iotcp.hpp /^ io_data_t ctx;$/;" m class:IoTcpBase ctx 3rd/include/ioudp.hpp /^ io_data_t ctx;$/;" m class:IoUdpBase -ctx compat/compat_threadpool.h /^ void* ctx;$/;" m struct:io_thread_s -ctx compat/compat_threadpool.h /^ void* ctx;$/;" m struct:_threadpool_s +ctx crt/crt_threadpool.h /^ void* ctx;$/;" m struct:io_thread_s +ctx crt/crt_threadpool.h /^ void* ctx;$/;" m struct:_threadpool_s ctx_digit uibase/uilib/core/pugixml.cpp /^ ctx_digit = 8, \/\/ 0-9$/;" e enum:chartypex_t file: ctx_special_attr uibase/uilib/core/pugixml.cpp /^ ctx_special_attr = 2, \/\/ Any symbol >= 0 and < 32, &, <, ", '$/;" e enum:chartypex_t file: ctx_special_pcdata uibase/uilib/core/pugixml.cpp /^ ctx_special_pcdata = 1, \/\/ Any symbol >= 0 and < 32 (except \\t, \\r, \\n), &, <, >$/;" e enum:chartypex_t file: @@ -12868,16 +12638,16 @@ cursorHoldsMutex access/sqlite3.c /^static int cursorHoldsMutex(BtCursor *p){$/; cursorHoldsMutex logs/sqlite3.c /^static int cursorHoldsMutex(BtCursor *p){$/;" f file: cwd polipo/fts_compat.h /^ char *cwd0, *cwd;$/;" m struct:_FTS cwd0 polipo/fts_compat.h /^ char *cwd0, *cwd;$/;" m struct:_FTS -cx compat/darwinossysdef.h /^ LONG cx;$/;" m struct:tagSIZE -cx compat/darwinossysdef.h /^ LONG cx;$/;" m struct:tagSIZEL -cx compat/posixossysdef.h /^ LONG cx;$/;" m struct:tagSIZE -cx compat/posixossysdef.h /^ LONG cx;$/;" m struct:tagSIZEL +cx crt/darwinossysdef.h /^ LONG cx;$/;" m struct:tagSIZE +cx crt/darwinossysdef.h /^ LONG cx;$/;" m struct:tagSIZEL +cx crt/posixossysdef.h /^ LONG cx;$/;" m struct:tagSIZE +cx crt/posixossysdef.h /^ LONG cx;$/;" m struct:tagSIZEL cxLeftWidth uibase/uilib/dwm.hpp /^ int cxLeftWidth;$/;" m struct:tagDWL_MARGINS cxRightWidth uibase/uilib/dwm.hpp /^ int cxRightWidth;$/;" m struct:tagDWL_MARGINS -cy compat/darwinossysdef.h /^ LONG cy;$/;" m struct:tagSIZE -cy compat/darwinossysdef.h /^ LONG cy;$/;" m struct:tagSIZEL -cy compat/posixossysdef.h /^ LONG cy;$/;" m struct:tagSIZE -cy compat/posixossysdef.h /^ LONG cy;$/;" m struct:tagSIZEL +cy crt/darwinossysdef.h /^ LONG cy;$/;" m struct:tagSIZE +cy crt/darwinossysdef.h /^ LONG cy;$/;" m struct:tagSIZEL +cy crt/posixossysdef.h /^ LONG cy;$/;" m struct:tagSIZE +cy crt/posixossysdef.h /^ LONG cy;$/;" m struct:tagSIZEL cyBottomHeight uibase/uilib/dwm.hpp /^ int cyBottomHeight;$/;" m struct:tagDWL_MARGINS cyTopHeight uibase/uilib/dwm.hpp /^ int cyTopHeight;$/;" m struct:tagDWL_MARGINS cycles access/sqlite3.c /^ u64 cycles; \/* Total time spent executing this instruction *\/$/;" m struct:VdbeOp file: @@ -12885,19 +12655,19 @@ cycles logs/sqlite3.c /^ u64 cycles; \/* Total time spent executin d mempool/alloc.h /^ ngx_pool_data_t d;$/;" m struct:ngx_pool_s d2i polipo/parse_time.c /^d2i(char c)$/;" f file: d_name polipo/dirent_compat.h /^ char *d_name;$/;" m struct:dirent -daddr net/protocol/ip.h /^ uint32_t daddr; \/\/ dstaddr$/;" m struct:iphdr_s +daddr net/protocol/ip.h /^ uint32_t daddr; \/\/ dstaddr$/;" m struct:iphdr_s daemonise polipo/main.c /^int daemonise = 0;$/;" v data 3rd/include/ioeventdef.h /^ void* data;$/;" m struct:io_data_s data access/sqlite3.c /^ void *data; \/* Data associated with this element *\/$/;" m struct:HashElem file: data access/sqlite3.c /^ void *data; \/* Data associated with this element *\/$/;" m struct:Fts3HashElem file: -data compat/compat_iterator.h /^ void *data; $/;" m struct:ITER -data http/http/http_parser.h /^ void *data; \/* A pointer to get hook to the "connection" or "socket" object *\/$/;" m struct:http_parser +data crt/crt_iterator.h /^ void *data; $/;" m struct:ITER data include/utilex/slice.hpp /^ const char* data() const {$/;" f class:Slice data logs/sqlite3.c /^ void *data; \/* Data associated with this element *\/$/;" m struct:HashElem file: data logs/sqlite3.c /^ void *data; \/* Data associated with this element *\/$/;" m struct:Fts3HashElem file: data logs/stdafx.h /^ UCharArrayPtr data;$/;" m class:LogData data mempool/alloc.h /^ void *data;$/;" m struct:ngx_pool_cleanup_s data msgbus/auth.hpp /^ char* data;$/;" m struct:_StringPtr +data net/http_protocol/http_parser.h /^ void *data; \/* A pointer to get hook to the "connection" or "socket" object *\/$/;" m struct:http_parser data net/protocol/dns.h /^ char* data;$/;" m struct:dns_rr_s data polipo/dns.h /^ char data[16];$/;" m struct:_HostAddress data polipo/dns.h /^ void *data;$/;" m struct:_GethostbynameRequest @@ -12911,19 +12681,19 @@ data polipo/io.h /^ void *data;$/;" m struct:_ConnectRequest data polipo/io.h /^ void *data;$/;" m struct:_StreamRequest data polipo/object.h /^ char *data;$/;" m struct:_Chunk data polipo/socks.h /^ void *data;$/;" m struct:_SocksRequest -data uibase/uilib/core/pugixml.cpp /^ char data[xpath_memory_page_size];$/;" m union:xpath_memory_block::__anon95 file: +data uibase/uilib/core/pugixml.cpp /^ char data[xpath_memory_page_size];$/;" m union:xpath_memory_block::__anon98 file: data uibase/uilib/core/pugixml.cpp /^ T data[xml_memory_page_size \/ sizeof(T)];$/;" m struct:xml_stream_chunk file: data uibase/uilib/core/pugixml.cpp /^ T* data;$/;" m struct:auto_deleter file: data uibase/uilib/core/pugixml.cpp /^ char_t* data(xpath_allocator* alloc)$/;" f class:xpath_string data uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node xml_text::data() const$/;" f class:pugi::xml_text data uibase/uilib/utils/stb_image.c /^ stbi_uc *data;$/;" m struct:__anon105::__anon106 file: data_ include/utilex/slice.hpp /^ const char* data_;$/;" m class:Slice -data_char uibase/uilib/core/pugixml.cpp /^ char_t data_char[bufcapacity];$/;" m union:xml_buffered_writer::__anon94 file: +data_char uibase/uilib/core/pugixml.cpp /^ char_t data_char[bufcapacity];$/;" m union:xml_buffered_writer::__anon97 file: data_count access/sqlite3.c /^ int (*data_count)(sqlite3_stmt*pStmt);$/;" m struct:sqlite3_api_routines file: data_count logs/sqlite3.c /^ int (*data_count)(sqlite3_stmt*pStmt);$/;" m struct:sqlite3_api_routines file: -data_u16 uibase/uilib/core/pugixml.cpp /^ uint16_t data_u16[2 * bufcapacity];$/;" m union:xml_buffered_writer::__anon94 file: -data_u32 uibase/uilib/core/pugixml.cpp /^ uint32_t data_u32[bufcapacity];$/;" m union:xml_buffered_writer::__anon94 file: -data_u8 uibase/uilib/core/pugixml.cpp /^ uint8_t data_u8[4 * bufcapacity];$/;" m union:xml_buffered_writer::__anon94 file: +data_u16 uibase/uilib/core/pugixml.cpp /^ uint16_t data_u16[2 * bufcapacity];$/;" m union:xml_buffered_writer::__anon97 file: +data_u32 uibase/uilib/core/pugixml.cpp /^ uint32_t data_u32[bufcapacity];$/;" m union:xml_buffered_writer::__anon97 file: +data_u8 uibase/uilib/core/pugixml.cpp /^ uint8_t data_u8[4 * bufcapacity];$/;" m union:xml_buffered_writer::__anon97 file: databaseIsUnmoved access/sqlite3.c /^static int databaseIsUnmoved(Pager *pPager){$/;" f file: databaseIsUnmoved logs/sqlite3.c /^static int databaseIsUnmoved(Pager *pPager){$/;" f file: datalen net/protocol/dns.h /^ uint16_t datalen;$/;" m struct:dns_rr_s @@ -12959,7 +12729,7 @@ db logs/sqlite3.c /^ sqlite3 *db; \/* Database connection currently us db logs/sqlite3.c /^ sqlite3 *db; \/* Optional database for lookaside. Can be NULL *\/$/;" m struct:StrAccum file: db logs/sqlite3.c /^ sqlite3 *db; \/* The main database structure *\/$/;" m struct:Parse file: db logs/sqlite3.c /^ sqlite3 *db; \/* The associated database connection *\/$/;" m struct:Mem file: -db logs/sqlite3.c /^ sqlite3 *db; \/* The database being initialized *\/$/;" m struct:__anon52 file: +db logs/sqlite3.c /^ sqlite3 *db; \/* The database being initialized *\/$/;" m struct:__anon47 file: db logs/sqlite3.c /^ sqlite3 *db; \/* The database connection *\/$/;" m struct:KeyInfo file: db logs/sqlite3.c /^ sqlite3 *db; \/* The database connection holding this btree *\/$/;" m struct:Btree file: db logs/sqlite3.c /^ sqlite3 *db;$/;" m struct:analysisInfo file: @@ -12995,7 +12765,7 @@ db_release_memory access/sqlite3.c /^ int (*db_release_memory)(sqlite3*);$/;" m db_release_memory logs/sqlite3.c /^ int (*db_release_memory)(sqlite3*);$/;" m struct:sqlite3_api_routines file: db_status access/sqlite3.c /^ int (*db_status)(sqlite3*,int,int*,int*,int);$/;" m struct:sqlite3_api_routines file: db_status logs/sqlite3.c /^ int (*db_status)(sqlite3*,int,int*,int*,int);$/;" m struct:sqlite3_api_routines file: -dblVal compat/compat_var.h /^ double dblVal;$/;" m union:tag_varaint_t::__anon30 +dblVal crt/crt_var.h /^ double dblVal;$/;" m union:tag_varaint_t::__anon25 dc_pred uibase/uilib/utils/stb_image.c /^ int dc_pred;$/;" m struct:__anon105::__anon106 file: dct_bfly32o uibase/uilib/utils/stb_image.c 2045;" d file: dct_bfly32o uibase/uilib/utils/stb_image.c 2179;" d file: @@ -13041,7 +12811,7 @@ dct_wsub uibase/uilib/utils/stb_image.c 2040;" d file: dct_wsub uibase/uilib/utils/stb_image.c 2178;" d file: dct_wsub uibase/uilib/utils/stb_image.c 2226;" d file: dct_wsub uibase/uilib/utils/stb_image.c 2388;" d file: -deallocate base/code/compat_cjson.c /^ void (*deallocate)(void *pointer);$/;" m struct:internal_hooks file: +deallocate stdcrt/code/compat_cjson.c /^ void (*deallocate)(void *pointer);$/;" m struct:internal_hooks file: deallocate uibase/uilib/core/pugixml.cpp /^ static deallocation_function deallocate;$/;" m struct:xml_memory_management_function_storage file: deallocate uibase/uilib/core/pugixml.cpp /^ template deallocation_function xml_memory_management_function_storage::deallocate = default_deallocate;$/;" m class:xml_memory_management_function_storage file: deallocateFdEventNum polipo/event.c /^deallocateFdEventNum(int i)$/;" f @@ -13067,10 +12837,11 @@ debugMutexNotheld access/sqlite3.c /^static int debugMutexNotheld(sqlite3_mutex debugMutexNotheld logs/sqlite3.c /^static int debugMutexNotheld(sqlite3_mutex *pX){$/;" f file: debugMutexTry access/sqlite3.c /^static int debugMutexTry(sqlite3_mutex *pX){$/;" f file: debugMutexTry logs/sqlite3.c /^static int debugMutexTry(sqlite3_mutex *pX){$/;" f file: -debug_view compat/compat_debug.hpp 19;" d -debug_view compat/compat_debug.hpp 23;" d -debug_view compat/compat_debug.hpp 26;" d -dec_tab http/http/httputil.cpp /^static unsigned char dec_tab[256] = {$/;" v file: +debugWinManager vim_tool/.vim/plugin/winmanager.vim /^let g:debugWinManager = 1$/;" v +debug_view crt/crt_debug.hpp 19;" d +debug_view crt/crt_debug.hpp 23;" d +debug_view crt/crt_debug.hpp 26;" d +dec_tab net/http_protocol/httputil.cpp /^static unsigned char dec_tab[256] = {$/;" v file: declareConfigVariable polipo/config.c /^declareConfigVariable(AtomPtr name, int type, void *value, $/;" f declareVtab access/sqlite3.c /^ u8 declareVtab; \/* True if inside sqlite3_declare_vtab() *\/$/;" m struct:Parse file: declareVtab logs/sqlite3.c /^ u8 declareVtab; \/* True if inside sqlite3_declare_vtab() *\/$/;" m struct:Parse file: @@ -13082,6 +12853,8 @@ decodeIntArray access/sqlite3.c /^static void decodeIntArray($/;" f file: decodeIntArray logs/sqlite3.c /^static void decodeIntArray($/;" f file: decoder uibase/uilib/core/pugixml.cpp /^ typedef utf16_decoder decoder;$/;" t struct:wchar_selector file: decoder uibase/uilib/core/pugixml.cpp /^ typedef utf32_decoder decoder;$/;" t struct:wchar_selector file: +defaultExplorer vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:defaultExplorer = 1$/;" v +defaultExplorer vim_tool/.vim/plugin/winmanager.vim /^ let g:defaultExplorer = 1$/;" v default_allocate uibase/uilib/core/pugixml.cpp /^ PUGI__FN void* default_allocate(size_t size)$/;" f default_array_safeptr include/utilex/safeptr.hpp /^struct default_array_safeptr$/;" s default_deallocate uibase/uilib/core/pugixml.cpp /^ PUGI__FN void default_deallocate(void* ptr)$/;" f @@ -13105,6 +12878,7 @@ default_value include/utilex/safeptr.hpp /^ static HMODULE default_value() { default_value include/utilex/string.hpp /^ static void* default_value()$/;" f struct:ChartoUcs2Struct deferredMoveto access/sqlite3.c /^ u8 deferredMoveto; \/* A call to sqlite3BtreeMoveto() is needed *\/$/;" m struct:VdbeCursor file: deferredMoveto logs/sqlite3.c /^ u8 deferredMoveto; \/* A call to sqlite3BtreeMoveto() is needed *\/$/;" m struct:VdbeCursor file: +defineOption vim_tool/.vim/plugin/acp.vim /^function s:defineOption(name, default)$/;" f defragmentPage access/sqlite3.c /^static int defragmentPage(MemPage *pPage){$/;" f file: defragmentPage logs/sqlite3.c /^static int defragmentPage(MemPage *pPage){$/;" f file: delayedHttpClientContinue polipo/client.c /^delayedHttpClientContinue(HTTPConnectionPtr connection)$/;" f @@ -13121,9 +12895,9 @@ deleter uibase/uilib/core/pugixml.cpp /^ D deleter;$/;" m struct:auto_deleter f delim access/sqlite3.c /^ char delim[128]; \/* flag ASCII delimiters *\/$/;" m struct:simple_tokenizer file: delim logs/sqlite3.c /^ char delim[128]; \/* flag ASCII delimiters *\/$/;" m struct:simple_tokenizer file: delta uibase/uilib/utils/stb_image.c /^ int delta[17]; \/\/ old 'firstsymbol' - old 'firstcode'$/;" m struct:__anon104 file: -depth base/code/compat_cjson.c /^ size_t depth; \/* How deeply nested (in arrays\/objects) is the input at the current offset. *\/$/;" m struct:__anon26 file: -depth base/code/compat_cjson.c /^ size_t depth; \/* current nesting depth (for formatted printing) *\/$/;" m struct:__anon27 file: depth polipo/fts_compat.h /^ int depth;$/;" m struct:_FTS +depth stdcrt/code/compat_cjson.c /^ size_t depth; \/* How deeply nested (in arrays\/objects) is the input at the current offset. *\/$/;" m struct:__anon83 file: +depth stdcrt/code/compat_cjson.c /^ size_t depth; \/* current nesting depth (for formatted printing) *\/$/;" m struct:__anon84 file: depth uibase/uilib/core/pugixml.cpp /^ PUGI__FN int xml_tree_walker::depth() const$/;" f class:pugi::xml_tree_walker dequant uibase/uilib/utils/stb_image.c /^ stbi_uc dequant[4][64];$/;" m struct:__anon105 file: desc access/sqlite3.c /^ unsigned char desc; \/* True for DESC. False for ASC. *\/$/;" m struct:sqlite3_index_info::sqlite3_index_orderby file: @@ -13132,13 +12906,13 @@ desc logs/sqlite3.c /^ unsigned char desc; \/* True for DESC. False f desc logs/sqlite3.h /^ unsigned char desc; \/* True for DESC. False for ASC. *\/$/;" m struct:sqlite3_index_info::sqlite3_index_orderby descendToCell access/sqlite3.c /^static int descendToCell($/;" f file: descendToCell logs/sqlite3.c /^static int descendToCell($/;" f file: -description http/http/http_parser.cpp /^ const char *description;$/;" m struct:__anon44 file: +description net/http_protocol/http_parser.cpp /^ const char *description;$/;" m struct:__anon74 file: description uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char* xml_parse_result::description() const$/;" f class:pugi::xml_parse_result description uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char* xpath_parse_result::description() const$/;" f class:pugi::xpath_parse_result deserializeGeometry access/sqlite3.c /^static int deserializeGeometry(sqlite3_value *pValue, RtreeConstraint *pCons){$/;" f file: deserializeGeometry logs/sqlite3.c /^static int deserializeGeometry(sqlite3_value *pValue, RtreeConstraint *pCons){$/;" f file: -dest net/protocol/tcp.h /^ uint16_t dest; \/\/ dest port$/;" m struct:tcphdr_s -dest net/protocol/udp.h /^ uint16_t dest; \/\/ dest port$/;" m struct:udphdr_s +dest net/protocol/tcp.h /^ uint16_t dest; \/\/ dest port$/;" m struct:tcphdr_s +dest net/protocol/udp.h /^ uint16_t dest; \/\/ dest port$/;" m struct:udphdr_s destroy access/stdafx.h /^ template static void destroy(_Ptr p)$/;" f struct:sqlite3_sentry destroy include/dlcom/comsentry.hpp /^ template static void destroy(_Ptr p) $/;" f struct:co_interface_sentry destroy include/utilex/json.hpp /^ template static void destroy(_Ptr p)$/;" f struct:json_sentry @@ -13187,7 +12961,7 @@ diSelected uibase/uilib/control/uilist.h /^ TDrawInfo diSelected;$/;" m struc difference_type uibase/uilib/core/pugixml.hpp /^ typedef ptrdiff_t difference_type;$/;" t class:pugi::xml_attribute_iterator difference_type uibase/uilib/core/pugixml.hpp /^ typedef ptrdiff_t difference_type;$/;" t class:pugi::xml_named_node_iterator difference_type uibase/uilib/core/pugixml.hpp /^ typedef ptrdiff_t difference_type;$/;" t class:pugi::xml_node_iterator -digest polipo/md5.h /^ unsigned char digest[16]; \/* actual digest after MD5Final call *\/$/;" m struct:__anon84 +digest polipo/md5.h /^ unsigned char digest[16]; \/* actual digest after MD5Final call *\/$/;" m struct:__anon81 digit polipo/util.c /^digit(char c)$/;" f dir polipo/fts_compat.h /^ DIR *dir[FTS_MAX_DEPTH];$/;" m struct:_FTS directMode access/sqlite3.c /^ u8 directMode; \/* Direct rendering mode means take data directly$/;" m struct:AggInfo file: @@ -13197,7 +12971,7 @@ dirfd polipo/fts_compat.c /^dirfd(DIR *dir)$/;" f file: dirnameUrl polipo/diskcache.c /^dirnameUrl(char *url, int n, char *name, int len)$/;" f file: dirname_a polipo/fts_compat.c /^dirname_a(const char *path)$/;" f file: dirtyDiskEntry polipo/diskcache.c /^dirtyDiskEntry(ObjectPtr object)$/;" f -dirwalk base/io/compat_path.c /^void dirwalk(basic_tchar *dir, int(*func)(basic_tchar *name, get_file_cb entry, void* ctx),$/;" f +dirwalk stdcrt/io/compat_path.c /^void dirwalk(basic_tchar *dir, int(*func)(basic_tchar *name, get_file_cb entry, void* ctx),$/;" f disableConfiguration polipo/local.c /^int disableConfiguration = 0;$/;" v disableIndexing polipo/local.c /^int disableIndexing = 1;$/;" v disableLocalInterface polipo/local.c /^int disableLocalInterface = 0;$/;" v @@ -13215,7 +12989,7 @@ disable_simulated_io_errors logs/sqlite3.c /^void disable_simulated_io_errors(vo disable_simulated_io_errors logs/sqlite3.c 43096;" d file: disable_simulated_io_errors logs/sqlite3.c 9563;" d file: disallow access/sqlite3.c /^ int disallow; \/* Do not allow memory allocation *\/$/;" m struct:__anon10 file: -disallow logs/sqlite3.c /^ int disallow; \/* Do not allow memory allocation *\/$/;" m struct:__anon55 file: +disallow logs/sqlite3.c /^ int disallow; \/* Do not allow memory allocation *\/$/;" m struct:__anon50 file: discardObjects polipo/object.c /^discardObjects(int all, int force)$/;" f discardObjectsHandler polipo/object.c /^discardObjectsHandler(TimeEventHandlerPtr event)$/;" f discardServer polipo/server.c /^discardServer(HTTPServerPtr server)$/;" f file: @@ -13240,7 +13014,7 @@ displayP4 access/sqlite3.c /^static char *displayP4(Op *pOp, char *zTemp, int nT displayP4 logs/sqlite3.c /^static char *displayP4(Op *pOp, char *zTemp, int nTemp){$/;" f file: dispose include/utilex/safeptr.hpp /^ void dispose()$/;" f class:SafePtr dispose_chunk polipo/chunk.c /^dispose_chunk(void *chunk)$/;" f -dlen compat/compat_iterator.h /^ int dlen; $/;" m struct:ITER +dlen crt/crt_iterator.h /^ int dlen; $/;" m struct:ITER dlen polipo/forbidden.c /^static int rlen, rsize, dlen, dsize;$/;" v file: dname polipo/fts_compat.h /^ char *dname;$/;" m struct:_FTS dnsBuildQuery polipo/dns.c /^dnsBuildQuery(int id, char *buf, int offset, int n, AtomPtr name, int af)$/;" f file: @@ -13265,18 +13039,18 @@ dnsTimeoutHandler polipo/dns.c /^dnsTimeoutHandler(TimeEventHandlerPtr event)$/; dnsUseGethostbyname polipo/dns.c /^const int dnsUseGethostbyname = 0;$/;" v dnsUseGethostbyname polipo/dns.c /^const int dnsUseGethostbyname = 3;$/;" v dnsUseGethostbyname polipo/dns.c /^int dnsUseGethostbyname = 1;$/;" v -dns_free net/protocol/dns.cpp /^void dns_free(dns_t* dns) {$/;" f -dns_name_decode net/protocol/dns.cpp /^int dns_name_decode(const char* buf, char* domain) {$/;" f -dns_name_encode net/protocol/dns.cpp /^int dns_name_encode(const char* domain, char* buf) {$/;" f -dns_pack net/protocol/dns.cpp /^int dns_pack(dns_t* dns, char* buf, int len) {$/;" f -dns_query net/protocol/dns.cpp /^int dns_query(dns_t* query, dns_t* response, const char* nameserver) {$/;" f -dns_rr_pack net/protocol/dns.cpp /^int dns_rr_pack(dns_rr_t* rr, char* buf, int len) {$/;" f +dns_free net/protocol/dns.c /^void dns_free(dns_t* dns) {$/;" f +dns_name_decode net/protocol/dns.c /^int dns_name_decode(const char* buf, char* domain) {$/;" f +dns_name_encode net/protocol/dns.c /^int dns_name_encode(const char* domain, char* buf) {$/;" f +dns_pack net/protocol/dns.c /^int dns_pack(dns_t* dns, char* buf, int len) {$/;" f +dns_query net/protocol/dns.c /^int dns_query(dns_t* query, dns_t* response, const char* nameserver) {$/;" f +dns_rr_pack net/protocol/dns.c /^int dns_rr_pack(dns_rr_t* rr, char* buf, int len) {$/;" f dns_rr_s net/protocol/dns.h /^typedef struct dns_rr_s {$/;" s dns_rr_t net/protocol/dns.h /^} dns_rr_t;$/;" t typeref:struct:dns_rr_s -dns_rr_unpack net/protocol/dns.cpp /^int dns_rr_unpack(char* buf, int len, dns_rr_t* rr, int is_question) {$/;" f +dns_rr_unpack net/protocol/dns.c /^int dns_rr_unpack(char* buf, int len, dns_rr_t* rr, int is_question) {$/;" f dns_s net/protocol/dns.h /^typedef struct dns_s {$/;" s dns_t net/protocol/dns.h /^} dns_t;$/;" t typeref:struct:dns_s -dns_unpack net/protocol/dns.cpp /^int dns_unpack(char* buf, int len, dns_t* dns) {$/;" f +dns_unpack net/protocol/dns.c /^int dns_unpack(char* buf, int len, dns_t* dns) {$/;" f dnshdr_s net/protocol/dns.h /^typedef struct dnshdr_s {$/;" s dnshdr_t net/protocol/dns.h /^} dnshdr_t;$/;" t typeref:struct:dnshdr_s doNotSpill access/sqlite3.c /^ u8 doNotSpill; \/* Do not spill the cache when non-zero *\/$/;" m struct:Pager file: @@ -13307,13 +13081,13 @@ do_stream_3 polipo/io.c /^do_stream_3(int operation, int fd, int offset, $/;" f do_stream_buf polipo/io.c /^do_stream_buf(int operation, int fd, int offset, char **buf_location, int len,$/;" f do_stream_h polipo/io.c /^do_stream_h(int operation, int fd, int offset,$/;" f do_tunnel polipo/tunnel.c /^do_tunnel(int fd, char *buf, int offset, int len, AtomPtr url)$/;" f -do_work base/thread/compat_threadpool.c /^static void do_work(void* arg) {$/;" f file: +do_work stdcrt/thread/compat_threadpool.c /^static void do_work(void* arg) {$/;" f file: doclist access/sqlite3.c /^ Fts3Doclist doclist;$/;" m struct:Fts3Phrase file: doclist logs/sqlite3.c /^ Fts3Doclist doclist;$/;" m struct:Fts3Phrase file: document_buffer_order uibase/uilib/core/pugixml.cpp /^ PUGI__FN const void* document_buffer_order(const xpath_node& xnode)$/;" f document_element uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node xml_document::document_element() const$/;" f class:pugi::xml_document document_order_comparator uibase/uilib/core/pugixml.cpp /^ struct document_order_comparator$/;" s file: -doff net/protocol/tcp.h /^ uint16_t doff : 4;$/;" m struct:tcphdr_s +doff net/protocol/tcp.h /^ uint16_t doff:4;$/;" m struct:tcphdr_s doingRerun access/sqlite3.c /^ bft doingRerun:1; \/* True if rerunning after an auto-reprepare *\/$/;" m struct:Vdbe file: doingRerun logs/sqlite3.c /^ bft doingRerun:1; \/* True if rerunning after an auto-reprepare *\/$/;" m struct:Vdbe file: domain polipo/forbidden.c /^ char domain[1];$/;" m struct:_Domain file: @@ -13369,12 +13143,12 @@ dwDisabledTextColor uibase/uilib/control/uilist.h /^ DWORD dwDisabledTextColo dwEventMask uibase/uilib/control/uirichedit.cpp /^ DWORD dwEventMask; \/\/ DoEvent mask to pass on to parent window$/;" m class:DuiLib::CTxtWinHost file: dwFlags uibase/uilib/dwm.hpp /^ DWORD dwFlags;$/;" m struct:DWM_BLURBEHIND dwHLineColor uibase/uilib/control/uilist.h /^ DWORD dwHLineColor;$/;" m struct:DuiLib::tagTListInfoUI -dwHighDateTime compat/darwinossysdef.h /^ DWORD dwHighDateTime;$/;" m struct:_FILETIME -dwHighDateTime compat/posixossysdef.h /^ DWORD dwHighDateTime;$/;" m struct:_FILETIME +dwHighDateTime crt/darwinossysdef.h /^ DWORD dwHighDateTime;$/;" m struct:_FILETIME +dwHighDateTime crt/posixossysdef.h /^ DWORD dwHighDateTime;$/;" m struct:_FILETIME dwHotBkColor uibase/uilib/control/uilist.h /^ DWORD dwHotBkColor;$/;" m struct:DuiLib::tagTListInfoUI dwHotTextColor uibase/uilib/control/uilist.h /^ DWORD dwHotTextColor;$/;" m struct:DuiLib::tagTListInfoUI -dwLowDateTime compat/darwinossysdef.h /^ DWORD dwLowDateTime;$/;" m struct:_FILETIME -dwLowDateTime compat/posixossysdef.h /^ DWORD dwLowDateTime;$/;" m struct:_FILETIME +dwLowDateTime crt/darwinossysdef.h /^ DWORD dwLowDateTime;$/;" m struct:_FILETIME +dwLowDateTime crt/posixossysdef.h /^ DWORD dwLowDateTime;$/;" m struct:_FILETIME dwMask uibase/uilib/core/uimanager.h /^ DWORD dwMask;$/;" m struct:DuiLib::tagTImageInfo dwSelectedBkColor uibase/uilib/control/uilist.h /^ DWORD dwSelectedBkColor;$/;" m struct:DuiLib::tagTListInfoUI dwSelectedTextColor uibase/uilib/control/uilist.h /^ DWORD dwSelectedTextColor;$/;" m struct:DuiLib::tagTListInfoUI @@ -13390,7 +13164,7 @@ eDest logs/sqlite3.c /^ u8 eDest; \/* How to dispose of the results. eDistinct access/sqlite3.c /^ u8 eDistinct; \/* One of the WHERE_DISTINCT_* values below *\/$/;" m struct:WhereInfo file: eDistinct logs/sqlite3.c /^ u8 eDistinct; \/* One of the WHERE_DISTINCT_* values below *\/$/;" m struct:WhereInfo file: eEndLoopOp access/sqlite3.c /^ u8 eEndLoopOp; \/* IN Loop terminator. OP_Next or OP_Prev *\/$/;" m struct:WhereLevel::__anon16::__anon17::InLoop file: -eEndLoopOp logs/sqlite3.c /^ u8 eEndLoopOp; \/* IN Loop terminator. OP_Next or OP_Prev *\/$/;" m struct:WhereLevel::__anon61::__anon62::InLoop file: +eEndLoopOp logs/sqlite3.c /^ u8 eEndLoopOp; \/* IN Loop terminator. OP_Next or OP_Prev *\/$/;" m struct:WhereLevel::__anon56::__anon57::InLoop file: eEvalmode access/sqlite3.c /^ int eEvalmode; \/* An FTS3_EVAL_XX constant *\/$/;" m struct:Fts3Cursor file: eEvalmode logs/sqlite3.c /^ int eEvalmode; \/* An FTS3_EVAL_XX constant *\/$/;" m struct:Fts3Cursor file: eFIELD_ATTRIBUTE access/dbimpl.h /^enum eFIELD_ATTRIBUTE{$/;" g @@ -13431,7 +13205,7 @@ eType logs/sqlite3.c /^ int eType; \/* One of the FTSQUERY_XXX eType logs/sqlite3.c /^ u8 eType; \/* Allocation type code *\/$/;" m struct:MemBlockHdr file: ebcdicToAscii access/sqlite3.c /^const unsigned char ebcdicToAscii[] = {$/;" v ebcdicToAscii logs/sqlite3.c /^const unsigned char ebcdicToAscii[] = {$/;" v -echo net/protocol/icmp.h /^ } echo;$/;" m union:icmphdr_s::__anon72 typeref:struct:icmphdr_s::__anon72::__anon73 +echo net/protocol/icmp.h /^ } echo;$/;" m union:icmphdr_s::__anon67 typeref:struct:icmphdr_s::__anon67::__anon68 eflags uibase/uilib/utils/stb_image.c /^ int flags, bgindex, ratio, transparent, eflags;$/;" m struct:__anon115 file: empty include/utilex/slice.hpp /^ bool empty() const {$/;" f class:Slice empty uibase/uilib/core/pugixml.cpp /^ bool empty() const$/;" f class:xpath_node_set_raw @@ -13456,7 +13230,7 @@ enc logs/sqlite3.c /^ u8 enc; \/* SQLITE_UTF8, SQLITE_UTF16BE, SQLI enc logs/sqlite3.c /^ u8 enc; \/* Text encoding handled by xCmp() *\/$/;" m struct:CollSeq file: enc logs/sqlite3.c /^ u8 enc; \/* Text encoding used by this database *\/$/;" m struct:Schema file: enc logs/sqlite3.c /^ u8 enc; \/* Text encoding - one of the SQLITE_UTF* values *\/$/;" m struct:KeyInfo file: -enc_tab http/http/httputil.cpp /^static unsigned char enc_tab[] = "0123456789ABCDEF";$/;" v file: +enc_tab net/http_protocol/httputil.cpp /^static unsigned char enc_tab[] = "0123456789ABCDEF";$/;" v file: encoding uibase/uilib/core/pugixml.cpp /^ xml_encoding encoding;$/;" m class:xml_buffered_writer file: encoding uibase/uilib/core/pugixml.hpp /^ xml_encoding encoding;$/;" m struct:pugi::xml_parse_result encoding_auto uibase/uilib/core/pugixml.hpp /^ encoding_auto, \/\/ Auto-detect input encoding using BOM or < \/ static bool equal_to(_Ptr l, _Ptr r)$/;" f struct:sqlite3_sentry equal_to include/dlcom/comsentry.hpp /^ template static bool equal_to(_Ptr, _Ptr) $/;" f struct:co_interface_sentry equal_to include/utilex/json.hpp /^ template static bool equal_to(_Ptr l, _Ptr r)$/;" f struct:json_sentry @@ -13529,8 +13303,8 @@ errmsg access/sqlite3.c /^ const char * (*errmsg)(sqlite3*);$/;" m struct:sqlit errmsg logs/sqlite3.c /^ const char * (*errmsg)(sqlite3*);$/;" m struct:sqlite3_api_routines file: errmsg16 access/sqlite3.c /^ const void * (*errmsg16)(sqlite3*);$/;" m struct:sqlite3_api_routines file: errmsg16 logs/sqlite3.c /^ const void * (*errmsg16)(sqlite3*);$/;" m struct:sqlite3_api_routines file: -error base/code/compat_cjson.c /^} error;$/;" t typeref:struct:__anon25 file: -error compat/compat_funcb.h /^ funccb error;$/;" m struct:io_func_s +error crt/crt_funcb.h /^ funccb error;$/;" m struct:io_func_s +error stdcrt/code/compat_cjson.c /^} error;$/;" t typeref:struct:__anon82 file: error uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* error(const char* message)$/;" f struct:xpath_parser error uibase/uilib/core/pugixml.hpp /^ const char* error;$/;" m struct:pugi::xpath_parse_result errorAction access/sqlite3.c /^ u8 errorAction; \/* Recovery action to do in case of an error *\/$/;" m struct:Vdbe file: @@ -13549,6 +13323,11 @@ errorfunccb 3rd/include/iocontext.hpp /^ static int errorfunccb(void* data, void errorfunccb include/utilex/threadpool.hpp /^ static int errorfunccb(void* data, void* ctx)$/;" f class:CThreadPool errstr access/sqlite3.c /^ const char *(*errstr)(int);$/;" m struct:sqlite3_api_routines file: errstr logs/sqlite3.c /^ const char *(*errstr)(int);$/;" m struct:sqlite3_api_routines file: +escfilename vim_tool/.vim/plugin/winfileexplorer.vim /^ let s:escfilename = ' %#'$/;" v +escfilename vim_tool/.vim/plugin/winfileexplorer.vim /^ let s:escfilename = ' \\%#'$/;" v +escfilename vim_tool/.vim/plugin/winmanager.vim /^ let s:escfilename = ' %#'$/;" v +escfilename vim_tool/.vim/plugin/winmanager.vim /^ let s:escfilename = ' \\%#'$/;" v +escregexp vim_tool/.vim/plugin/winfileexplorer.vim /^let s:escregexp = '\/*^$.~\\'$/;" v estLog access/sqlite3.c /^static LogEst estLog(LogEst N){$/;" f file: estLog logs/sqlite3.c /^static LogEst estLog(LogEst N){$/;" f file: establishDnsSocket polipo/dns.c /^establishDnsSocket()$/;" f file: @@ -13623,7 +13402,7 @@ evaluate_string uibase/uilib/core/pugixml.cpp /^ PUGI__FN string_t xpath_query:: event 3rd/include/ioeventdef.h /^ unsigned long event;$/;" m struct:io_data_s event extensions/include/ui/iuibase.h /^ UINT event;$/;" m struct:TagNotifyEvent eventLoop polipo/event.c /^eventLoop()$/;" f -event_id compat/compat_core.hpp /^typedef unsigned long event_id;$/;" t +event_id crt/crt_core.hpp /^typedef unsigned long event_id;$/;" t events polipo/mingw.h /^ short events; \/* requested events *\/$/;" m struct:pollfd exclMask access/sqlite3.c /^ u16 exclMask; \/* Mask of exclusive locks held *\/$/;" m struct:unixShm file: exclMask access/sqlite3.c /^ u16 exclMask; \/* Mask of exclusive locks held *\/$/;" m struct:winShm file: @@ -13646,7 +13425,7 @@ execQuery logs/CppSQLite3.cpp /^CppSQLite3Query CppSQLite3Statement::execQuery() execScalar logs/CppSQLite3.cpp /^int CppSQLite3DB::execScalar(const char* szSQL)$/;" f class:CppSQLite3DB execSql access/sqlite3.c /^static int execSql(sqlite3 *db, char **pzErrMsg, const char *zSql){$/;" f file: execSql logs/sqlite3.c /^static int execSql(sqlite3 *db, char **pzErrMsg, const char *zSql){$/;" f file: -exit compat/compat_threadpool.h /^ _sem_t exit;$/;" m struct:_threadpool_s +exit crt/crt_threadpool.h /^ _sem_t exit;$/;" m struct:_threadpool_s exitFlag polipo/event.c /^static int exitFlag = 0;$/;" v file: exitFlag polipo/event.c /^static volatile sig_atomic_t exitFlag = 0;$/;" v file: exit_message logs/logfilters.h /^ _QUEUE exit_message;$/;" m class:CLogFiltersImpl @@ -13667,6 +13446,20 @@ expired logs/sqlite3.c /^ bft expired:1; \/* True if the VM needs to b expired logs/sqlite3.c /^ int (*expired)(sqlite3_stmt*);$/;" m struct:sqlite3_api_routines file: expires polipo/diskcache.h /^ time_t expires;$/;" m struct:_DiskObject expires polipo/object.h /^ time_t expires;$/;" m struct:_Object +explDateFormat vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explDateFormat="%d %b %Y %H:%M"$/;" v +explDetailedHelp vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explDetailedHelp=0$/;" v +explDetailedList vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explDetailedList=0$/;" v +explDirsFirst vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explDirsFirst=1$/;" v +explHideFiles vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explHideFiles=''$/;" v +explSortBy vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explSortBy='name'$/;" v +explSplitBelow vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explSplitBelow = &splitbelow$/;" v +explSplitRight vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explSplitRight = &splitright$/;" v +explStartBelow vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explStartBelow = g:explSplitBelow$/;" v +explStartRight vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explStartRight = g:explSplitRight$/;" v +explSuffixesLast vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explSuffixesLast=1$/;" v +explUseSeparators vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explUseSeparators=0$/;" v +explVertical vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explVertical=0$/;" v +explWinSize vim_tool/.vim/plugin/winfileexplorer.vim /^ let g:explWinSize=15$/;" v explain access/sqlite3.c /^ bft explain:2; \/* True if EXPLAIN present on SQL command *\/$/;" m struct:Vdbe file: explain access/sqlite3.c /^ u8 explain; \/* True if the EXPLAIN flag is found on the query *\/$/;" m struct:Parse file: explain logs/sqlite3.c /^ bft explain:2; \/* True if EXPLAIN present on SQL command *\/$/;" m struct:Vdbe file: @@ -13753,17 +13546,21 @@ extension polipo/diskcache.c /^ char *extension;$/;" m struct:_MimeEntry file extra_buffers uibase/uilib/core/pugixml.cpp /^ xml_extra_buffer* extra_buffers;$/;" m struct:xml_document_struct file: f access/sqlite3.c /^ RtreeValue f;$/;" m union:RtreeCoord file: f logs/sqlite3.c /^ RtreeValue f;$/;" m union:RtreeCoord file: -f polipo/config.h /^ float *f;$/;" m union:_ConfigVariable::__anon78 +f polipo/config.h /^ float *f;$/;" m union:_ConfigVariable::__anon76 fEnable uibase/uilib/dwm.hpp /^ BOOL fEnable;$/;" m struct:DWM_BLURBEHIND fErrorOrAux access/sqlite3.c /^ u8 fErrorOrAux; \/* isError!=0 or pVdbe->pAuxData modified *\/$/;" m struct:sqlite3_context file: fErrorOrAux logs/sqlite3.c /^ u8 fErrorOrAux; \/* isError!=0 or pVdbe->pAuxData modified *\/$/;" m struct:sqlite3_context file: fTransitionOnMaximized uibase/uilib/dwm.hpp /^ BOOL fTransitionOnMaximized;$/;" m struct:DWM_BLURBEHIND facility polipo/log.c /^static int facility;$/;" v file: -failed mempool/alloc.h /^ ngx_uint_t failed;$/;" m struct:__anon70 -false compat/compat_common.hpp 104;" d +failed mempool/alloc.h /^ ngx_uint_t failed;$/;" m struct:__anon65 +false crt/crt_common.hpp 104;" d fast uibase/uilib/utils/stb_image.c /^ stbi__uint16 fast[1 << STBI__ZFAST_BITS];$/;" m struct:__anon108 file: fast uibase/uilib/utils/stb_image.c /^ stbi_uc fast[1 << FAST_BITS];$/;" m struct:__anon104 file: fast_ac uibase/uilib/utils/stb_image.c /^ stbi__int16 fast_ac[4][1 << FAST_BITS];$/;" m struct:__anon105 file: +favDirs vim_tool/.vim/plugin/winfileexplorer.vim /^ let s:favDirs = expand('$HOME').'\/'$/;" v +favDirs vim_tool/.vim/plugin/winfileexplorer.vim /^ let s:favDirs = g:favDirs."\\\/\\n".expand('$HOME')$/;" v +favDirs vim_tool/.vim/plugin/winfileexplorer.vim /^let s:favDirs = substitute(s:favDirs, '\\', '\/', 'g')$/;" v +favDirs vim_tool/.vim/plugin/winfileexplorer.vim /^let s:favDirs = substitute(s:favDirs, '\\\/\\\/', '\\\/', 'g')$/;" v fcntlSizeHint access/sqlite3.c /^static int fcntlSizeHint(unixFile *pFile, i64 nByte){$/;" f file: fcntlSizeHint logs/sqlite3.c /^static int fcntlSizeHint(unixFile *pFile, i64 nByte){$/;" f file: fd access/sqlite3.c /^ int fd; \/* file desc to assoc this lock with *\/$/;" m struct:ByteRangeLockPB2 file: @@ -13792,6 +13589,7 @@ fdEventsLast polipo/event.c /^static FdEventHandlerPtr *fdEvents = NULL, *fdEven fdatasync access/sqlite3.c 26948;" d file: fdatasync logs/sqlite3.c 26948;" d file: fds_invalid polipo/event.c /^static int fds_invalid = 0;$/;" v file: +feedPopup vim_tool/.vim/autoload/acp.vim /^function s:feedPopup()$/;" f fetchPayload access/sqlite3.c /^static const void *fetchPayload($/;" f file: fetchPayload logs/sqlite3.c /^static const void *fetchPayload($/;" f file: fieldDataType logs/CppSQLite3.cpp /^int CppSQLite3Query::fieldDataType(int nCol)$/;" f class:CppSQLite3Query @@ -13807,9 +13605,10 @@ fieldValue logs/CppSQLite3.cpp /^const char* CppSQLite3Query::fieldValue(const c fieldValue logs/CppSQLite3.cpp /^const char* CppSQLite3Query::fieldValue(int nField)$/;" f class:CppSQLite3Query fieldValue logs/CppSQLite3.cpp /^const char* CppSQLite3Table::fieldValue(const char* szField)$/;" f class:CppSQLite3Table fieldValue logs/CppSQLite3.cpp /^const char* CppSQLite3Table::fieldValue(int nField)$/;" f class:CppSQLite3Table -field_data http/http/http_parser.h /^ } field_data[UF_MAX];$/;" m struct:http_parser_url typeref:struct:http_parser_url::__anon45 -field_set http/http/http_parser.h /^ uint16_t field_set; \/* Bitmask of (1 << UF_*) values *\/$/;" m struct:http_parser_url +field_data net/http_protocol/http_parser.h /^ } field_data[UF_MAX];$/;" m struct:http_parser_url typeref:struct:http_parser_url::__anon73 +field_set net/http_protocol/http_parser.h /^ uint16_t field_set; \/* Bitmask of (1 << UF_*) values *\/$/;" m struct:http_parser_url file uibase/uilib/core/pugixml.hpp /^ void* file;$/;" m class:pugi::xml_writer_file +fileExplorer vim_tool/.vim/plugin/winmanager.vim /^ augroup fileExplorer$/;" a fileHasMoved access/sqlite3.c /^static int fileHasMoved(unixFile *pFile){$/;" f file: fileHasMoved logs/sqlite3.c /^static int fileHasMoved(unixFile *pFile){$/;" f file: fileId access/sqlite3.c /^ struct unixFileId fileId; \/* The lookup key *\/$/;" m struct:unixInodeInfo typeref:struct:unixInodeInfo::unixFileId file: @@ -13828,8 +13627,8 @@ file_format access/sqlite3.c /^ u8 file_format; \/* Schema format version file_format logs/sqlite3.c /^ u8 file_format; \/* Schema format version for this file *\/$/;" m struct:Schema file: file_handle_safeptr include/utilex/safeptr.hpp /^struct file_handle_safeptr$/;" s file_last mempool/alloc.h /^ off_t file_last;$/;" m struct:ngx_buf_s -file_path compat/compat_file.h /^typedef const char* file_path;$/;" t -file_path_len compat/compat_file.h /^typedef unsigned long file_path_len;$/;" t +file_path crt/crt_file.h /^typedef const char* file_path;$/;" t +file_path_len crt/crt_file.h /^typedef unsigned long file_path_len;$/;" t file_pos mempool/alloc.h /^ off_t file_pos;$/;" m struct:ngx_buf_s filemapping_safeptr include/utilex/safeptr.hpp /^struct filemapping_safeptr$/;" s filename polipo/diskcache.h /^ char *filename;$/;" m struct:_DiskCacheEntry @@ -13843,7 +13642,7 @@ filter access/sqlite3.c /^ Fts3SegFilter filter;$/;" m struct:Fts3auxCursor fil filter logs/sqlite3.c /^ Fts3SegFilter filter;$/;" m struct:Fts3auxCursor file: filter polipo/diskcache.c /^filter(DiskObjectPtr p, const char *root, int n, int recursive)$/;" f file: filterDiskObjects polipo/diskcache.c /^filterDiskObjects(DiskObjectPtr from, const char *root, int recursive)$/;" f -fin net/protocol/tcp.h /^ uint16_t fin : 1;$/;" m struct:tcphdr_s +fin net/protocol/tcp.h /^ uint16_t fin:1;$/;" m struct:tcphdr_s finalDbSize access/sqlite3.c /^static Pgno finalDbSize(BtShared *pBt, Pgno nOrig, Pgno nFree){$/;" f file: finalDbSize logs/sqlite3.c /^static Pgno finalDbSize(BtShared *pBt, Pgno nOrig, Pgno nFree){$/;" f file: finalize access/sqlite3.c /^ int (*finalize)(sqlite3_stmt*pStmt);$/;" m struct:sqlite3_api_routines file: @@ -13899,9 +13698,10 @@ find_node uibase/uilib/core/pugixml.hpp /^ template xml_no find_substring uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char_t* find_substring(const char_t* s, const char_t* p)$/;" f finder_type access/sqlite3.c /^typedef const sqlite3_io_methods *(*finder_type)(const char*,unixFile*);$/;" t file: finder_type logs/sqlite3.c /^typedef const sqlite3_io_methods *(*finder_type)(const char*,unixFile*);$/;" t file: +finishPopup vim_tool/.vim/autoload/acp.vim /^function s:finishPopup(fGroup1)$/;" f first access/sqlite3.c /^ Fts3HashElem *first; \/* The first element of the array *\/$/;" m struct:Fts3Hash file: first access/sqlite3.c /^ HashElem *first; \/* The first element of the array *\/$/;" m struct:Hash file: -first compat/compat_list.h /^ struct _list_item *first;$/;" m struct:_list_s typeref:struct:_list_s::_list_item +first crt/crt_list.h /^ struct _list_item *first;$/;" m struct:_list_s typeref:struct:_list_s::_list_item first logs/sqlite3.c /^ Fts3HashElem *first; \/* The first element of the array *\/$/;" m struct:Fts3Hash file: first logs/sqlite3.c /^ HashElem *first; \/* The first element of the array *\/$/;" m struct:Hash file: first uibase/uilib/core/pugixml.cpp /^ xpath_node first() const$/;" f class:xpath_node_set_raw @@ -13945,8 +13745,6 @@ flags access/sqlite3.c /^ u16 flags; \/* Flags associated with this s flags access/sqlite3.c /^ u16 flags; \/* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. *\/$/;" m struct:Mem file: flags access/sqlite3.c /^ u32 flags; \/* Various flags. EP_* See below *\/$/;" m struct:Expr file: flags access/sqlite3.c /^ u8 flags; \/* Boolean settings. UNPACKED_... below *\/$/;" m struct:UnpackedRecord file: -flags http/http/http_parser.h /^ unsigned int flags : 8; \/* F_* values from 'flags' enum; semi-public *\/$/;" m struct:http_parser -flags http/http/http_parser.h /^enum flags$/;" g flags logs/sqlite3.c /^ etByte flags; \/* One or more of FLAG_ constants below *\/$/;" m struct:et_info file: flags logs/sqlite3.c /^ int flags; \/* xOpen flags *\/$/;" m struct:JournalFile file: flags logs/sqlite3.c /^ int flags; \/* Miscellaneous flags. See below *\/$/;" m struct:sqlite3 file: @@ -13958,6 +13756,8 @@ flags logs/sqlite3.c /^ u16 flags; \/* Flags associated with this sch flags logs/sqlite3.c /^ u16 flags; \/* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. *\/$/;" m struct:Mem file: flags logs/sqlite3.c /^ u32 flags; \/* Various flags. EP_* See below *\/$/;" m struct:Expr file: flags logs/sqlite3.c /^ u8 flags; \/* Boolean settings. UNPACKED_... below *\/$/;" m struct:UnpackedRecord file: +flags net/http_protocol/http_parser.h /^ unsigned int flags : 8; \/* F_* values from 'flags' enum; semi-public *\/$/;" m struct:http_parser +flags net/http_protocol/http_parser.h /^enum flags$/;" g flags polipo/http.h /^ int flags;$/;" m struct:_HTTPConnection flags polipo/http.h /^ int flags;$/;" m struct:_HTTPRequest flags polipo/object.h /^ int flags;$/;" m struct:_CacheControl @@ -13980,7 +13780,7 @@ flockLock access/sqlite3.c /^static int flockLock(sqlite3_file *id, int eFileLoc flockLock logs/sqlite3.c /^static int flockLock(sqlite3_file *id, int eFileLock) {$/;" f file: flockUnlock access/sqlite3.c /^static int flockUnlock(sqlite3_file *id, int eFileLock) {$/;" f file: flockUnlock logs/sqlite3.c /^static int flockUnlock(sqlite3_file *id, int eFileLock) {$/;" f file: -fltVal compat/compat_var.h /^ float fltVal;$/;" m union:tag_varaint_t::__anon30 +fltVal crt/crt_var.h /^ float fltVal;$/;" m union:tag_varaint_t::__anon25 flush mempool/alloc.h /^ unsigned flush : 1;$/;" m struct:ngx_buf_s flush uibase/uilib/core/pugixml.cpp /^ char_t* flush(char_t* s)$/;" f struct:gap flush uibase/uilib/core/pugixml.cpp /^ size_t flush()$/;" f class:xml_buffered_writer @@ -14008,12 +13808,12 @@ forbiddenTunnelsDomains polipo/forbidden.c /^DomainPtr *forbiddenTunnelsDomains forbiddenTunnelsFile polipo/forbidden.c /^AtomPtr forbiddenTunnelsFile = NULL;$/;" v forbiddenTunnelsRegex polipo/forbidden.c /^regex_t *forbiddenTunnelsRegex = NULL;$/;" v forbiddenUrl polipo/forbidden.c /^AtomPtr forbiddenUrl = NULL;$/;" v -foreach compat/compat_iterator.h 38;" d -foreach_reverse compat/compat_iterator.h 37;" d -foreach_reverse_t compat/compat_iterator.h 29;" d -foreach_t compat/compat_iterator.h 23;" d -format base/code/compat_cjson.c /^ cJSON_bool format; \/* is this print a formatted print *\/$/;" m struct:__anon27 file: +foreach crt/crt_iterator.h 38;" d +foreach_reverse crt/crt_iterator.h 37;" d +foreach_reverse_t crt/crt_iterator.h 29;" d +foreach_t crt/crt_iterator.h 23;" d format logs/CppSQLite3.cpp /^const char* CppSQLite3Buffer::format(const char* szFormat, ...)$/;" f class:CppSQLite3Buffer +format stdcrt/code/compat_cjson.c /^ cJSON_bool format; \/* is this print a formatted print *\/$/;" m struct:__anon84 file: format_attribute_single_quote uibase/uilib/core/pugixml.hpp /^ const unsigned int format_attribute_single_quote = 0x200;$/;" v format_default uibase/uilib/core/pugixml.hpp /^ const unsigned int format_default = format_indent;$/;" v format_indent uibase/uilib/core/pugixml.hpp /^ const unsigned int format_indent = 0x01;$/;" v @@ -14026,8 +13826,8 @@ format_save_file_text uibase/uilib/core/pugixml.hpp /^ const unsigned int format format_skip_control_chars uibase/uilib/core/pugixml.hpp /^ const unsigned int format_skip_control_chars = 0x100;$/;" v format_time polipo/parse_time.c /^format_time(char *buf, int i, int len, time_t t)$/;" f format_write_bom uibase/uilib/core/pugixml.hpp /^ const unsigned int format_write_bom = 0x02;$/;" v -frag net/protocol/icmp.h /^ } frag;$/;" m union:icmphdr_s::__anon72 typeref:struct:icmphdr_s::__anon72::__anon74 -frag_off net/protocol/ip.h /^ uint16_t frag_off; \/\/ fragment offset$/;" m struct:iphdr_s +frag net/protocol/icmp.h /^ } frag;$/;" m union:icmphdr_s::__anon67 typeref:struct:icmphdr_s::__anon67::__anon69 +frag_off net/protocol/ip.h /^ uint16_t frag_off; \/\/ fragment offset$/;" m struct:iphdr_s free access/sqlite3.c /^ void (*free)(void*);$/;" m struct:sqlite3_api_routines file: free logs/sqlite3.c /^ void (*free)(void*);$/;" m struct:sqlite3_api_routines file: freeCursorConstraints access/sqlite3.c /^static void freeCursorConstraints(RtreeCursor *pCsr){$/;" f file: @@ -14049,7 +13849,7 @@ freeTempSpace logs/sqlite3.c /^static void freeTempSpace(BtShared *pBt){$/;" f f free_arena polipo/chunk.c /^free_arena(void *addr, size_t size)$/;" f file: free_chunk_arenas polipo/chunk.c /^free_chunk_arenas()$/;" f free_chunks polipo/chunk.c /^free_chunks()$/;" f -free_fn compat/compat_cjson.h /^ void (*free_fn)(void *ptr);$/;" m struct:cJSON_Hooks +free_fn crt/crt_cjson.h /^ void (*free_fn)(void *ptr);$/;" m struct:cJSON_Hooks free_table access/sqlite3.c /^ void (*free_table)(char**result);$/;" m struct:sqlite3_api_routines file: free_table logs/sqlite3.c /^ void (*free_table)(char**result);$/;" m struct:sqlite3_api_routines file: freed_size uibase/uilib/core/pugixml.cpp /^ size_t freed_size;$/;" m struct:xml_memory_page file: @@ -14622,12 +14422,12 @@ full_fsync logs/sqlite3.c /^static int full_fsync(int fd, int fullSync, int data full_length polipo/http_parse.h /^ int full_length;$/;" m struct:HTTPRange full_size uibase/uilib/core/pugixml.cpp /^ uint16_t full_size; \/\/ 0 if string occupies whole page$/;" m struct:xml_memory_string_header file: func 3rd/include/ioeventdef.h /^ async_fun_cb func;$/;" m struct:io_data_s -func compat/compat_threadpool.h /^ io_func_t func;$/;" m struct:io_thread_s -func compat/compat_threadpool.h /^ io_func_t func;$/;" m struct:_threadpool_s +func crt/crt_threadpool.h /^ io_func_t func;$/;" m struct:io_thread_s +func crt/crt_threadpool.h /^ io_func_t func;$/;" m struct:_threadpool_s func extensions/include/platform/services/license.hpp /^ pfnGetGetLicenseCode func;$/;" m class:CLicenseLoader funcFlags access/sqlite3.c /^ u16 funcFlags; \/* Some combination of SQLITE_FUNC_* *\/$/;" m struct:FuncDef file: funcFlags logs/sqlite3.c /^ u16 funcFlags; \/* Some combination of SQLITE_FUNC_* *\/$/;" m struct:FuncDef file: -funccb compat/compat_funcb.h /^typedef int (*funccb)(void* data,void* context);$/;" t +funccb crt/crt_funcb.h /^typedef int (*funccb)(void* data,void* context);$/;" t functionDestroy access/sqlite3.c /^static void functionDestroy(sqlite3 *db, FuncDef *p){$/;" f file: functionDestroy logs/sqlite3.c /^static void functionDestroy(sqlite3 *db, FuncDef *p){$/;" f file: functionSearch access/sqlite3.c /^static FuncDef *functionSearch($/;" f file: @@ -14640,7 +14440,7 @@ g_start access/sqlite3.c /^static sqlite_uint64 g_start;$/;" v file: g_start logs/sqlite3.c /^static sqlite_uint64 g_start;$/;" v file: gap uibase/uilib/core/pugixml.cpp /^ gap(): end(0), size(0)$/;" f struct:gap gap uibase/uilib/core/pugixml.cpp /^ struct gap$/;" s file: -gateway net/protocol/icmp.h /^ uint32_t gateway;$/;" m union:icmphdr_s::__anon72 +gateway net/protocol/icmp.h /^ uint32_t gateway;$/;" m union:icmphdr_s::__anon67 gen_nan uibase/uilib/core/pugixml.cpp /^ PUGI__FN double gen_nan()$/;" f generateColumnNames access/sqlite3.c /^static void generateColumnNames($/;" f file: generateColumnNames logs/sqlite3.c /^static void generateColumnNames($/;" f file: @@ -14677,6 +14477,8 @@ getCellInfo access/sqlite3.c /^ static void getCellInfo(BtCursor *pCur){$/;" f getCellInfo access/sqlite3.c 54448;" d file: getCellInfo logs/sqlite3.c /^ static void getCellInfo(BtCursor *pCur){$/;" f file: getCellInfo logs/sqlite3.c 54448;" d file: +getCurrentText vim_tool/.vim/autoload/acp.vim /^function s:getCurrentText()$/;" f +getCurrentWord vim_tool/.vim/autoload/acp.vim /^function s:getCurrentWord()$/;" f getDigits access/sqlite3.c /^static int getDigits(const char *zDate, ...){$/;" f file: getDigits logs/sqlite3.c /^static int getDigits(const char *zDate, ...){$/;" f file: getDoubleArg access/sqlite3.c /^static double getDoubleArg(PrintfArguments *p){$/;" f file: @@ -14699,6 +14501,7 @@ getLockingMode access/sqlite3.c /^static int getLockingMode(const char *z){$/;" getLockingMode logs/sqlite3.c /^static int getLockingMode(const char *z){$/;" f file: getMask access/sqlite3.c /^static Bitmask getMask(WhereMaskSet *pMaskSet, int iCursor){$/;" f file: getMask logs/sqlite3.c /^static Bitmask getMask(WhereMaskSet *pMaskSet, int iCursor){$/;" f file: +getMatchingSnipItems vim_tool/.vim/autoload/acp.vim /^function s:getMatchingSnipItems(base)$/;" f getNextETag polipo/http_parse.c /^getNextETag(const char * restrict buf, int i, $/;" f file: getNextNode access/sqlite3.c /^static int getNextNode($/;" f file: getNextNode logs/sqlite3.c /^static int getNextNode($/;" f file: @@ -14715,6 +14518,7 @@ getOverflowPage access/sqlite3.c /^static int getOverflowPage($/;" f file: getOverflowPage logs/sqlite3.c /^static int getOverflowPage($/;" f file: getPageReferenced access/sqlite3.c /^static int getPageReferenced(IntegrityCk *pCheck, Pgno iPg){$/;" f file: getPageReferenced logs/sqlite3.c /^static int getPageReferenced(IntegrityCk *pCheck, Pgno iPg){$/;" f file: +getPostText vim_tool/.vim/autoload/acp.vim /^function s:getPostText()$/;" f getRowTrigger access/sqlite3.c /^static TriggerPrg *getRowTrigger($/;" f file: getRowTrigger logs/sqlite3.c /^static TriggerPrg *getRowTrigger($/;" f file: getSafetyLevel access/sqlite3.c /^static u8 getSafetyLevel(const char *z, int omitFull, int dflt){$/;" f file: @@ -14734,7 +14538,7 @@ getVarint logs/sqlite3.c 12536;" d file: getVarint32 access/sqlite3.c 12531;" d file: getVarint32 logs/sqlite3.c 12531;" d file: get_allocator uibase/uilib/core/pugixml.cpp /^ template inline xml_allocator& get_allocator(const Object* object)$/;" f -get_array_item base/code/compat_cjson.c /^static cJSON* get_array_item(const cJSON *array, size_t index)$/;" f file: +get_array_item stdcrt/code/compat_cjson.c /^static cJSON* get_array_item(const cJSON *array, size_t index)$/;" f file: get_autocommit access/sqlite3.c /^ int (*get_autocommit)(sqlite3*);$/;" m struct:sqlite3_api_routines file: get_autocommit logs/sqlite3.c /^ int (*get_autocommit)(sqlite3*);$/;" m struct:sqlite3_api_routines file: get_auxdata access/sqlite3.c /^ void * (*get_auxdata)(sqlite3_context*,int);$/;" m struct:sqlite3_api_routines file: @@ -14743,12 +14547,12 @@ get_back include/utilex/lockqueue.hpp /^ HRESULT get_back(_Ty* pNode) {$/;" f cl get_boolean uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xpath_variable::get_boolean() const$/;" f class:pugi::xpath_variable get_buffer_encoding uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_encoding get_buffer_encoding(xml_encoding encoding, const void* contents, size_t size)$/;" f get_chunk polipo/chunk.c /^get_chunk()$/;" f -get_decimal_point base/code/compat_cjson.c /^static unsigned char get_decimal_point(void)$/;" f file: +get_decimal_point stdcrt/code/compat_cjson.c /^static unsigned char get_decimal_point(void)$/;" f file: get_document uibase/uilib/core/pugixml.cpp /^ template inline xml_document_struct& get_document(const Object* object)$/;" f -get_file_cb compat/compat_path.h /^typedef void(*get_file_cb)(const basic_tchar* szPath, void* ctx);$/;" t +get_file_cb crt/crt_path.h /^typedef void(*get_file_cb)(const basic_tchar* szPath, void* ctx);$/;" t get_file_cb_func logs/logsimpl.cpp /^void get_file_cb_func(const basic_tchar* szPath, void* context)$/;" f -get_file_info base/io/compat_path.c /^int get_file_info(basic_tchar *cFilePath, get_file_cb entry, void* ctx)$/;" f -get_file_info base/io/compat_path.c /^int get_file_info(basic_tchar *name, get_file_cb entry, void* ctx)$/;" f +get_file_info stdcrt/io/compat_path.c /^int get_file_info(basic_tchar *cFilePath, get_file_cb entry, void* ctx)$/;" f +get_file_info stdcrt/io/compat_path.c /^int get_file_info(basic_tchar *name, get_file_cb entry, void* ctx)$/;" f get_file_size uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_parse_status get_file_size(FILE* file, size_t& out_result)$/;" f get_front include/utilex/lockqueue.hpp /^ HRESULT get_front(_Ty* pNode) {$/;" f class:CLockQueue get_instance 3rd/include/iocontext.hpp /^ io_service* get_instance() {$/;" f class:IoContextBase @@ -14760,14 +14564,14 @@ get_memory_deallocation_function uibase/uilib/core/pugixml.cpp /^ PUGI__FN deall get_mutable_buffer uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool get_mutable_buffer(char_t*& out_buffer, size_t& out_length, const void* contents, size_t size, bool is_mutable)$/;" f get_node_set uibase/uilib/core/pugixml.cpp /^ PUGI__FN const xpath_node_set& xpath_variable::get_node_set() const$/;" f class:pugi::xpath_variable get_number uibase/uilib/core/pugixml.cpp /^ PUGI__FN double xpath_variable::get_number() const$/;" f class:pugi::xpath_variable -get_object_item base/code/compat_cjson.c /^static cJSON *get_object_item(const cJSON * const object, const char * const name, const cJSON_bool case_sensitive)$/;" f file: +get_object_item stdcrt/code/compat_cjson.c /^static cJSON *get_object_item(const cJSON * const object, const char * const name, const cJSON_bool case_sensitive)$/;" f file: get_page uibase/uilib/core/pugixml.cpp /^ xml_memory_page* get_page() const$/;" f class:compact_header get_strconv_attribute uibase/uilib/core/pugixml.cpp /^ PUGI__FN strconv_attribute_t get_strconv_attribute(unsigned int optmask)$/;" f get_strconv_pcdata uibase/uilib/core/pugixml.cpp /^ PUGI__FN strconv_pcdata_t get_strconv_pcdata(unsigned int optmask)$/;" f get_string uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char_t* xpath_variable::get_string() const$/;" f class:pugi::xpath_variable get_table access/sqlite3.c /^ int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**);$/;" m struct:sqlite3_api_routines file: get_table logs/sqlite3.c /^ int (*get_table)(sqlite3*,const char*,char***,int*,int*,char**);$/;" m struct:sqlite3_api_routines file: -get_time_t base/stdlib/compat_stdtime.c /^int get_time_t(char* tm, unsigned long len)$/;" f +get_time_t stdcrt/stdlib/compat_stdtime.c /^int get_time_t(char* tm, unsigned long len)$/;" f get_valid_length uibase/uilib/core/pugixml.cpp /^ PUGI__FN size_t get_valid_length(const char_t* data, size_t length)$/;" f get_value_bool uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool get_value_bool(const char_t* value)$/;" f get_value_double uibase/uilib/core/pugixml.cpp /^ PUGI__FN double get_value_double(const char_t* value)$/;" f @@ -14790,8 +14594,8 @@ gettimeofday polipo/mingw.c 40;" d file: gettimeofday polipo/mingw.h 139;" d globInfo access/sqlite3.c /^static const struct compareInfo globInfo = { '*', '?', '[', 0 };$/;" v typeref:struct:compareInfo file: globInfo logs/sqlite3.c /^static const struct compareInfo globInfo = { '*', '?', '[', 0 };$/;" v typeref:struct:compareInfo file: -global_error base/code/compat_cjson.c /^static error global_error = { NULL, 0 };$/;" v file: -global_hooks base/code/compat_cjson.c /^static internal_hooks global_hooks = { internal_malloc, internal_free, internal_realloc };$/;" v file: +global_error stdcrt/code/compat_cjson.c /^static error global_error = { NULL, 0 };$/;" v file: +global_hooks stdcrt/code/compat_cjson.c /^static internal_hooks global_hooks = { internal_malloc, internal_free, internal_realloc };$/;" v file: global_recover access/sqlite3.c /^ int (*global_recover)(void);$/;" m struct:sqlite3_api_routines file: global_recover logs/sqlite3.c /^ int (*global_recover)(void);$/;" m struct:sqlite3_api_routines file: groupConcatFinalize access/sqlite3.c /^static void groupConcatFinalize(sqlite3_context *context){$/;" f file: @@ -14814,7 +14618,7 @@ h logs/sqlite3.c /^ HANDLE h; \/* Handle for accessing the file * h logs/sqlite3.c /^ int h, m; \/* Hour and minutes *\/$/;" m struct:DateTime file: h logs/sqlite3.c /^ int h; \/* The file descriptor *\/$/;" m struct:unixFile file: h logs/sqlite3.c /^ int h; \/* Open file descriptor *\/$/;" m struct:unixShmNode file: -h polipo/io.h /^ } h;$/;" m union:_StreamRequest::__anon80 typeref:struct:_StreamRequest::__anon80::__anon81 +h polipo/io.h /^ } h;$/;" m union:_StreamRequest::__anon77 typeref:struct:_StreamRequest::__anon77::__anon78 h uibase/uilib/utils/stb_image.c /^ int h,v;$/;" m struct:__anon105::__anon106 file: h uibase/uilib/utils/stb_image.c /^ int w,h;$/;" m struct:__anon115 file: h2 uibase/uilib/utils/stb_image.c /^ int x,y,w2,h2;$/;" m struct:__anon105::__anon106 file: @@ -14841,31 +14645,31 @@ hShared access/sqlite3.c /^ HANDLE hShared; \/* Shared memory segment u hShared logs/sqlite3.c /^ HANDLE hShared; \/* Shared memory segment used for locking *\/$/;" m struct:winFile file: hWnd uibase/uilib/core/uimanager.cpp /^ HWND hWnd;$/;" m struct:DuiLib::tagTIMERINFO file: hWnd uibase/uilib/utils/wndshadow.cpp /^ HWND hWnd;$/;" m struct:HWNDSHADOW file: -h_C http/http/http_parser.cpp /^ , h_C$/;" e enum:header_states file: -h_CO http/http/http_parser.cpp /^ , h_CO$/;" e enum:header_states file: -h_CON http/http/http_parser.cpp /^ , h_CON$/;" e enum:header_states file: -h_connection http/http/http_parser.cpp /^ , h_connection$/;" e enum:header_states file: -h_connection_close http/http/http_parser.cpp /^ , h_connection_close$/;" e enum:header_states file: -h_connection_keep_alive http/http/http_parser.cpp /^ , h_connection_keep_alive$/;" e enum:header_states file: -h_connection_upgrade http/http/http_parser.cpp /^ , h_connection_upgrade$/;" e enum:header_states file: -h_content_length http/http/http_parser.cpp /^ , h_content_length$/;" e enum:header_states file: -h_content_length_num http/http/http_parser.cpp /^ , h_content_length_num$/;" e enum:header_states file: -h_content_length_ws http/http/http_parser.cpp /^ , h_content_length_ws$/;" e enum:header_states file: -h_general http/http/http_parser.cpp /^ { h_general = 0$/;" e enum:header_states file: -h_matching_connection http/http/http_parser.cpp /^ , h_matching_connection$/;" e enum:header_states file: -h_matching_connection_close http/http/http_parser.cpp /^ , h_matching_connection_close$/;" e enum:header_states file: -h_matching_connection_keep_alive http/http/http_parser.cpp /^ , h_matching_connection_keep_alive$/;" e enum:header_states file: -h_matching_connection_token http/http/http_parser.cpp /^ , h_matching_connection_token$/;" e enum:header_states file: -h_matching_connection_token_start http/http/http_parser.cpp /^ , h_matching_connection_token_start$/;" e enum:header_states file: -h_matching_connection_upgrade http/http/http_parser.cpp /^ , h_matching_connection_upgrade$/;" e enum:header_states file: -h_matching_content_length http/http/http_parser.cpp /^ , h_matching_content_length$/;" e enum:header_states file: -h_matching_proxy_connection http/http/http_parser.cpp /^ , h_matching_proxy_connection$/;" e enum:header_states file: -h_matching_transfer_encoding http/http/http_parser.cpp /^ , h_matching_transfer_encoding$/;" e enum:header_states file: -h_matching_transfer_encoding_chunked http/http/http_parser.cpp /^ , h_matching_transfer_encoding_chunked$/;" e enum:header_states file: -h_matching_upgrade http/http/http_parser.cpp /^ , h_matching_upgrade$/;" e enum:header_states file: -h_transfer_encoding http/http/http_parser.cpp /^ , h_transfer_encoding$/;" e enum:header_states file: -h_transfer_encoding_chunked http/http/http_parser.cpp /^ , h_transfer_encoding_chunked$/;" e enum:header_states file: -h_upgrade http/http/http_parser.cpp /^ , h_upgrade$/;" e enum:header_states file: +h_C net/http_protocol/http_parser.cpp /^ , h_C$/;" e enum:header_states file: +h_CO net/http_protocol/http_parser.cpp /^ , h_CO$/;" e enum:header_states file: +h_CON net/http_protocol/http_parser.cpp /^ , h_CON$/;" e enum:header_states file: +h_connection net/http_protocol/http_parser.cpp /^ , h_connection$/;" e enum:header_states file: +h_connection_close net/http_protocol/http_parser.cpp /^ , h_connection_close$/;" e enum:header_states file: +h_connection_keep_alive net/http_protocol/http_parser.cpp /^ , h_connection_keep_alive$/;" e enum:header_states file: +h_connection_upgrade net/http_protocol/http_parser.cpp /^ , h_connection_upgrade$/;" e enum:header_states file: +h_content_length net/http_protocol/http_parser.cpp /^ , h_content_length$/;" e enum:header_states file: +h_content_length_num net/http_protocol/http_parser.cpp /^ , h_content_length_num$/;" e enum:header_states file: +h_content_length_ws net/http_protocol/http_parser.cpp /^ , h_content_length_ws$/;" e enum:header_states file: +h_general net/http_protocol/http_parser.cpp /^ { h_general = 0$/;" e enum:header_states file: +h_matching_connection net/http_protocol/http_parser.cpp /^ , h_matching_connection$/;" e enum:header_states file: +h_matching_connection_close net/http_protocol/http_parser.cpp /^ , h_matching_connection_close$/;" e enum:header_states file: +h_matching_connection_keep_alive net/http_protocol/http_parser.cpp /^ , h_matching_connection_keep_alive$/;" e enum:header_states file: +h_matching_connection_token net/http_protocol/http_parser.cpp /^ , h_matching_connection_token$/;" e enum:header_states file: +h_matching_connection_token_start net/http_protocol/http_parser.cpp /^ , h_matching_connection_token_start$/;" e enum:header_states file: +h_matching_connection_upgrade net/http_protocol/http_parser.cpp /^ , h_matching_connection_upgrade$/;" e enum:header_states file: +h_matching_content_length net/http_protocol/http_parser.cpp /^ , h_matching_content_length$/;" e enum:header_states file: +h_matching_proxy_connection net/http_protocol/http_parser.cpp /^ , h_matching_proxy_connection$/;" e enum:header_states file: +h_matching_transfer_encoding net/http_protocol/http_parser.cpp /^ , h_matching_transfer_encoding$/;" e enum:header_states file: +h_matching_transfer_encoding_chunked net/http_protocol/http_parser.cpp /^ , h_matching_transfer_encoding_chunked$/;" e enum:header_states file: +h_matching_upgrade net/http_protocol/http_parser.cpp /^ , h_matching_upgrade$/;" e enum:header_states file: +h_transfer_encoding net/http_protocol/http_parser.cpp /^ , h_transfer_encoding$/;" e enum:header_states file: +h_transfer_encoding_chunked net/http_protocol/http_parser.cpp /^ , h_transfer_encoding_chunked$/;" e enum:header_states file: +h_upgrade net/http_protocol/http_parser.cpp /^ , h_upgrade$/;" e enum:header_states file: ha uibase/uilib/utils/stb_image.c /^ int hd,ha;$/;" m struct:__anon105::__anon106 file: handle polipo/dirent_compat.c /^ long handle; \/* -1 for failed rewind *\/$/;" m struct:DIR file: handle_safeptr include/utilex/safeptr.hpp /^struct handle_safeptr$/;" s @@ -14893,6 +14697,8 @@ hasMutex access/sqlite3.c /^ u8 hasMutex; \/* True if holding the hasMutex access/sqlite3.c /^ u8 hasMutex; \/* True if holding the winShmNode mutex *\/$/;" m struct:winShm file: hasMutex logs/sqlite3.c /^ u8 hasMutex; \/* True if holding the unixShmNode mutex *\/$/;" m struct:unixShm file: hasMutex logs/sqlite3.c /^ u8 hasMutex; \/* True if holding the winShmNode mutex *\/$/;" m struct:winShm file: +hasPreviewWindow vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:hasPreviewWindow = match(&completeopt, 'preview')>=0$/;" v +hasPreviewWindowOld vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:hasPreviewWindowOld = s:hasPreviewWindow$/;" v hasReadConflicts access/sqlite3.c /^static int hasReadConflicts(Btree *pBtree, Pgno iRoot){$/;" f file: hasReadConflicts access/sqlite3.c 50785;" d file: hasReadConflicts logs/sqlite3.c /^static int hasReadConflicts(Btree *pBtree, Pgno iRoot){$/;" f file: @@ -14917,24 +14723,24 @@ hash_value uibase/uilib/core/pugixml.cpp /^ PUGI__FN size_t xml_node::hash_value hd uibase/uilib/utils/stb_image.c /^ int hd,ha;$/;" m struct:__anon105::__anon106 file: hdr access/sqlite3.c /^ } hdr;$/;" m union:Mem3Block::__anon11 typeref:struct:Mem3Block::__anon11::__anon12 file: hdr access/sqlite3.c /^ WalIndexHdr hdr; \/* Wal-index header for current transaction *\/$/;" m struct:Wal file: -hdr logs/sqlite3.c /^ } hdr;$/;" m union:Mem3Block::__anon56 typeref:struct:Mem3Block::__anon56::__anon57 file: +hdr logs/sqlite3.c /^ } hdr;$/;" m union:Mem3Block::__anon51 typeref:struct:Mem3Block::__anon51::__anon52 file: hdr logs/sqlite3.c /^ WalIndexHdr hdr; \/* Wal-index header for current transaction *\/$/;" m struct:Wal file: hdr net/protocol/dns.h /^ dnshdr_t hdr;$/;" m struct:dns_s hdrOffset access/sqlite3.c /^ u8 hdrOffset; \/* 100 for page 1. 0 otherwise *\/$/;" m struct:MemPage file: hdrOffset logs/sqlite3.c /^ u8 hdrOffset; \/* 100 for page 1. 0 otherwise *\/$/;" m struct:MemPage file: head polipo/tunnel.h /^ int head;$/;" m struct:_CircularBuffer -header polipo/io.h /^ char *header;$/;" m struct:_StreamRequest::__anon80::__anon81 +header polipo/io.h /^ char *header;$/;" m struct:_StreamRequest::__anon77::__anon78 header uibase/uilib/core/pugixml.cpp /^ impl::compact_header header;$/;" m struct:pugi::xml_attribute_struct file: header uibase/uilib/core/pugixml.cpp /^ impl::compact_header header;$/;" m struct:pugi::xml_node_struct file: -header_state http/http/http_parser.h /^ unsigned int header_state : 7; \/* enum header_state from http_parser.c *\/$/;" m struct:http_parser -header_states http/http/http_parser.cpp /^enum header_states$/;" g file: +header_state net/http_protocol/http_parser.h /^ unsigned int header_state : 7; \/* enum header_state from http_parser.c *\/$/;" m struct:http_parser +header_states net/http_protocol/http_parser.cpp /^enum header_states$/;" g file: headers polipo/http.h /^ AtomPtr headers;$/;" m struct:_HTTPRequest headers polipo/object.h /^ struct _Atom *headers;$/;" m struct:_Object typeref:struct:_Object::_Atom -heap_calloc base/stdlib/compat_memory.c /^void* heap_calloc(size_t n, size_t size)$/;" f -heap_free base/stdlib/compat_memory.c /^void heap_free(void *ptr)$/;" f -heap_malloc base/stdlib/compat_memory.c /^void* heap_malloc(size_t size)$/;" f -heap_realloc base/stdlib/compat_memory.c /^void* heap_realloc(void *mem_address, size_t size)$/;" f -heap_strdup base/stdlib/compat_memory.c /^char* heap_strdup(const char *str)$/;" f +heap_calloc stdcrt/stdlib/compat_memory.c /^void* heap_calloc(size_t n, size_t size)$/;" f +heap_free stdcrt/stdlib/compat_memory.c /^void heap_free(void *ptr)$/;" f +heap_malloc stdcrt/stdlib/compat_memory.c /^void* heap_malloc(size_t size)$/;" f +heap_realloc stdcrt/stdlib/compat_memory.c /^void* heap_realloc(void *mem_address, size_t size)$/;" f +heap_strdup stdcrt/stdlib/compat_memory.c /^char* heap_strdup(const char *str)$/;" f heightOfExpr access/sqlite3.c /^static void heightOfExpr(Expr *p, int *pnHeight){$/;" f file: heightOfExpr logs/sqlite3.c /^static void heightOfExpr(Expr *p, int *pnHeight){$/;" f file: heightOfExprList access/sqlite3.c /^static void heightOfExprList(ExprList *p, int *pnHeight){$/;" f file: @@ -14955,12 +14761,12 @@ high uibase/uilib/core/pugixml.cpp /^ static value_type high(value_type result, high uibase/uilib/core/pugixml.cpp /^ static value_type high(value_type result, uint32_t)$/;" f struct:utf8_counter hints access/sqlite3.c /^ u8 hints; \/* As configured by CursorSetHints() *\/$/;" m struct:BtCursor file: hints logs/sqlite3.c /^ u8 hints; \/* As configured by CursorSetHints() *\/$/;" m struct:BtCursor file: -hlen polipo/io.h /^ int hlen;$/;" m struct:_StreamRequest::__anon80::__anon81 +hlen polipo/io.h /^ int hlen;$/;" m struct:_StreamRequest::__anon77::__anon78 hlmask access/sqlite3.c /^ u64 hlmask; \/* Mask of snippet terms to highlight *\/$/;" m struct:SnippetFragment file: hlmask logs/sqlite3.c /^ u64 hlmask; \/* Mask of snippet terms to highlight *\/$/;" m struct:SnippetFragment file: hmodule_safeptr include/utilex/safeptr.hpp /^struct hmodule_safeptr$/;" s -hooks base/code/compat_cjson.c /^ internal_hooks hooks;$/;" m struct:__anon26 file: -hooks base/code/compat_cjson.c /^ internal_hooks hooks;$/;" m struct:__anon27 file: +hooks stdcrt/code/compat_cjson.c /^ internal_hooks hooks;$/;" m struct:__anon83 file: +hooks stdcrt/code/compat_cjson.c /^ internal_hooks hooks;$/;" m struct:__anon84 file: hostname polipo/tunnel.h /^ AtomPtr hostname;$/;" m struct:_Tunnel hs uibase/uilib/utils/stb_image.c /^ int hs,vs; \/\/ expansion factor in each axis$/;" m struct:__anon107 file: ht access/sqlite3.c /^ } *ht;$/;" m struct:Fts3Hash typeref:struct:Fts3Hash::_fts3ht file: @@ -15005,8 +14811,8 @@ httpClientShutdownHandler polipo/client.c /^httpClientShutdownHandler(int status httpClientSideHandler polipo/client.c /^httpClientSideHandler(int status,$/;" f httpClientSideRequest polipo/client.c /^httpClientSideRequest(HTTPRequestPtr request)$/;" f httpCondition polipo/http.c /^httpCondition(ObjectPtr object, HTTPConditionPtr condition)$/;" f -httpConnect http/httptimpl.cpp /^std_method_impl CHttptImpl::httpConnect(IOperation *pOperation, NET_ADDR addr, NET_PORT uport)$/;" f class:CHttptImpl -httpConnected http/httptimpl.cpp /^std_method_impl CHttptImpl::httpConnected(IOperation *pOperation)$/;" f class:CHttptImpl +httpConnect net/httptimpl.cpp /^std_method_impl CHttptImpl::httpConnect(IOperation *pOperation, NET_ADDR addr, NET_PORT uport)$/;" f class:CHttptImpl +httpConnected net/httptimpl.cpp /^std_method_impl CHttptImpl::httpConnected(IOperation *pOperation)$/;" f class:CHttptImpl httpConnectionBigify polipo/http.c /^httpConnectionBigify(HTTPConnectionPtr connection)$/;" f httpConnectionBigifyReqbuf polipo/http.c /^httpConnectionBigifyReqbuf(HTTPConnectionPtr connection)$/;" f httpConnectionDestroyBuf polipo/http.c /^httpConnectionDestroyBuf(HTTPConnectionPtr connection)$/;" f @@ -15021,9 +14827,9 @@ httpDestroyRequest polipo/http.c /^httpDestroyRequest(HTTPRequestPtr request)$/; httpErrorNocloseStreamHandler polipo/client.c /^httpErrorNocloseStreamHandler(int status,$/;" f httpErrorNofinishStreamHandler polipo/client.c /^httpErrorNofinishStreamHandler(int status,$/;" f httpErrorStreamHandler polipo/client.c /^httpErrorStreamHandler(int status,$/;" f -httpEvent http/httptimpl.cpp /^std_method_impl CHttptImpl::httpEvent(ULONG ulevent, ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpEventComplate http/httptimpl.cpp /^std_method_impl CHttptImpl::httpEventComplate(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpEventProc http/httptimpl.cpp /^std_method_impl CHttptImpl::httpEventProc(ULONG ulevent, IOperation *pOperation)$/;" f class:CHttptImpl +httpEvent net/httptimpl.cpp /^std_method_impl CHttptImpl::httpEvent(ULONG ulevent, ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpEventComplate net/httptimpl.cpp /^std_method_impl CHttptImpl::httpEventComplate(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpEventProc net/httptimpl.cpp /^std_method_impl CHttptImpl::httpEventProc(ULONG ulevent, IOperation *pOperation)$/;" f class:CHttptImpl httpFindHeader polipo/http_parse.c /^httpFindHeader(AtomPtr header, const char *headers, int hlen,$/;" f httpHeaderMatch polipo/http.c /^httpHeaderMatch(AtomPtr header, AtomPtr headers1, AtomPtr headers2)$/;" f httpLocalRequest polipo/local.c /^httpLocalRequest(ObjectPtr object, int method, int from, int to,$/;" f @@ -15037,16 +14843,16 @@ httpParseHeaders polipo/http_parse.c /^httpParseHeaders(int client, AtomPtr url, httpParseServerFirstLine polipo/http_parse.c /^httpParseServerFirstLine(const char *restrict buf, $/;" f httpPrintCacheControl polipo/http.c /^httpPrintCacheControl(char *buf, int offset, int len,$/;" f httpQueueRequest polipo/http.c /^httpQueueRequest(HTTPConnectionPtr connection, HTTPRequestPtr request)$/;" f -httpRecv http/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecv(ULONG uid, ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpRecvBody http/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvBody(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpRecvBodyed http/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvBodyed(IOperation *pOperation)$/;" f class:CHttptImpl -httpRecvHead http/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvHead(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpRecvHeaded http/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvHeaded(IOperation *pOperation)$/;" f class:CHttptImpl -httpSend http/httptimpl.cpp /^std_method_impl CHttptImpl::httpSend(ULONG uid, ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpSendBody http/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendBody(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpSendBodyed http/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendBodyed(IOperation *pOperation)$/;" f class:CHttptImpl -httpSendHead http/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendHead(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl -httpSendHeaded http/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendHeaded(IOperation *pOperation)$/;" f class:CHttptImpl +httpRecv net/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecv(ULONG uid, ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpRecvBody net/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvBody(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpRecvBodyed net/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvBodyed(IOperation *pOperation)$/;" f class:CHttptImpl +httpRecvHead net/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvHead(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpRecvHeaded net/httptimpl.cpp /^std_method_impl CHttptImpl::httpRecvHeaded(IOperation *pOperation)$/;" f class:CHttptImpl +httpSend net/httptimpl.cpp /^std_method_impl CHttptImpl::httpSend(ULONG uid, ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpSendBody net/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendBody(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpSendBodyed net/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendBodyed(IOperation *pOperation)$/;" f class:CHttptImpl +httpSendHead net/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendHead(ITcpSocket* pSocket, IOperation *pOperation)$/;" f class:CHttptImpl +httpSendHeaded net/httptimpl.cpp /^std_method_impl CHttptImpl::httpSendHeaded(IOperation *pOperation)$/;" f class:CHttptImpl httpServeChunk polipo/client.c /^httpServeChunk(HTTPConnectionPtr connection)$/;" f httpServeChunkDelayed polipo/client.c /^httpServeChunkDelayed(TimeEventHandlerPtr event)$/;" f file: httpServeObject polipo/client.c /^httpServeObject(HTTPConnectionPtr connection)$/;" f @@ -15105,61 +14911,61 @@ httpTweakCachability polipo/http.c /^httpTweakCachability(ObjectPtr object)$/;" httpWriteErrorHeaders polipo/http.c /^httpWriteErrorHeaders(char *buf, int size, int offset, int do_body,$/;" f httpWriteObjectHeaders polipo/http.c /^httpWriteObjectHeaders(char *buf, int offset, int len,$/;" f httpWriteRequest polipo/server.c /^httpWriteRequest(HTTPConnectionPtr connection, HTTPRequestPtr request,$/;" f -http_addr_s extensions/include/http/ihttp.h /^typedef const char* http_addr_s;$/;" t -http_analyze http/http/chttpparser.cpp /^int CHttpParser::http_analyze(char* p, size_t ilen)$/;" f class:CHttpParser -http_body_is_final http/http/http_parser.cpp /^http_body_is_final(const struct http_parser *parser) {$/;" f -http_cb http/http/http_parser.h /^typedef int (*http_cb) (http_parser*);$/;" t -http_content_type http/http/http_content_type.cpp /^http_content_type::http_content_type()$/;" f class:http_content_type -http_content_type http/http/http_content_type.hpp /^class http_content_type $/;" c -http_data_cb http/http/http_parser.h /^typedef int (*http_data_cb) (http_parser*, const char *at, size_t length);$/;" t -http_errno http/http/http_parser.h /^ unsigned int http_errno : 7;$/;" m struct:http_parser -http_errno http/http/http_parser.h /^enum http_errno {$/;" g -http_errno_description http/http/http_parser.cpp /^http_errno_description(enum http_errno err) {$/;" f -http_errno_name http/http/http_parser.cpp /^http_errno_name(enum http_errno err) {$/;" f -http_gb2312_url_decode http/http/httputil.cpp /^char* http_gb2312_url_decode(const char *str)$/;" f -http_gb2312_url_encode http/http/httputil.cpp /^char* http_gb2312_url_encode(const char *str)$/;" f -http_header extensions/include/http/ihttp.h /^typedef const char* http_header;$/;" t -http_header_data extensions/include/http/ihttp.h /^typedef const char* http_header_data;$/;" t -http_header_t http/http/http_header.cpp /^http_header_t::http_header_t() {$/;" f class:http_header_t -http_header_t http/http/http_header.hpp /^class http_header_t$/;" c -http_host_len extensions/include/http/ihttp.h 95;" d -http_host_state http/http/http_parser.cpp /^enum http_host_state$/;" g file: -http_init_analyze http/http/chttpparser.cpp /^int CHttpParser::http_init_analyze(int type) {$/;" f class:CHttpParser -http_major http/http/http_parser.h /^ unsigned short http_major;$/;" m struct:http_parser -http_message_needs_eof http/http/http_parser.cpp /^http_message_needs_eof (const http_parser *parser)$/;" f -http_method http/http/http_parser.h /^enum http_method$/;" g -http_method_name extensions/include/http/ihttp.h /^typedef const char* http_method_name;$/;" t -http_method_str http/http/http_parser.cpp /^http_method_str (enum http_method m)$/;" f -http_method_t extensions/include/http/ihttp.h /^}http_method_t;$/;" t typeref:enum:__anon41 -http_mime_t extensions/include/http/ihttp.h /^}http_mime_t;$/;" t typeref:enum:__anon43 -http_minor http/http/http_parser.h /^ unsigned short http_minor;$/;" m struct:http_parser -http_mkrfc1123 http/http/httputil.cpp /^const char *http_mkrfc1123(char *buf, size_t size, time_t t)$/;" f -http_parse_host http/http/http_parser.cpp /^http_parse_host(const char * buf, struct http_parser_url *u, int found_at) {$/;" f file: -http_parse_host_char http/http/http_parser.cpp /^http_parse_host_char(enum http_host_state s, const char ch) {$/;" f file: -http_parser http/http/http_parser.h /^struct http_parser {$/;" s -http_parser http/http/http_parser.h /^typedef struct http_parser http_parser;$/;" t typeref:struct:http_parser -http_parser_execute http/http/http_parser.cpp /^size_t http_parser_execute (http_parser *parser,$/;" f -http_parser_h http/http/http_parser.h 22;" d -http_parser_init http/http/http_parser.cpp /^http_parser_init (http_parser *parser, enum http_parser_type t)$/;" f -http_parser_parse_url http/http/http_parser.cpp /^http_parser_parse_url(const char *buf, size_t buflen, int is_connect,$/;" f -http_parser_pause http/http/http_parser.cpp /^http_parser_pause(http_parser *parser, int paused) {$/;" f -http_parser_settings http/http/http_parser.h /^struct http_parser_settings {$/;" s -http_parser_settings http/http/http_parser.h /^typedef struct http_parser_settings http_parser_settings;$/;" t typeref:struct:http_parser_settings -http_parser_settings_init http/http/http_parser.cpp /^http_parser_settings_init(http_parser_settings *settings)$/;" f -http_parser_type http/http/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" g -http_parser_url http/http/http_parser.h /^struct http_parser_url {$/;" s -http_parser_url_fields http/http/http_parser.h /^enum http_parser_url_fields$/;" g -http_parser_url_init http/http/http_parser.cpp /^http_parser_url_init(struct http_parser_url *u) {$/;" f -http_parser_version http/http/http_parser.cpp /^http_parser_version(void) {$/;" f -http_port extensions/include/http/ihttp.h /^typedef unsigned short http_port;$/;" t -http_request http/http/chttpparser.h 9;" d -http_request_t extensions/include/http/ihttp.h /^} http_request_t;$/;" t typeref:enum:__anon42 -http_response http/http/chttpparser.h 8;" d -http_s_state_t extensions/include/http/ihttp.h /^}http_s_state_t;$/;" t typeref:enum:__anon40 -http_should_keep_alive http/http/http_parser.cpp /^http_should_keep_alive (const http_parser *parser)$/;" f -http_state_t extensions/include/http/ihttp.h /^}http_state_t;$/;" t typeref:enum:__anon39 -http_status http/http/http_parser.h /^enum http_status$/;" g -http_strerror_tab http/http/http_parser.cpp /^} http_strerror_tab[] = {$/;" v typeref:struct:__anon44 file: +http_addr_s extensions/include/net/ihttp.h /^typedef const char* http_addr_s;$/;" t +http_analyze net/http_protocol/chttpparser.cpp /^int CHttpParser::http_analyze(char* p, size_t ilen)$/;" f class:CHttpParser +http_body_is_final net/http_protocol/http_parser.cpp /^http_body_is_final(const struct http_parser *parser) {$/;" f +http_cb net/http_protocol/http_parser.h /^typedef int (*http_cb) (http_parser*);$/;" t +http_content_type net/http_protocol/http_content_type.cpp /^http_content_type::http_content_type()$/;" f class:http_content_type +http_content_type net/http_protocol/http_content_type.hpp /^class http_content_type $/;" c +http_data_cb net/http_protocol/http_parser.h /^typedef int (*http_data_cb) (http_parser*, const char *at, size_t length);$/;" t +http_errno net/http_protocol/http_parser.h /^ unsigned int http_errno : 7;$/;" m struct:http_parser +http_errno net/http_protocol/http_parser.h /^enum http_errno {$/;" g +http_errno_description net/http_protocol/http_parser.cpp /^http_errno_description(enum http_errno err) {$/;" f +http_errno_name net/http_protocol/http_parser.cpp /^http_errno_name(enum http_errno err) {$/;" f +http_gb2312_url_decode net/http_protocol/httputil.cpp /^char* http_gb2312_url_decode(const char *str)$/;" f +http_gb2312_url_encode net/http_protocol/httputil.cpp /^char* http_gb2312_url_encode(const char *str)$/;" f +http_header extensions/include/net/ihttp.h /^typedef const char* http_header;$/;" t +http_header_data extensions/include/net/ihttp.h /^typedef const char* http_header_data;$/;" t +http_header_t net/http_protocol/http_header.cpp /^http_header_t::http_header_t() {$/;" f class:http_header_t +http_header_t net/http_protocol/http_header.hpp /^class http_header_t$/;" c +http_host_len extensions/include/net/ihttp.h 95;" d +http_host_state net/http_protocol/http_parser.cpp /^enum http_host_state$/;" g file: +http_init_analyze net/http_protocol/chttpparser.cpp /^int CHttpParser::http_init_analyze(int type) {$/;" f class:CHttpParser +http_major net/http_protocol/http_parser.h /^ unsigned short http_major;$/;" m struct:http_parser +http_message_needs_eof net/http_protocol/http_parser.cpp /^http_message_needs_eof (const http_parser *parser)$/;" f +http_method net/http_protocol/http_parser.h /^enum http_method$/;" g +http_method_name extensions/include/net/ihttp.h /^typedef const char* http_method_name;$/;" t +http_method_str net/http_protocol/http_parser.cpp /^http_method_str (enum http_method m)$/;" f +http_method_t extensions/include/net/ihttp.h /^}http_method_t;$/;" t typeref:enum:__anon38 +http_mime_t extensions/include/net/ihttp.h /^}http_mime_t;$/;" t typeref:enum:__anon40 +http_minor net/http_protocol/http_parser.h /^ unsigned short http_minor;$/;" m struct:http_parser +http_mkrfc1123 net/http_protocol/httputil.cpp /^const char *http_mkrfc1123(char *buf, size_t size, time_t t)$/;" f +http_parse_host net/http_protocol/http_parser.cpp /^http_parse_host(const char * buf, struct http_parser_url *u, int found_at) {$/;" f file: +http_parse_host_char net/http_protocol/http_parser.cpp /^http_parse_host_char(enum http_host_state s, const char ch) {$/;" f file: +http_parser net/http_protocol/http_parser.h /^struct http_parser {$/;" s +http_parser net/http_protocol/http_parser.h /^typedef struct http_parser http_parser;$/;" t typeref:struct:http_parser +http_parser_execute net/http_protocol/http_parser.cpp /^size_t http_parser_execute (http_parser *parser,$/;" f +http_parser_h net/http_protocol/http_parser.h 22;" d +http_parser_init net/http_protocol/http_parser.cpp /^http_parser_init (http_parser *parser, enum http_parser_type t)$/;" f +http_parser_parse_url net/http_protocol/http_parser.cpp /^http_parser_parse_url(const char *buf, size_t buflen, int is_connect,$/;" f +http_parser_pause net/http_protocol/http_parser.cpp /^http_parser_pause(http_parser *parser, int paused) {$/;" f +http_parser_settings net/http_protocol/http_parser.h /^struct http_parser_settings {$/;" s +http_parser_settings net/http_protocol/http_parser.h /^typedef struct http_parser_settings http_parser_settings;$/;" t typeref:struct:http_parser_settings +http_parser_settings_init net/http_protocol/http_parser.cpp /^http_parser_settings_init(http_parser_settings *settings)$/;" f +http_parser_type net/http_protocol/http_parser.h /^enum http_parser_type { HTTP_REQUEST, HTTP_RESPONSE, HTTP_BOTH };$/;" g +http_parser_url net/http_protocol/http_parser.h /^struct http_parser_url {$/;" s +http_parser_url_fields net/http_protocol/http_parser.h /^enum http_parser_url_fields$/;" g +http_parser_url_init net/http_protocol/http_parser.cpp /^http_parser_url_init(struct http_parser_url *u) {$/;" f +http_parser_version net/http_protocol/http_parser.cpp /^http_parser_version(void) {$/;" f +http_port extensions/include/net/ihttp.h /^typedef unsigned short http_port;$/;" t +http_request net/http_protocol/chttpparser.h 9;" d +http_request_t extensions/include/net/ihttp.h /^} http_request_t;$/;" t typeref:enum:__anon39 +http_response net/http_protocol/chttpparser.h 8;" d +http_s_state_t extensions/include/net/ihttp.h /^}http_s_state_t;$/;" t typeref:enum:__anon37 +http_should_keep_alive net/http_protocol/http_parser.cpp /^http_should_keep_alive (const http_parser *parser)$/;" f +http_state_t extensions/include/net/ihttp.h /^}http_state_t;$/;" t typeref:enum:__anon36 +http_status net/http_protocol/http_parser.h /^enum http_status$/;" g +http_strerror_tab net/http_protocol/http_parser.cpp /^} http_strerror_tab[] = {$/;" v typeref:struct:__anon74 file: huff_ac uibase/uilib/utils/stb_image.c /^ stbi__huffman huff_ac[4];$/;" m struct:__anon105 file: huff_dc uibase/uilib/utils/stb_image.c /^ stbi__huffman huff_dc[4];$/;" m struct:__anon105 file: i access/sqlite3.c /^ i64 i; \/* Integer value used when MEM_Int is set in flags *\/$/;" m union:Mem::__anon9 file: @@ -15167,14 +14973,14 @@ i access/sqlite3.c /^ int i; \/* Integer i access/sqlite3.c /^ int i; \/* Integer value if p4type==P4_INT32 *\/$/;" m union:VdbeOp::__anon1 file: i access/sqlite3.c /^ int i;$/;" m union:RtreeCoord file: i access/sqlite3.c /^ unsigned char i, j; \/* State variables *\/$/;" m struct:sqlite3PrngType file: -i compat/compat_iterator.h /^ int i;$/;" m struct:ITER -i logs/sqlite3.c /^ i64 i; \/* Integer value used when MEM_Int is set in flags *\/$/;" m union:Mem::__anon54 file: -i logs/sqlite3.c /^ int i; \/* Integer value *\/$/;" m union:Walker::__anon53 file: -i logs/sqlite3.c /^ int i; \/* Integer value if p4type==P4_INT32 *\/$/;" m union:VdbeOp::__anon46 file: +i crt/crt_iterator.h /^ int i;$/;" m struct:ITER +i logs/sqlite3.c /^ i64 i; \/* Integer value used when MEM_Int is set in flags *\/$/;" m union:Mem::__anon49 file: +i logs/sqlite3.c /^ int i; \/* Integer value *\/$/;" m union:Walker::__anon48 file: +i logs/sqlite3.c /^ int i; \/* Integer value if p4type==P4_INT32 *\/$/;" m union:VdbeOp::__anon41 file: i logs/sqlite3.c /^ int i;$/;" m union:RtreeCoord file: i logs/sqlite3.c /^ unsigned char i, j; \/* State variables *\/$/;" m struct:sqlite3PrngType file: -i polipo/config.h /^ int *i;$/;" m union:_ConfigVariable::__anon78 -i polipo/md5.h /^ UINT4 i[2]; \/* number of _bits_ handled mod 2^64 *\/$/;" m struct:__anon84 +i polipo/config.h /^ int *i;$/;" m union:_ConfigVariable::__anon76 +i polipo/md5.h /^ UINT4 i[2]; \/* number of _bits_ handled mod 2^64 *\/$/;" m struct:__anon81 i16 access/sqlite3.c /^typedef INT16_TYPE i16; \/* 2-byte signed integer *\/$/;" t file: i16 access/sqlite3.c /^typedef short int i16; \/* 2-byte (or larger) signed integer *\/$/;" t file: i16 logs/sqlite3.c /^typedef INT16_TYPE i16; \/* 2-byte signed integer *\/$/;" t file: @@ -15195,13 +15001,14 @@ iAddr logs/sqlite3.c /^ int iAddr; \/* Address of next instruct iAgg access/sqlite3.c /^ i16 iAgg; \/* Which entry in pAggInfo->aCol[] or ->aFunc[] *\/$/;" m struct:Expr file: iAgg logs/sqlite3.c /^ i16 iAgg; \/* Which entry in pAggInfo->aCol[] or ->aFunc[] *\/$/;" m struct:Expr file: iAlias access/sqlite3.c /^ u16 iAlias; \/* Index into Parse.aAlias[] for zName *\/$/;" m struct:ExprList::ExprList_item::__anon5::__anon6 file: -iAlias logs/sqlite3.c /^ u16 iAlias; \/* Index into Parse.aAlias[] for zName *\/$/;" m struct:ExprList::ExprList_item::__anon50::__anon51 file: +iAlias logs/sqlite3.c /^ u16 iAlias; \/* Index into Parse.aAlias[] for zName *\/$/;" m struct:ExprList::ExprList_item::__anon45::__anon46 file: iArg access/sqlite3.c /^ int iArg; \/* Index of function argument. *\/$/;" m struct:AuxData file: iArg access/sqlite3.c /^ u32 iArg; \/* Extra argument *\/$/;" m struct:sPragmaNames file: iArg logs/sqlite3.c /^ int iArg; \/* Index of function argument. *\/$/;" m struct:AuxData file: iArg logs/sqlite3.c /^ u32 iArg; \/* Extra argument *\/$/;" m struct:sPragmaNames file: iBatch access/sqlite3.c /^ u8 iBatch; \/* Current insert batch *\/$/;" m struct:RowSet file: iBatch logs/sqlite3.c /^ u8 iBatch; \/* Current insert batch *\/$/;" m struct:RowSet file: +iBehavs vim_tool/.vim/autoload/acp.vim /^let s:iBehavs = 0$/;" v iBlock access/sqlite3.c /^ sqlite3_int64 iBlock; \/* Current block id *\/$/;" m struct:NodeWriter file: iBlock logs/sqlite3.c /^ sqlite3_int64 iBlock; \/* Current block id *\/$/;" m struct:NodeWriter file: iBreak access/sqlite3.c /^ int iBreak; \/* Jump here to break out of the loop *\/$/;" m struct:WhereInfo file: @@ -15266,13 +15073,13 @@ iColumn logs/sqlite3.c /^ ynVar iColumn; \/* TK_COLUMN: column index. iColumn logs/sqlite3.h /^ int iColumn; \/* Column number *\/$/;" m struct:sqlite3_index_info::sqlite3_index_orderby iColumn logs/sqlite3.h /^ int iColumn; \/* Column on left-hand side of constraint *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint iConstExprReg access/sqlite3.c /^ int iConstExprReg; \/* Register in which Expr value is cached *\/$/;" m union:ExprList::ExprList_item::__anon5 file: -iConstExprReg logs/sqlite3.c /^ int iConstExprReg; \/* Register in which Expr value is cached *\/$/;" m union:ExprList::ExprList_item::__anon50 file: +iConstExprReg logs/sqlite3.c /^ int iConstExprReg; \/* Register in which Expr value is cached *\/$/;" m union:ExprList::ExprList_item::__anon45 file: iContinue access/sqlite3.c /^ int iContinue; \/* Jump here to continue with next record *\/$/;" m struct:WhereInfo file: iContinue logs/sqlite3.c /^ int iContinue; \/* Jump here to continue with next record *\/$/;" m struct:WhereInfo file: iCoord access/sqlite3.c /^ int iCoord; \/* Index of constrained coordinate *\/$/;" m struct:RtreeConstraint file: iCoord logs/sqlite3.c /^ int iCoord; \/* Index of constrained coordinate *\/$/;" m struct:RtreeConstraint file: iCur access/sqlite3.c /^ int iCur; \/* The VDBE cursor used by this IN operator *\/$/;" m struct:WhereLevel::__anon16::__anon17::InLoop file: -iCur logs/sqlite3.c /^ int iCur; \/* The VDBE cursor used by this IN operator *\/$/;" m struct:WhereLevel::__anon61::__anon62::InLoop file: +iCur logs/sqlite3.c /^ int iCur; \/* The VDBE cursor used by this IN operator *\/$/;" m struct:WhereLevel::__anon56::__anon57::InLoop file: iCurrent access/sqlite3.c /^ int iCurrent; \/* First token of current snippet *\/$/;" m struct:SnippetIter file: iCurrent logs/sqlite3.c /^ int iCurrent; \/* First token of current snippet *\/$/;" m struct:SnippetIter file: iCurrentBlock access/sqlite3.c /^ sqlite3_int64 iCurrentBlock; \/* Current leaf block (or 0) *\/$/;" m struct:Fts3SegReader file: @@ -15291,7 +15098,7 @@ iDb logs/sqlite3.c /^ u8 iDb; \/* Which db file is being iDb logs/sqlite3.c /^ i8 iDb; \/* Index of cursor database in db->aDb[] (or -1) *\/$/;" m struct:VdbeCursor file: iDb logs/sqlite3.c /^ int iDb; \/* Index in sqlite3.aDb[] of database holding pTab *\/$/;" m struct:AutoincInfo file: iDb logs/sqlite3.c /^ int iDb; \/* The database containing the table to be locked *\/$/;" m struct:TableLock file: -iDb logs/sqlite3.c /^ int iDb; \/* 0 for main database. 1 for TEMP, 2.. for ATTACHed *\/$/;" m struct:__anon52 file: +iDb logs/sqlite3.c /^ int iDb; \/* 0 for main database. 1 for TEMP, 2.. for ATTACHed *\/$/;" m struct:__anon47 file: iDefaultCol access/sqlite3.c /^ int iDefaultCol; \/* Default column to query *\/$/;" m struct:ParseContext file: iDefaultCol logs/sqlite3.c /^ int iDefaultCol; \/* Default column to query *\/$/;" m struct:ParseContext file: iDepth access/sqlite3.c /^ int iDepth; \/* Current depth of the r-tree structure *\/$/;" m struct:Rtree file: @@ -15395,7 +15202,7 @@ iMin access/sqlite3.c /^ int iMin; \/* Index in a[] of entry wi iMin logs/sqlite3.c /^ int iMin; \/* Index in a[] of entry with minimum score *\/$/;" m struct:Stat4Accum file: iMinDocid access/sqlite3.c /^ i64 iMinDocid; \/* Minimum docid to return *\/$/;" m struct:Fts3Cursor file: iMinDocid logs/sqlite3.c /^ i64 iMinDocid; \/* Minimum docid to return *\/$/;" m struct:Fts3Cursor file: -iName uibase/uilib/core/uimarkup.h /^ ULONG iName;$/;" m struct:DuiLib::CMarkupNode::__anon99 +iName uibase/uilib/core/uimarkup.h /^ ULONG iName;$/;" m struct:DuiLib::CMarkupNode::__anon93 iNext access/sqlite3.c /^ int iNext; \/* Next slot in aIndex[] not yet returned *\/$/;" m struct:WalIterator::WalSegment file: iNext access/sqlite3.c /^ Pgno iNext; \/* Page number of the next source page to copy *\/$/;" m struct:sqlite3_backup file: iNext logs/sqlite3.c /^ int iNext; \/* Next slot in aIndex[] not yet returned *\/$/;" m struct:WalIterator::WalSegment file: @@ -15430,7 +15237,7 @@ iOp access/sqlite3.c /^ int iOp; \/* Instruction number of OP_Func iOp logs/sqlite3.c /^ int iOp; \/* Instruction number of OP_Function opcode *\/$/;" m struct:AuxData file: iOp logs/sqlite3.c /^ int iOp; \/* Instruction number of OP_Function *\/$/;" m struct:sqlite3_context file: iOrderByCol access/sqlite3.c /^ u16 iOrderByCol; \/* For ORDER BY, column number in result set *\/$/;" m struct:ExprList::ExprList_item::__anon5::__anon6 file: -iOrderByCol logs/sqlite3.c /^ u16 iOrderByCol; \/* For ORDER BY, column number in result set *\/$/;" m struct:ExprList::ExprList_item::__anon50::__anon51 file: +iOrderByCol logs/sqlite3.c /^ u16 iOrderByCol; \/* For ORDER BY, column number in result set *\/$/;" m struct:ExprList::ExprList_item::__anon45::__anon46 file: iOverflow access/sqlite3.c /^ u16 iOverflow; \/* Offset to overflow page number. Zero if no overflow *\/$/;" m struct:CellInfo file: iOverflow logs/sqlite3.c /^ u16 iOverflow; \/* Offset to overflow page number. Zero if no overflow *\/$/;" m struct:CellInfo file: iPKey access/sqlite3.c /^ i16 iPKey; \/* If not negative, use aCol[iPKey] as the primary key *\/$/;" m struct:Table file: @@ -15480,7 +15287,7 @@ iRowid access/sqlite3.c /^ i64 iRowid; \/* Rowid in main iRowid access/sqlite3.c /^ i64 iRowid;$/;" m struct:RtreeCell file: iRowid access/sqlite3.c /^ int iRowid; \/* Current 'rowid' value *\/$/;" m struct:Fts3tokCursor file: iRowid access/sqlite3.c /^ sqlite3_int64 iRowid; \/* Current rowid *\/$/;" m struct:Fts3auxCursor file: -iRowid logs/sqlite3.c /^ i64 iRowid; \/* Rowid in main table of the key *\/$/;" m union:Stat4Sample::__anon60 file: +iRowid logs/sqlite3.c /^ i64 iRowid; \/* Rowid in main table of the key *\/$/;" m union:Stat4Sample::__anon55 file: iRowid logs/sqlite3.c /^ i64 iRowid;$/;" m struct:RtreeCell file: iRowid logs/sqlite3.c /^ int iRowid; \/* Current 'rowid' value *\/$/;" m struct:Fts3tokCursor file: iRowid logs/sqlite3.c /^ sqlite3_int64 iRowid; \/* Current rowid *\/$/;" m struct:Fts3auxCursor file: @@ -15560,11 +15367,11 @@ iTop access/sqlite3.c /^ int iTop; \/* The very beginning of th iTop logs/sqlite3.c /^ int iTop; \/* The very beginning of the WHERE loop *\/$/;" m struct:WhereInfo file: iVLineSize uibase/uilib/control/uilist.h /^ int iVLineSize;$/;" m struct:DuiLib::tagTListInfoUI iVal access/sqlite3.c /^ int iVal;$/;" m struct:ValueNewStat4Ctx file: -iVal compat/compat_var.h /^ short iVal;$/;" m union:tag_varaint_t::__anon30 +iVal crt/crt_var.h /^ short iVal;$/;" m union:tag_varaint_t::__anon25 iVal logs/sqlite3.c /^ int iVal;$/;" m struct:ValueNewStat4Ctx file: iValue access/sqlite3.c /^ int iValue; \/* Non-negative integer value if EP_IntValue *\/$/;" m union:Expr::__anon3 file: -iValue logs/sqlite3.c /^ int iValue; \/* Non-negative integer value if EP_IntValue *\/$/;" m union:Expr::__anon48 file: -iValue uibase/uilib/core/uimarkup.h /^ ULONG iValue;$/;" m struct:DuiLib::CMarkupNode::__anon99 +iValue logs/sqlite3.c /^ int iValue; \/* Non-negative integer value if EP_IntValue *\/$/;" m union:Expr::__anon43 file: +iValue uibase/uilib/core/uimarkup.h /^ ULONG iValue;$/;" m struct:DuiLib::CMarkupNode::__anon93 iVersion access/sqlite3.c /^ int iVersion; \/* Structure version number (currently 3) *\/$/;" m struct:sqlite3_vfs file: iVersion access/sqlite3.c /^ int iVersion;$/;" m struct:sqlite3_io_methods file: iVersion access/sqlite3.c /^ int iVersion;$/;" m struct:sqlite3_module file: @@ -15589,33 +15396,33 @@ iWriteOff logs/sqlite3.c /^ i64 iWriteOff; \/* Current write o iWriteOff logs/sqlite3.c /^ i64 iWriteOff; \/* Offset of start of buffer in file *\/$/;" m struct:FileWriter file: iZero access/sqlite3.c /^ int iZero; \/* Frame number associated with aPgno[0] *\/$/;" m struct:WalIterator::WalSegment file: iZero logs/sqlite3.c /^ int iZero; \/* Frame number associated with aPgno[0] *\/$/;" m struct:WalIterator::WalSegment file: -icd_id net/protocol/icmp.h /^ uint16_t icd_id;$/;" m struct:icmp_s::__anon75::ih_idseq -icd_seq net/protocol/icmp.h /^ uint16_t icd_seq;$/;" m struct:icmp_s::__anon75::ih_idseq +icd_id net/protocol/icmp.h /^ uint16_t icd_id;$/;" m struct:icmp_s::__anon70::ih_idseq +icd_seq net/protocol/icmp.h /^ uint16_t icd_seq;$/;" m struct:icmp_s::__anon70::ih_idseq icf uibase/uilib/control/uirichedit.cpp /^ LONG icf;$/;" m class:DuiLib::CTxtWinHost file: -icmp_cksum net/protocol/icmp.h /^ uint16_t icmp_cksum;$/;" m struct:icmp_s -icmp_code net/protocol/icmp.h /^ uint8_t icmp_code;$/;" m struct:icmp_s -icmp_data net/protocol/icmp.h 97;" d -icmp_dun net/protocol/icmp.h /^ } icmp_dun;$/;" m struct:icmp_s typeref:union:icmp_s::__anon76 -icmp_gwaddr net/protocol/icmp.h 66;" d -icmp_hun net/protocol/icmp.h /^ } icmp_hun;$/;" m struct:icmp_s typeref:union:icmp_s::__anon75 -icmp_id net/protocol/icmp.h 67;" d -icmp_ip net/protocol/icmp.h 94;" d -icmp_lifetime net/protocol/icmp.h 74;" d -icmp_mask net/protocol/icmp.h 96;" d -icmp_nextmtu net/protocol/icmp.h 71;" d -icmp_num_addrs net/protocol/icmp.h 72;" d -icmp_otime net/protocol/icmp.h 91;" d -icmp_pmvoid net/protocol/icmp.h 70;" d -icmp_pptr net/protocol/icmp.h 65;" d -icmp_radv net/protocol/icmp.h 95;" d -icmp_rtime net/protocol/icmp.h 92;" d +icmp_cksum net/protocol/icmp.h /^ uint16_t icmp_cksum;$/;" m struct:icmp_s +icmp_code net/protocol/icmp.h /^ uint8_t icmp_code;$/;" m struct:icmp_s +icmp_data net/protocol/icmp.h 102;" d +icmp_dun net/protocol/icmp.h /^ } icmp_dun;$/;" m struct:icmp_s typeref:union:icmp_s::__anon71 +icmp_gwaddr net/protocol/icmp.h 71;" d +icmp_hun net/protocol/icmp.h /^ } icmp_hun;$/;" m struct:icmp_s typeref:union:icmp_s::__anon70 +icmp_id net/protocol/icmp.h 72;" d +icmp_ip net/protocol/icmp.h 99;" d +icmp_lifetime net/protocol/icmp.h 79;" d +icmp_mask net/protocol/icmp.h 101;" d +icmp_nextmtu net/protocol/icmp.h 76;" d +icmp_num_addrs net/protocol/icmp.h 77;" d +icmp_otime net/protocol/icmp.h 96;" d +icmp_pmvoid net/protocol/icmp.h 75;" d +icmp_pptr net/protocol/icmp.h 70;" d +icmp_radv net/protocol/icmp.h 100;" d +icmp_rtime net/protocol/icmp.h 97;" d icmp_s net/protocol/icmp.h /^typedef struct icmp_s {$/;" s -icmp_seq net/protocol/icmp.h 68;" d +icmp_seq net/protocol/icmp.h 73;" d icmp_t net/protocol/icmp.h /^} icmp_t;$/;" t typeref:struct:icmp_s -icmp_ttime net/protocol/icmp.h 93;" d -icmp_type net/protocol/icmp.h /^ uint8_t icmp_type;$/;" m struct:icmp_s -icmp_void net/protocol/icmp.h 69;" d -icmp_wpa net/protocol/icmp.h 73;" d +icmp_ttime net/protocol/icmp.h 98;" d +icmp_type net/protocol/icmp.h /^ uint8_t icmp_type;$/;" m struct:icmp_s +icmp_void net/protocol/icmp.h 74;" d +icmp_wpa net/protocol/icmp.h 78;" d icmphdr_s net/protocol/icmp.h /^typedef struct icmphdr_s {$/;" s icmphdr_t net/protocol/icmp.h /^} icmphdr_t;$/;" t typeref:struct:icmphdr_s icuCaseFunc16 access/sqlite3.c /^static void icuCaseFunc16(sqlite3_context *p, int nArg, sqlite3_value **apArg){$/;" f file: @@ -15652,20 +15459,20 @@ id access/sqlite3.c /^ int id; \/* Mutex type *\/$/;" m stru id access/sqlite3.c /^ int id; \/* The mutex type *\/$/;" m struct:sqlite3_debug_mutex file: id access/sqlite3.c /^ u8 id; \/* Id of this connection with its winShmNode *\/$/;" m struct:winShm file: id access/sqlite3.c /^ u8 id; \/* Id of this connection within its unixShmNode *\/$/;" m struct:unixShm file: -id compat/compat_threadpool.h /^ int id;$/;" m struct:io_thread_s +id crt/crt_threadpool.h /^ int id;$/;" m struct:io_thread_s id extensions/include/ui/iuibase.h /^ UINT id;$/;" m struct:TagNotifyEvent id logs/sqlite3.c /^ int id; \/* Mutex type *\/$/;" m struct:sqlite3_mutex file: id logs/sqlite3.c /^ int id; \/* The mutex type *\/$/;" m struct:sqlite3_debug_mutex file: id logs/sqlite3.c /^ u8 id; \/* Id of this connection with its winShmNode *\/$/;" m struct:winShm file: id logs/sqlite3.c /^ u8 id; \/* Id of this connection within its unixShmNode *\/$/;" m struct:unixShm file: -id net/protocol/icmp.h /^ uint16_t id;$/;" m struct:icmphdr_s::__anon72::__anon73 -id net/protocol/ip.h /^ uint16_t id;$/;" m struct:iphdr_s +id net/protocol/icmp.h /^ uint16_t id;$/;" m struct:icmphdr_s::__anon67::__anon68 +id net/protocol/ip.h /^ uint16_t id;$/;" m struct:iphdr_s id polipo/dns.c /^ unsigned id;$/;" m struct:_DnsQuery file: id uibase/uilib/utils/stb_image.c /^ int id;$/;" m struct:__anon105::__anon106 file: idSeed polipo/dns.c /^static int idSeed;$/;" v file: -id_data net/protocol/icmp.h /^ uint8_t id_data[1];$/;" m union:icmp_s::__anon76 -id_mask net/protocol/icmp.h /^ uint32_t id_mask;$/;" m union:icmp_s::__anon76 -id_ts net/protocol/icmp.h /^ } id_ts;$/;" m union:icmp_s::__anon76 typeref:struct:icmp_s::__anon76::__anon77 +id_data net/protocol/icmp.h /^ uint8_t id_data[1];$/;" m union:icmp_s::__anon71 +id_mask net/protocol/icmp.h /^ uint32_t id_mask;$/;" m union:icmp_s::__anon71 +id_ts net/protocol/icmp.h /^ } id_ts;$/;" m union:icmp_s::__anon71 typeref:struct:icmp_s::__anon71::__anon72 idata uibase/uilib/utils/stb_image.c /^ stbi_uc *idata, *expanded, *out;$/;" m struct:__anon111 file: idct_block_kernel uibase/uilib/utils/stb_image.c /^ void (*idct_block_kernel)(stbi_uc *out, int out_stride, short data[64]);$/;" m struct:__anon105 file: identLength access/sqlite3.c /^static int identLength(const char *z){$/;" f file: @@ -15674,7 +15481,7 @@ identPut access/sqlite3.c /^static void identPut(char *z, int *pIdx, char *zSign identPut logs/sqlite3.c /^static void identPut(char *z, int *pIdx, char *zSignedIdent){$/;" f file: idleHandler polipo/server.h /^ FdEventHandlerPtr *idleHandler;$/;" m struct:_HTTPServer idleTime polipo/object.c /^int idleTime = 20;$/;" v -idnsParseResolvConf net/protocol/dns.cpp /^idnsParseResolvConf(void)$/;" f file: +idnsParseResolvConf net/protocol/dns.c /^idnsParseResolvConf(void)$/;" f file: idx access/sqlite3.c /^ int idx; \/* Index in some Table.aCol[] of a column named zName *\/$/;" m struct:IdList::IdList_item file: idx logs/sqlite3.c /^ int idx; \/* Index in some Table.aCol[] of a column named zName *\/$/;" m struct:IdList::IdList_item file: idxHash access/sqlite3.c /^ Hash idxHash; \/* All (named) indices indexed by name *\/$/;" m struct:Schema file: @@ -15682,29 +15489,29 @@ idxHash logs/sqlite3.c /^ Hash idxHash; \/* All (named) indices indexed idxNum access/sqlite3.c /^ int idxNum; \/* Index number *\/$/;" m struct:WhereLoop::__anon18::__anon20 file: idxNum access/sqlite3.c /^ int idxNum; \/* Number used to identify the index *\/$/;" m struct:sqlite3_index_info file: idxNum access/sqlite3.h /^ int idxNum; \/* Number used to identify the index *\/$/;" m struct:sqlite3_index_info -idxNum logs/sqlite3.c /^ int idxNum; \/* Index number *\/$/;" m struct:WhereLoop::__anon63::__anon65 file: +idxNum logs/sqlite3.c /^ int idxNum; \/* Index number *\/$/;" m struct:WhereLoop::__anon58::__anon60 file: idxNum logs/sqlite3.c /^ int idxNum; \/* Number used to identify the index *\/$/;" m struct:sqlite3_index_info file: idxNum logs/sqlite3.h /^ int idxNum; \/* Number used to identify the index *\/$/;" m struct:sqlite3_index_info idxStr access/sqlite3.c /^ char *idxStr; \/* Index identifier string *\/$/;" m struct:WhereLoop::__anon18::__anon20 file: idxStr access/sqlite3.c /^ char *idxStr; \/* String, possibly obtained from sqlite3_malloc *\/$/;" m struct:sqlite3_index_info file: idxStr access/sqlite3.h /^ char *idxStr; \/* String, possibly obtained from sqlite3_malloc *\/$/;" m struct:sqlite3_index_info -idxStr logs/sqlite3.c /^ char *idxStr; \/* Index identifier string *\/$/;" m struct:WhereLoop::__anon63::__anon65 file: +idxStr logs/sqlite3.c /^ char *idxStr; \/* Index identifier string *\/$/;" m struct:WhereLoop::__anon58::__anon60 file: idxStr logs/sqlite3.c /^ char *idxStr; \/* String, possibly obtained from sqlite3_malloc *\/$/;" m struct:sqlite3_index_info file: idxStr logs/sqlite3.h /^ char *idxStr; \/* String, possibly obtained from sqlite3_malloc *\/$/;" m struct:sqlite3_index_info idxaff access/sqlite3.c /^ char idxaff; \/* Must match this affinity, if zCollName!=NULL *\/$/;" m struct:WhereScan file: idxaff logs/sqlite3.c /^ char idxaff; \/* Must match this affinity, if zCollName!=NULL *\/$/;" m struct:WhereScan file: ifrange polipo/http.h /^ char *ifrange;$/;" m struct:_HTTPCondition -ih_gwaddr net/protocol/icmp.h /^ struct in_addr ih_gwaddr;$/;" m union:icmp_s::__anon75 typeref:struct:icmp_s::__anon75::in_addr -ih_idseq net/protocol/icmp.h /^ struct ih_idseq {$/;" s union:icmp_s::__anon75 -ih_idseq net/protocol/icmp.h /^ } ih_idseq;$/;" m union:icmp_s::__anon75 typeref:struct:icmp_s::__anon75::ih_idseq -ih_pmtu net/protocol/icmp.h /^ struct ih_pmtu {$/;" s union:icmp_s::__anon75 -ih_pmtu net/protocol/icmp.h /^ } ih_pmtu;$/;" m union:icmp_s::__anon75 typeref:struct:icmp_s::__anon75::ih_pmtu -ih_pptr net/protocol/icmp.h /^ uint8_t ih_pptr;$/;" m union:icmp_s::__anon75 -ih_rtradv net/protocol/icmp.h /^ struct ih_rtradv {$/;" s union:icmp_s::__anon75 -ih_rtradv net/protocol/icmp.h /^ } ih_rtradv;$/;" m union:icmp_s::__anon75 typeref:struct:icmp_s::__anon75::ih_rtradv -ih_void net/protocol/icmp.h /^ uint32_t ih_void;$/;" m union:icmp_s::__anon75 -ihl net/protocol/ip.h /^ uint8_t ihl : 4; \/\/ ip header length$/;" m struct:iphdr_s -il polipo/config.h /^ struct _IntList **il;$/;" m union:_ConfigVariable::__anon78 typeref:struct:_ConfigVariable::__anon78::_IntList +ih_gwaddr net/protocol/icmp.h /^ struct in_addr ih_gwaddr;$/;" m union:icmp_s::__anon70 typeref:struct:icmp_s::__anon70::in_addr +ih_idseq net/protocol/icmp.h /^ struct ih_idseq {$/;" s union:icmp_s::__anon70 +ih_idseq net/protocol/icmp.h /^ } ih_idseq;$/;" m union:icmp_s::__anon70 typeref:struct:icmp_s::__anon70::ih_idseq +ih_pmtu net/protocol/icmp.h /^ struct ih_pmtu {$/;" s union:icmp_s::__anon70 +ih_pmtu net/protocol/icmp.h /^ } ih_pmtu;$/;" m union:icmp_s::__anon70 typeref:struct:icmp_s::__anon70::ih_pmtu +ih_pptr net/protocol/icmp.h /^ uint8_t ih_pptr;$/;" m union:icmp_s::__anon70 +ih_rtradv net/protocol/icmp.h /^ struct ih_rtradv {$/;" s union:icmp_s::__anon70 +ih_rtradv net/protocol/icmp.h /^ } ih_rtradv;$/;" m union:icmp_s::__anon70 typeref:struct:icmp_s::__anon70::ih_rtradv +ih_void net/protocol/icmp.h /^ uint32_t ih_void;$/;" m union:icmp_s::__anon70 +ihl net/protocol/ip.h /^ uint8_t ihl:4; \/\/ ip header length$/;" m struct:iphdr_s +il polipo/config.h /^ struct _IntList **il;$/;" m union:_ConfigVariable::__anon76 typeref:struct:_ConfigVariable::__anon76::_IntList im polipo/http.h /^ char *im;$/;" m struct:_HTTPCondition img_buffer uibase/uilib/utils/stb_image.c /^ stbi_uc *img_buffer, *img_buffer_end;$/;" m struct:__anon102 file: img_buffer_end uibase/uilib/utils/stb_image.c /^ stbi_uc *img_buffer, *img_buffer_end;$/;" m struct:__anon102 file: @@ -15722,10 +15529,10 @@ img_x uibase/uilib/utils/stb_image.c /^ stbi__uint32 img_x, img_y;$/;" m struc img_y uibase/uilib/utils/stb_image.c /^ stbi__uint32 img_x, img_y;$/;" m struct:__anon102 file: ims polipo/http.h /^ time_t ims;$/;" m struct:_HTTPCondition in access/sqlite3.c /^ } in; \/* Used when pWLoop->wsFlags&WHERE_IN_ABLE *\/$/;" m union:WhereLevel::__anon16 typeref:struct:WhereLevel::__anon16::__anon17 file: -in compat/darwinsysvar.hpp /^ unsigned in;$/;" m struct:__anon32 -in compat/posixsysvar.hpp /^ unsigned in;$/;" m struct:__anon34 -in logs/sqlite3.c /^ } in; \/* Used when pWLoop->wsFlags&WHERE_IN_ABLE *\/$/;" m union:WhereLevel::__anon61 typeref:struct:WhereLevel::__anon61::__anon62 file: -in polipo/md5.h /^ unsigned char in[64]; \/* input buffer *\/$/;" m struct:__anon84 +in crt/darwinsysvar.hpp /^ unsigned in;$/;" m struct:__anon31 +in crt/posixsysvar.hpp /^ unsigned in;$/;" m struct:__anon28 +in logs/sqlite3.c /^ } in; \/* Used when pWLoop->wsFlags&WHERE_IN_ABLE *\/$/;" m union:WhereLevel::__anon56 typeref:struct:WhereLevel::__anon56::__anon57 file: +in polipo/md5.h /^ unsigned char in[64]; \/* input buffer *\/$/;" m struct:__anon81 inFlightDnsQueries polipo/dns.c /^static DnsQueryPtr inFlightDnsQueries;$/;" v file: inFlightDnsQueriesLast polipo/dns.c /^static DnsQueryPtr inFlightDnsQueriesLast;$/;" v file: inNormalWrite access/sqlite3.c /^ unsigned char inNormalWrite; \/* True if in a normal write operation *\/$/;" m struct:unixFile file: @@ -15756,9 +15563,12 @@ indent_flags_t uibase/uilib/core/pugixml.cpp /^ enum indent_flags_t$/;" g file: indent_indent uibase/uilib/core/pugixml.cpp /^ indent_indent = 2$/;" e enum:indent_flags_t file: indent_newline uibase/uilib/core/pugixml.cpp /^ indent_newline = 1,$/;" e enum:indent_flags_t file: index 3rd/include/iocontext.hpp /^ unsigned short index;$/;" m struct:io_contextpool_s +index container/rot.h /^ UINT index;$/;" m struct:CComRunningObjectTableImpl::tagRunningTableItem index extensions/include/log/ilogdatabase.h /^ UINT index;$/;" m struct:TagFieldSturct -index http/http/http_parser.h /^ unsigned int index : 7; \/* index into current matcher *\/$/;" m struct:http_parser +index net/http_protocol/http_parser.h /^ unsigned int index : 7; \/* index into current matcher *\/$/;" m struct:http_parser index polipo/io.h /^ int index;$/;" m struct:_ConnectRequest +index vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let index+=1$/;" v +index vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let index = 0$/;" v indexDiskObjects polipo/diskcache.c /^indexDiskObjects(FILE *out, const char *root, int recursive)$/;" f indexMightHelpWithOrderBy access/sqlite3.c /^static int indexMightHelpWithOrderBy($/;" f file: indexMightHelpWithOrderBy logs/sqlite3.c /^static int indexMightHelpWithOrderBy($/;" f file: @@ -15768,31 +15578,13 @@ inet4 polipo/dns.c /^ AtomPtr inet4, inet6;$/;" m struct:_DnsQuery file: inet6 polipo/dns.c /^ AtomPtr inet4, inet6;$/;" m struct:_DnsQuery file: inet_aton polipo/mingw.c 39;" d file: inet_aton polipo/mingw.h 138;" d -inet_ntop4 base/net/compat_sockinet.c /^char* inet_ntop4(const unsigned char *src, char *dst, size_t size)$/;" f -inet_ntop6 base/net/compat_sockinet.c /^char* inet_ntop6(const unsigned char *src, char *dst, size_t size)$/;" f -inet_pton4 base/net/compat_sockinet.c /^int inet_pton4(const char *src, unsigned char *dst)$/;" f -inet_pton6 base/net/compat_sockinet.c /^int inet_pton6(const char *src, unsigned char *dst)$/;" f +inet_ntop4 stdcrt/net/compat_sockinet.c /^char* inet_ntop4(const unsigned char *src, char *dst, size_t size)$/;" f +inet_ntop6 stdcrt/net/compat_sockinet.c /^char* inet_ntop6(const unsigned char *src, char *dst, size_t size)$/;" f +inet_pton4 stdcrt/net/compat_sockinet.c /^int inet_pton4(const char *src, unsigned char *dst)$/;" f +inet_pton6 stdcrt/net/compat_sockinet.c /^int inet_pton6(const char *src, unsigned char *dst)$/;" f info access/sqlite3.c /^ CellInfo info; \/* A parse of the cell we are pointing at *\/$/;" m struct:BtCursor file: info logs/sqlite3.c /^ CellInfo info; \/* A parse of the cell we are pointing at *\/$/;" m struct:BtCursor file: info polipo/dirent_compat.c /^ struct _finddata_t info;$/;" m struct:DIR typeref:struct:DIR::_finddata_t file: -info_arch CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";$/;" v -info_arch CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";$/;" v -info_compiler CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";$/;" v -info_compiler CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";$/;" v -info_cray CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";$/;" v -info_cray CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";$/;" v -info_language_dialect_default CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^const char* info_language_dialect_default =$/;" v -info_language_dialect_default CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^const char* info_language_dialect_default = "INFO" ":" "dialect_default["$/;" v -info_platform CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";$/;" v -info_platform CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";$/;" v -info_simulate CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";$/;" v -info_simulate CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";$/;" v -info_simulate_version CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const info_simulate_version[] = {$/;" v -info_simulate_version CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const info_simulate_version[] = {$/;" v -info_version CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const info_version[] = {$/;" v -info_version CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const info_version[] = {$/;" v -info_version_internal CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const info_version_internal[] = {$/;" v -info_version_internal CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const info_version_internal[] = {$/;" v init access/sqlite3.c /^ } init;$/;" m struct:sqlite3 typeref:struct:sqlite3::sqlite3InitInfo file: init logs/sqlite3.c /^ } init;$/;" m struct:sqlite3 typeref:struct:sqlite3::sqlite3InitInfo file: initAtoms polipo/atom.c /^initAtoms()$/;" f @@ -15817,30 +15609,9 @@ initParentProxy polipo/server.c /^initParentProxy()$/;" f file: initServer polipo/server.c /^initServer(void)$/;" f initSocks polipo/socks.c /^initSocks()$/;" f initSyslog polipo/log.c /^initSyslog()$/;" f file: -init_class access/dbimpl.cpp /^std_method_impl CDatabaseImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CDatabaseImpl -init_class asynio/asynframeimpl.cpp /^std_method_impl CAsynFrameImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CAsynFrameImpl -init_class container/mainrun.cpp /^std_method_impl CMainRun::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CMainRun -init_class container/objectloader.cpp /^std_method_impl CObjectLoader::init_class(IBase* \/*prot*\/, IBase *punkOuter)$/;" f class:CObjectLoader -init_class container/rot.cpp /^std_method_impl CComRunningObjectTableImpl::init_class(IBase *prot, IBase *punkOuter)$/;" f class:CComRunningObjectTableImpl -init_class http/httpimpl.cpp /^std_method_impl CHttpImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CHttpImpl -init_class include/dlcom/comfactory.hpp /^ std_method(init_class)(IBase* prot, IBase* punkOuter)$/;" f class:CNullObjcetUnkown -init_class include/dlcom/comfactory.hpp /^ std_method(init_class)(IBase* prot, IBase* punkOuter)$/;" f class:CoComFactoryCreator -init_class logs/logdatabase.cpp /^std_method_impl CLogDataBaseImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CLogDataBaseImpl -init_class logs/logfilters.cpp /^std_method_impl CLogFiltersImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CLogFiltersImpl -init_class logs/logsimpl.cpp /^std_method_impl CLogsImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CLogsImpl -init_class mainview/mainviewimpl.cpp /^std_method_impl CMainViewImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CMainViewImpl -init_class mempool/mempoolimpl.cpp /^std_method_impl CMemPoolImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CMemPoolImpl -init_class msgbus/msgbusimpl.cpp /^std_method_impl CMsgBusImpl::init_class(IBase *prot, IBase *punkOuter)$/;" f class:CMsgBusImpl init_class net/dnsimpl.cpp /^std_method_impl CDnsImpl::init_class(IBase* pSocket, IBase* pOper)$/;" f class:CDnsImpl -init_class net/netimpl.cpp /^std_method_impl CNetImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CNetImpl -init_class render/renderimpl.cpp /^std_method_impl CRenderImpl::init_class(IBase *prot, IBase *punkOuter)$/;" f class:CRenderImpl -init_class res/fontimpl.cpp /^std_method_impl CFontImpl::init_class(IBase *prot, IBase *punkOuter)$/;" f class:CFontImpl -init_class res/langimpl.cpp /^std_method_impl CLangImpl::init_class(IBase *prot, IBase *punkOuter)$/;" f class:CLangImpl -init_class uibase/uibaseimpl.cpp /^std_method_impl CUiBaseImpl::init_class(IBase* prot, IBase* punkOuter)$/;" f class:CUiBaseImpl -init_class_inner include/dlcom/comfactory.hpp /^ std_method(init_class_inner)(IBase* punkOuter)$/;" f class:CNullObjcetUnkown -init_class_inner include/dlcom/comfactory.hpp /^ std_method(init_class_inner)(IBase* punkOuter)$/;" f class:CoComFactoryCreator -init_threadpool base/thread/compat_threadpool.c /^int init_threadpool(_threadpool_t*pool) {$/;" f -inline compat/compat_common.hpp 87;" d +init_threadpool stdcrt/thread/compat_threadpool.c /^int init_threadpool(_threadpool_t*pool) {$/;" f +inline crt/crt_common.hpp 87;" d inline polipo/polipo.h 74;" d inline polipo/polipo.h 81;" d inm polipo/http.h /^ char *inm;$/;" m struct:_HTTPCondition @@ -15880,49 +15651,49 @@ insertion_sort uibase/uilib/core/pugixml.cpp /^ template PUGI__FN PUGI__UNSIGNED_OVERFLOW char_t* integer_to_string(char_t* begin, char_t* end, U value, bool negative)$/;" f interestingSignals polipo/event.c /^interestingSignals(sigset_t *ss)$/;" f -interface compat/compat_common.hpp 78;" d -interface compat/compat_common.hpp 94;" d +interface crt/crt_common.hpp 78;" d +interface crt/crt_common.hpp 94;" d internAtom polipo/atom.c /^internAtom(const char *string)$/;" f internAtomError polipo/atom.c /^internAtomError(int e, const char *f, ...)$/;" f internAtomErrorV polipo/atom.c /^internAtomErrorV(int e, const char *f, va_list args)$/;" f file: internAtomF polipo/atom.c /^internAtomF(const char *format, ...)$/;" f internAtomLowerN polipo/atom.c /^internAtomLowerN(const char *string, int n)$/;" f internAtomN polipo/atom.c /^internAtomN(const char *string, int n)$/;" f -internal_free base/code/compat_cjson.c /^static void internal_free(void *pointer)$/;" f file: -internal_free base/code/compat_cjson.c 104;" d file: -internal_hooks base/code/compat_cjson.c /^typedef struct internal_hooks$/;" s file: -internal_hooks base/code/compat_cjson.c /^} internal_hooks;$/;" t typeref:struct:internal_hooks file: -internal_malloc base/code/compat_cjson.c /^static void *internal_malloc(size_t size)$/;" f file: -internal_malloc base/code/compat_cjson.c 103;" d file: +internal_free stdcrt/code/compat_cjson.c /^static void internal_free(void *pointer)$/;" f file: +internal_free stdcrt/code/compat_cjson.c 104;" d file: +internal_hooks stdcrt/code/compat_cjson.c /^typedef struct internal_hooks$/;" s file: +internal_hooks stdcrt/code/compat_cjson.c /^} internal_hooks;$/;" t typeref:struct:internal_hooks file: +internal_malloc stdcrt/code/compat_cjson.c /^static void *internal_malloc(size_t size)$/;" f file: +internal_malloc stdcrt/code/compat_cjson.c 103;" d file: internal_object uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_attribute_struct* xml_attribute::internal_object() const$/;" f class:pugi::xml_attribute internal_object uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node_struct* xml_node::internal_object() const$/;" f class:pugi::xml_node -internal_realloc base/code/compat_cjson.c /^static void *internal_realloc(void *pointer, size_t size)$/;" f file: -internal_realloc base/code/compat_cjson.c 105;" d file: +internal_realloc stdcrt/code/compat_cjson.c /^static void *internal_realloc(void *pointer, size_t size)$/;" f file: +internal_realloc stdcrt/code/compat_cjson.c 105;" d file: interrupt logs/CppSQLite3.h /^ void interrupt() { sqlite3_interrupt(mpDB); }$/;" f class:CppSQLite3DB interruptx access/sqlite3.c /^ void (*interruptx)(sqlite3*);$/;" m struct:sqlite3_api_routines file: interruptx logs/sqlite3.c /^ void (*interruptx)(sqlite3*);$/;" m struct:sqlite3_api_routines file: @@ -15953,8 +15724,8 @@ io_contextpool_t 3rd/include/iocontext.hpp /^typedef struct io_contextpool_s io_ io_data_s 3rd/include/ioeventdef.h /^struct io_data_s {$/;" s io_data_t 3rd/include/ioeventdef.h /^typedef struct io_data_s io_data_t;$/;" t typeref:struct:io_data_s io_error_code 3rd/include/boost_def.hpp /^typedef boost::system::error_code io_error_code;$/;" t -io_func_s compat/compat_funcb.h /^struct io_func_s$/;" s -io_func_t compat/compat_funcb.h /^typedef struct io_func_s io_func_t;$/;" t typeref:struct:io_func_s +io_func_s crt/crt_funcb.h /^struct io_func_s$/;" s +io_func_t crt/crt_funcb.h /^typedef struct io_func_s io_func_t;$/;" t typeref:struct:io_func_s io_resolver 3rd/include/boost_def.hpp /^typedef boost::asio::ip::tcp::resolver io_resolver;$/;" t io_resolver_ptr 3rd/include/boost_def.hpp /^typedef io_resolver* io_resolver_ptr;$/;" t io_service 3rd/include/boost_def.hpp /^typedef boost::asio::io_service io_service;$/;" t @@ -15965,8 +15736,8 @@ io_steady_time 3rd/include/boost_def.hpp /^typedef boost::asio::steady_timer io_steady_time_ptr 3rd/include/boost_def.hpp /^typedef io_steady_time* io_steady_time_ptr;$/;" t io_strand 3rd/include/boost_def.hpp /^typedef boost::asio::io_service::strand io_strand;$/;" t io_strand_ptr 3rd/include/boost_def.hpp /^typedef io_strand* io_strand_ptr;$/;" t -io_thread_s compat/compat_threadpool.h /^struct io_thread_s {$/;" s -io_thread_t compat/compat_threadpool.h /^typedef struct io_thread_s io_thread_t;$/;" t typeref:struct:io_thread_s +io_thread_s crt/crt_threadpool.h /^struct io_thread_s {$/;" s +io_thread_t crt/crt_threadpool.h /^typedef struct io_thread_s io_thread_t;$/;" t typeref:struct:io_thread_s io_time 3rd/include/boost_def.hpp /^typedef boost::asio::deadline_timer io_time;$/;" t io_time_ptr 3rd/include/boost_def.hpp /^typedef io_time* io_time_ptr;$/;" t io_user_data uibase/uilib/utils/stb_image.c /^ void *io_user_data;$/;" m struct:__anon102 file: @@ -15974,25 +15745,25 @@ io_usocket 3rd/include/boost_def.hpp /^typedef boost::asio::ip::udp::socket io_usocket_ptr 3rd/include/boost_def.hpp /^typedef io_usocket* io_usocket_ptr;$/;" t io_work 3rd/include/boost_def.hpp /^typedef boost::asio::io_service::work io_work;$/;" t io_work_ptr 3rd/include/boost_def.hpp /^typedef boost::asio::io_service::work* io_work_ptr;$/;" t -iov_base compat/compat_msghdr.h /^ void *iov_base;$/;" m struct:iovec +iov_base crt/crt_msghdr.h /^ void *iov_base;$/;" m struct:iovec iov_base polipo/mingw.h /^ void *iov_base; \/* Starting address *\/$/;" m struct:iovec -iov_len compat/compat_msghdr.h /^ size_t iov_len;$/;" m struct:iovec +iov_len crt/crt_msghdr.h /^ size_t iov_len;$/;" m struct:iovec iov_len polipo/mingw.h /^ size_t iov_len; \/* Number of bytes *\/$/;" m struct:iovec -iovec compat/compat_msghdr.h /^struct iovec$/;" s +iovec crt/crt_msghdr.h /^struct iovec$/;" s iovec polipo/mingw.h /^struct iovec {$/;" s ipf uibase/uilib/control/uirichedit.cpp /^ LONG ipf;$/;" m class:DuiLib::CTxtWinHost file: iphdr_s net/protocol/ip.h /^typedef struct iphdr_s {$/;" s iphdr_t net/protocol/ip.h /^} iphdr_t;$/;" t typeref:struct:iphdr_s -ipm_nextmtu net/protocol/icmp.h /^ uint16_t ipm_nextmtu;$/;" m struct:icmp_s::__anon75::ih_pmtu -ipm_void net/protocol/icmp.h /^ uint16_t ipm_void;$/;" m struct:icmp_s::__anon75::ih_pmtu -irt_lifetime net/protocol/icmp.h /^ uint16_t irt_lifetime;$/;" m struct:icmp_s::__anon75::ih_rtradv -irt_num_addrs net/protocol/icmp.h /^ uint8_t irt_num_addrs;$/;" m struct:icmp_s::__anon75::ih_rtradv -irt_wpa net/protocol/icmp.h /^ uint8_t irt_wpa;$/;" m struct:icmp_s::__anon75::ih_rtradv +ipm_nextmtu net/protocol/icmp.h /^ uint16_t ipm_nextmtu;$/;" m struct:icmp_s::__anon70::ih_pmtu +ipm_void net/protocol/icmp.h /^ uint16_t ipm_void;$/;" m struct:icmp_s::__anon70::ih_pmtu +irt_lifetime net/protocol/icmp.h /^ uint16_t irt_lifetime;$/;" m struct:icmp_s::__anon70::ih_rtradv +irt_num_addrs net/protocol/icmp.h /^ uint8_t irt_num_addrs;$/;" m struct:icmp_s::__anon70::ih_rtradv +irt_wpa net/protocol/icmp.h /^ uint8_t irt_wpa;$/;" m struct:icmp_s::__anon70::ih_rtradv isAttached access/sqlite3.c /^ int isAttached; \/* True once backup has been registered with pager *\/$/;" m struct:sqlite3_backup file: isAttached logs/sqlite3.c /^ int isAttached; \/* True once backup has been registered with pager *\/$/;" m struct:sqlite3_backup file: isCandidateForInOpt access/sqlite3.c /^static int isCandidateForInOpt(Select *p){$/;" f file: isCandidateForInOpt logs/sqlite3.c /^static int isCandidateForInOpt(Select *p){$/;" f file: -isConnectKeeplive http/http/chttpparser.cpp /^int CHttpParser::isConnectKeeplive() {$/;" f class:CHttpParser +isConnectKeeplive net/http_protocol/chttpparser.cpp /^int CHttpParser::isConnectKeeplive() {$/;" f class:CHttpParser isConsonant access/sqlite3.c /^static int isConsonant(const char *z){$/;" f file: isConsonant logs/sqlite3.c /^static int isConsonant(const char *z){$/;" f file: isCorrelated access/sqlite3.c /^ unsigned isCorrelated :1; \/* True if sub-query is correlated *\/$/;" m struct:SrcList::SrcList_item file: @@ -16030,7 +15801,7 @@ isInit logs/sqlite3.c /^ u8 isInit; \/* 1 when initialized isInit logs/sqlite3.c /^ u8 isInit; \/* True if previously initialized. MUST BE FIRST! *\/$/;" m struct:MemPage file: isInit logs/sqlite3.c /^ unsigned char isInit; \/* True if initialized *\/$/;" m struct:sqlite3PrngType file: isInterrupted access/sqlite3.c /^ volatile int isInterrupted; \/* True if sqlite3_interrupt has been called *\/$/;" m union:sqlite3::__anon2 file: -isInterrupted logs/sqlite3.c /^ volatile int isInterrupted; \/* True if sqlite3_interrupt has been called *\/$/;" m union:sqlite3::__anon47 file: +isInterrupted logs/sqlite3.c /^ volatile int isInterrupted; \/* True if sqlite3_interrupt has been called *\/$/;" m union:sqlite3::__anon42 file: isLikeOrGlob access/sqlite3.c /^static int isLikeOrGlob($/;" f file: isLikeOrGlob logs/sqlite3.c /^static int isLikeOrGlob($/;" f file: isLookaside access/sqlite3.c /^static int isLookaside(sqlite3 *db, void *p){$/;" f file: @@ -16043,6 +15814,7 @@ isMatchOfColumn access/sqlite3.c /^static int isMatchOfColumn($/;" f file: isMatchOfColumn logs/sqlite3.c /^static int isMatchOfColumn($/;" f file: isMatchinfoNeeded access/sqlite3.c /^ int isMatchinfoNeeded; \/* True when aMatchinfo[] needs filling in *\/$/;" m struct:Fts3Cursor file: isMatchinfoNeeded logs/sqlite3.c /^ int isMatchinfoNeeded; \/* True when aMatchinfo[] needs filling in *\/$/;" m struct:Fts3Cursor file: +isModifiedSinceLastCall vim_tool/.vim/autoload/acp.vim /^function s:isModifiedSinceLastCall()$/;" f isMultiWrite access/sqlite3.c /^ u8 isMultiWrite; \/* True if statement may modify\/insert multiple rows *\/$/;" m struct:Parse file: isMultiWrite logs/sqlite3.c /^ u8 isMultiWrite; \/* True if statement may modify\/insert multiple rows *\/$/;" m struct:Parse file: isMutexInit access/sqlite3.c /^ int isMutexInit; \/* True after mutexes are initialized *\/$/;" m struct:Sqlite3Config file: @@ -16054,7 +15826,7 @@ isOpen logs/sqlite3.c 40201;" d file: isOrdered access/sqlite3.c /^ u8 isOrdered; \/* True if satisfies ORDER BY *\/$/;" m struct:WhereLoop::__anon18::__anon20 file: isOrdered access/sqlite3.c /^ Bool isOrdered:1; \/* True if the underlying table is BTREE_UNORDERED *\/$/;" m struct:VdbeCursor file: isOrdered access/sqlite3.c /^ u8 isOrdered; \/* True if this path satisfies ORDER BY *\/$/;" m struct:WherePath file: -isOrdered logs/sqlite3.c /^ u8 isOrdered; \/* True if satisfies ORDER BY *\/$/;" m struct:WhereLoop::__anon63::__anon65 file: +isOrdered logs/sqlite3.c /^ u8 isOrdered; \/* True if satisfies ORDER BY *\/$/;" m struct:WhereLoop::__anon58::__anon60 file: isOrdered logs/sqlite3.c /^ Bool isOrdered:1; \/* True if the underlying table is BTREE_UNORDERED *\/$/;" m struct:VdbeCursor file: isOrdered logs/sqlite3.c /^ u8 isOrdered; \/* True if this path satisfies ORDER BY *\/$/;" m struct:WherePath file: isOrderedValid access/sqlite3.c /^ u8 isOrderedValid; \/* True if the isOrdered field is valid *\/$/;" m struct:WherePath file: @@ -16120,40 +15892,41 @@ is_nan uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool is_nan(double value)$/;" f is_posinv_expr uibase/uilib/core/pugixml.cpp /^ bool is_posinv_expr() const$/;" f class:xpath_ast_node is_posinv_step uibase/uilib/core/pugixml.cpp /^ bool is_posinv_step() const$/;" f class:xpath_ast_node is_text_node uibase/uilib/core/pugixml.cpp /^ inline bool is_text_node(xml_node_struct* node)$/;" f -is_utf8 base/string/compat_utf8.c /^int is_utf8(const char* str, size_t length) {$/;" f +is_utf8 stdcrt/string/compat_utf8.c /^int is_utf8(const char* str, size_t length) {$/;" f is_xpath_attribute uibase/uilib/core/pugixml.cpp /^ inline bool is_xpath_attribute(const char_t* name)$/;" f issep polipo/parse_time.c /^issep(char c)$/;" f file: -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);$/;" v -item compat/compat_cjson.h /^CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);$/;" v +item crt/crt_cjson.h /^CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item);$/;" v +item vim_tool/.vim/autoload/omni/cpp/items.vim /^ let item.kind = omni#cpp#utils#GetCastType(item.tokens)$/;" v item_t uibase/uilib/core/pugixml.cpp /^ struct item_t$/;" s class:compact_hash_table file: -items compat/compat_array.h /^ void **items; $/;" m struct:array_s -iter_head compat/compat_argv.h /^ void* (*iter_head)(ITER*, argv_t*);$/;" m struct:argv_s -iter_head compat/compat_array.h /^ void* (*iter_head)(ITER*, struct array_s*);$/;" m struct:array_s -iter_next compat/compat_argv.h /^ void* (*iter_next)(ITER*, argv_t*);$/;" m struct:argv_s -iter_next compat/compat_array.h /^ void* (*iter_next)(ITER*, struct array_s*);$/;" m struct:array_s -iter_prev compat/compat_argv.h /^ void* (*iter_prev)(ITER*, argv_t*);$/;" m struct:argv_s -iter_prev compat/compat_array.h /^ void* (*iter_prev)(ITER*, struct array_s*);$/;" m struct:array_s -iter_tail compat/compat_argv.h /^ void* (*iter_tail)(ITER*, argv_t*);$/;" m struct:argv_s -iter_tail compat/compat_array.h /^ void* (*iter_tail)(ITER*, struct array_s*);$/;" m struct:array_s +items crt/crt_array.h /^ void **items; $/;" m struct:array_s +iter_head crt/crt_argv.h /^ void* (*iter_head)(ITER*, argv_t*);$/;" m struct:argv_s +iter_head crt/crt_array.h /^ void* (*iter_head)(ITER*, struct array_s*);$/;" m struct:array_s +iter_next crt/crt_argv.h /^ void* (*iter_next)(ITER*, argv_t*);$/;" m struct:argv_s +iter_next crt/crt_array.h /^ void* (*iter_next)(ITER*, struct array_s*);$/;" m struct:array_s +iter_prev crt/crt_argv.h /^ void* (*iter_prev)(ITER*, argv_t*);$/;" m struct:argv_s +iter_prev crt/crt_array.h /^ void* (*iter_prev)(ITER*, struct array_s*);$/;" m struct:array_s +iter_tail crt/crt_argv.h /^ void* (*iter_tail)(ITER*, argv_t*);$/;" m struct:argv_s +iter_tail crt/crt_array.h /^ void* (*iter_tail)(ITER*, struct array_s*);$/;" m struct:array_s iterator uibase/uilib/core/pugixml.hpp /^ typedef It iterator;$/;" t class:pugi::xml_object_range iterator uibase/uilib/core/pugixml.hpp /^ typedef const xpath_node* iterator;$/;" t class:pugi::xpath_node_set iterator uibase/uilib/core/pugixml.hpp /^ typedef xml_node_iterator iterator;$/;" t class:pugi::xml_node iterator_category uibase/uilib/core/pugixml.hpp /^ typedef std::bidirectional_iterator_tag iterator_category;$/;" t class:pugi::xml_attribute_iterator iterator_category uibase/uilib/core/pugixml.hpp /^ typedef std::bidirectional_iterator_tag iterator_category;$/;" t class:pugi::xml_named_node_iterator iterator_category uibase/uilib/core/pugixml.hpp /^ typedef std::bidirectional_iterator_tag iterator_category;$/;" t class:pugi::xml_node_iterator -its_otime net/protocol/icmp.h /^ uint32_t its_otime;$/;" m struct:icmp_s::__anon76::__anon77 -its_rtime net/protocol/icmp.h /^ uint32_t its_rtime;$/;" m struct:icmp_s::__anon76::__anon77 -its_ttime net/protocol/icmp.h /^ uint32_t its_ttime;$/;" m struct:icmp_s::__anon76::__anon77 +its_otime net/protocol/icmp.h /^ uint32_t its_otime;$/;" m struct:icmp_s::__anon71::__anon72 +its_rtime net/protocol/icmp.h /^ uint32_t its_rtime;$/;" m struct:icmp_s::__anon71::__anon72 +its_ttime net/protocol/icmp.h /^ uint32_t its_ttime;$/;" m struct:icmp_s::__anon71::__anon72 ix access/sqlite3.c /^ int ix[BMS]; \/* Cursor assigned to each bit *\/$/;" m struct:WhereMaskSet file: ix logs/sqlite3.c /^ int ix[BMS]; \/* Cursor assigned to each bit *\/$/;" m struct:WhereMaskSet file: j access/sqlite3.c /^ unsigned char i, j; \/* State variables *\/$/;" m struct:sqlite3PrngType file: @@ -16186,7 +15959,7 @@ jrnlTruncate access/sqlite3.c /^static int jrnlTruncate(sqlite3_file *pJfd, sqli jrnlTruncate logs/sqlite3.c /^static int jrnlTruncate(sqlite3_file *pJfd, sqlite_int64 size){$/;" f file: jrnlWrite access/sqlite3.c /^static int jrnlWrite($/;" f file: jrnlWrite logs/sqlite3.c /^static int jrnlWrite($/;" f file: -json base/code/compat_cjson.c /^ const unsigned char *json;$/;" m struct:__anon25 file: +json stdcrt/code/compat_cjson.c /^ const unsigned char *json;$/;" m struct:__anon82 file: json_sentry include/utilex/json.hpp /^struct json_sentry$/;" s jstring2str dispatch/native-lib.cpp /^std::string jstring2str(JNIEnv* env, jstring jstr)$/;" f juliandayFunc access/sqlite3.c /^static void juliandayFunc($/;" f file: @@ -16195,7 +15968,7 @@ k access/sqlite3.c /^ int k; \/* Resume scanning at this->p k logs/sqlite3.c /^ int k; \/* Resume scanning at this->pWC->a[this->k] *\/$/;" m struct:WhereScan file: key access/sqlite3.c /^ Blob key; \/* Last key written to the current block *\/$/;" m struct:NodeWriter file: key access/sqlite3.c /^struct AttachKey { int type; Token key; };$/;" m struct:AttachKey file: -key compat/compat_iterator.h /^ const char *key; $/;" m struct:ITER +key crt/crt_iterator.h /^ const char *key; $/;" m struct:ITER key logs/sqlite3.c /^ Blob key; \/* Last key written to the current block *\/$/;" m struct:NodeWriter file: key logs/sqlite3.c /^struct AttachKey { int type; Token key; };$/;" m struct:AttachKey file: key polipo/object.h /^ char *key;$/;" m struct:_Object @@ -16207,23 +15980,24 @@ keyConf logs/sqlite3.c /^ u8 keyConf; \/* What to do in case of unique keyInfoFromExprList access/sqlite3.c /^static KeyInfo *keyInfoFromExprList(Parse *pParse, ExprList *pList, int nExtra){$/;" f file: keyInfoFromExprList logs/sqlite3.c /^static KeyInfo *keyInfoFromExprList(Parse *pParse, ExprList *pList, int nExtra){$/;" f file: key_size polipo/object.h /^ unsigned short key_size;$/;" m struct:_Object +keysMappingDriven vim_tool/.vim/autoload/acp.vim /^ let s:keysMappingDriven = []$/;" v keywordCode access/sqlite3.c /^static int keywordCode(const char *z, int n){$/;" f file: keywordCode logs/sqlite3.c /^static int keywordCode(const char *z, int n){$/;" f file: -klen compat/compat_iterator.h /^ int klen; $/;" m struct:ITER -l polipo/io.h /^ } l;$/;" m union:_StreamRequest::__anon80 typeref:struct:_StreamRequest::__anon80::__anon83 +klen crt/crt_iterator.h /^ int klen; $/;" m struct:ITER +l polipo/io.h /^ } l;$/;" m union:_StreamRequest::__anon77 typeref:struct:_StreamRequest::__anon77::__anon80 lParam extensions/include/ui/iuibase.h /^ LPARAM lParam;$/;" m struct:TagNotifyEvent lParam uibase/uilib/core/uidefine.h /^ LPARAM lParam;$/;" m struct:DuiLib::tagTNotifyUI lParam uibase/uilib/core/uimanager.h /^ LPARAM lParam;$/;" m struct:DuiLib::tagTEventUI lSelBarWidth uibase/uilib/control/uirichedit.cpp /^ LONG lSelBarWidth; \/\/ Width of the selection bar$/;" m class:DuiLib::CTxtWinHost file: -lVal compat/compat_var.h /^ long lVal;$/;" m union:tag_varaint_t::__anon30 +lVal crt/crt_var.h /^ long lVal;$/;" m union:tag_varaint_t::__anon25 labelsToString polipo/dns.c /^labelsToString(char *buf, int offset, int n, char *d, int m, int *j_return)$/;" f file: laccelpos uibase/uilib/control/uirichedit.cpp /^ LONG laccelpos; \/\/ Accelerator position$/;" m class:DuiLib::CTxtWinHost file: langidFromSelect access/sqlite3.c /^static int langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect){$/;" f file: langidFromSelect logs/sqlite3.c /^static int langidFromSelect(Fts3Table *p, sqlite3_stmt *pSelect){$/;" f file: large mempool/alloc.h /^ ngx_pool_large_t *large;$/;" m struct:ngx_pool_s -last compat/compat_list.h /^ struct _list_item *last;$/;" m struct:_list_s typeref:struct:_list_s::_list_item +last crt/crt_list.h /^ struct _list_item *last;$/;" m struct:_list_s typeref:struct:_list_s::_list_item last mempool/alloc.h /^ u_char *last;$/;" m struct:ngx_buf_s -last mempool/alloc.h /^ u_char *last;$/;" m struct:__anon70 +last mempool/alloc.h /^ u_char *last;$/;" m struct:__anon65 lastErrno access/sqlite3.c /^ DWORD lastErrno; \/* The Windows errno from the last I\/O error *\/$/;" m struct:winShmNode file: lastErrno access/sqlite3.c /^ DWORD lastErrno; \/* The Windows errno from the last I\/O error *\/$/;" m struct:winFile file: lastErrno access/sqlite3.c /^ int lastErrno; \/* The unix errno from last I\/O error *\/$/;" m struct:unixFile file: @@ -16255,27 +16029,26 @@ leaf access/sqlite3.c /^ u8 leaf; \/* True if leaf flag is set *\/$ leaf logs/sqlite3.c /^ u8 leaf; \/* True if leaf flag is set *\/$/;" m struct:MemPage file: leaveMutex access/sqlite3.c /^static void leaveMutex(void){$/;" f file: leaveMutex logs/sqlite3.c /^static void leaveMutex(void){$/;" f file: -left compat/darwinossysdef.h /^ LONG left;$/;" m struct:tagRECT -left compat/darwinossysdef.h /^ LONG left;$/;" m struct:_RECTL -left compat/posixossysdef.h /^ LONG left;$/;" m struct:tagRECT -left compat/posixossysdef.h /^ LONG left;$/;" m struct:_RECTL +left crt/darwinossysdef.h /^ LONG left;$/;" m struct:tagRECT +left crt/darwinossysdef.h /^ LONG left;$/;" m struct:_RECTL +left crt/posixossysdef.h /^ LONG left;$/;" m struct:tagRECT +left crt/posixossysdef.h /^ LONG left;$/;" m struct:_RECTL left uibase/uilib/core/uimanager.h /^ double left;$/;" m struct:DuiLib::tagTPercentInfo leftColumn access/sqlite3.c /^ int leftColumn; \/* Column number of X in "X " *\/$/;" m union:WhereTerm::__anon21 file: -leftColumn logs/sqlite3.c /^ int leftColumn; \/* Column number of X in "X " *\/$/;" m union:WhereTerm::__anon66 file: +leftColumn logs/sqlite3.c /^ int leftColumn; \/* Column number of X in "X " *\/$/;" m union:WhereTerm::__anon61 file: leftCursor access/sqlite3.c /^ int leftCursor; \/* Cursor number of X in "X " *\/$/;" m struct:WhereTerm file: leftCursor logs/sqlite3.c /^ int leftCursor; \/* Cursor number of X in "X " *\/$/;" m struct:WhereTerm file: -len compat/compat_argv.h /^ int len; $/;" m struct:argv_s -len http/http/http_parser.h /^ uint16_t len; \/* Length of run in buffer *\/$/;" m struct:http_parser_url::__anon45 +len crt/crt_argv.h /^ int len; $/;" m struct:argv_s len logs/stdafx.h /^ unsigned long len;$/;" m class:LogData len msgbus/auth.hpp /^ unsigned int len;$/;" m struct:_StringPtr -len net/protocol/udp.h /^ uint16_t len; \/\/ udp length$/;" m struct:udphdr_s +len net/http_protocol/http_parser.h /^ uint16_t len; \/* Length of run in buffer *\/$/;" m struct:http_parser_url::__anon73 +len net/protocol/udp.h /^ uint16_t len; \/\/ udp length$/;" m struct:udphdr_s len polipo/http.h /^ int len;$/;" m struct:_HTTPConnection len polipo/io.h /^ int len;$/;" m struct:_StreamRequest +len vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let len = len(listResolvedNamespace)$/;" v len2 polipo/io.h /^ int len2;$/;" m struct:_StreamRequest -len3 polipo/io.h /^ int len3;$/;" m struct:_StreamRequest::__anon80::__anon82 +len3 polipo/io.h /^ int len3;$/;" m struct:_StreamRequest::__anon77::__anon79 length access/sqlite3.c /^ unsigned long long length; \/* nbr of bytes to lock *\/$/;" m struct:ByteRangeLockPB2 file: -length base/code/compat_cjson.c /^ size_t length;$/;" m struct:__anon26 file: -length base/code/compat_cjson.c /^ size_t length;$/;" m struct:__anon27 file: length logs/sqlite3.c /^ unsigned long long length; \/* nbr of bytes to lock *\/$/;" m struct:ByteRangeLockPB2 file: length polipo/atom.h /^ int length;$/;" m struct:_AtomList length polipo/atom.h /^ unsigned short length;$/;" m struct:_Atom @@ -16283,12 +16056,14 @@ length polipo/diskcache.h /^ int length;$/;" m struct:_DiskObject length polipo/forbidden.c /^ int length;$/;" m struct:_Domain file: length polipo/object.h /^ int length;$/;" m struct:_Object length polipo/util.h /^ int length;$/;" m struct:_IntList +length stdcrt/code/compat_cjson.c /^ size_t length;$/;" m struct:__anon83 file: +length stdcrt/code/compat_cjson.c /^ size_t length;$/;" m struct:__anon84 file: length uibase/uilib/core/pugixml.cpp /^ size_t length() const$/;" f class:xpath_string length uibase/uilib/utils/stb_image.c /^ stbi__uint32 length;$/;" m struct:__anon110 file: lengthFunc access/sqlite3.c /^static void lengthFunc($/;" f file: lengthFunc logs/sqlite3.c /^static void lengthFunc($/;" f file: lengthof uibase/stdafx.h 37;" d -lenient_http_headers http/http/http_parser.h /^ unsigned int lenient_http_headers : 1;$/;" m struct:http_parser +lenient_http_headers net/http_protocol/http_parser.h /^ unsigned int lenient_http_headers : 1;$/;" m struct:http_parser less uibase/uilib/core/pugixml.cpp /^ struct less$/;" s file: less_equal uibase/uilib/core/pugixml.cpp /^ struct less_equal$/;" s file: letter polipo/util.c /^letter(char c)$/;" f @@ -16322,12 +16097,14 @@ lex_var_ref uibase/uilib/core/pugixml.cpp /^ lex_var_ref,$/;" e enum:lexeme_t f lexeme_t uibase/uilib/core/pugixml.cpp /^ enum lexeme_t$/;" g file: lflags uibase/uilib/utils/stb_image.c /^ int lflags;$/;" m struct:__anon115 file: lhs access/sqlite3.c /^ YYCODETYPE lhs; \/* Symbol on the left-hand side of the rule *\/$/;" m struct:__anon24 file: -lhs logs/sqlite3.c /^ YYCODETYPE lhs; \/* Symbol on the left-hand side of the rule *\/$/;" m struct:__anon69 file: -libfunc base/stdlib/compat_dll.c /^void* libfunc(HMODULE handler, char* sym) {$/;" f +lhs logs/sqlite3.c /^ YYCODETYPE lhs; \/* Symbol on the left-hand side of the rule *\/$/;" m struct:__anon64 file: +libfunc stdcrt/stdlib/compat_dll.c /^void* libfunc(HMODULE handler, char* sym) {$/;" f libversion access/sqlite3.c /^ const char * (*libversion)(void);$/;" m struct:sqlite3_api_routines file: libversion logs/sqlite3.c /^ const char * (*libversion)(void);$/;" m struct:sqlite3_api_routines file: libversion_number access/sqlite3.c /^ int (*libversion_number)(void);$/;" m struct:sqlite3_api_routines file: libversion_number logs/sqlite3.c /^ int (*libversion_number)(void);$/;" m struct:sqlite3_api_routines file: +licenseVersionNumber license/license.h /^FOUNDATION_EXPORT double licenseVersionNumber;$/;" v +licenseVersionString license/license.h /^FOUNDATION_EXPORT const unsigned char licenseVersionString[];$/;" v lies polipo/server.h /^ int lies;$/;" m struct:_HTTPServer likeFunc access/sqlite3.c /^static void likeFunc($/;" f file: likeFunc logs/sqlite3.c /^static void likeFunc($/;" f file: @@ -16347,10 +16124,17 @@ lingeringClose polipo/io.c /^lingeringClose(int fd)$/;" f lingeringCloseHandler polipo/io.c /^lingeringCloseHandler(int status, FdEventHandlerPtr event)$/;" f file: lingeringCloseTimeoutHandler polipo/io.c /^lingeringCloseTimeoutHandler(TimeEventHandlerPtr event)$/;" f file: list access/sqlite3.c /^ } list;$/;" m union:Mem3Block::__anon11 typeref:struct:Mem3Block::__anon11::__anon13 file: -list logs/sqlite3.c /^ } list;$/;" m union:Mem3Block::__anon56 typeref:struct:Mem3Block::__anon56::__anon58 file: +list logs/sqlite3.c /^ } list;$/;" m union:Mem3Block::__anon51 typeref:struct:Mem3Block::__anon51::__anon53 file: list polipo/atom.h /^ AtomPtr *list;$/;" m struct:_AtomList +listParentContext vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let listParentContext = keys(mapContext)$/;" v +listResolvedNamespace vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let listResolvedNamespace = []$/;" v listServers polipo/server.c /^listServers(FILE *out)$/;" f -llVal compat/compat_var.h /^ int64_t llVal;$/;" m union:tag_varaint_t::__anon30 +listTagsOfNamespace vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let listTagsOfNamespace = g:omni#cpp#namespaces#CacheResolve[a:namespace]$/;" v +listTagsOfNamespace vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let listTagsOfNamespace = omni#common#utils#TagList('^'.a:namespace.'$')$/;" v +listTagsOfNamespace vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let listTagsOfNamespace = []$/;" v +listTmp vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let listTmp = listTmp[index+1:]$/;" v +listTmp vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let listTmp = []$/;" v +llVal crt/crt_var.h /^ int64_t llVal;$/;" m union:tag_varaint_t::__anon25 load uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_parse_result xml_document::load(const char_t* contents, unsigned int options)$/;" f class:pugi::xml_document load uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_parse_result xml_document::load(std::basic_istream >& stream, unsigned int options, xml_encoding encoding)$/;" f class:pugi::xml_document load uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_parse_result xml_document::load(std::basic_istream >& stream, unsigned int options)$/;" f class:pugi::xml_document @@ -16374,7 +16158,17 @@ load_stream_data_noseek uibase/uilib/core/pugixml.cpp /^ template P load_stream_data_seek uibase/uilib/core/pugixml.cpp /^ template PUGI__FN xml_parse_status load_stream_data_seek(std::basic_istream& stream, void** out_buffer, size_t* out_size)$/;" f load_stream_impl uibase/uilib/core/pugixml.cpp /^ template PUGI__FN xml_parse_result load_stream_impl(xml_document_struct* doc, std::basic_istream& stream, unsigned int options, xml_encoding encoding, char_t** out_buffer)$/;" f load_string uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_parse_result xml_document::load_string(const char_t* contents, unsigned int options)$/;" f class:pugi::xml_document -loadlib base/stdlib/compat_dll.c /^HMODULE loadlib(basic_tchar* path, int flag) {$/;" f +loaded_acp vim_tool/.vim/plugin/acp.vim /^let g:loaded_acp = 1$/;" v +loaded_autoload_acp vim_tool/.vim/autoload/acp.vim /^let g:loaded_autoload_acp = 1$/;" v +loaded_explorer vim_tool/.vim/plugin/winfileexplorer.vim /^ let loaded_explorer = 1$/;" v +loaded_explorer vim_tool/.vim/plugin/winmanager.vim /^ let loaded_explorer = 1$/;" v +loaded_taglist vim_tool/.vim/plugin/taglist.vim /^ let loaded_taglist = 'no'$/;" v +loaded_taglist vim_tool/.vim/plugin/taglist.vim /^ let loaded_taglist = 'no'$/;" v +loaded_taglist vim_tool/.vim/plugin/taglist.vim /^ let loaded_taglist = 'fast_load_done'$/;" v +loaded_taglist vim_tool/.vim/plugin/taglist.vim /^let loaded_taglist = 'available'$/;" v +loaded_winfileexplorer vim_tool/.vim/plugin/winfileexplorer.vim /^let loaded_winfileexplorer=1$/;" v +loaded_winmanager vim_tool/.vim/plugin/winmanager.vim /^let loaded_winmanager = 1$/;" v +loadlib stdcrt/stdlib/compat_dll.c /^HMODULE loadlib(basic_tchar* path, int flag) {$/;" f local access/sqlite3.c /^ winceLock local; \/* Locks obtained by this instance of winFile *\/$/;" m struct:winFile file: local logs/sqlite3.c /^ winceLock local; \/* Locks obtained by this instance of winFile *\/$/;" m struct:winFile file: local polipo/diskcache.h /^ short local;$/;" m struct:_DiskCacheEntry @@ -16390,7 +16184,7 @@ localtimeOffset access/sqlite3.c /^static sqlite3_int64 localtimeOffset($/;" f f localtimeOffset logs/sqlite3.c /^static sqlite3_int64 localtimeOffset($/;" f file: location polipo/diskcache.h /^ char *location;$/;" m struct:_DiskObject lock access/sqlite3.c /^ BtLock lock; \/* Object used to lock page 1 *\/$/;" m struct:Btree file: -lock compat/winsysvar.hpp /^ _mutex_t lock;$/;" m struct:__anon35 +lock crt/winsysvar.hpp /^ _mutex_t lock;$/;" m struct:__anon32 lock include/utilex/autolock.hpp /^ _mutex_t lock;$/;" m class:CAutoLock lock logs/sqlite3.c /^ BtLock lock; \/* Object used to lock page 1 *\/$/;" m struct:Btree file: lockBtree access/sqlite3.c /^static int lockBtree(BtShared *pBt){$/;" f file: @@ -16398,6 +16192,7 @@ lockBtree logs/sqlite3.c /^static int lockBtree(BtShared *pBt){$/;" f file: lockBtreeMutex access/sqlite3.c /^static void lockBtreeMutex(Btree *p){$/;" f file: lockBtreeMutex logs/sqlite3.c /^static void lockBtreeMutex(Btree *p){$/;" f file: lockChunk polipo/object.c /^lockChunk(ObjectPtr object, int i)$/;" f +lockCount vim_tool/.vim/autoload/acp.vim /^let s:lockCount = 0$/;" v lockError access/sqlite3.c /^ u8 lockError; \/* True if a locking error has occurred *\/$/;" m struct:Wal file: lockError logs/sqlite3.c /^ u8 lockError; \/* True if a locking error has occurred *\/$/;" m struct:Wal file: lockMask access/sqlite3.c /^ yDbMask lockMask; \/* Subset of btreeMask that requires a lock *\/$/;" m struct:Vdbe file: @@ -16431,17 +16226,19 @@ logFilePermissions polipo/log.c /^static int logFilePermissions = 0640;$/;" v fi logLevel polipo/log.c /^static int logLevel = LOGGING_DEFAULT;$/;" v file: logSyslog polipo/log.c /^static int logSyslog = 0;$/;" v file: logTunnel polipo/tunnel.c /^logTunnel(TunnelPtr tunnel, int blocked)$/;" f file: -log_debug_tag compat/compat_log.h 13;" d -log_error_tag compat/compat_log.h 10;" d -log_info_tag compat/compat_log.h 12;" d -log_print base/compat_log.c /^int log_print(int proi,$/;" f -log_warning_tag compat/compat_log.h 11;" d -logd compat/compat_log.h 48;" d -loge compat/compat_log.h 39;" d +log_debug_tag crt/crt_log.h 13;" d +log_error_tag crt/crt_log.h 10;" d +log_info_tag crt/crt_log.h 12;" d +log_print stdcrt/compat_log.c /^int log_print(int proi,$/;" f +log_warning_tag crt/crt_log.h 11;" d +logd crt/crt_log.h 48;" d +loge crt/crt_log.h 39;" d loggingToStderr polipo/log.c /^loggingToStderr(void) {$/;" f -logi compat/compat_log.h 45;" d -logv compat/compat_log.h 51;" d -logw compat/compat_log.h 42;" d +logi crt/crt_log.h 45;" d +logsVersionNumber logs/logs.h /^FOUNDATION_EXPORT double logsVersionNumber;$/;" v +logsVersionString logs/logs.h /^FOUNDATION_EXPORT const unsigned char logsVersionString[];$/;" v +logv crt/crt_log.h 51;" d +logw crt/crt_log.h 42;" d lookaside access/sqlite3.c /^ Lookaside lookaside; \/* Lookaside malloc configuration *\/$/;" m struct:sqlite3 file: lookaside logs/sqlite3.c /^ Lookaside lookaside; \/* Lookaside malloc configuration *\/$/;" m struct:sqlite3 file: lookupName access/sqlite3.c /^static int lookupName($/;" f file: @@ -16500,13 +16297,14 @@ m_MapSockOption asynio/tcpsocketimpl.h /^ SocketOptionTable m_MapSockOption;$/;" m_MapSockOption asynio/udpsocketimpl.h /^ SocketOptionTable m_MapSockOption;$/;" m class:CUdpSocketImpl m_MaxConn msgbus/broker.h /^ UINT m_MaxConn;$/;" m class:CBrokerImpl m_MultiLanguageHash uibase/uilib/core/uimanager.h /^ CDuiStringPtrMap m_MultiLanguageHash;$/;" m struct:DuiLib::tagTResInfo -m_Notify http/httptimpl.h /^ IHttpNotify* m_Notify;$/;" m class:CHttptImpl +m_Notify net/httptimpl.h /^ IHttpNotify* m_Notify;$/;" m class:CHttptImpl m_OldWndProc uibase/uilib/core/uibase.h /^ WNDPROC m_OldWndProc;$/;" m class:DuiLib::CWindowWnd m_OriParentProc uibase/uilib/utils/wndshadow.h /^ WNDPROC m_OriParentProc; \/\/ Original WndProc of parent window$/;" m class:CWndShadow m_PaintManager uibase/uilib/utils/winimplbase.h /^ CPaintManagerUI m_PaintManager;$/;" m class:DuiLib::WindowImplBase m_Plugins container/mainrun.h /^ CPlugins m_Plugins;$/;" m class:CMainRun m_PluginsClsid container/mainrun.h /^ PluginVector m_PluginsClsid;$/;" m class:CMainRun m_PluginsComponents container/mainrun.h /^ ComponentPlugin m_PluginsComponents;$/;" m class:CMainRun +m_PluginsDynamicClsid container/mainrun.h /^ PluginVector m_PluginsDynamicClsid;$/;" m class:CMainRun m_Producer msgbus/broker.h /^ CLockQueue m_Producer;$/;" m class:CBrokerImpl m_Queue msgbus/msgqueue.h /^ std::queue m_Queue;$/;" m class:CMsgQueue m_Record access/recordset.h /^ std::map m_Record; $/;" m class:CRecordSet @@ -16759,15 +16557,16 @@ m_hWnd uibase/uilib/utils/wndshadow.h /^ HWND m_hWnd;$/;" m class:CWndShadow m_hWndPaint uibase/uilib/core/uimanager.h /^ HWND m_hWndPaint;$/;" m class:DuiLib::CPaintManagerUI m_hbmpBackground uibase/uilib/core/uimanager.h /^ HBITMAP m_hbmpBackground;$/;" m class:DuiLib::CPaintManagerUI m_hbmpOffscreen uibase/uilib/core/uimanager.h /^ HBITMAP m_hbmpOffscreen;$/;" m class:DuiLib::CPaintManagerUI -m_hstid http/httptimpl.h /^ long m_hstid;$/;" m class:CHttptImpl -m_http_resheader http/httptimpl.h /^ http_header_t m_http_resheader;$/;" m class:CHttptImpl -m_httpcb http/http/chttpparser.h /^ http_parser_settings m_httpcb;$/;" m class:CHttpParser -m_httpcontent_length http/httptimpl.h /^ int64 m_httpcontent_length;$/;" m class:CHttptImpl +m_hstid net/httptimpl.h /^ long m_hstid;$/;" m class:CHttptImpl +m_http_resheader net/httptimpl.h /^ http_header_t m_http_resheader;$/;" m class:CHttptImpl +m_httpcb net/http_protocol/chttpparser.h /^ http_parser_settings m_httpcb;$/;" m class:CHttpParser +m_httpcontent_length net/httptimpl.h /^ int64 m_httpcontent_length;$/;" m class:CHttptImpl m_hwndTooltip uibase/uilib/core/uimanager.h /^ HWND m_hwndTooltip;$/;" m class:DuiLib::CPaintManagerUI m_iChildAlign uibase/uilib/core/uicontainer.h /^ UINT m_iChildAlign;$/;" m class:DuiLib::CContainerUI m_iChildPadding uibase/uilib/core/uicontainer.h /^ int m_iChildPadding;$/;" m class:DuiLib::CContainerUI m_iChildVAlign uibase/uilib/core/uicontainer.h /^ UINT m_iChildVAlign;$/;" m class:DuiLib::CContainerUI m_iChildVPadding uibase/uilib/layout/uitilelayout.h /^ int m_iChildVPadding;$/;" m class:DuiLib::CTileLayoutUI +m_iConTmSec asynio/tcpsocketimpl.h /^ int m_iConTmSec;$/;" m class:CTcpSocketImpl m_iCurSel uibase/uilib/control/uicombo.h /^ int m_iCurSel;$/;" m class:DuiLib::CComboUI m_iCurSel uibase/uilib/control/uilist.h /^ int m_iCurSel;$/;" m class:DuiLib::CListUI m_iCurSel uibase/uilib/layout/uitablayout.h /^ int m_iCurSel;$/;" m class:DuiLib::CTabLayoutUI @@ -16816,7 +16615,7 @@ m_map container/rot.h /^ OBJMAP m_map;$/;" m class:CComRunningObjectTableImpl m_mapCls container/objectloader.h /^ ClsIdTable m_mapCls;$/;" m class:CObjectLoader m_mapComponents container/plugins.h /^ ComponentPlugin m_mapComponents;$/;" m class:CPlugins m_mapContainer container/objectloader.h /^ ContainerTable m_mapContainer;$/;" m class:CObjectLoader -m_maphttptable http/http/http_header.hpp /^ std::map m_maphttptable;$/;" m class:http_header_t +m_maphttptable net/http_protocol/http_header.hpp /^ std::map m_maphttptable;$/;" m class:http_header_t m_msglen container/msg.h /^ unsigned int m_msglen;$/;" m class:CMsgImpl m_msgtype container/msg.h /^ unsigned int m_msgtype;$/;" m class:CMsgImpl m_mutex include/utilex/cond.hpp /^ _mutex_t m_mutex;$/;" m class:CCondHandle @@ -16899,33 +16698,31 @@ m_pGifImage uibase/uilib/control/uigifanim.h /^ Gdiplus::Image *m_pGifImage;$/; m_pHeader uibase/uilib/control/uilist.h /^ CListHeaderUI* m_pHeader;$/;" m class:DuiLib::CListUI m_pHorizontalScrollBar uibase/uilib/core/uicontainer.h /^ CScrollBarUI* m_pHorizontalScrollBar;$/;" m class:DuiLib::CContainerUI m_pIAgent mainview/mainviewimpl.h /^ _lComPtr m_pIAgent;$/;" m class:CMainViewImpl -m_pIAsynFrame http/httpimpl.h /^ _lComPtr m_pIAsynFrame;$/;" m class:CHttpImpl m_pIAsynFrame include/comutiliy/cchannel.hpp /^ AsynFramePtr m_pIAsynFrame;$/;" m class:CChannel -m_pIAsynFrame include/comutiliy/ctimer.hpp /^ AsynFramePtr m_pIAsynFrame;$/;" m class:CChannel m_pIAsynFrame include/comutiliy/schannel.hpp /^ AsynFramePtr m_pIAsynFrame;$/;" m class:SChannel m_pIAsynFrame msgbus/msgbusimpl.h /^ AsynFramePtr m_pIAsynFrame;$/;" m class:CMsgBusImpl m_pIAsynFrame net/netimpl.h /^ _lComPtr m_pIAsynFrame;$/;" m class:CNetImpl -m_pIAsyncTcpSocket http/httptimpl.h /^ _lComPtr m_pIAsyncTcpSocket;$/;" m class:CHttptImpl +m_pIAsyncTcpSocket net/httptimpl.h /^ _lComPtr m_pIAsyncTcpSocket;$/;" m class:CHttptImpl m_pIBroker mainview/mainviewimpl.h /^ _lComPtr m_pIBroker;$/;" m class:CMainViewImpl m_pIConsumer mainview/mainviewimpl.h /^ _lComPtr m_pIConsumer;$/;" m class:CMainViewImpl -m_pIDns http/httpimpl.h /^ _lComPtr m_pIDns;$/;" m class:CHttpImpl -m_pIDns http/httptimpl.h /^ _lComPtr m_pIDns;$/;" m class:CHttptImpl +m_pIDns net/httptimpl.h /^ _lComPtr m_pIDns;$/;" m class:CHttptImpl +m_pIHttp_t mainview/mainviewimpl.h /^ _lComPtr m_pIHttp_t;$/;" m class:CMainViewImpl m_pIListen include/comutiliy/schannel.hpp /^ TcpListenPtr m_pIListen;$/;" m class:SChannel m_pILogDataBase logs/logsimpl.h /^ _lComPtr m_pILogDataBase;$/;" m class:CLogsImpl m_pILogFilters logs/logsimpl.h /^ _lComPtr m_pILogFilters;$/;" m class:CLogsImpl -m_pILogs mainview/mainviewimpl.h /^ _lComPtr m_pILogs;$/;" m class:CMainViewImpl +m_pILogs mainview/mainviewimpl.h /^ _lComPtr m_pILogs;$/;" m class:CMainViewImpl m_pIMsgBus mainview/mainviewimpl.h /^ _lComPtr m_pIMsgBus;$/;" m class:CMainViewImpl m_pINet mainview/mainviewimpl.h /^ _lComPtr m_pINet;$/;" m class:CMainViewImpl m_pIObjectRun include/dlcom/objectrun.hpp /^ _lComPtr m_pIObjectRun;$/;" m class:CContainer -m_pIOper http/httptimpl.h /^ _lComPtr m_pIOper;$/;" m class:CHttptImpl +m_pIOper net/httptimpl.h /^ _lComPtr m_pIOper;$/;" m class:CHttptImpl m_pIOperation net/dnsimpl.h /^ _lComPtr m_pIOperation;$/;" m class:CDnsImpl -m_pIProducer mainview/mainviewimpl.h /^ _lComPtr m_pIProducer;$/;" m class:CMainViewImpl +m_pIProducer mainview/mainviewimpl.h /^ _lComPtr m_pIProducer;$/;" m class:CMainViewImpl m_pIReadOperation include/comutiliy/cchannel.hpp /^ OperationPtr m_pIReadOperation;$/;" m class:CChannel m_pIScoket include/comutiliy/cchannel.hpp /^ TcpSocketPtr m_pIScoket;$/;" m class:CChannel m_pIUdpSocket net/dnsimpl.h /^ _lComPtr m_pIUdpSocket;$/;" m class:CDnsImpl m_pIUiBase mainview/mainviewimpl.h /^ _lComPtr m_pIUiBase;$/;" m class:CMainViewImpl m_pIUiMessageLoop mainview/mainviewimpl.h /^ _lComPtr m_pIUiMessageLoop;$/;" m class:CMainViewImpl -m_pIUiWindow mainview/mainviewimpl.h /^ _lComPtr m_pIUiWindow;$/;" m class:CMainViewImpl +m_pIUiWindow mainview/mainviewimpl.h /^ _lComPtr m_pIUiWindow;$/;" m class:CMainViewImpl m_pIWriteOperation include/comutiliy/cchannel.hpp /^ OperationPtr m_pIWriteOperation;$/;" m class:CChannel m_pImageInfo uibase/uilib/utils/wndshadow.h /^ DuiLib::TImageInfo* m_pImageInfo;$/;" m class:CWndShadow m_pJson container/plugins.h /^ JsonSafePtr m_pJson;$/;" m class:CPlugins @@ -16953,14 +16750,14 @@ m_pPropertyItem uibase/uilib/control/uigifanim.h /^ Gdiplus::PropertyItem* m_pP m_pRestoreBtn uibase/uiwindowimpl.h /^ CButtonUI* m_pRestoreBtn;$/;" m class:CUiWindowsImpl m_pRoot uibase/uilib/core/uimanager.h /^ CControlUI* m_pRoot;$/;" m class:DuiLib::CPaintManagerUI m_pRot asynio/asynframeimpl.h /^ _lComPtr m_pRot;$/;" m class:CAsynFrameImpl -m_pRot container/mainrun.h /^ _lComPtr m_pRot; $/;" m class:CMainRun -m_pRot http/httpimpl.h /^ _lComPtr m_pRot;$/;" m class:CHttpImpl +m_pRot container/mainrun.h /^ _lComPtr m_pRot;$/;" m class:CMainRun m_pRot include/comutiliy/cchannel.hpp /^ ComRotMessagePtr m_pRot;$/;" m class:CChannel -m_pRot include/comutiliy/ctimer.hpp /^ ComRotMessagePtr m_pRot;$/;" m class:CChannel m_pRot include/comutiliy/schannel.hpp /^ ComRotMessagePtr m_pRot;$/;" m class:SChannel m_pRot logs/logdatabase.h /^ _lComPtr m_pRot;$/;" m class:CLogDataBaseImpl m_pRot logs/logfilters.h /^ _lComPtr m_pRot;$/;" m class:CLogFiltersImpl m_pRot logs/logsimpl.h /^ _lComPtr m_pRot;$/;" m class:CLogsImpl +m_pRot mainui/appviewimpl.h /^ _lComPtr m_pRot;$/;" m class:CAppViewImpl +m_pRot mainuiapp/appviewimpl.h /^ _lComPtr m_pRot;$/;" m class:CAppViewImpl m_pRot mainview/mainviewimpl.h /^ _lComPtr m_pRot;$/;" m class:CMainViewImpl m_pRot mempool/mempoolimpl.h /^ _lComPtr m_pRot;$/;" m class:CMemPoolImpl m_pRot msgbus/msgbusimpl.h /^ ComRotMessagePtr m_pRot;$/;" m class:CMsgBusImpl @@ -16968,6 +16765,7 @@ m_pRot net/netimpl.h /^ _lComPtr m_pRot;$/;" m class:CNe m_pRot render/renderimpl.h /^ _lComPtr m_pRot;$/;" m class:CRenderImpl m_pRot res/fontimpl.h /^ _lComPtr m_pRot;$/;" m class:CFontImpl m_pRot res/langimpl.h /^ _lComPtr m_pRot;$/;" m class:CLangImpl +m_pRot testmain/appviewimpl.h /^ _lComPtr m_pRot;$/;" m class:CAppViewImpl m_pRot uibase/uibaseimpl.h /^ _lComPtr m_pRot;$/;" m class:CUiBaseImpl m_pSearch uibase/uiwindowimpl.h /^ CButtonUI* m_pSearch;$/;" m class:CUiWindowsImpl m_pSqlite3 access/statement.h /^ sqlite3* m_pSqlite3;$/;" m class:CStatementImpl @@ -16987,7 +16785,7 @@ m_pWindow uibase/uilib/control/uicombo.h /^ CComboWnd* m_pWindow;$/;" m class m_pWindow uibase/uilib/control/uidatetime.h /^ CDateTimeWnd* m_pWindow;$/;" m class:DuiLib::CDateTimeUI m_pWindow uibase/uilib/control/uiedit.h /^ CEditWnd* m_pWindow;$/;" m class:DuiLib::CEditUI m_pWndShadow uibase/uiwindowimpl.h /^ CWndShadow* m_pWndShadow;$/;" m class:CUiWindowsImpl -m_parser http/http/chttpparser.h /^ http_parser* m_parser;$/;" m class:CHttpParser +m_parser net/http_protocol/chttpparser.h /^ http_parser* m_parser;$/;" m class:CHttpParser m_pbuf container/msg.h /^ UCharArrayPtr m_pbuf;$/;" m class:CMsgImpl m_pdata container/plugins.h /^ CharArrayPtr m_pdata;$/;" m class:CPlugins m_piFloatPercent uibase/uilib/core/uicontrol.h /^ TPercentInfo m_piFloatPercent;$/;" m class:DuiLib::CControlUI @@ -17063,9 +16861,9 @@ m_strRunPath container/mainrun.h /^ basic_tstring m_strRunPath;$/;" m class m_strTableName access/tableinfo.h /^ string m_strTableName;$/;" m class:CXTableInfo m_strTableName logs/tablestruct.h /^ string m_strTableName;$/;" m class:CTableStruct m_strTypeName access/fieldinfo.h /^ std::string m_strTypeName;$/;" m class:CXFieldInfo -m_strmethod http/http/http_header.hpp /^ std::string m_strmethod;$/;" m class:http_header_t -m_strreqheader http/http/http_header.hpp /^ std::string m_strreqheader;$/;" m class:http_header_t -m_strresheader http/http/http_header.hpp /^ std::string m_strresheader;$/;" m class:http_header_t +m_strmethod net/http_protocol/http_header.hpp /^ std::string m_strmethod;$/;" m class:http_header_t +m_strreqheader net/http_protocol/http_header.hpp /^ std::string m_strreqheader;$/;" m class:http_header_t +m_strresheader net/http_protocol/http_header.hpp /^ std::string m_strresheader;$/;" m class:http_header_t m_sysTime uibase/uilib/control/uidatetime.h /^ SYSTEMTIME m_sysTime;$/;" m class:DuiLib::CDateTimeUI m_szAvailableLast uibase/uilib/control/uilabel.h /^ SIZE m_szAvailableLast;$/;" m class:DuiLib::CLabelUI m_szAvailableLast uibase/uilib/control/uilist.h /^ SIZE m_szAvailableLast;$/;" m class:DuiLib::CListLabelElementUI @@ -17079,9 +16877,9 @@ m_szModuleName include/dlcom/calldll.hpp /^ TCHAR m_szModuleName[MAX_PATH];$/;" m_szModuleName include/utilex/calldll.hpp /^ basic_tchar m_szModuleName[MAX_PATH];$/;" m class:IImpModuleBase m_szRoundCorner uibase/uilib/core/uimanager.h /^ SIZE m_szRoundCorner;$/;" m class:DuiLib::CPaintManagerUI m_szThumb uibase/uilib/control/uislider.h /^ SIZE m_szThumb;$/;" m class:DuiLib::CSliderUI -m_szhttpHead http/httptimpl.h /^ SafePtr m_szhttpHead;$/;" m class:CHttptImpl -m_szhttpSendHead http/httptimpl.h /^ SafePtr m_szhttpSendHead;$/;" m class:CHttptImpl -m_szhttpurl http/httptimpl.h /^ SafePtr m_szhttpurl;$/;" m class:CHttptImpl +m_szhttpHead net/httptimpl.h /^ SafePtr m_szhttpHead;$/;" m class:CHttptImpl +m_szhttpSendHead net/httptimpl.h /^ SafePtr m_szhttpSendHead;$/;" m class:CHttptImpl +m_szhttpurl net/httptimpl.h /^ SafePtr m_szhttpurl;$/;" m class:CHttptImpl m_tr include/utilex/lockqueue.hpp /^ _Tr m_tr;$/;" m class:CLockQueue m_tr include/utilex/safeptr.hpp /^ _Traits m_tr;$/;" m class:SafePtr m_uButton1State uibase/uilib/control/uiscrollbar.h /^ UINT m_uButton1State;$/;" m class:DuiLib::CScrollBarUI @@ -17111,16 +16909,15 @@ m_uTextStyle uibase/uilib/control/uilist.h /^ UINT m_uTextStyle;$/;" m class: m_uTextStyleLast uibase/uilib/control/uilist.h /^ UINT m_uTextStyleLast;$/;" m class:DuiLib::CListLabelElementUI m_uThumbState uibase/uilib/control/uiscrollbar.h /^ UINT m_uThumbState;$/;" m class:DuiLib::CScrollBarUI m_uTimerID uibase/uilib/core/uimanager.h /^ UINT m_uTimerID;$/;" m class:DuiLib::CPaintManagerUI -m_ulConTmSec asynio/tcpsocketimpl.h /^ ULONG m_ulConTmSec;$/;" m class:CTcpSocketImpl m_ulConTmSec asynio/udpsocketimpl.h /^ ULONG m_ulConTmSec;$/;" m class:CUdpSocketImpl m_ulRecvBufLen asynio/tcpsocketimpl.h /^ ULONG m_ulRecvBufLen;$/;" m class:CTcpSocketImpl m_ulSendBufLen asynio/tcpsocketimpl.h /^ ULONG m_ulSendBufLen;$/;" m class:CTcpSocketImpl -m_uport http/httptimpl.h /^ NET_PORT m_uport;$/;" m class:CHttptImpl +m_uport net/httptimpl.h /^ NET_PORT m_uport;$/;" m class:CHttptImpl m_vFieldIndex access/recordset.h /^ std::map m_vFieldIndex;$/;" m class:CRecordSet m_vRecordList access/recordset.h /^ std::vector > m_vRecordList; $/;" m class:CRecordSet m_vecTableFields logs/tablestruct.h /^ Table m_vecTableFields;$/;" m class:CTableStruct m_version container/msg.h /^ unsigned int m_version;$/;" m class:CMsgImpl -m_wait_sem mainview/mainviewimpl.h /^ CSemHandle m_wait_sem;$/;" m class:CMainViewImpl +m_wait_sem mainview/mainviewimpl.h /^ CSemHandle m_wait_sem;$/;" m class:CMainViewImpl m_xml uibase/uilib/core/uidlgbuilder.h /^ CMarkup m_xml;$/;" m class:DuiLib::CDlgBuilder magic access/sqlite3.c /^ u32 magic; \/* Always RTREE_GEOMETRY_MAGIC *\/$/;" m struct:RtreeMatchArg file: magic access/sqlite3.c /^ u32 magic; \/* Magic number for detect library misuse *\/$/;" m struct:sqlite3 file: @@ -17134,30 +16931,32 @@ magic2 access/sqlite3.c /^ u32 magic2; \/* Magic number to detect structure c magic2 logs/sqlite3.c /^ u32 magic2; \/* Magic number to detect structure corruption. *\/$/;" m struct:winMemData file: mail_s net/protocol/smtp.h /^typedef struct mail_s {$/;" s mail_t net/protocol/smtp.h /^} mail_t;$/;" t typeref:struct:mail_s -main CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^int main(argc, argv) int argc; char *argv[];$/;" f -main CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^void main() {}$/;" f -main CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^int main(int argc, char* argv[])$/;" f -main base_test/test_barrier.c /^int main(int argc,char* argv[])$/;" f -main base_test/test_cond.c /^int main(int argc,char* argv[])$/;" f -main base_test/test_mutex.c /^int main(int argc,char* argv[])$/;" f -main base_test/test_sem.c /^int main(int argc,char* argv[])$/;" f main bin/main.lua /^function main(argc,argv) $/;" f main guidgen/main.cpp /^int main(int argc, char* argv[])$/;" f main main/main.cpp /^int main(int argc, char* argv[])$/;" f main polipo/main.c /^main(int argc, char **argv)$/;" f +main stdcrt_test/test_barrier.c /^int main(int argc,char* argv[])$/;" f +main stdcrt_test/test_cond.c /^int main(int argc,char* argv[])$/;" f +main stdcrt_test/test_mutex.c /^int main(int argc,char* argv[])$/;" f +main stdcrt_test/test_sem.c /^int main(int argc,char* argv[])$/;" f main testmain/main.cpp /^int main(int argc, char* argv[])$/;" f main_t guidgen/main.cpp /^int main_t(HINSTANCE hInstance, int argc, TCHAR* argv[])$/;" f main_t main/main.cpp /^int main_t(_pinstance hInstance, int argc, basic_tchar* argv[])$/;" f main_t testmain/main.cpp /^int main_t(_pinstance hInstance, int argc, TCHAR* argv[])$/;" f +mainviewVersionNumber mainview/mainview.h /^FOUNDATION_EXPORT double mainviewVersionNumber;$/;" v +mainviewVersionString mainview/mainview.h /^FOUNDATION_EXPORT const unsigned char mainviewVersionString[];$/;" v mainx bin/main.py /^def mainx():$/;" f major access/sqlite3.c /^ YYCODETYPE major; \/* The major token value. This is the code$/;" m struct:yyStackEntry file: major logs/sqlite3.c /^ YYCODETYPE major; \/* The major token value. This is the code$/;" m struct:yyStackEntry file: makeAtomList polipo/atom.c /^makeAtomList(AtomPtr *atoms, int n)$/;" f makeCondition polipo/event.c /^makeCondition(void)$/;" f +makeCurrentBehaviorSet vim_tool/.vim/autoload/acp.vim /^function s:makeCurrentBehaviorSet()$/;" f +makeDefaultBehavior vim_tool/.vim/plugin/acp.vim /^function s:makeDefaultBehavior()$/;" f makeDiskEntry polipo/diskcache.c /^makeDiskEntry(ObjectPtr object, int create)$/;" f file: makeFdEvent polipo/event.c /^makeFdEvent(int fd, int poll_events, $/;" f makeIntList polipo/util.c /^makeIntList(int size)$/;" f makeObject polipo/object.c /^makeObject(int type, const void *key, int key_size, int public, int fromdisk,$/;" f +makeSnipmateItem vim_tool/.vim/autoload/acp.vim /^function s:makeSnipmateItem(key, snip)$/;" f makeTunnel polipo/tunnel.c /^makeTunnel(int fd, char *buf, int offset, int len)$/;" f file: make_parse_result uibase/uilib/core/pugixml.cpp /^ inline xml_parse_result make_parse_result(xml_parse_status status, ptrdiff_t offset = 0)$/;" f malloc access/sqlite3.c /^ void *(*malloc)(int);$/;" m struct:sqlite3_api_routines file: @@ -17168,10 +16967,15 @@ mallocFailed logs/sqlite3.c /^ int mallocFailed; \/* A memory allocation error mallocFailed logs/sqlite3.c /^ u8 mallocFailed; \/* True if we have seen a malloc failure *\/$/;" m struct:sqlite3 file: mallocWithAlarm access/sqlite3.c /^static int mallocWithAlarm(int n, void **pp){$/;" f file: mallocWithAlarm logs/sqlite3.c /^static int mallocWithAlarm(int n, void **pp){$/;" f file: -malloc_fn compat/compat_cjson.h /^ void *(*malloc_fn)(size_t sz);$/;" m struct:cJSON_Hooks +malloc_fn crt/crt_cjson.h /^ void *(*malloc_fn)(size_t sz);$/;" m struct:cJSON_Hooks +mapContext vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let mapContext[szParentContext] = 1$/;" v +mapContext vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let mapContext = {}$/;" v +mapForMappingDriven vim_tool/.vim/autoload/acp.vim /^function s:mapForMappingDriven()$/;" f +mapReorder vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let mapReorder[ mapCurrentContexts[key] ] = key$/;" v +mapReorder vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let mapReorder = {}$/;" v marker uibase/uilib/utils/stb_image.c /^ unsigned char marker; \/\/ marker seen while filling entropy buffer$/;" m struct:__anon105 file: mask access/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m struct:__anon22::__anon23 file: -mask logs/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m struct:__anon67::__anon68 file: +mask logs/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m struct:__anon62::__anon63 file: maskLoop access/sqlite3.c /^ Bitmask maskLoop; \/* Bitmask of all WhereLoop objects in this path *\/$/;" m struct:WherePath file: maskLoop logs/sqlite3.c /^ Bitmask maskLoop; \/* Bitmask of all WhereLoop objects in this path *\/$/;" m struct:WherePath file: maskPage access/sqlite3.c /^ u16 maskPage; \/* Mask for page offset *\/$/;" m struct:MemPage file: @@ -17239,7 +17043,7 @@ mbOwnVM logs/CppSQLite3.h /^ bool mbOwnVM;$/;" m class:CppSQLite3Query md5 polipo/diskcache.c /^md5(unsigned char *restrict key, int len, unsigned char *restrict dst)$/;" f file: median3 uibase/uilib/core/pugixml.cpp /^ template inline I median3(I first, I middle, I last, const Pred& pred)$/;" f mem access/sqlite3.c /^} mem;$/;" v typeref:struct:__anon10 file: -mem logs/sqlite3.c /^} mem;$/;" v typeref:struct:__anon55 file: +mem logs/sqlite3.c /^} mem;$/;" v typeref:struct:__anon50 file: mem0 access/sqlite3.c /^} mem0 = { 0, 0, 0, 0, 0, 0, 0, 0 };$/;" v typeref:struct:Mem0Global file: mem0 access/sqlite3.c 19196;" d file: mem0 logs/sqlite3.c /^} mem0 = { 0, 0, 0, 0, 0, 0, 0, 0 };$/;" v typeref:struct:Mem0Global file: @@ -17280,6 +17084,8 @@ memory_highwater access/sqlite3.c /^ sqlite3_int64 (*memory_highwater)(int);$/; memory_highwater logs/sqlite3.c /^ sqlite3_int64 (*memory_highwater)(int);$/;" m struct:sqlite3_api_routines file: memory_used access/sqlite3.c /^ sqlite3_int64 (*memory_used)(void);$/;" m struct:sqlite3_api_routines file: memory_used logs/sqlite3.c /^ sqlite3_int64 (*memory_used)(void);$/;" m struct:sqlite3_api_routines file: +mempoolVersionNumber mempool/mempool.h /^FOUNDATION_EXPORT double mempoolVersionNumber;$/;" v +mempoolVersionString mempool/mempool.h /^FOUNDATION_EXPORT const unsigned char mempoolVersionString[];$/;" v memrchr polipo/util.c /^memrchr(const void *s, int c, size_t n)$/;" f memsys3Checkout access/sqlite3.c /^static void *memsys3Checkout(u32 i, u32 nBlock){$/;" f file: memsys3Checkout logs/sqlite3.c /^static void *memsys3Checkout(u32 i, u32 nBlock){$/;" f file: @@ -17347,13 +17153,14 @@ memsys5Size access/sqlite3.c /^static int memsys5Size(void *p){$/;" f file: memsys5Size logs/sqlite3.c /^static int memsys5Size(void *p){$/;" f file: memsys5Unlink access/sqlite3.c /^static void memsys5Unlink(int i, int iLogsize){$/;" f file: memsys5Unlink logs/sqlite3.c /^static void memsys5Unlink(int i, int iLogsize){$/;" f file: +menu_char_prefix vim_tool/.vim/plugin/taglist.vim /^let s:menu_char_prefix =$/;" v mergeDobjects polipo/diskcache.c /^mergeDobjects(DiskObjectPtr dst, DiskObjectPtr src)$/;" f file: message extensions/include/ui/iuibase.h /^ UINT message;$/;" m struct:TagNotifyEvent message polipo/object.h /^ struct _Atom *message;$/;" m struct:_Object typeref:struct:_Object::_Atom metadataDirty polipo/diskcache.h /^ short metadataDirty;$/;" m struct:_DiskCacheEntry -method http/http/http_parser.h /^ unsigned int method : 8; \/* requests only *\/$/;" m struct:http_parser +method net/http_protocol/http_parser.h /^ unsigned int method : 8; \/* requests only *\/$/;" m struct:http_parser method polipo/http.h /^ int method;$/;" m struct:_HTTPRequest -method_strings http/http/http_parser.cpp /^static const char *method_strings[] =$/;" v file: +method_strings net/http_protocol/http_parser.cpp /^static const char *method_strings[] =$/;" v file: mime polipo/diskcache.c /^ char *mime;$/;" m struct:_MimeEntry file: mimeEntries polipo/diskcache.c /^static const MimeEntryRec mimeEntries[] = {$/;" v file: minLeaf access/sqlite3.c /^ u16 minLeaf; \/* Minimum local payload in a LEAFDATA table *\/$/;" m struct:BtShared file: @@ -17435,15 +17242,17 @@ mpVM logs/CppSQLite3.h /^ sqlite3_stmt* mpVM;$/;" m class:CppSQLite3Statement mpaszResults logs/CppSQLite3.h /^ char** mpaszResults;$/;" m class:CppSQLite3Table mprintf access/sqlite3.c /^ char * (*mprintf)(const char*,...);$/;" m struct:sqlite3_api_routines file: mprintf logs/sqlite3.c /^ char * (*mprintf)(const char*,...);$/;" m struct:sqlite3_api_routines file: -msg_control compat/compat_msghdr.h /^ void *msg_control;$/;" m struct:msghdr -msg_controllen compat/compat_msghdr.h /^ size_t msg_controllen;$/;" m struct:msghdr -msg_flags compat/compat_msghdr.h /^ int msg_flags;$/;" m struct:msghdr -msg_iov compat/compat_msghdr.h /^ struct iovec *msg_iov;$/;" m struct:msghdr typeref:struct:msghdr::iovec -msg_iovlen compat/compat_msghdr.h /^ size_t msg_iovlen;$/;" m struct:msghdr -msg_name compat/compat_msghdr.h /^ void *msg_name;$/;" m struct:msghdr -msg_namelen compat/compat_msghdr.h /^ size_t msg_namelen;$/;" m struct:msghdr -msghdr compat/compat_msghdr.h /^struct msghdr$/;" s -mtu net/protocol/icmp.h /^ uint16_t mtu;$/;" m struct:icmphdr_s::__anon72::__anon74 +msg_control crt/crt_msghdr.h /^ void *msg_control;$/;" m struct:msghdr +msg_controllen crt/crt_msghdr.h /^ size_t msg_controllen;$/;" m struct:msghdr +msg_flags crt/crt_msghdr.h /^ int msg_flags;$/;" m struct:msghdr +msg_iov crt/crt_msghdr.h /^ struct iovec *msg_iov;$/;" m struct:msghdr typeref:struct:msghdr::iovec +msg_iovlen crt/crt_msghdr.h /^ size_t msg_iovlen;$/;" m struct:msghdr +msg_name crt/crt_msghdr.h /^ void *msg_name;$/;" m struct:msghdr +msg_namelen crt/crt_msghdr.h /^ size_t msg_namelen;$/;" m struct:msghdr +msgbusVersionNumber msgbus/msgbus.h /^FOUNDATION_EXPORT double msgbusVersionNumber;$/;" v +msgbusVersionString msgbus/msgbus.h /^FOUNDATION_EXPORT const unsigned char msgbusVersionString[];$/;" v +msghdr crt/crt_msghdr.h /^struct msghdr$/;" s +mtu net/protocol/icmp.h /^ uint16_t mtu;$/;" m struct:icmphdr_s::__anon67::__anon69 multiPseudo access/sqlite3.c /^ Bool multiPseudo:1; \/* Multi-register pseudo-cursor *\/$/;" m struct:VdbeCursor file: multiPseudo logs/sqlite3.c /^ Bool multiPseudo:1; \/* Multi-register pseudo-cursor *\/$/;" m struct:VdbeCursor file: multiSelect access/sqlite3.c /^static int multiSelect($/;" f file: @@ -17467,11 +17276,11 @@ mutex access/sqlite3.c /^ sqlite3_mutex *mutex;$/;" m struct:Mem3Global file: mutex access/sqlite3.c /^ sqlite3_mutex *mutex;$/;" m struct:Mem5Global file: mutex access/sqlite3.c /^ sqlite3_mutex *mutex;$/;" m struct:__anon10 file: mutex access/sqlite3.c /^ sqlite3_mutex_methods mutex; \/* Low-level mutex interface *\/$/;" m struct:Sqlite3Config file: -mutex compat/darwinsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon31 -mutex compat/darwinsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon32 -mutex compat/posixsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon33 -mutex compat/posixsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon34 -mutex compat/winsysvar.hpp /^ _mutex_t mutex;$/;" m struct:__anon38 +mutex crt/darwinsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon30 +mutex crt/darwinsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon31 +mutex crt/posixsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon27 +mutex crt/posixsysvar.hpp /^ pthread_mutex_t mutex;$/;" m struct:__anon28 +mutex crt/winsysvar.hpp /^ _mutex_t mutex;$/;" m struct:__anon35 mutex logs/sqlite3.c /^ CRITICAL_SECTION mutex; \/* Mutex controlling the lock *\/$/;" m struct:sqlite3_mutex file: mutex logs/sqlite3.c /^ pthread_mutex_t mutex; \/* Mutex controlling the lock *\/$/;" m struct:sqlite3_mutex file: mutex logs/sqlite3.c /^ sqlite3_mutex *mutex; \/* MUTEX_STATIC_LRU or NULL *\/$/;" m struct:PGroup file: @@ -17483,7 +17292,7 @@ mutex logs/sqlite3.c /^ sqlite3_mutex *mutex; \/* Mutex to access this obj mutex logs/sqlite3.c /^ sqlite3_mutex *mutex; \/* Non-recursive mutex required to access this object *\/$/;" m struct:BtShared file: mutex logs/sqlite3.c /^ sqlite3_mutex *mutex;$/;" m struct:Mem3Global file: mutex logs/sqlite3.c /^ sqlite3_mutex *mutex;$/;" m struct:Mem5Global file: -mutex logs/sqlite3.c /^ sqlite3_mutex *mutex;$/;" m struct:__anon55 file: +mutex logs/sqlite3.c /^ sqlite3_mutex *mutex;$/;" m struct:__anon50 file: mutex logs/sqlite3.c /^ sqlite3_mutex_methods mutex; \/* Low-level mutex interface *\/$/;" m struct:Sqlite3Config file: mutexIsInit access/sqlite3.c /^static SQLITE_WSD int mutexIsInit = 0;$/;" v file: mutexIsInit logs/sqlite3.c /^static SQLITE_WSD int mutexIsInit = 0;$/;" v file: @@ -17500,7 +17309,7 @@ mutex_try logs/sqlite3.c /^ int (*mutex_try)(sqlite3_mutex*);$/;" m struct:sqli mxAlloc access/sqlite3.c /^ int mxAlloc; \/* Maximum allowed string length *\/$/;" m struct:StrAccum file: mxAlloc logs/sqlite3.c /^ int mxAlloc; \/* Maximum allowed string length *\/$/;" m struct:StrAccum file: mxCurrent access/sqlite3.c /^ int mxCurrent[NCSIZE]; \/* Highwater mark for nCurrent *\/$/;" m struct:__anon10 file: -mxCurrent logs/sqlite3.c /^ int mxCurrent[NCSIZE]; \/* Highwater mark for nCurrent *\/$/;" m struct:__anon55 file: +mxCurrent logs/sqlite3.c /^ int mxCurrent[NCSIZE]; \/* Highwater mark for nCurrent *\/$/;" m struct:__anon50 file: mxErr access/sqlite3.c /^ int mxErr; \/* Stop accumulating errors when this reaches zero *\/$/;" m struct:IntegrityCk file: mxErr logs/sqlite3.c /^ int mxErr; \/* Stop accumulating errors when this reaches zero *\/$/;" m struct:IntegrityCk file: mxFrame access/sqlite3.c /^ u32 mxFrame; \/* Index of last valid frame in the WAL *\/$/;" m struct:WalIndexHdr file: @@ -17546,7 +17355,7 @@ n access/sqlite3.c /^ int n; \/* Number of characters in string va n access/sqlite3.c /^ int n; \/* Size of record in bytes *\/$/;" m struct:IndexSample file: n access/sqlite3.c /^ u16 n; \/* Number of valid a[] entries *\/$/;" m struct:WhereOrSet file: n access/sqlite3.c /^ unsigned int n; \/* Number of characters in this token *\/$/;" m struct:Token file: -n compat/winsysvar.hpp /^ unsigned int n;$/;" m struct:__anon38 +n crt/winsysvar.hpp /^ unsigned int n;$/;" m struct:__anon35 n logs/sqlite3.c /^ i64 n;$/;" m struct:CountCtx file: n logs/sqlite3.c /^ int n; \/* Length of z in bytes (excl. nul-term) *\/$/;" m struct:StrBuffer file: n logs/sqlite3.c /^ int n; \/* Number of bytes in buffer z *\/$/;" m struct:Fts3PhraseToken file: @@ -17583,7 +17392,7 @@ nAlloc logs/sqlite3.c /^ int nAlloc; \/* Allocated size of nAlloc logs/sqlite3.c /^ int nAlloc; \/* Bytes of space at aAlloc *\/$/;" m struct:VdbeSorterIter file: nAlloc logs/sqlite3.c /^ int nAlloc; \/* space allocated at zToken *\/$/;" m struct:unicode_cursor file: nAlloc logs/sqlite3.c /^ int nAlloc; \/* Slots allocated for azResult[] *\/$/;" m struct:TabResult file: -nAlloc logs/sqlite3.c /^ int nAlloc[NCSIZE]; \/* Total number of allocations *\/$/;" m struct:__anon55 file: +nAlloc logs/sqlite3.c /^ int nAlloc[NCSIZE]; \/* Total number of allocations *\/$/;" m struct:__anon50 file: nAlloc logs/sqlite3.c /^ u64 nAlloc; \/* Total number of calls to malloc *\/$/;" m struct:Mem5Global file: nAlloc logs/sqlite3.c /^ u8 nAlloc; \/* Number of entries allocated in a[] below *\/$/;" m struct:SrcList file: nAllocated access/sqlite3.c /^ int nAllocated; \/* space allocated to zToken buffer *\/$/;" m struct:porter_tokenizer_cursor file: @@ -17597,7 +17406,7 @@ nBackfill logs/sqlite3.c /^ u32 nBackfill; \/* Number of WAL f nBacktrace access/sqlite3.c /^ char nBacktrace; \/* Number of backtraces on this alloc *\/$/;" m struct:MemBlockHdr file: nBacktrace access/sqlite3.c /^ int nBacktrace;$/;" m struct:__anon10 file: nBacktrace logs/sqlite3.c /^ char nBacktrace; \/* Number of backtraces on this alloc *\/$/;" m struct:MemBlockHdr file: -nBacktrace logs/sqlite3.c /^ int nBacktrace;$/;" m struct:__anon55 file: +nBacktrace logs/sqlite3.c /^ int nBacktrace;$/;" m struct:__anon50 file: nBacktraceSlots access/sqlite3.c /^ char nBacktraceSlots; \/* Available backtrace slots *\/$/;" m struct:MemBlockHdr file: nBacktraceSlots logs/sqlite3.c /^ char nBacktraceSlots; \/* Available backtrace slots *\/$/;" m struct:MemBlockHdr file: nBackup access/sqlite3.c /^ int nBackup; \/* Number of backup operations reading this btree *\/$/;" m struct:Btree file: @@ -17678,7 +17487,7 @@ nCsr logs/sqlite3.c /^ int nCsr; \/* Number of cursors requ nCte access/sqlite3.c /^ int nCte; \/* Number of CTEs in the WITH clause *\/$/;" m struct:With file: nCte logs/sqlite3.c /^ int nCte; \/* Number of CTEs in the WITH clause *\/$/;" m struct:With file: nCurrent access/sqlite3.c /^ int nCurrent[NCSIZE]; \/* Current number of allocations *\/$/;" m struct:__anon10 file: -nCurrent logs/sqlite3.c /^ int nCurrent[NCSIZE]; \/* Current number of allocations *\/$/;" m struct:__anon55 file: +nCurrent logs/sqlite3.c /^ int nCurrent[NCSIZE]; \/* Current number of allocations *\/$/;" m struct:__anon50 file: nCurrentPage access/sqlite3.c /^ unsigned int nCurrentPage; \/* Number of purgeable pages allocated *\/$/;" m struct:PGroup file: nCurrentPage logs/sqlite3.c /^ unsigned int nCurrentPage; \/* Number of purgeable pages allocated *\/$/;" m struct:PGroup file: nCursor access/sqlite3.c /^ int nCursor; \/* Number of entries in apCsr *\/$/;" m struct:VdbeFrame file: @@ -17726,7 +17535,7 @@ nEntry access/sqlite3.c /^ int nEntry; \/* Number of terms nEntry logs/sqlite3.c /^ int nEntry; \/* Nr. of entries in aPgno[] and aIndex[] *\/$/;" m struct:WalIterator::WalSegment file: nEntry logs/sqlite3.c /^ int nEntry; \/* Number of terms written to node so far *\/$/;" m struct:SegmentNode file: nEq access/sqlite3.c /^ u16 nEq; \/* Number of equality constraints *\/$/;" m struct:WhereLoop::__anon18::__anon19 file: -nEq logs/sqlite3.c /^ u16 nEq; \/* Number of equality constraints *\/$/;" m struct:WhereLoop::__anon63::__anon64 file: +nEq logs/sqlite3.c /^ u16 nEq; \/* Number of equality constraints *\/$/;" m struct:WhereLoop::__anon58::__anon59 file: nEquiv access/sqlite3.c /^ unsigned char nEquiv; \/* Number of entries in aEquiv[] *\/$/;" m struct:WhereScan file: nEquiv logs/sqlite3.c /^ unsigned char nEquiv; \/* Number of entries in aEquiv[] *\/$/;" m struct:WhereScan file: nErr access/sqlite3.c /^ int nErr; \/* Number of errors encountered while resolving names *\/$/;" m struct:NameContext file: @@ -17783,7 +17592,7 @@ nHeight logs/sqlite3.c /^ int nHeight; \/* Height of the tree headed nId access/sqlite3.c /^ int nId; \/* Number of identifiers on the list *\/$/;" m struct:IdList file: nId logs/sqlite3.c /^ int nId; \/* Number of identifiers on the list *\/$/;" m struct:IdList file: nIn access/sqlite3.c /^ int nIn; \/* Number of entries in aInLoop[] *\/$/;" m struct:WhereLevel::__anon16::__anon17 file: -nIn logs/sqlite3.c /^ int nIn; \/* Number of entries in aInLoop[] *\/$/;" m struct:WhereLevel::__anon61::__anon62 file: +nIn logs/sqlite3.c /^ int nIn; \/* Number of entries in aInLoop[] *\/$/;" m struct:WhereLevel::__anon56::__anon57 file: nInMemory access/sqlite3.c /^ int nInMemory; \/* Current size of pRecord list as PMA *\/$/;" m struct:VdbeSorter file: nInMemory logs/sqlite3.c /^ int nInMemory; \/* Current size of pRecord list as PMA *\/$/;" m struct:VdbeSorter file: nIndent access/sqlite3.c /^ int nIndent; \/* Number of elements in aIndent *\/$/;" m struct:Explain file: @@ -18063,7 +17872,7 @@ nSize access/sqlite3.c /^ u16 nSize; \/* Size of the cell content on the ma nSize logs/sqlite3.c /^ int nSize; \/* Size of allocation at aData *\/$/;" m struct:SegmentWriter file: nSize logs/sqlite3.c /^ u16 nSize; \/* Size of the cell content on the main b-tree page *\/$/;" m struct:CellInfo file: nSkip access/sqlite3.c /^ u16 nSkip; \/* Number of initial index columns to skip *\/$/;" m struct:WhereLoop::__anon18::__anon19 file: -nSkip logs/sqlite3.c /^ u16 nSkip; \/* Number of initial index columns to skip *\/$/;" m struct:WhereLoop::__anon63::__anon64 file: +nSkip logs/sqlite3.c /^ u16 nSkip; \/* Number of initial index columns to skip *\/$/;" m struct:WhereLoop::__anon58::__anon59 file: nSlot access/sqlite3.c /^ int nSlot; \/* The number of pcache slots *\/$/;" m struct:PCacheGlobal file: nSlot access/sqlite3.c /^ int nSlot; \/* Number of entries in a[] *\/$/;" m struct:WhereClause file: nSlot logs/sqlite3.c /^ int nSlot; \/* The number of pcache slots *\/$/;" m struct:PCacheGlobal file: @@ -18116,7 +17925,7 @@ nThis access/sqlite3.c /^ int nThis; \/* Number of references to columns nThis logs/sqlite3.c /^ int nThis; \/* Number of references to columns in pSrcList *\/$/;" m struct:SrcCount file: nTitle access/sqlite3.c /^ int nTitle; \/* Bytes of zTitle to save. Includes '\\0' and padding *\/$/;" m struct:__anon10 file: nTitle access/sqlite3.c /^ u8 nTitle; \/* Bytes of title; includes '\\0' *\/$/;" m struct:MemBlockHdr file: -nTitle logs/sqlite3.c /^ int nTitle; \/* Bytes of zTitle to save. Includes '\\0' and padding *\/$/;" m struct:__anon55 file: +nTitle logs/sqlite3.c /^ int nTitle; \/* Bytes of zTitle to save. Includes '\\0' and padding *\/$/;" m struct:__anon50 file: nTitle logs/sqlite3.c /^ u8 nTitle; \/* Bytes of title; includes '\\0' *\/$/;" m struct:MemBlockHdr file: nToken access/sqlite3.c /^ int nToken; \/* Number of tokens in phrase *\/$/;" m struct:SnippetPhrase file: nToken access/sqlite3.c /^ int nToken; \/* Number of tokens seen so far *\/$/;" m struct:LoadDoclistCtx file: @@ -18163,10 +17972,10 @@ nXField access/sqlite3.c /^ u16 nXField; \/* Number of columns beyond th nXField logs/sqlite3.c /^ u16 nXField; \/* Number of columns beyond the key columns *\/$/;" m struct:KeyInfo file: nY uibase/uilib/core/uimanager.h /^ int nY;$/;" m struct:DuiLib::tagTImageInfo nZero access/sqlite3.c /^ int nZero; \/* Used when bit MEM_Zero is set in flags *\/$/;" m union:Mem::__anon9 file: -nZero logs/sqlite3.c /^ int nZero; \/* Used when bit MEM_Zero is set in flags *\/$/;" m union:Mem::__anon54 file: +nZero logs/sqlite3.c /^ int nZero; \/* Used when bit MEM_Zero is set in flags *\/$/;" m union:Mem::__anon49 file: naddtional net/protocol/dns.h /^ uint16_t naddtional;$/;" m struct:dnshdr_s name extensions/include/log/ilogdatabase.h /^ char name[FIELD_NAME_LEN + 1];$/;" m struct:TagFieldSturct -name http/http/http_parser.cpp /^ const char *name;$/;" m struct:__anon44 file: +name net/http_protocol/http_parser.cpp /^ const char *name;$/;" m struct:__anon74 file: name net/protocol/dns.h /^ char name[DNS_NAME_MAXLEN]; \/\/ original domain, such as www.example.com$/;" m struct:dns_rr_s name polipo/config.c /^static struct config_state { char *name; int value; }$/;" m struct:config_state file: name polipo/config.h /^ AtomPtr name;$/;" m struct:_ConfigVariable @@ -18190,12 +17999,15 @@ nameInUsingClause logs/sqlite3.c /^static int nameInUsingClause(IdList *pUsing, name_null_sentry uibase/uilib/core/pugixml.cpp /^ name_null_sentry(xml_node_struct* node_): node(node_), name(node_->name)$/;" f struct:name_null_sentry name_null_sentry uibase/uilib/core/pugixml.cpp /^ struct name_null_sentry$/;" s file: nameserverAddress polipo/dns.c 80;" d file: -nameserverAddress_storage polipo/dns.c /^} nameserverAddress_storage;$/;" v typeref:union:__anon79 +nameserverAddress_storage polipo/dns.c /^} nameserverAddress_storage;$/;" v typeref:union:__anon75 namespace_uri uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char_t* namespace_uri(const xpath_node& node)$/;" f namespace_uri uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char_t* namespace_uri(xml_attribute attr, xml_node parent)$/;" f namespace_uri uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char_t* namespace_uri(xml_node node)$/;" f namespace_uri_predicate uibase/uilib/core/pugixml.cpp /^ namespace_uri_predicate(const char_t* name)$/;" f struct:namespace_uri_predicate namespace_uri_predicate uibase/uilib/core/pugixml.cpp /^ struct namespace_uri_predicate$/;" s file: +namespaces vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let namespaces = ['::'] + omni#cpp#namespaces#GetListFromCurrentBuffer(startLine)$/;" v +namespaces vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let namespaces = omni#cpp#namespaces#ResolveAll(namespaces)$/;" v +namespaces vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let namespaces = [omni#cpp#utils#ExtractScope(result), '::']$/;" v namevalue_base uibase/uilib/core/pugixml.cpp /^ uint16_t namevalue_base;$/;" m struct:pugi::xml_attribute_struct file: namevalue_base uibase/uilib/core/pugixml.cpp /^ uint16_t namevalue_base;$/;" m struct:pugi::xml_node_struct file: nanswer net/protocol/dns.h /^ uint16_t nanswer;$/;" m struct:dnshdr_s @@ -18206,7 +18018,7 @@ ncFlags logs/sqlite3.c /^ u8 ncFlags; \/* Zero or more NC_* flags defi nearlyFull access/sqlite3.c /^ int nearlyFull;$/;" m struct:Mem0Global file: nearlyFull logs/sqlite3.c /^ int nearlyFull;$/;" m struct:Mem0Global file: needFree access/sqlite3.c /^ u8 needFree; \/* True if sqlite3_free(idxStr) is needed *\/$/;" m struct:WhereLoop::__anon18::__anon20 file: -needFree logs/sqlite3.c /^ u8 needFree; \/* True if sqlite3_free(idxStr) is needed *\/$/;" m struct:WhereLoop::__anon63::__anon65 file: +needFree logs/sqlite3.c /^ u8 needFree; \/* True if sqlite3_free(idxStr) is needed *\/$/;" m struct:WhereLoop::__anon58::__anon60 file: needToFreeIdxStr access/sqlite3.c /^ int needToFreeIdxStr; \/* Free idxStr using sqlite3_free() if true *\/$/;" m struct:sqlite3_index_info file: needToFreeIdxStr access/sqlite3.h /^ int needToFreeIdxStr; \/* Free idxStr using sqlite3_free() if true *\/$/;" m struct:sqlite3_index_info needToFreeIdxStr logs/sqlite3.c /^ int needToFreeIdxStr; \/* Free idxStr using sqlite3_free() if true *\/$/;" m struct:sqlite3_index_info file: @@ -18216,6 +18028,8 @@ negativeEntry polipo/diskcache.c /^static DiskCacheEntryRec negativeEntry = {$/; nested access/sqlite3.c /^ u8 nested; \/* Number of nested calls to the parser\/code generator *\/$/;" m struct:Parse file: nested logs/sqlite3.c /^ u8 nested; \/* Number of nested calls to the parser\/code generator *\/$/;" m struct:Parse file: netAddressMatch polipo/io.c /^netAddressMatch(int fd, NetAddressPtr list)$/;" f +netVersionNumber net/net.h /^FOUNDATION_EXPORT double netVersionNumber;$/;" v +netVersionString net/net.h /^FOUNDATION_EXPORT const unsigned char netVersionString[];$/;" v neverCorrupt access/sqlite3.c /^ int neverCorrupt; \/* Database is always well-formed *\/$/;" m struct:Sqlite3Config file: neverCorrupt logs/sqlite3.c /^ int neverCorrupt; \/* Database is always well-formed *\/$/;" m struct:Sqlite3Config file: newDatabase access/sqlite3.c /^static int newDatabase(BtShared *pBt){$/;" f file: @@ -18232,17 +18046,17 @@ next access/sqlite3.c /^ u32 next; \/* Index in mem3.aPool[] of next next access/sqlite3.c /^ Fts3HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:Fts3HashElem file: next access/sqlite3.c /^ HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:HashElem file: next access/sqlite3.c /^ int next; \/* Index of next free chunk *\/$/;" m struct:Mem5Link file: -next compat/compat_cjson.h /^ struct cJSON *next;$/;" m struct:cJSON typeref:struct:cJSON::cJSON -next compat/compat_list.h /^ struct _list_item *next;$/;" m struct:_list_item typeref:struct:_list_item::_list_item -next compat/compat_queue.h /^ _queue_t *next;$/;" m struct:_queue_s -next logs/sqlite3.c /^ u32 next; \/* Index in mem3.aPool[] of next free chunk *\/$/;" m struct:Mem3Block::__anon56::__anon58 file: +next crt/crt_cjson.h /^ struct cJSON *next;$/;" m struct:cJSON typeref:struct:cJSON::cJSON +next crt/crt_list.h /^ struct _list_item *next;$/;" m struct:_list_item typeref:struct:_list_item::_list_item +next crt/crt_queue.h /^ _queue_t *next;$/;" m struct:_queue_s +next logs/sqlite3.c /^ u32 next; \/* Index in mem3.aPool[] of next free chunk *\/$/;" m struct:Mem3Block::__anon51::__anon53 file: next logs/sqlite3.c /^ Fts3HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:Fts3HashElem file: next logs/sqlite3.c /^ HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:HashElem file: next logs/sqlite3.c /^ int next; \/* Index of next free chunk *\/$/;" m struct:Mem5Link file: next mempool/alloc.h /^ ngx_chain_t *next;$/;" m struct:ngx_chain_s next mempool/alloc.h /^ ngx_pool_cleanup_t *next;$/;" m struct:ngx_pool_cleanup_s next mempool/alloc.h /^ ngx_pool_large_t *next;$/;" m struct:ngx_pool_large_s -next mempool/alloc.h /^ ngx_pool_t *next;$/;" m struct:__anon70 +next mempool/alloc.h /^ ngx_pool_t *next;$/;" m struct:__anon65 next polipo/atom.h /^ struct _Atom *next;$/;" m struct:_Atom typeref:struct:_Atom::_Atom next polipo/config.h /^ struct _ConfigVariable *next;$/;" m struct:_ConfigVariable typeref:struct:_ConfigVariable::_ConfigVariable next polipo/diskcache.h /^ struct _DiskCacheEntry *next;$/;" m struct:_DiskCacheEntry typeref:struct:_DiskCacheEntry::_DiskCacheEntry @@ -18305,7 +18119,7 @@ ngx_pnalloc mempool/alloc.c /^void *ngx_pnalloc(ngx_pool_t *pool, size_t size)$/ ngx_pool_cleanup_pt mempool/alloc.h /^typedef void(*ngx_pool_cleanup_pt)(void *data);$/;" t ngx_pool_cleanup_s mempool/alloc.h /^struct ngx_pool_cleanup_s {$/;" s ngx_pool_cleanup_t mempool/alloc.h /^typedef struct ngx_pool_cleanup_s ngx_pool_cleanup_t;$/;" t typeref:struct:ngx_pool_cleanup_s -ngx_pool_data_t mempool/alloc.h /^} ngx_pool_data_t;$/;" t typeref:struct:__anon70 +ngx_pool_data_t mempool/alloc.h /^} ngx_pool_data_t;$/;" t typeref:struct:__anon65 ngx_pool_large_s mempool/alloc.h /^struct ngx_pool_large_s {$/;" s ngx_pool_large_t mempool/alloc.h /^typedef struct ngx_pool_large_s ngx_pool_large_t;$/;" t typeref:struct:ngx_pool_large_s ngx_pool_s mempool/alloc.h /^struct ngx_pool_s {$/;" s @@ -18318,7 +18132,7 @@ noSync access/sqlite3.c /^ u8 noSync; \/* Do not sync the jour noSync logs/sqlite3.c /^ u8 noSync; \/* Do not sync the journal if true *\/$/;" m struct:Pager file: no_cache_control polipo/object.c /^CacheControlRec no_cache_control = {0, -1, -1, -1, -1};$/;" v no_function build_tag.sh /^function no_function()$/;" f -noalloc base/code/compat_cjson.c /^ cJSON_bool noalloc;$/;" m struct:__anon27 file: +noalloc stdcrt/code/compat_cjson.c /^ cJSON_bool noalloc;$/;" m struct:__anon84 file: nocaseCollatingFunc access/sqlite3.c /^static int nocaseCollatingFunc($/;" f file: nocaseCollatingFunc logs/sqlite3.c /^static int nocaseCollatingFunc($/;" f file: node logs/logfilters.h /^ _QUEUE node;$/;" m struct:WokerCb @@ -18393,7 +18207,7 @@ nodeset_eval_all uibase/uilib/core/pugixml.cpp /^ nodeset_eval_all,$/;" e enum: nodeset_eval_any uibase/uilib/core/pugixml.cpp /^ nodeset_eval_any,$/;" e enum:nodeset_eval_t file: nodeset_eval_first uibase/uilib/core/pugixml.cpp /^ nodeset_eval_first$/;" e enum:nodeset_eval_t file: nodeset_eval_t uibase/uilib/core/pugixml.cpp /^ enum nodeset_eval_t$/;" g file: -nodetest uibase/uilib/core/pugixml.cpp /^ const char_t* nodetest;$/;" m union:xpath_ast_node::__anon96 file: +nodetest uibase/uilib/core/pugixml.cpp /^ const char_t* nodetest;$/;" m union:xpath_ast_node::__anon99 file: nodetest_all uibase/uilib/core/pugixml.cpp /^ nodetest_all,$/;" e enum:nodetest_t file: nodetest_all_in_namespace uibase/uilib/core/pugixml.cpp /^ nodetest_all_in_namespace$/;" e enum:nodetest_t file: nodetest_name uibase/uilib/core/pugixml.cpp /^ nodetest_name,$/;" e enum:nodetest_t file: @@ -18429,7 +18243,7 @@ noopMutexLeave access/sqlite3.c /^static void noopMutexLeave(sqlite3_mutex *p){ noopMutexLeave logs/sqlite3.c /^static void noopMutexLeave(sqlite3_mutex *p){ UNUSED_PARAMETER(p); return; }$/;" f file: noopMutexTry access/sqlite3.c /^static int noopMutexTry(sqlite3_mutex *p){$/;" f file: noopMutexTry logs/sqlite3.c /^static int noopMutexTry(sqlite3_mutex *p){$/;" f file: -normal_url_char http/http/http_parser.cpp /^static const uint8_t normal_url_char[32] = {$/;" v file: +normal_url_char net/http_protocol/http_parser.cpp /^static const uint8_t normal_url_char[32] = {$/;" v file: normalize_space uibase/uilib/core/pugixml.cpp /^ PUGI__FN char_t* normalize_space(char_t* buffer)$/;" f notIndexed access/sqlite3.c /^ unsigned notIndexed :1; \/* True if there is a NOT INDEXED clause *\/$/;" m struct:SrcList::SrcList_item file: notIndexed logs/sqlite3.c /^ unsigned notIndexed :1; \/* True if there is a NOT INDEXED clause *\/$/;" m struct:SrcList::SrcList_item file: @@ -18438,7 +18252,7 @@ notNull logs/sqlite3.c /^ u8 notNull; \/* An OE_ code for handling a NOT N notReady access/sqlite3.c /^ Bitmask notReady; \/* FROM entries not usable at this level *\/$/;" m struct:WhereLevel file: notReady logs/sqlite3.c /^ Bitmask notReady; \/* FROM entries not usable at this level *\/$/;" m struct:WhereLevel file: notUsed1 access/sqlite3.c /^ double notUsed1; \/* Spacer *\/$/;" m union:sqlite3::__anon2 file: -notUsed1 logs/sqlite3.c /^ double notUsed1; \/* Spacer *\/$/;" m union:sqlite3::__anon47 file: +notUsed1 logs/sqlite3.c /^ double notUsed1; \/* Spacer *\/$/;" m union:sqlite3::__anon42 file: notValidCheckConstraint access/sqlite3.c /^static void notValidCheckConstraint($/;" f file: notValidCheckConstraint access/sqlite3.c 75510;" d file: notValidCheckConstraint logs/sqlite3.c /^static void notValidCheckConstraint($/;" f file: @@ -18450,11 +18264,11 @@ notifyObject polipo/object.c /^notifyObject(ObjectPtr object) $/;" f nowValue access/sqlite3.c /^ int nowValue[10]; \/* Current value *\/$/;" m struct:sqlite3StatType file: nowValue logs/sqlite3.c /^ int nowValue[10]; \/* Current value *\/$/;" m struct:sqlite3StatType file: nquestion net/protocol/dns.h /^ uint16_t nquestion;$/;" m struct:dnshdr_s -nread http/http/http_parser.h /^ uint32_t nread; \/* # bytes read in various scenarios *\/$/;" m struct:http_parser +nread net/http_protocol/http_parser.h /^ uint32_t nread; \/* # bytes read in various scenarios *\/$/;" m struct:http_parser nrhs access/sqlite3.c /^ unsigned char nrhs; \/* Number of right-hand side symbols in the rule *\/$/;" m struct:__anon24 file: -nrhs logs/sqlite3.c /^ unsigned char nrhs; \/* Number of right-hand side symbols in the rule *\/$/;" m struct:__anon69 file: -nsignal compat/winsysvar.hpp /^ atomic_type nsignal;$/;" m struct:__anon35 -nslookup net/protocol/dns.cpp /^int nslookup(const char* domain, uint32_t* addrs, int naddr, const char* nameserver) {$/;" f +nrhs logs/sqlite3.c /^ unsigned char nrhs; \/* Number of right-hand side symbols in the rule *\/$/;" m struct:__anon64 file: +nsignal crt/winsysvar.hpp /^ atomic_type nsignal;$/;" m struct:__anon32 +nslookup net/protocol/dns.c /^int nslookup(const char* domain, uint32_t* addrs, int naddr, const char* nameserver) {$/;" f nullRow access/sqlite3.c /^ u8 nullRow; \/* True if pointing to a row with no data *\/$/;" m struct:VdbeCursor file: nullRow logs/sqlite3.c /^ u8 nullRow; \/* True if pointing to a row with no data *\/$/;" m struct:VdbeCursor file: null_time polipo/event.c /^struct timeval null_time = {0,0};$/;" v typeref:struct:timeval @@ -18463,14 +18277,17 @@ nullifFunc logs/sqlite3.c /^static void nullifFunc($/;" f file: num mempool/alloc.h /^ int num;$/;" m struct:ngx_buf_s numArenas polipo/chunk.c /^static int numArenas;$/;" v file: numDiskEntries polipo/diskcache.c /^int numDiskEntries = 0;$/;" v +numExplorerGroups vim_tool/.vim/plugin/winmanager.vim /^let s:numExplorerGroups = 0$/;" v +numExplorers vim_tool/.vim/plugin/winmanager.vim /^let s:numExplorers = 0$/;" v numFields logs/CppSQLite3.cpp /^int CppSQLite3Query::numFields()$/;" f class:CppSQLite3Query numFields logs/CppSQLite3.cpp /^int CppSQLite3Table::numFields()$/;" f class:CppSQLite3Table +numRefs vim_tool/.vim/plugin/winmanager.vim /^let g:numRefs = 0$/;" v numRequests polipo/server.c /^numRequests(HTTPServerPtr server)$/;" f file: numRows logs/CppSQLite3.cpp /^int CppSQLite3Table::numRows()$/;" f class:CppSQLite3Table num_bits uibase/uilib/utils/stb_image.c /^ int num_bits;$/;" m struct:__anon109 file: -num_readers_ compat/winsysvar.hpp /^ unsigned int num_readers_;$/;" m struct:__anon36::__anon37 -num_readers_lock_ compat/winsysvar.hpp /^ _mutex_t num_readers_lock_;$/;" m struct:__anon36::__anon37 -number uibase/uilib/core/pugixml.cpp /^ double number;$/;" m union:xpath_ast_node::__anon96 file: +num_readers_ crt/winsysvar.hpp /^ unsigned int num_readers_;$/;" m struct:__anon33::__anon34 +num_readers_lock_ crt/winsysvar.hpp /^ _mutex_t num_readers_lock_;$/;" m struct:__anon33::__anon34 +number uibase/uilib/core/pugixml.cpp /^ double number;$/;" m union:xpath_ast_node::__anon99 file: numberOfCachePages access/sqlite3.c /^static int numberOfCachePages(PCache *p){$/;" f file: numberOfCachePages logs/sqlite3.c /^static int numberOfCachePages(PCache *p){$/;" f file: numchunks polipo/object.h /^ int numchunks;$/;" m struct:_Object @@ -18504,15 +18321,15 @@ objectPrintf polipo/object.c /^objectPrintf(ObjectPtr object, int offset, const objectSetChunks polipo/object.c /^objectSetChunks(ObjectPtr object, int numchunks)$/;" f object_list polipo/object.c /^static ObjectPtr object_list = NULL;$/;" v file: object_list_end polipo/object.c /^static ObjectPtr object_list_end = NULL;$/;" v file: -off http/http/http_parser.h /^ uint16_t off; \/* Offset into buffer in which field starts *\/$/;" m struct:http_parser_url::__anon45 +off net/http_protocol/http_parser.h /^ uint16_t off; \/* Offset into buffer in which field starts *\/$/;" m struct:http_parser_url::__anon73 offset access/sqlite3.c /^ unsigned long long offset; \/* offset to first byte to lock *\/$/;" m struct:ByteRangeLockPB2 file: -offset base/code/compat_cjson.c /^ size_t offset;$/;" m struct:__anon26 file: -offset base/code/compat_cjson.c /^ size_t offset;$/;" m struct:__anon27 file: offset logs/sqlite3.c /^ unsigned long long offset; \/* offset to first byte to lock *\/$/;" m struct:ByteRangeLockPB2 file: offset polipo/diskcache.h /^ off_t offset;$/;" m struct:_DiskCacheEntry offset polipo/http.h /^ int offset;$/;" m struct:_HTTPConnection offset polipo/io.h /^ int offset;$/;" m struct:_StreamRequest offset polipo/local.h /^ int offset;$/;" m struct:_SpecialRequest +offset stdcrt/code/compat_cjson.c /^ size_t offset;$/;" m struct:__anon83 file: +offset stdcrt/code/compat_cjson.c /^ size_t offset;$/;" m struct:__anon84 file: offset uibase/uilib/core/pugixml.hpp /^ ptrdiff_t offset;$/;" m struct:pugi::xml_parse_result offset uibase/uilib/core/pugixml.hpp /^ ptrdiff_t offset;$/;" m struct:pugi::xpath_parse_result offset_debug uibase/uilib/core/pugixml.cpp /^ PUGI__FN ptrdiff_t xml_node::offset_debug() const$/;" f class:pugi::xml_node @@ -18530,45 +18347,59 @@ omit access/sqlite3.h /^ unsigned char omit; \/* Do not code a test for omit logs/sqlite3.c /^ unsigned char omit; \/* Do not code a test for this constraint *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint_usage file: omit logs/sqlite3.h /^ unsigned char omit; \/* Do not code a test for this constraint *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint_usage omitMask access/sqlite3.c /^ u16 omitMask; \/* Terms that may be omitted *\/$/;" m struct:WhereLoop::__anon18::__anon20 file: -omitMask logs/sqlite3.c /^ u16 omitMask; \/* Terms that may be omitted *\/$/;" m struct:WhereLoop::__anon63::__anon65 file: +omitMask logs/sqlite3.c /^ u16 omitMask; \/* Terms that may be omitted *\/$/;" m struct:WhereLoop::__anon58::__anon60 file: +omni vim_tool/.vim/autoload/omni/cpp/includes.vim /^ let g:omni#cpp#includes#CACHE_INCLUDES[a:szFilePath] = listIncludes$/;" v +omni vim_tool/.vim/autoload/omni/cpp/includes.vim /^let g:omni#cpp#includes#CACHE_FILE_TIME = {}$/;" v +omni vim_tool/.vim/autoload/omni/cpp/includes.vim /^let g:omni#cpp#includes#CACHE_INCLUDES = {}$/;" v +omni vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let g:omni#cpp#namespaces#CacheResolve[a:namespace] = listTagsOfNamespace$/;" v +omni vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let g:omni#cpp#namespaces#CacheUsing[szFixedPath] = namespaceMap$/;" v +omni vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^let g:omni#cpp#namespaces#CacheResolve = {}$/;" v +omni vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^let g:omni#cpp#namespaces#CacheUsing = {}$/;" v +omni vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let g:omni#cpp#utils#CACHE_TAG_INHERITS[szTypeInfo] = result$/;" v +omni vim_tool/.vim/autoload/omni/cpp/utils.vim /^let g:omni#cpp#utils#CACHE_TAG_INHERITS = {}$/;" v +omni vim_tool/.vim/autoload/omni/cpp/utils.vim /^let g:omni#cpp#utils#szFilterGlobalScope .= "&& (!has_key(v:val, 'enum') || (has_key(v:val, 'enum') && v:val.enum =~ '^\\\\w\\\\+$')))"$/;" v +omni vim_tool/.vim/autoload/omni/cpp/utils.vim /^let g:omni#cpp#utils#szFilterGlobalScope = "(!has_key(v:val, 'class') && !has_key(v:val, 'struct') && !has_key(v:val, 'union') && !has_key(v:val, 'namespace')"$/;" v +omni vim_tool/.vim/autoload/omni/cpp/utils.vim /^let omni#cpp#utils#expIgnoreComments = 'getline(".") =~ g:omni#cpp#utils#reIgnoreComment'$/;" v +omni vim_tool/.vim/autoload/omni/cpp/utils.vim /^let omni#cpp#utils#reIgnoreComment = escape('\\\/\\\/\\|\\\/\\*\\|\\*\\\/', '*\/\\')$/;" v +omni vim_tool/.vim/autoload/omni/cpp/utils.vim /^let omni#cpp#utils#szEscapedCharacters = ' %#'$/;" v onError access/sqlite3.c /^ u8 onError; \/* OE_Abort, OE_Ignore, OE_Replace, or OE_None *\/$/;" m struct:Index file: onError logs/sqlite3.c /^ u8 onError; \/* OE_Abort, OE_Ignore, OE_Replace, or OE_None *\/$/;" m struct:Index file: onErrorText access/sqlite3.c /^static const char *onErrorText(int onError){$/;" f file: onErrorText logs/sqlite3.c /^static const char *onErrorText(int onError){$/;" f file: -on_body http/http/chttpparser.cpp /^int on_body(http_parser* http, const char* at, size_t length)$/;" f -on_body http/http/http_parser.h /^ http_data_cb on_body;$/;" m struct:http_parser_settings -on_chunk_complete http/http/chttpparser.cpp /^int on_chunk_complete(http_parser* http)$/;" f -on_chunk_complete http/http/http_parser.h /^ http_cb on_chunk_complete;$/;" m struct:http_parser_settings -on_chunk_header http/http/chttpparser.cpp /^int on_chunk_header(http_parser* http)$/;" f -on_chunk_header http/http/http_parser.h /^ http_cb on_chunk_header;$/;" m struct:http_parser_settings -on_header_field http/http/chttpparser.cpp /^int on_header_field(http_parser* http, const char* at, size_t length)$/;" f -on_header_field http/http/http_parser.h /^ http_data_cb on_header_field;$/;" m struct:http_parser_settings -on_header_value http/http/chttpparser.cpp /^int on_header_value(http_parser* http, const char* at, size_t length)$/;" f -on_header_value http/http/http_parser.h /^ http_data_cb on_header_value;$/;" m struct:http_parser_settings -on_headers_complete http/http/chttpparser.cpp /^int on_headers_complete(http_parser* http)$/;" f -on_headers_complete http/http/http_parser.h /^ http_cb on_headers_complete;$/;" m struct:http_parser_settings -on_http_body http/http/chttpparser.cpp /^void CHttpParser::on_http_body(const char* at, size_t length)$/;" f class:CHttpParser -on_http_body http/httptimpl.cpp /^void CHttptImpl::on_http_body(const char* at, size_t length)$/;" f class:CHttptImpl -on_http_chunk_complete http/http/chttpparser.cpp /^void CHttpParser::on_http_chunk_complete()$/;" f class:CHttpParser -on_http_chunk_header http/http/chttpparser.cpp /^void CHttpParser::on_http_chunk_header()$/;" f class:CHttpParser -on_http_header_complete http/http/chttpparser.cpp /^void CHttpParser::on_http_header_complete()$/;" f class:CHttpParser -on_http_header_complete http/httptimpl.cpp /^void CHttptImpl::on_http_header_complete()$/;" f class:CHttptImpl -on_http_header_field http/http/chttpparser.cpp /^void CHttpParser::on_http_header_field(const char* at, size_t length)$/;" f class:CHttpParser -on_http_header_value http/http/chttpparser.cpp /^void CHttpParser::on_http_header_value(const char* at, size_t length)$/;" f class:CHttpParser -on_http_message_begin http/http/chttpparser.cpp /^void CHttpParser::on_http_message_begin()$/;" f class:CHttpParser -on_http_message_begin http/httptimpl.cpp /^void CHttptImpl::on_http_message_begin()$/;" f class:CHttptImpl -on_http_message_complete http/http/chttpparser.cpp /^void CHttpParser::on_http_message_complete()$/;" f class:CHttpParser -on_http_message_complete http/httptimpl.cpp /^void CHttptImpl::on_http_message_complete()$/;" f class:CHttptImpl -on_http_status http/http/chttpparser.cpp /^void CHttpParser::on_http_status(const char* at, size_t length)$/;" f class:CHttpParser -on_http_url http/http/chttpparser.cpp /^void CHttpParser::on_http_url(const char* at, size_t length)$/;" f class:CHttpParser -on_message_begin http/http/chttpparser.cpp /^int on_message_begin(http_parser* http)$/;" f -on_message_begin http/http/http_parser.h /^ http_cb on_message_begin;$/;" m struct:http_parser_settings -on_message_complete http/http/chttpparser.cpp /^int on_message_complete(http_parser* http)$/;" f -on_message_complete http/http/http_parser.h /^ http_cb on_message_complete;$/;" m struct:http_parser_settings -on_status http/http/chttpparser.cpp /^int on_status(http_parser* http, const char* at, size_t length)$/;" f -on_status http/http/http_parser.h /^ http_data_cb on_status;$/;" m struct:http_parser_settings -on_url http/http/chttpparser.cpp /^int on_url(http_parser* http, const char* at, size_t length)$/;" f -on_url http/http/http_parser.h /^ http_data_cb on_url;$/;" m struct:http_parser_settings +on_body net/http_protocol/chttpparser.cpp /^int on_body(http_parser* http, const char* at, size_t length)$/;" f +on_body net/http_protocol/http_parser.h /^ http_data_cb on_body;$/;" m struct:http_parser_settings +on_chunk_complete net/http_protocol/chttpparser.cpp /^int on_chunk_complete(http_parser* http)$/;" f +on_chunk_complete net/http_protocol/http_parser.h /^ http_cb on_chunk_complete;$/;" m struct:http_parser_settings +on_chunk_header net/http_protocol/chttpparser.cpp /^int on_chunk_header(http_parser* http)$/;" f +on_chunk_header net/http_protocol/http_parser.h /^ http_cb on_chunk_header;$/;" m struct:http_parser_settings +on_header_field net/http_protocol/chttpparser.cpp /^int on_header_field(http_parser* http, const char* at, size_t length)$/;" f +on_header_field net/http_protocol/http_parser.h /^ http_data_cb on_header_field;$/;" m struct:http_parser_settings +on_header_value net/http_protocol/chttpparser.cpp /^int on_header_value(http_parser* http, const char* at, size_t length)$/;" f +on_header_value net/http_protocol/http_parser.h /^ http_data_cb on_header_value;$/;" m struct:http_parser_settings +on_headers_complete net/http_protocol/chttpparser.cpp /^int on_headers_complete(http_parser* http)$/;" f +on_headers_complete net/http_protocol/http_parser.h /^ http_cb on_headers_complete;$/;" m struct:http_parser_settings +on_http_body net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_body(const char* at, size_t length)$/;" f class:CHttpParser +on_http_body net/httptimpl.cpp /^void CHttptImpl::on_http_body(const char* at, size_t length)$/;" f class:CHttptImpl +on_http_chunk_complete net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_chunk_complete()$/;" f class:CHttpParser +on_http_chunk_header net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_chunk_header()$/;" f class:CHttpParser +on_http_header_complete net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_header_complete()$/;" f class:CHttpParser +on_http_header_complete net/httptimpl.cpp /^void CHttptImpl::on_http_header_complete()$/;" f class:CHttptImpl +on_http_header_field net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_header_field(const char* at, size_t length)$/;" f class:CHttpParser +on_http_header_value net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_header_value(const char* at, size_t length)$/;" f class:CHttpParser +on_http_message_begin net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_message_begin()$/;" f class:CHttpParser +on_http_message_begin net/httptimpl.cpp /^void CHttptImpl::on_http_message_begin()$/;" f class:CHttptImpl +on_http_message_complete net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_message_complete()$/;" f class:CHttpParser +on_http_message_complete net/httptimpl.cpp /^void CHttptImpl::on_http_message_complete()$/;" f class:CHttptImpl +on_http_status net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_status(const char* at, size_t length)$/;" f class:CHttpParser +on_http_url net/http_protocol/chttpparser.cpp /^void CHttpParser::on_http_url(const char* at, size_t length)$/;" f class:CHttpParser +on_message_begin net/http_protocol/chttpparser.cpp /^int on_message_begin(http_parser* http)$/;" f +on_message_begin net/http_protocol/http_parser.h /^ http_cb on_message_begin;$/;" m struct:http_parser_settings +on_message_complete net/http_protocol/chttpparser.cpp /^int on_message_complete(http_parser* http)$/;" f +on_message_complete net/http_protocol/http_parser.h /^ http_cb on_message_complete;$/;" m struct:http_parser_settings +on_status net/http_protocol/chttpparser.cpp /^int on_status(http_parser* http, const char* at, size_t length)$/;" f +on_status net/http_protocol/http_parser.h /^ http_data_cb on_status;$/;" m struct:http_parser_settings +on_url net/http_protocol/chttpparser.cpp /^int on_url(http_parser* http, const char* at, size_t length)$/;" f +on_url net/http_protocol/http_parser.h /^ http_data_cb on_url;$/;" m struct:http_parser_settings oom uibase/uilib/core/pugixml.cpp /^ bool oom;$/;" m struct:xpath_query_impl file: oom uibase/uilib/core/pugixml.cpp /^ bool oom;$/;" m struct:xpath_stack_data file: op access/sqlite3.c /^ unsigned char op; \/* Constraint operator *\/$/;" m struct:sqlite3_index_info::sqlite3_index_constraint file: @@ -18634,7 +18465,7 @@ operator ! uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_node::operator!() operator ! uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_text::operator!() const$/;" f class:pugi::xml_text operator ! uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xpath_node::operator!() const$/;" f class:pugi::xpath_node operator ! uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xpath_query::operator!() const$/;" f class:pugi::xpath_query -operator != compat/compat_guid.hpp /^__inline bool operator!=(REFGUID guidOne, REFGUID guidOther)$/;" f +operator != crt/crt_guid.hpp /^__inline bool operator!=(REFGUID guidOne, REFGUID guidOther)$/;" f operator != include/utilex/slice.hpp /^inline bool operator!=(const Slice& x, const Slice& y) {$/;" f operator != uibase/uilib/core/pugixml.cpp /^ bool operator!=(const xpath_string& o) const$/;" f class:xpath_string operator != uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_attribute::operator!=(const xml_attribute& r) const$/;" f class:pugi::xml_attribute @@ -18738,7 +18569,7 @@ operator = uibase/uilib/utils/utils.cpp /^ const CDuiString& CDuiString::operato operator = uibase/uilib/utils/utils.cpp /^ const CDuiString& CDuiString::operator=(LPCWSTR lpwStr)$/;" f class:DuiLib::CDuiString operator = uibase/uilib/utils/utils.cpp /^ const CDuiString& CDuiString::operator=(const CDuiString& src)$/;" f class:DuiLib::CDuiString operator = uibase/uilib/utils/utils.cpp /^ const CDuiString& CDuiString::operator=(const TCHAR ch)$/;" f class:DuiLib::CDuiString -operator == compat/compat_guid.hpp /^__inline bool operator==(REFGUID guidOne, REFGUID guidOther)$/;" f +operator == crt/crt_guid.hpp /^__inline bool operator==(REFGUID guidOne, REFGUID guidOther)$/;" f operator == include/utilex/slice.hpp /^inline bool operator==(const Slice& x, const Slice& y) {$/;" f operator == uibase/uilib/core/pugixml.cpp /^ bool operator==(const char_t* other) const$/;" f struct:xpath_lexer_string operator == uibase/uilib/core/pugixml.cpp /^ bool operator==(const xpath_string& o) const$/;" f class:xpath_string @@ -19019,11 +18850,11 @@ osWrite access/sqlite3.c 23974;" d file: osWrite logs/sqlite3.c 23974;" d file: osWriteFile access/sqlite3.c 32175;" d file: osWriteFile logs/sqlite3.c 32175;" d file: -os_fatal_error base/compat_error.c /^void os_fatal_error(const int errorno, const char* syscall)$/;" f -os_get_error base/compat_error.c /^int os_get_error()$/;" f -os_thread_cb compat/compat_thread.h /^typedef void(*os_thread_cb)(void* arg);$/;" t -out compat/darwinsysvar.hpp /^ unsigned out;$/;" m struct:__anon32 -out compat/posixsysvar.hpp /^ unsigned out;$/;" m struct:__anon34 +os_fatal_error stdcrt/compat_error.c /^void os_fatal_error(const int errorno, const char* syscall)$/;" f +os_get_error stdcrt/compat_error.c /^int os_get_error(void)$/;" f +os_thread_cb crt/crt_thread.h /^typedef void(*os_thread_cb)(void* arg);$/;" t +out crt/darwinsysvar.hpp /^ unsigned out;$/;" m struct:__anon31 +out crt/posixsysvar.hpp /^ unsigned out;$/;" m struct:__anon28 out uibase/uilib/utils/stb_image.c /^ stbi_uc *idata, *expanded, *out;$/;" m struct:__anon111 file: out uibase/uilib/utils/stb_image.c /^ stbi_uc *out; \/\/ output buffer (always 4 components)$/;" m struct:__anon115 file: overflow access/sqlite3.c /^ u8 overflow; \/* True if integer overflow seen *\/$/;" m struct:SumCtx file: @@ -19038,9 +18869,9 @@ owner logs/sqlite3.c /^ volatile pthread_t owner; \/* Thread that is within th p access/sqlite3.c /^ void *p; \/* Generic pointer *\/$/;" m union:VdbeOp::__anon1 file: p access/sqlite3.c /^ void *p; \/* Pointer to sampled record *\/$/;" m struct:IndexSample file: p bin/main.py /^ def p(): $/;" m class:guestlist -p http/http/http_parser.h /^ void *p;$/;" m struct:http_parser -p logs/sqlite3.c /^ void *p; \/* Generic pointer *\/$/;" m union:VdbeOp::__anon46 file: +p logs/sqlite3.c /^ void *p; \/* Generic pointer *\/$/;" m union:VdbeOp::__anon41 file: p logs/sqlite3.c /^ void *p; \/* Pointer to sampled record *\/$/;" m struct:IndexSample file: +p net/http_protocol/http_parser.h /^ void *p;$/;" m struct:http_parser p1 access/sqlite3.c /^ int p1, p2; \/* Operands of the opcode used to ends the loop *\/$/;" m struct:WhereLevel file: p1 access/sqlite3.c /^ int p1; \/* First operand *\/$/;" m struct:VdbeOp file: p1 access/sqlite3.c /^ signed char p1; \/* First operand *\/$/;" m struct:VdbeOpList file: @@ -19058,7 +18889,7 @@ p3 access/sqlite3.c /^ signed char p3; \/* Third parameter *\/$/;" m struct p3 logs/sqlite3.c /^ int p3; \/* The third parameter *\/$/;" m struct:VdbeOp file: p3 logs/sqlite3.c /^ signed char p3; \/* Third parameter *\/$/;" m struct:VdbeOpList file: p4 access/sqlite3.c /^ } p4;$/;" m struct:VdbeOp typeref:union:VdbeOp::__anon1 file: -p4 logs/sqlite3.c /^ } p4;$/;" m struct:VdbeOp typeref:union:VdbeOp::__anon46 file: +p4 logs/sqlite3.c /^ } p4;$/;" m struct:VdbeOp typeref:union:VdbeOp::__anon41 file: p4type access/sqlite3.c /^ signed char p4type; \/* One of the P4_xxx constants for p4 *\/$/;" m struct:VdbeOp file: p4type logs/sqlite3.c /^ signed char p4type; \/* One of the P4_xxx constants for p4 *\/$/;" m struct:VdbeOp file: p5 access/sqlite3.c /^ u8 op, p5; \/* Opcode and P5 of the opcode that ends the loop *\/$/;" m struct:WhereLevel file: @@ -19072,7 +18903,7 @@ pAggInfo logs/sqlite3.c /^ AggInfo *pAggInfo; \/* Information about aggregate pAinc access/sqlite3.c /^ AutoincInfo *pAinc; \/* Information about AUTOINCREMENT counters *\/$/;" m struct:Parse file: pAinc logs/sqlite3.c /^ AutoincInfo *pAinc; \/* Information about AUTOINCREMENT counters *\/$/;" m struct:Parse file: pAndInfo access/sqlite3.c /^ WhereAndInfo *pAndInfo; \/* Extra information if (eOperator& WO_AND)!=0 *\/$/;" m union:WhereTerm::__anon21 file: -pAndInfo logs/sqlite3.c /^ WhereAndInfo *pAndInfo; \/* Extra information if (eOperator& WO_AND)!=0 *\/$/;" m union:WhereTerm::__anon66 file: +pAndInfo logs/sqlite3.c /^ WhereAndInfo *pAndInfo; \/* Extra information if (eOperator& WO_AND)!=0 *\/$/;" m union:WhereTerm::__anon61 file: pAppData access/sqlite3.c /^ void *pAppData; \/* Argument to xInit() and xShutdown() *\/$/;" m struct:sqlite3_mem_methods file: pAppData access/sqlite3.c /^ void *pAppData; \/* Pointer to application-specific data *\/$/;" m struct:sqlite3_vfs file: pAppData access/sqlite3.h /^ void *pAppData; \/* Argument to xInit() and xShutdown() *\/$/;" m struct:sqlite3_mem_methods @@ -19142,7 +18973,7 @@ pCodec access/sqlite3.c /^ void *pCodec; \/* First argument to xC pCodec logs/sqlite3.c /^ void *pCodec; \/* First argument to xCodec... methods *\/$/;" m struct:Pager file: pColl access/sqlite3.c /^ CollSeq *pColl; \/* Used when p4type is P4_COLLSEQ *\/$/;" m union:VdbeOp::__anon1 file: pColl access/sqlite3.c /^ CollSeq *pColl; \/* Collating sequence *\/$/;" m struct:sqlite3_context file: -pColl logs/sqlite3.c /^ CollSeq *pColl; \/* Used when p4type is P4_COLLSEQ *\/$/;" m union:VdbeOp::__anon46 file: +pColl logs/sqlite3.c /^ CollSeq *pColl; \/* Used when p4type is P4_COLLSEQ *\/$/;" m union:VdbeOp::__anon41 file: pColl logs/sqlite3.c /^ CollSeq *pColl; \/* Collating sequence *\/$/;" m struct:sqlite3_context file: pCollNeededArg access/sqlite3.c /^ void *pCollNeededArg;$/;" m struct:sqlite3 file: pCollNeededArg logs/sqlite3.c /^ void *pCollNeededArg;$/;" m struct:sqlite3 file: @@ -19162,7 +18993,7 @@ pContext logs/sqlite3.c /^ void *pContext; \/* Copy of pContext pContext logs/sqlite3.c /^ void *pContext;$/;" m struct:RtreeGeomCallback file: pContext logs/sqlite3.c /^ void *pContext;$/;" m struct:RtreeMatchArg file: pCovidx access/sqlite3.c /^ Index *pCovidx; \/* Possible covering index for WHERE_MULTI_OR *\/$/;" m union:WhereLevel::__anon16 file: -pCovidx logs/sqlite3.c /^ Index *pCovidx; \/* Possible covering index for WHERE_MULTI_OR *\/$/;" m union:WhereLevel::__anon61 file: +pCovidx logs/sqlite3.c /^ Index *pCovidx; \/* Possible covering index for WHERE_MULTI_OR *\/$/;" m union:WhereLevel::__anon56 file: pCsr access/sqlite3.c /^ BtCursor *pCsr; \/* Cursor pointing at blob row *\/$/;" m struct:Incrblob file: pCsr access/sqlite3.c /^ Fts3Cursor *pCsr; \/* Cursor snippet is being generated from *\/$/;" m struct:SnippetIter file: pCsr access/sqlite3.c /^ Fts3Cursor *pCsr; \/* FTS3 Cursor *\/$/;" m struct:LoadDoclistCtx file: @@ -19192,7 +19023,7 @@ pDbFd logs/sqlite3.c /^ sqlite3_file *pDbFd; \/* File handle for the data pDbPage access/sqlite3.c /^ DbPage *pDbPage; \/* Pager page handle *\/$/;" m struct:MemPage file: pDbPage logs/sqlite3.c /^ DbPage *pDbPage; \/* Pager page handle *\/$/;" m struct:MemPage file: pDef access/sqlite3.c /^ FuncDef *pDef; \/* Used only when flags==MEM_Agg *\/$/;" m union:Mem::__anon9 file: -pDef logs/sqlite3.c /^ FuncDef *pDef; \/* Used only when flags==MEM_Agg *\/$/;" m union:Mem::__anon54 file: +pDef logs/sqlite3.c /^ FuncDef *pDef; \/* Used only when flags==MEM_Agg *\/$/;" m union:Mem::__anon49 file: pDefault access/sqlite3.c /^ sqlite3_syscall_ptr pDefault; \/* Default value *\/$/;" m struct:unix_syscall file: pDefault access/sqlite3.c /^ sqlite3_syscall_ptr pDefault; \/* Default value *\/$/;" m struct:win_syscall file: pDefault logs/sqlite3.c /^ sqlite3_syscall_ptr pDefault; \/* Default value *\/$/;" m struct:unix_syscall file: @@ -19285,7 +19116,7 @@ pFirst access/sqlite3.c /^ struct MemBlockHdr *pFirst;$/;" m struct:__anon10 ty pFirst access/sqlite3.c /^ unixShm *pFirst; \/* All unixShm objects pointing to this *\/$/;" m struct:unixShmNode file: pFirst access/sqlite3.c /^ winShm *pFirst; \/* All winShm objects pointing to this *\/$/;" m struct:winShmNode file: pFirst logs/sqlite3.c /^ FileChunk *pFirst; \/* Head of in-memory chunk-list *\/$/;" m struct:MemJournal file: -pFirst logs/sqlite3.c /^ struct MemBlockHdr *pFirst;$/;" m struct:__anon55 typeref:struct:__anon55::MemBlockHdr file: +pFirst logs/sqlite3.c /^ struct MemBlockHdr *pFirst;$/;" m struct:__anon50 typeref:struct:__anon50::MemBlockHdr file: pFirst logs/sqlite3.c /^ unixShm *pFirst; \/* All unixShm objects pointing to this *\/$/;" m struct:unixShmNode file: pFirst logs/sqlite3.c /^ winShm *pFirst; \/* All winShm objects pointing to this *\/$/;" m struct:winShmNode file: pFocus uibase/uilib/core/uimanager.cpp /^ CControlUI* pFocus;$/;" m struct:DuiLib::tagFINDTABINFO file: @@ -19294,7 +19125,7 @@ pForest access/sqlite3.c /^ struct RowSetEntry *pForest; \/* List of binary t pForest logs/sqlite3.c /^ struct RowSetEntry *pForest; \/* List of binary trees of entries *\/$/;" m struct:RowSet typeref:struct:RowSet::RowSetEntry file: pFrame access/sqlite3.c /^ VdbeFrame *pFrame; \/* Used when flags==MEM_Frame *\/$/;" m union:Mem::__anon9 file: pFrame access/sqlite3.c /^ VdbeFrame *pFrame; \/* Parent frame *\/$/;" m struct:Vdbe file: -pFrame logs/sqlite3.c /^ VdbeFrame *pFrame; \/* Used when flags==MEM_Frame *\/$/;" m union:Mem::__anon54 file: +pFrame logs/sqlite3.c /^ VdbeFrame *pFrame; \/* Used when flags==MEM_Frame *\/$/;" m union:Mem::__anon49 file: pFrame logs/sqlite3.c /^ VdbeFrame *pFrame; \/* Parent frame *\/$/;" m struct:Vdbe file: pFree access/sqlite3.c /^ LookasideSlot *pFree; \/* List of available buffers *\/$/;" m struct:Lookaside file: pFree access/sqlite3.c /^ PgFreeslot *pFree; \/* Free page blocks *\/$/;" m struct:PCacheGlobal file: @@ -19314,7 +19145,7 @@ pFunc access/sqlite3.c /^ FuncDef *pFunc; \/* The aggregate function pFunc access/sqlite3.c /^ FuncDef *pFunc; \/* Used when p4type is P4_FUNCDEF *\/$/;" m union:VdbeOp::__anon1 file: pFunc access/sqlite3.c /^ FuncDef *pFunc; \/* Pointer to function information. MUST BE FIRST *\/$/;" m struct:sqlite3_context file: pFunc logs/sqlite3.c /^ FuncDef *pFunc; \/* The aggregate function implementation *\/$/;" m struct:AggInfo::AggInfo_func file: -pFunc logs/sqlite3.c /^ FuncDef *pFunc; \/* Used when p4type is P4_FUNCDEF *\/$/;" m union:VdbeOp::__anon46 file: +pFunc logs/sqlite3.c /^ FuncDef *pFunc; \/* Used when p4type is P4_FUNCDEF *\/$/;" m union:VdbeOp::__anon41 file: pFunc logs/sqlite3.c /^ FuncDef *pFunc; \/* Pointer to function information. MUST BE FIRST *\/$/;" m struct:sqlite3_context file: pGeom access/sqlite3.c /^ sqlite3_rtree_geometry *pGeom; \/* Constraint callback argument for a MATCH *\/$/;" m struct:RtreeConstraint file: pGeom logs/sqlite3.c /^ sqlite3_rtree_geometry *pGeom; \/* Constraint callback argument for a MATCH *\/$/;" m struct:RtreeConstraint file: @@ -19336,7 +19167,7 @@ pHeap access/sqlite3.c /^ void *pHeap; \/* Heap storage sp pHeap logs/sqlite3.c /^ void *pHeap; \/* Heap storage space *\/$/;" m struct:Sqlite3Config file: pHoriz uibase/uilib/control/uitreeview.h /^ CHorizontalLayoutUI* pHoriz;$/;" m class:DuiLib::CTreeNodeUI pI64 access/sqlite3.c /^ i64 *pI64; \/* Used when p4type is P4_INT64 *\/$/;" m union:VdbeOp::__anon1 file: -pI64 logs/sqlite3.c /^ i64 *pI64; \/* Used when p4type is P4_INT64 *\/$/;" m union:VdbeOp::__anon46 file: +pI64 logs/sqlite3.c /^ i64 *pI64; \/* Used when p4type is P4_INT64 *\/$/;" m union:VdbeOp::__anon41 file: pId access/sqlite3.c /^ struct vxworksFileId *pId; \/* Unique file ID *\/$/;" m struct:unixFile typeref:struct:unixFile::vxworksFileId file: pId access/sqlite3.c /^ struct vxworksFileId *pId; \/* Unique file ID for vxworks. *\/$/;" m struct:unixFileId typeref:struct:unixFileId::vxworksFileId file: pId logs/sqlite3.c /^ struct vxworksFileId *pId; \/* Unique file ID *\/$/;" m struct:unixFile typeref:struct:unixFile::vxworksFileId file: @@ -19353,7 +19184,7 @@ pInSavepoint logs/sqlite3.c /^ Bitvec *pInSavepoint; \/* Set of pages in pIndex access/sqlite3.c /^ Index *pIndex; \/* Index used, or NULL *\/$/;" m struct:WhereLoop::__anon18::__anon19 file: pIndex access/sqlite3.c /^ Index *pIndex; \/* Index structure corresponding to zIndex, if any *\/$/;" m struct:SrcList::SrcList_item file: pIndex access/sqlite3.c /^ Index *pIndex; \/* List of SQL indexes on this table. *\/$/;" m struct:Table file: -pIndex logs/sqlite3.c /^ Index *pIndex; \/* Index used, or NULL *\/$/;" m struct:WhereLoop::__anon63::__anon64 file: +pIndex logs/sqlite3.c /^ Index *pIndex; \/* Index used, or NULL *\/$/;" m struct:WhereLoop::__anon58::__anon59 file: pIndex logs/sqlite3.c /^ Index *pIndex; \/* Index structure corresponding to zIndex, if any *\/$/;" m struct:SrcList::SrcList_item file: pIndex logs/sqlite3.c /^ Index *pIndex; \/* List of SQL indexes on this table. *\/$/;" m struct:Table file: pInitMutex access/sqlite3.c /^ sqlite3_mutex *pInitMutex; \/* Mutex used by sqlite3_initialize() *\/$/;" m struct:Sqlite3Config file: @@ -19378,7 +19209,7 @@ pKeyInfo access/sqlite3.c /^ KeyInfo *pKeyInfo; \/* A KeyInfo object suit pKeyInfo access/sqlite3.c /^ KeyInfo *pKeyInfo; \/* Info about index keys needed by index cursors *\/$/;" m struct:VdbeCursor file: pKeyInfo access/sqlite3.c /^ KeyInfo *pKeyInfo; \/* Collation and sort-order information *\/$/;" m struct:UnpackedRecord file: pKeyInfo access/sqlite3.c /^ struct KeyInfo *pKeyInfo; \/* Argument passed to comparison function *\/$/;" m struct:BtCursor typeref:struct:BtCursor::KeyInfo file: -pKeyInfo logs/sqlite3.c /^ KeyInfo *pKeyInfo; \/* Used when p4type is P4_KEYINFO *\/$/;" m union:VdbeOp::__anon46 file: +pKeyInfo logs/sqlite3.c /^ KeyInfo *pKeyInfo; \/* Used when p4type is P4_KEYINFO *\/$/;" m union:VdbeOp::__anon41 file: pKeyInfo logs/sqlite3.c /^ KeyInfo *pKeyInfo; \/* A KeyInfo object suitable for this index *\/$/;" m struct:Index file: pKeyInfo logs/sqlite3.c /^ KeyInfo *pKeyInfo; \/* Info about index keys needed by index cursors *\/$/;" m struct:VdbeCursor file: pKeyInfo logs/sqlite3.c /^ KeyInfo *pKeyInfo; \/* Collation and sort-order information *\/$/;" m struct:UnpackedRecord file: @@ -19387,7 +19218,7 @@ pLast access/sqlite3.c /^ TriggerStep *pLast; \/* Last element in link-list. V pLast access/sqlite3.c /^ struct MemBlockHdr *pLast;$/;" m struct:__anon10 typeref:struct:__anon10::MemBlockHdr file: pLast access/sqlite3.c /^ struct RowSetEntry *pLast; \/* Last entry on the pEntry list *\/$/;" m struct:RowSet typeref:struct:RowSet::RowSetEntry file: pLast logs/sqlite3.c /^ TriggerStep *pLast; \/* Last element in link-list. Valid for 1st elem only *\/$/;" m struct:TriggerStep file: -pLast logs/sqlite3.c /^ struct MemBlockHdr *pLast;$/;" m struct:__anon55 typeref:struct:__anon55::MemBlockHdr file: +pLast logs/sqlite3.c /^ struct MemBlockHdr *pLast;$/;" m struct:__anon50 typeref:struct:__anon50::MemBlockHdr file: pLast logs/sqlite3.c /^ struct RowSetEntry *pLast; \/* Last entry on the pEntry list *\/$/;" m struct:RowSet typeref:struct:RowSet::RowSetEntry file: pLast uibase/uilib/core/uimanager.cpp /^ CControlUI* pLast;$/;" m struct:DuiLib::tagFINDTABINFO file: pLeft access/sqlite3.c /^ Expr *pLeft; \/* Left subnode *\/$/;" m struct:Expr file: @@ -19408,7 +19239,7 @@ pList access/sqlite3.c /^ char *pList; \/* Pointer to start pList access/sqlite3.c /^ char *pList; \/* Position-list *\/$/;" m struct:TermOffset file: pList access/sqlite3.c /^ char *pList; \/* Pointer to position list following iDocid *\/$/;" m struct:Fts3Doclist file: pList access/sqlite3.c /^ char *pList;$/;" m struct:TokenDoclist file: -pList logs/sqlite3.c /^ ExprList *pList; \/* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN *\/$/;" m union:Expr::__anon49 file: +pList logs/sqlite3.c /^ ExprList *pList; \/* op = IN, EXISTS, SELECT, CASE, FUNCTION, BETWEEN *\/$/;" m union:Expr::__anon44 file: pList logs/sqlite3.c /^ PendingList *pList; \/* Doclist is assembled here *\/$/;" m struct:Fts3DeferredToken file: pList logs/sqlite3.c /^ char *pList; \/* Pointer to start of phrase position list *\/$/;" m struct:SnippetPhrase file: pList logs/sqlite3.c /^ char *pList; \/* Position-list *\/$/;" m struct:TermOffset file: @@ -19436,7 +19267,7 @@ pMapRegion logs/sqlite3.c /^ void *pMapRegion; \/* Memory map pMapRegion logs/sqlite3.c /^ void *pMapRegion; \/* Area memory mapped *\/$/;" m struct:winFile file: pMem access/sqlite3.c /^ Mem *pMem; \/* Used when p4type is P4_MEM *\/$/;" m union:VdbeOp::__anon1 file: pMem access/sqlite3.c /^ Mem *pMem; \/* Memory cell used to store aggregate context *\/$/;" m struct:sqlite3_context file: -pMem logs/sqlite3.c /^ Mem *pMem; \/* Used when p4type is P4_MEM *\/$/;" m union:VdbeOp::__anon46 file: +pMem logs/sqlite3.c /^ Mem *pMem; \/* Used when p4type is P4_MEM *\/$/;" m union:VdbeOp::__anon41 file: pMem logs/sqlite3.c /^ Mem *pMem; \/* Memory cell used to store aggregate context *\/$/;" m struct:sqlite3_context file: pMethod access/sqlite3.c /^ const sqlite3_io_methods *pMethod; \/*** Must be first ***\/$/;" m struct:winFile file: pMethod access/sqlite3.c /^ sqlite3_io_methods *pMethod; \/* I\/O methods on journal files *\/$/;" m struct:JournalFile file: @@ -19465,7 +19296,7 @@ pModule logs/sqlite3.c /^ const sqlite3_module *pModule; \/* The module for th pModule logs/sqlite3.c /^ const sqlite3_tokenizer_module *pModule; \/* The module for this tokenizer *\/$/;" m struct:sqlite3_tokenizer file: pModule logs/sqlite3.h /^ const sqlite3_module *pModule; \/* The module for this virtual table *\/$/;" m struct:sqlite3_vtab pNC access/sqlite3.c /^ NameContext *pNC; \/* Naming context *\/$/;" m union:Walker::__anon8 file: -pNC logs/sqlite3.c /^ NameContext *pNC; \/* Naming context *\/$/;" m union:Walker::__anon53 file: +pNC logs/sqlite3.c /^ NameContext *pNC; \/* Naming context *\/$/;" m union:Walker::__anon48 file: pName access/sqlite3.c /^ const Token *pName; \/* Name of the container - used for error messages *\/$/;" m struct:DbFixer file: pName logs/sqlite3.c /^ const Token *pName; \/* Name of the container - used for error messages *\/$/;" m struct:DbFixer file: pNew access/sqlite3.c /^ WhereLoop *pNew; \/* Template WhereLoop *\/$/;" m struct:WhereLoopBuilder file: @@ -19574,7 +19405,7 @@ pOldMethod logs/sqlite3.c /^ sqlite3_io_methods const *pOldMethod; \/* Orig pOn access/sqlite3.c /^ Expr *pOn; \/* The ON clause of a join *\/$/;" m struct:SrcList::SrcList_item file: pOn logs/sqlite3.c /^ Expr *pOn; \/* The ON clause of a join *\/$/;" m struct:SrcList::SrcList_item file: pOrInfo access/sqlite3.c /^ WhereOrInfo *pOrInfo; \/* Extra information if (eOperator & WO_OR)!=0 *\/$/;" m union:WhereTerm::__anon21 file: -pOrInfo logs/sqlite3.c /^ WhereOrInfo *pOrInfo; \/* Extra information if (eOperator & WO_OR)!=0 *\/$/;" m union:WhereTerm::__anon66 file: +pOrInfo logs/sqlite3.c /^ WhereOrInfo *pOrInfo; \/* Extra information if (eOperator & WO_OR)!=0 *\/$/;" m union:WhereTerm::__anon61 file: pOrSet access/sqlite3.c /^ WhereOrSet *pOrSet; \/* Record best loops here, if not NULL *\/$/;" m struct:WhereLoopBuilder file: pOrSet logs/sqlite3.c /^ WhereOrSet *pOrSet; \/* Record best loops here, if not NULL *\/$/;" m struct:WhereLoopBuilder file: pOrderBy access/sqlite3.c /^ ExprList *pOrderBy; \/* ORDER BY clause *\/$/;" m struct:WhereLoopBuilder file: @@ -19656,7 +19487,7 @@ pProfileArg logs/sqlite3.c /^ void *pProfileArg; \/* Arg pProgram access/sqlite3.c /^ SubProgram *pProgram; \/* Used when p4type is P4_SUBPROGRAM *\/$/;" m union:VdbeOp::__anon1 file: pProgram access/sqlite3.c /^ SubProgram *pProgram; \/* Linked list of all sub-programs used by VM *\/$/;" m struct:Vdbe file: pProgram access/sqlite3.c /^ SubProgram *pProgram; \/* Program implementing pTrigger\/orconf *\/$/;" m struct:TriggerPrg file: -pProgram logs/sqlite3.c /^ SubProgram *pProgram; \/* Used when p4type is P4_SUBPROGRAM *\/$/;" m union:VdbeOp::__anon46 file: +pProgram logs/sqlite3.c /^ SubProgram *pProgram; \/* Used when p4type is P4_SUBPROGRAM *\/$/;" m union:VdbeOp::__anon41 file: pProgram logs/sqlite3.c /^ SubProgram *pProgram; \/* Linked list of all sub-programs used by VM *\/$/;" m struct:Vdbe file: pProgram logs/sqlite3.c /^ SubProgram *pProgram; \/* Program implementing pTrigger\/orconf *\/$/;" m struct:TriggerPrg file: pProgressArg access/sqlite3.c /^ void *pProgressArg; \/* Argument to the progress callback *\/$/;" m struct:sqlite3 file: @@ -19671,7 +19502,7 @@ pReadRowid access/sqlite3.c /^ sqlite3_stmt *pReadRowid;$/;" m struct:Rtree fil pReadRowid logs/sqlite3.c /^ sqlite3_stmt *pReadRowid;$/;" m struct:Rtree file: pReal access/sqlite3.c /^ double *pReal; \/* Used when p4type is P4_REAL *\/$/;" m union:VdbeOp::__anon1 file: pReal access/sqlite3.c /^ sqlite3_file *pReal; \/* The "real" underlying file descriptor *\/$/;" m struct:JournalFile file: -pReal logs/sqlite3.c /^ double *pReal; \/* Used when p4type is P4_REAL *\/$/;" m union:VdbeOp::__anon46 file: +pReal logs/sqlite3.c /^ double *pReal; \/* Used when p4type is P4_REAL *\/$/;" m union:VdbeOp::__anon41 file: pReal logs/sqlite3.c /^ sqlite3_file *pReal; \/* The "real" underlying file descriptor *\/$/;" m struct:JournalFile file: pRec access/sqlite3.c /^ UnpackedRecord *pRec; \/* Probe for stat4 (if required) *\/$/;" m struct:WhereLoopBuilder file: pRec logs/sqlite3.c /^ UnpackedRecord *pRec; \/* Probe for stat4 (if required) *\/$/;" m struct:WhereLoopBuilder file: @@ -19698,7 +19529,7 @@ pRollbackArg logs/sqlite3.c /^ void *pRollbackArg; \/* Argument t pRoot access/sqlite3.c /^ Fts3Expr *pRoot; \/* Root of NEAR\/AND cluster *\/$/;" m struct:Fts3TokenAndCost file: pRoot logs/sqlite3.c /^ Fts3Expr *pRoot; \/* Root of NEAR\/AND cluster *\/$/;" m struct:Fts3TokenAndCost file: pRowSet access/sqlite3.c /^ RowSet *pRowSet; \/* Used only when flags==MEM_RowSet *\/$/;" m union:Mem::__anon9 file: -pRowSet logs/sqlite3.c /^ RowSet *pRowSet; \/* Used only when flags==MEM_RowSet *\/$/;" m union:Mem::__anon54 file: +pRowSet logs/sqlite3.c /^ RowSet *pRowSet; \/* Used only when flags==MEM_RowSet *\/$/;" m union:Mem::__anon49 file: pSTDCOM_OBJMAP_ENTRY include/dlcom/comfactory.hpp /^ }STDCOM_OBJMAP_ENTRY, *pSTDCOM_OBJMAP_ENTRY;$/;" t typeref:struct:_STDCOM_OBJMAP_ENTRY pSavepoint access/sqlite3.c /^ Savepoint *pSavepoint; \/* List of active savepoints *\/$/;" m struct:sqlite3 file: pSavepoint logs/sqlite3.c /^ Savepoint *pSavepoint; \/* List of active savepoints *\/$/;" m struct:sqlite3 file: @@ -19734,7 +19565,7 @@ pSelect access/sqlite3.c /^ Select *pSelect; \/* A SELECT statement used in pSelect access/sqlite3.c /^ Select *pSelect; \/* NULL for tables. Points to definition if a view. *\/$/;" m struct:Table file: pSelect access/sqlite3.c /^ Select *pSelect; \/* SELECT statment or RHS of INSERT INTO .. SELECT ... *\/$/;" m struct:TriggerStep file: pSelect logs/sqlite3.c /^ Select *pSelect; \/* The definition of this CTE *\/$/;" m struct:With::Cte file: -pSelect logs/sqlite3.c /^ Select *pSelect; \/* EP_xIsSelect and op = IN, EXISTS, SELECT *\/$/;" m union:Expr::__anon49 file: +pSelect logs/sqlite3.c /^ Select *pSelect; \/* EP_xIsSelect and op = IN, EXISTS, SELECT *\/$/;" m union:Expr::__anon44 file: pSelect logs/sqlite3.c /^ Select *pSelect; \/* A SELECT statement used in place of a table name *\/$/;" m struct:SrcList::SrcList_item file: pSelect logs/sqlite3.c /^ Select *pSelect; \/* NULL for tables. Points to definition if a view. *\/$/;" m struct:Table file: pSelect logs/sqlite3.c /^ Select *pSelect; \/* SELECT statment or RHS of INSERT INTO .. SELECT ... *\/$/;" m struct:TriggerStep file: @@ -19767,12 +19598,12 @@ pSrc logs/sqlite3.c /^ SrcList *pSrc; \/* The FROM clause *\/$/;" m str pSrc logs/sqlite3.c /^ SrcList *pSrc; \/* One particular FROM clause in a nested query *\/$/;" m struct:SrcCount file: pSrcBits uibase/uilib/core/uimanager.h /^ LPBYTE pSrcBits;$/;" m struct:DuiLib::tagTImageInfo pSrcCount access/sqlite3.c /^ struct SrcCount *pSrcCount; \/* Counting column references *\/$/;" m union:Walker::__anon8 typeref:struct:Walker::__anon8::SrcCount file: -pSrcCount logs/sqlite3.c /^ struct SrcCount *pSrcCount; \/* Counting column references *\/$/;" m union:Walker::__anon53 typeref:struct:Walker::__anon53::SrcCount file: +pSrcCount logs/sqlite3.c /^ struct SrcCount *pSrcCount; \/* Counting column references *\/$/;" m union:Walker::__anon48 typeref:struct:Walker::__anon48::SrcCount file: pSrcDb access/sqlite3.c /^ sqlite3* pSrcDb; \/* Source database handle *\/$/;" m struct:sqlite3_backup file: pSrcDb logs/sqlite3.c /^ sqlite3* pSrcDb; \/* Source database handle *\/$/;" m struct:sqlite3_backup file: pSrcList access/sqlite3.c /^ SrcList *pSrcList; \/* FROM clause *\/$/;" m union:Walker::__anon8 file: pSrcList access/sqlite3.c /^ SrcList *pSrcList; \/* One or more tables used to resolve names *\/$/;" m struct:NameContext file: -pSrcList logs/sqlite3.c /^ SrcList *pSrcList; \/* FROM clause *\/$/;" m union:Walker::__anon53 file: +pSrcList logs/sqlite3.c /^ SrcList *pSrcList; \/* FROM clause *\/$/;" m union:Walker::__anon48 file: pSrcList logs/sqlite3.c /^ SrcList *pSrcList; \/* One or more tables used to resolve names *\/$/;" m struct:NameContext file: pStart access/sqlite3.c /^ void *pStart, *pEnd; \/* Bounds of pagecache malloc range *\/$/;" m struct:PCacheGlobal file: pStart access/sqlite3.c /^ void *pStart; \/* First byte of available memory space *\/$/;" m struct:Lookaside file: @@ -19874,7 +19705,7 @@ pVTable access/sqlite3.c /^ VTable *pVTable; \/* The virtual table being con pVTable logs/sqlite3.c /^ VTable *pVTable; \/* List of VTable objects. *\/$/;" m struct:Table file: pVTable logs/sqlite3.c /^ VTable *pVTable; \/* The virtual table being constructed *\/$/;" m struct:VtabCtx file: pVal access/sqlite3.c /^ void *pVal;$/;" m struct:SorterRecord file: -pVal compat/compat_var.h /^ void* pVal;$/;" m union:tag_varaint_t::__anon30 +pVal crt/crt_var.h /^ void* pVal;$/;" m union:tag_varaint_t::__anon25 pVal logs/sqlite3.c /^ void *pVal;$/;" m struct:SorterRecord file: pVdbe access/sqlite3.c /^ Vdbe *pVdbe; \/* The VM that owns this context *\/$/;" m struct:sqlite3_context file: pVdbe access/sqlite3.c /^ Vdbe *pVdbe; \/* An engine for executing database bytecode *\/$/;" m struct:Parse file: @@ -19900,7 +19731,7 @@ pVtab access/sqlite3.c /^ VTable *pVtab; \/* Used when p4type is P4_V pVtab access/sqlite3.c /^ sqlite3_vtab *pVtab; \/* Pointer to vtab instance *\/$/;" m struct:VTable file: pVtab access/sqlite3.c /^ sqlite3_vtab *pVtab; \/* Virtual table of this cursor *\/$/;" m struct:sqlite3_vtab_cursor file: pVtab access/sqlite3.h /^ sqlite3_vtab *pVtab; \/* Virtual table of this cursor *\/$/;" m struct:sqlite3_vtab_cursor -pVtab logs/sqlite3.c /^ VTable *pVtab; \/* Used when p4type is P4_VTAB *\/$/;" m union:VdbeOp::__anon46 file: +pVtab logs/sqlite3.c /^ VTable *pVtab; \/* Used when p4type is P4_VTAB *\/$/;" m union:VdbeOp::__anon41 file: pVtab logs/sqlite3.c /^ sqlite3_vtab *pVtab; \/* Pointer to vtab instance *\/$/;" m struct:VTable file: pVtab logs/sqlite3.c /^ sqlite3_vtab *pVtab; \/* Virtual table of this cursor *\/$/;" m struct:sqlite3_vtab_cursor file: pVtab logs/sqlite3.h /^ sqlite3_vtab *pVtab; \/* Virtual table of this cursor *\/$/;" m struct:sqlite3_vtab_cursor @@ -20066,6 +19897,8 @@ pager_write_pagelist access/sqlite3.c /^static int pager_write_pagelist(Pager *p pager_write_pagelist logs/sqlite3.c /^static int pager_write_pagelist(Pager *pPager, PgHdr *pList){$/;" f file: pagesize polipo/chunk.c /^static int pagesize;$/;" v file: pal uibase/uilib/utils/stb_image.c /^ stbi_uc pal[256][4];$/;" m struct:__anon115 file: +parenGroup vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let parenGroup = token.group$/;" v +parenGroup vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let parenGroup = -1$/;" v parent uibase/uilib/core/pugixml.cpp /^ impl::compact_pointer_parent parent;$/;" m struct:pugi::xml_node_struct file: parent uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node xml_node::parent() const$/;" f class:pugi::xml_node parent uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node xpath_node::parent() const$/;" f class:pugi::xpath_node @@ -20076,7 +19909,7 @@ parentProxy polipo/server.c /^AtomPtr parentProxy = NULL;$/;" v parentProxySetter polipo/server.c /^parentProxySetter(ConfigVariablePtr var, void *value)$/;" f file: parentWrite access/sqlite3.c /^static int parentWrite(Rtree *pRtree, sqlite3_int64 iNode, sqlite3_int64 iPar){$/;" f file: parentWrite logs/sqlite3.c /^static int parentWrite(Rtree *pRtree, sqlite3_int64 iNode, sqlite3_int64 iPar){$/;" f file: -parent_context compat/compat_threadpool.h /^ void* parent_context;$/;" m struct:io_thread_s +parent_context crt/crt_threadpool.h /^ void* parent_context;$/;" m struct:io_thread_s parse uibase/uilib/core/pugixml.cpp /^ static binary_op_t parse(xpath_lexer& lexer)$/;" f struct:xpath_parser::binary_op_t parse uibase/uilib/core/pugixml.cpp /^ static char_t* parse(char_t* s)$/;" f struct:strconv_pcdata_impl parse uibase/uilib/core/pugixml.cpp /^ static xml_parse_result parse(char_t* buffer, size_t length, xml_document_struct* xmldoc, xml_node_struct* root, unsigned int optmsk)$/;" f struct:xml_parser @@ -20111,9 +19944,9 @@ parseTimezone logs/sqlite3.c /^static int parseTimezone(const char *zDate, DateT parseUrl polipo/http_parse.c /^parseUrl(const char *url, int len,$/;" f parseYyyyMmDd access/sqlite3.c /^static int parseYyyyMmDd(const char *zDate, DateTime *p){$/;" f file: parseYyyyMmDd logs/sqlite3.c /^static int parseYyyyMmDd(const char *zDate, DateTime *p){$/;" f file: -parse_array base/code/compat_cjson.c /^static cJSON_bool parse_array(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: +parse_array stdcrt/code/compat_cjson.c /^static cJSON_bool parse_array(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: parse_axis_name uibase/uilib/core/pugixml.cpp /^ axis_t parse_axis_name(const xpath_lexer_string& name, bool& specified)$/;" f struct:xpath_parser -parse_buffer base/code/compat_cjson.c /^} parse_buffer;$/;" t typeref:struct:__anon26 file: +parse_buffer stdcrt/code/compat_cjson.c /^} parse_buffer;$/;" t typeref:struct:__anon83 file: parse_cdata uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_cdata = 0x0004;$/;" v parse_comments uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_comments = 0x0002;$/;" v parse_declaration uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_declaration = 0x0100;$/;" v @@ -20134,14 +19967,14 @@ parse_filter_expression uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* parse_ parse_fragment uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_fragment = 0x1000;$/;" v parse_full uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_full = parse_default | parse_pi | parse_comments | parse_declaration | parse_doctype;$/;" v parse_function uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* parse_function(const xpath_lexer_string& name, size_t argc, xpath_ast_node* args[2])$/;" f struct:xpath_parser -parse_hex4 base/code/compat_cjson.c /^static unsigned parse_hex4(const unsigned char * const input)$/;" f file: +parse_hex4 stdcrt/code/compat_cjson.c /^static unsigned parse_hex4(const unsigned char * const input)$/;" f file: parse_int polipo/parse_time.c /^parse_int(const char *buf, int i, int len, int *val_return)$/;" f file: parse_location_path uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* parse_location_path()$/;" f struct:xpath_parser parse_minimal uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_minimal = 0x0000;$/;" v parse_month polipo/parse_time.c /^parse_month(const char *buf, int i, int len, int *val_return)$/;" f file: parse_node_test_type uibase/uilib/core/pugixml.cpp /^ nodetest_t parse_node_test_type(const xpath_lexer_string& name)$/;" f struct:xpath_parser -parse_number base/code/compat_cjson.c /^static cJSON_bool parse_number(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: -parse_object base/code/compat_cjson.c /^static cJSON_bool parse_object(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: +parse_number stdcrt/code/compat_cjson.c /^static cJSON_bool parse_number(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: +parse_object stdcrt/code/compat_cjson.c /^static cJSON_bool parse_object(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: parse_path_or_unary_expression uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* parse_path_or_unary_expression()$/;" f struct:xpath_parser parse_pi uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_pi = 0x0001;$/;" v parse_primary_expression uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* parse_primary_expression()$/;" f struct:xpath_parser @@ -20150,12 +19983,12 @@ parse_relative_location_path uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* p parse_simple uibase/uilib/core/pugixml.cpp /^ static char_t* parse_simple(char_t* s, char_t end_quote)$/;" f struct:strconv_attribute_impl parse_skip_bom uibase/uilib/core/pugixml.cpp /^ static char_t* parse_skip_bom(char_t* s)$/;" f struct:xml_parser parse_step uibase/uilib/core/pugixml.cpp /^ xpath_ast_node* parse_step(xpath_ast_node* set)$/;" f struct:xpath_parser -parse_string base/code/compat_cjson.c /^static cJSON_bool parse_string(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: +parse_string stdcrt/code/compat_cjson.c /^static cJSON_bool parse_string(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: parse_time polipo/parse_time.c /^parse_time(const char *buf, int offset, int len, time_t *time_return)$/;" f parse_tree uibase/uilib/core/pugixml.cpp /^ char_t* parse_tree(char_t* s, xml_node_struct* root, unsigned int optmsk, char_t endch)$/;" f struct:xml_parser parse_trim_pcdata uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_trim_pcdata = 0x0800;$/;" v -parse_url_char http/http/http_parser.cpp /^parse_url_char(enum state s, const char ch)$/;" f file: -parse_value base/code/compat_cjson.c /^static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: +parse_url_char net/http_protocol/http_parser.cpp /^parse_url_char(enum state s, const char ch)$/;" f file: +parse_value stdcrt/code/compat_cjson.c /^static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer)$/;" f file: parse_wconv uibase/uilib/core/pugixml.cpp /^ static char_t* parse_wconv(char_t* s, char_t end_quote)$/;" f struct:strconv_attribute_impl parse_wconv_attribute uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_wconv_attribute = 0x0040;$/;" v parse_wnorm uibase/uilib/core/pugixml.cpp /^ static char_t* parse_wnorm(char_t* s, char_t end_quote)$/;" f struct:strconv_attribute_impl @@ -20164,9 +19997,9 @@ parse_ws_pcdata uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_ws_pcd parse_ws_pcdata_single uibase/uilib/core/pugixml.hpp /^ const unsigned int parse_ws_pcdata_single = 0x0400;$/;" v partition3 uibase/uilib/core/pugixml.cpp /^ template PUGI__FN void partition3(T* begin, T* end, T pivot, const Pred& pred, T** out_eqbeg, T** out_eqend)$/;" f path uibase/uilib/core/pugixml.cpp /^ PUGI__FN string_t xml_node::path(char_t delimiter) const$/;" f class:pugi::xml_node -path_slash compat/compat_common.hpp 58;" d -path_slash compat/compat_common.hpp 60;" d -path_slash compat/compat_common.hpp 62;" d +path_slash crt/crt_common.hpp 58;" d +path_slash crt/crt_common.hpp 60;" d +path_slash crt/crt_common.hpp 62;" d patternCompare access/sqlite3.c /^static int patternCompare($/;" f file: patternCompare logs/sqlite3.c /^static int patternCompare($/;" f file: payloadSize access/sqlite3.c /^ u32 payloadSize; \/* Total number of bytes in the record *\/$/;" m struct:VdbeCursor file: @@ -20242,6 +20075,7 @@ pcacheSortDirtyList logs/sqlite3.c /^static PgHdr *pcacheSortDirtyList(PgHdr *pI pcacheUnpin access/sqlite3.c /^static void pcacheUnpin(PgHdr *p){$/;" f file: pcacheUnpin logs/sqlite3.c /^static void pcacheUnpin(PgHdr *p){$/;" f file: persistent polipo/server.h /^ int persistent;$/;" m struct:_HTTPServer +persistentBehaviour vim_tool/.vim/plugin/winmanager.vim /^ let g:persistentBehaviour = 1$/;" v pf uibase/uilib/control/uirichedit.cpp /^ PARAFORMAT2 pf; \/\/ Default paragraph format$/;" m class:DuiLib::CTxtWinHost file: pfn uibase/uilib/core/uidefine.h /^ DUI_PMSG pfn; $/;" m struct:DuiLib::DUI_MSGMAP_ENTRY pfn uibase/uilib/core/uidefine.h /^ DUI_PMSG pfn; $/;" m union:DuiLib::DuiMessageMapFunctions @@ -20285,12 +20119,13 @@ poll_events polipo/event.h /^ short poll_events;$/;" m struct:_FdEventHandler poll_fds polipo/event.c /^static struct pollfd *poll_fds = NULL;$/;" v typeref:struct:pollfd file: pollfd polipo/mingw.h /^struct pollfd {$/;" s pool include/utilex/threadpool.hpp /^ _threadpool_t pool;$/;" m class:CThreadPool -pop_back compat/compat_argv.h /^ char* (*pop_back)(argv_t*);$/;" m struct:argv_s -pop_back compat/compat_array.h /^ void* (*pop_back)(struct array_s*);$/;" m struct:array_s -pop_front compat/compat_argv.h /^ char* (*pop_front)(argv_t*);$/;" m struct:argv_s -pop_front compat/compat_array.h /^ void* (*pop_front)(struct array_s*);$/;" m struct:array_s +pop_back crt/crt_argv.h /^ char* (*pop_back)(argv_t*);$/;" m struct:argv_s +pop_back crt/crt_array.h /^ void* (*pop_back)(struct array_s*);$/;" m struct:array_s +pop_front crt/crt_argv.h /^ char* (*pop_front)(argv_t*);$/;" m struct:argv_s +pop_front crt/crt_array.h /^ void* (*pop_front)(struct array_s*);$/;" m struct:array_s pop_queue include/utilex/lockqueue.hpp /^ HRESULT pop_queue(_Ty* pNode) {$/;" f class:CLockQueue -port http/http/http_parser.h /^ uint16_t port; \/* Converted UF_PORT string *\/$/;" m struct:http_parser_url +popupItemResultList vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:popupItemResultList = []$/;" v +port net/http_protocol/http_parser.h /^ uint16_t port; \/* Converted UF_PORT string *\/$/;" m struct:http_parser_url port polipo/io.h /^ int port;$/;" m struct:_ConnectRequest port polipo/server.h /^ int port;$/;" m struct:_HTTPServer port polipo/socks.h /^ int port;$/;" m struct:_SocksRequest @@ -20320,7 +20155,7 @@ porter_tokenizer_cursor access/sqlite3.c /^} porter_tokenizer_cursor;$/;" t type porter_tokenizer_cursor logs/sqlite3.c /^typedef struct porter_tokenizer_cursor {$/;" s file: porter_tokenizer_cursor logs/sqlite3.c /^} porter_tokenizer_cursor;$/;" t typeref:struct:porter_tokenizer_cursor file: pos mempool/alloc.h /^ u_char *pos;$/;" m struct:ngx_buf_s -position base/code/compat_cjson.c /^ size_t position;$/;" m struct:__anon25 file: +position stdcrt/code/compat_cjson.c /^ size_t position;$/;" m struct:__anon82 file: position uibase/uilib/core/pugixml.cpp /^ size_t position, size;$/;" m struct:xpath_context file: posixFchown access/sqlite3.c /^static int posixFchown(int fd, uid_t uid, gid_t gid){$/;" f file: posixFchown logs/sqlite3.c /^static int posixFchown(int fd, uid_t uid, gid_t gid){$/;" f file: @@ -20388,16 +20223,16 @@ prev access/sqlite3.c /^ u32 prev; \/* Index in mem3.aPool[] of previ prev access/sqlite3.c /^ Fts3HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:Fts3HashElem file: prev access/sqlite3.c /^ HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:HashElem file: prev access/sqlite3.c /^ int prev; \/* Index of previous free chunk *\/$/;" m struct:Mem5Link file: -prev compat/compat_cjson.h /^ struct cJSON *prev;$/;" m struct:cJSON typeref:struct:cJSON::cJSON -prev compat/compat_list.h /^ struct _list_item *prev;$/;" m struct:_list_item typeref:struct:_list_item::_list_item -prev compat/compat_queue.h /^ _queue_t *prev;$/;" m struct:_queue_s -prev logs/sqlite3.c /^ u32 prev; \/* Index in mem3.aPool[] of previous free chunk *\/$/;" m struct:Mem3Block::__anon56::__anon58 file: +prev crt/crt_cjson.h /^ struct cJSON *prev;$/;" m struct:cJSON typeref:struct:cJSON::cJSON +prev crt/crt_list.h /^ struct _list_item *prev;$/;" m struct:_list_item typeref:struct:_list_item::_list_item +prev crt/crt_queue.h /^ _queue_t *prev;$/;" m struct:_queue_s +prev logs/sqlite3.c /^ u32 prev; \/* Index in mem3.aPool[] of previous free chunk *\/$/;" m struct:Mem3Block::__anon51::__anon53 file: prev logs/sqlite3.c /^ Fts3HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:Fts3HashElem file: prev logs/sqlite3.c /^ HashElem *next, *prev; \/* Next and previous elements in the table *\/$/;" m struct:HashElem file: prev logs/sqlite3.c /^ int prev; \/* Index of previous free chunk *\/$/;" m struct:Mem5Link file: prev uibase/uilib/core/pugixml.cpp /^ xml_memory_page* prev;$/;" m struct:xml_memory_page file: prevSize access/sqlite3.c /^ u32 prevSize; \/* Size of previous chunk in Mem3Block elements *\/$/;" m struct:Mem3Block::__anon11::__anon12 file: -prevSize logs/sqlite3.c /^ u32 prevSize; \/* Size of previous chunk in Mem3Block elements *\/$/;" m struct:Mem3Block::__anon56::__anon57 file: +prevSize logs/sqlite3.c /^ u32 prevSize; \/* Size of previous chunk in Mem3Block elements *\/$/;" m struct:Mem3Block::__anon51::__anon52 file: prev_attribute_c uibase/uilib/core/pugixml.cpp /^ impl::compact_pointer prev_attribute_c;$/;" m struct:pugi::xml_attribute_struct file: prev_sibling_c uibase/uilib/core/pugixml.cpp /^ impl::compact_pointer prev_sibling_c;$/;" m struct:pugi::xml_node_struct file: previous polipo/diskcache.h /^ struct _DiskCacheEntry *previous;$/;" m struct:_DiskCacheEntry typeref:struct:_DiskCacheEntry::_DiskCacheEntry @@ -20408,7 +20243,7 @@ previous polipo/object.h /^ struct _Object *next, *previous;$/;" m struct:_Ob previous_attribute uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_attribute xml_attribute::previous_attribute() const$/;" f class:pugi::xml_attribute previous_sibling uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node xml_node::previous_sibling() const$/;" f class:pugi::xml_node previous_sibling uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_node xml_node::previous_sibling(const char_t* name_) const$/;" f class:pugi::xml_node -print base/code/compat_cjson.c /^static unsigned char *print(const cJSON * const item, cJSON_bool format, const internal_hooks * const hooks)$/;" f file: +print stdcrt/code/compat_cjson.c /^static unsigned char *print(const cJSON * const item, cJSON_bool format, const internal_hooks * const hooks)$/;" f file: print uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xml_node::print(std::basic_ostream >& stream, const char_t* indent, unsigned int flags, xml_encoding encoding, unsigned int depth) const$/;" f class:pugi::xml_node print uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xml_node::print(std::basic_ostream >& stream, const char_t* indent, unsigned int flags, unsigned int depth) const$/;" f class:pugi::xml_node print uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xml_node::print(xml_writer& writer, const char_t* indent, unsigned int flags, xml_encoding encoding, unsigned int depth) const$/;" f class:pugi::xml_node @@ -20417,15 +20252,15 @@ printConfigVariables polipo/config.c /^printConfigVariables(FILE *out, int html) printString polipo/config.c /^printString(FILE *out, char *string, int html)$/;" f file: printVariable polipo/config.c /^printVariable(FILE *out, ConfigVariablePtr var, int html, int parseable)$/;" f file: printVariableForm polipo/config.c /^printVariableForm(FILE *out, ConfigVariablePtr var)$/;" f file: -print_array base/code/compat_cjson.c /^static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: -print_number base/code/compat_cjson.c /^static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: -print_object base/code/compat_cjson.c /^static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: +print_array stdcrt/code/compat_cjson.c /^static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: +print_number stdcrt/code/compat_cjson.c /^static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: +print_object stdcrt/code/compat_cjson.c /^static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: print_pager_state access/sqlite3.c /^static char *print_pager_state(Pager *p){$/;" f file: print_pager_state logs/sqlite3.c /^static char *print_pager_state(Pager *p){$/;" f file: -print_string base/code/compat_cjson.c /^static cJSON_bool print_string(const cJSON * const item, printbuffer * const p)$/;" f file: -print_string_ptr base/code/compat_cjson.c /^static cJSON_bool print_string_ptr(const unsigned char * const input, printbuffer * const output_buffer)$/;" f file: -print_value base/code/compat_cjson.c /^static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: -printbuffer base/code/compat_cjson.c /^} printbuffer;$/;" t typeref:struct:__anon27 file: +print_string stdcrt/code/compat_cjson.c /^static cJSON_bool print_string(const cJSON * const item, printbuffer * const p)$/;" f file: +print_string_ptr stdcrt/code/compat_cjson.c /^static cJSON_bool print_string_ptr(const unsigned char * const input, printbuffer * const output_buffer)$/;" f file: +print_value stdcrt/code/compat_cjson.c /^static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer)$/;" f file: +printbuffer stdcrt/code/compat_cjson.c /^} printbuffer;$/;" t typeref:struct:__anon84 file: printfFunc access/sqlite3.c /^static void printfFunc($/;" f file: printfFunc logs/sqlite3.c /^static void printfFunc($/;" f file: privateObjectCount polipo/object.c /^int privateObjectCount;$/;" v @@ -20443,10 +20278,10 @@ progid container/stdafx.h /^ string progid;$/;" m class:ClsInfo progress_handler access/sqlite3.c /^ void (*progress_handler)(sqlite3*,int,int(*)(void*),void*);$/;" m struct:sqlite3_api_routines file: progress_handler logs/sqlite3.c /^ void (*progress_handler)(sqlite3*,int,int(*)(void*),void*);$/;" m struct:sqlite3_api_routines file: progressive uibase/uilib/utils/stb_image.c /^ int progressive;$/;" m struct:__anon105 file: -protocol net/protocol/ip.h /^ uint8_t protocol;$/;" m struct:iphdr_s -provarv1 compat/compat_var.h /^typedef unsigned short provarv1;$/;" t -provarv2 compat/compat_var.h /^typedef unsigned short provarv2;$/;" t -provarv3 compat/compat_var.h /^typedef unsigned short provarv3;$/;" t +protocol net/protocol/ip.h /^ uint8_t protocol;$/;" m struct:iphdr_s +provarv1 crt/crt_var.h /^typedef unsigned short provarv1;$/;" t +provarv2 crt/crt_var.h /^typedef unsigned short provarv2;$/;" t +provarv3 crt/crt_var.h /^typedef unsigned short provarv3;$/;" t proxyAddress polipo/http.c /^AtomPtr proxyAddress = NULL;$/;" v proxyBreakConchLock access/sqlite3.c /^static int proxyBreakConchLock(unixFile *pFile, uuid_t myHostID){$/;" f file: proxyBreakConchLock logs/sqlite3.c /^static int proxyBreakConchLock(unixFile *pFile, uuid_t myHostID){$/;" f file: @@ -20491,9 +20326,9 @@ proxyUnlock logs/sqlite3.c /^static int proxyUnlock(sqlite3_file *id, int eFileL pserv uibase/uilib/control/uirichedit.cpp /^ ITextServices *pserv; \/\/ pointer to Text Services object$/;" m class:DuiLib::CTxtWinHost file: pseudoTableReg access/sqlite3.c /^ int pseudoTableReg; \/* Register holding pseudotable content. *\/$/;" m struct:VdbeCursor file: pseudoTableReg logs/sqlite3.c /^ int pseudoTableReg; \/* Register holding pseudotable content. *\/$/;" m struct:VdbeCursor file: -psh net/protocol/tcp.h /^ uint16_t psh : 1;$/;" m struct:tcphdr_s +psh net/protocol/tcp.h /^ uint16_t psh:1;$/;" m struct:tcphdr_s pstrerror polipo/util.c /^pstrerror(int e)$/;" f -pszVal compat/compat_var.h /^ char* pszVal;$/;" m union:tag_varaint_t::__anon30 +pszVal crt/crt_var.h /^ char* pszVal;$/;" m union:tag_varaint_t::__anon25 pt extensions/include/ui/iuibase.h /^ POINT pt;$/;" m struct:TagNotifyEvent ptLastMouse uibase/uilib/control/uilist.h /^ POINT ptLastMouse;$/;" m class:DuiLib::CListHeaderItemUI ptLastMouse uibase/uilib/control/uiscrollbar.h /^ POINT ptLastMouse;$/;" m class:DuiLib::CScrollBarUI @@ -20519,7 +20354,7 @@ pthreadMutexTry access/sqlite3.c /^static int pthreadMutexTry(sqlite3_mutex *p){ pthreadMutexTry logs/sqlite3.c /^static int pthreadMutexTry(sqlite3_mutex *p){$/;" f file: ptr 3rd/include/iotcp.hpp /^ io_socket_ptr ptr;$/;" m class:IoTcpBase ptr 3rd/include/ioudp.hpp /^ io_usocket_ptr ptr;$/;" m class:IoUdpBase -ptr compat/compat_iterator.h /^ void *ptr; $/;" m struct:ITER +ptr crt/crt_iterator.h /^ void *ptr; $/;" m struct:ITER ptr include/utilex/safeptr.hpp /^ _Ptr ptr()$/;" f class:SafePtr ptr include/utilex/safeptr.hpp /^ const _Ptr ptr() const$/;" f class:SafePtr ptrmapGet access/sqlite3.c /^static int ptrmapGet(BtShared *pBt, Pgno key, u8 *pEType, Pgno *pPgno){$/;" f file: @@ -20543,15 +20378,15 @@ pugi uibase/uilib/core/pugixml.hpp /^namespace pugi$/;" n push uibase/uilib/core/pugixml.cpp /^ void push(char_t*& s, size_t count)$/;" f struct:gap pushOntoSorter access/sqlite3.c /^static void pushOntoSorter($/;" f file: pushOntoSorter logs/sqlite3.c /^static void pushOntoSorter($/;" f file: -push_back compat/compat_argv.h /^ void (*push_back)(argv_t*, const char*);$/;" m struct:argv_s -push_back compat/compat_array.h /^ int (*push_back)(struct array_s*, void*);$/;" m struct:array_s push_back container/stdafx.h /^ void push_back(const _Ty& _Val)$/;" f class:SortVector +push_back crt/crt_argv.h /^ void (*push_back)(argv_t*, const char*);$/;" m struct:argv_s +push_back crt/crt_array.h /^ int (*push_back)(struct array_s*, void*);$/;" m struct:array_s push_back include/utilex/locklist.hpp /^ HRESULT push_back(T* pNode) {$/;" f class:CLockList push_back uibase/uilib/core/pugixml.cpp /^ void push_back(const xpath_node& node, xpath_allocator* alloc)$/;" f class:xpath_node_set_raw push_back_grow uibase/uilib/core/pugixml.cpp /^ PUGI__FN_NO_INLINE void xpath_node_set_raw::push_back_grow(const xpath_node& node, xpath_allocator* alloc)$/;" f class:xpath_node_set_raw push_back_sort container/stdafx.h /^ void push_back_sort(const _Ty& _Val)$/;" f class:SortVector -push_front compat/compat_argv.h /^ void (*push_front)(argv_t*, const char*);$/;" m struct:argv_s -push_front compat/compat_array.h /^ int (*push_front)(struct array_s*, void*);$/;" m struct:array_s +push_front crt/crt_argv.h /^ void (*push_front)(argv_t*, const char*);$/;" m struct:argv_s +push_front crt/crt_array.h /^ int (*push_front)(struct array_s*, void*);$/;" m struct:array_s push_queue include/utilex/lockqueue.hpp /^ HRESULT push_queue(_Ty pNode) {$/;" f class:CLockQueue put2byte access/sqlite3.c 50397;" d file: put2byte logs/sqlite3.c 50397;" d file: @@ -20563,11 +20398,9 @@ putVarint access/sqlite3.c 12537;" d file: putVarint logs/sqlite3.c 12537;" d file: putVarint32 access/sqlite3.c 12533;" d file: putVarint32 logs/sqlite3.c 12533;" d file: -pwszVal compat/compat_var.h /^ wchar_t* pwszVal;$/;" m union:tag_varaint_t::__anon30 +pwszVal crt/crt_var.h /^ wchar_t* pwszVal;$/;" m union:tag_varaint_t::__anon25 pzErrMsg access/sqlite3.c /^ char **pzErrMsg; \/* Error message stored here *\/$/;" m struct:__anon7 file: -pzErrMsg logs/sqlite3.c /^ char **pzErrMsg; \/* Error message stored here *\/$/;" m struct:__anon52 file: -qnxnto CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c /^char const* qnxnto = "INFO" ":" "qnxnto[]";$/;" v -qnxnto CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp /^char const* qnxnto = "INFO" ":" "qnxnto[]";$/;" v +pzErrMsg logs/sqlite3.c /^ char **pzErrMsg; \/* Error message stored here *\/$/;" m struct:__anon47 file: qr net/protocol/dns.h /^ uint8_t qr:1;$/;" m struct:dnshdr_s qr net/protocol/dns.h /^ uint8_t qr:1; \/\/ DNS_QUERY or DNS_RESPONSE$/;" m struct:dnshdr_s qualified_name uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char_t* qualified_name(const xpath_node& node)$/;" f @@ -20581,8 +20414,8 @@ queryTestTokenizer logs/sqlite3.c /^static int queryTestTokenizer($/;" f file: queryTokenizer access/sqlite3.c /^int queryTokenizer($/;" f file: queryTokenizer logs/sqlite3.c /^int queryTokenizer($/;" f file: questions net/protocol/dns.h /^ dns_rr_t* questions;$/;" m struct:dns_s -queue_middle base/stdlib/compat_queue.c /^_queue_t* queue_middle(_queue_t *queue)$/;" f -queue_sort base/stdlib/compat_queue.c /^void queue_sort(_queue_t *queue,int(*cmp)(const _queue_t *, const _queue_t *))$/;" f +queue_middle stdcrt/stdlib/compat_queue.c /^_queue_t* queue_middle(_queue_t *queue)$/;" f +queue_sort stdcrt/stdlib/compat_queue.c /^void queue_sort(_queue_t *queue,int(*cmp)(const _queue_t *, const _queue_t *))$/;" f quoteFunc access/sqlite3.c /^static void quoteFunc(sqlite3_context *context, int argc, sqlite3_value **argv){$/;" f file: quoteFunc logs/sqlite3.c /^static void quoteFunc(sqlite3_context *context, int argc, sqlite3_value **argv){$/;" f file: r access/sqlite3.c /^ double r; \/* Real value *\/$/;" m struct:Mem file: @@ -20624,7 +20457,7 @@ rc access/sqlite3.c /^ int rc; \/* Return code from sqlite3_exec() * rc logs/sqlite3.c /^ int rc; \/* Backup process error code *\/$/;" m struct:sqlite3_backup file: rc logs/sqlite3.c /^ int rc; \/* Value to return *\/$/;" m struct:Vdbe file: rc logs/sqlite3.c /^ int rc; \/* Return code from execution *\/$/;" m struct:Parse file: -rc logs/sqlite3.c /^ int rc; \/* Result code stored here *\/$/;" m struct:__anon52 file: +rc logs/sqlite3.c /^ int rc; \/* Result code stored here *\/$/;" m struct:__anon47 file: rc logs/sqlite3.c /^ int rc; \/* Return code from sqlite3_exec() *\/$/;" m struct:TabResult file: rcBmpPart uibase/uilib/core/uimanager.h /^ RECT rcBmpPart;$/;" m struct:DuiLib::tagTDrawInfo rcClient uibase/uilib/control/uirichedit.cpp /^ RECT rcClient; \/\/ Client Rect for this control$/;" m class:DuiLib::CTxtWinHost file: @@ -20633,17 +20466,25 @@ rcDestOffset uibase/uilib/core/uimanager.h /^ RECT rcDestOffset;$/;" m struct:Du rcItem uibase/uilib/core/uirender.h /^ RECT rcItem;$/;" m class:DuiLib::CRenderClip rcScale9 uibase/uilib/core/uimanager.h /^ RECT rcScale9;$/;" m struct:DuiLib::tagTDrawInfo rcTextPadding uibase/uilib/control/uilist.h /^ RECT rcTextPadding;$/;" m struct:DuiLib::tagTListInfoUI -rc_assert compat/compat_assert.hpp 7;" d -rc_assert_break compat/compat_assert.hpp 11;" d -rc_assert_continue compat/compat_assert.hpp 10;" d -rc_assert_log compat/compat_assert.hpp 14;" d -rc_assertp compat/compat_assert.hpp 9;" d +rc_assert crt/crt_assert.hpp 7;" d +rc_assert_break crt/crt_assert.hpp 11;" d +rc_assert_continue crt/crt_assert.hpp 10;" d +rc_assert_log crt/crt_assert.hpp 14;" d +rc_assertp crt/crt_assert.hpp 9;" d rc_com_assert include/dlcom/unknown.h 142;" d rclass net/protocol/dns.h /^ uint16_t rclass;$/;" m struct:dns_rr_s rcode net/protocol/dns.h /^ uint8_t rcode:4;$/;" m struct:dnshdr_s rcode net/protocol/dns.h /^ uint8_t rcode:4;$/;" m struct:dnshdr_s rd net/protocol/dns.h /^ uint8_t rd:1;$/;" m struct:dnshdr_s rd net/protocol/dns.h /^ uint8_t rd:1; \/\/ recursion desired$/;" m struct:dnshdr_s +reCComment vim_tool/.vim/autoload/omni/cpp/tokenizer.vim /^let s:reCComment = '\\\/\\*\\|\\*\\\/'$/;" v +reComment vim_tool/.vim/autoload/omni/cpp/tokenizer.vim /^let s:reComment = s:reCComment.'\\|'.s:reCppComment$/;" v +reCppComment vim_tool/.vim/autoload/omni/cpp/tokenizer.vim /^let s:reCppComment = '\\\/\\\/'$/;" v +reCppKeyword vim_tool/.vim/autoload/omni/cpp/tokenizer.vim /^let s:reCppKeyword = '\\C\\<'.join(s:cppKeyword, '\\>\\|\\<').'\\>'$/;" v +reCppOperatorOrPunctuator vim_tool/.vim/autoload/omni/cpp/tokenizer.vim /^let s:reCppOperatorOrPunctuator = escape(join(s:cppOperatorPunctuator, '\\|'), '*.\/^~[]')$/;" v +reIncludeFilePart vim_tool/.vim/autoload/omni/cpp/includes.vim /^let s:reIncludeFilePart = '\\(<\\|"\\)\\(\\f\\|\\s\\)\\+\\(>\\|"\\)'$/;" v +rePreprocIncludeFile vim_tool/.vim/autoload/omni/cpp/includes.vim /^let s:rePreprocIncludeFile = s:rePreprocIncludePart . s:reIncludeFilePart$/;" v +rePreprocIncludePart vim_tool/.vim/autoload/omni/cpp/includes.vim /^let s:rePreprocIncludePart = '\\C#\\s*include\\s*'$/;" v read uibase/uilib/utils/stb_image.c /^ int (*read) (void *user,char *data,int size); \/\/ fill 'data' with 'size' bytes. return number of bytes actually read$/;" m struct:__anon101 file: read uibase/uilib/utils/stb_image.h /^ int (*read) (void *user,char *data,int size); \/\/ fill 'data' with 'size' bytes. return number of bytes actually read$/;" m struct:__anon117 read32bits access/sqlite3.c /^static int read32bits(sqlite3_file *fd, i64 offset, u32 *pRes){$/;" f file: @@ -20678,7 +20519,7 @@ readsTable access/sqlite3.c /^static int readsTable(Parse *p, int iStartAddr, in readsTable logs/sqlite3.c /^static int readsTable(Parse *p, int iStartAddr, int iDb, Table *pTab){$/;" f file: realloc access/sqlite3.c /^ void *(*realloc)(void*,int);$/;" m struct:sqlite3_api_routines file: realloc logs/sqlite3.c /^ void *(*realloc)(void*,int);$/;" m struct:sqlite3_api_routines file: -reallocate base/code/compat_cjson.c /^ void *(*reallocate)(void *pointer, size_t size);$/;" m struct:internal_hooks file: +reallocate stdcrt/code/compat_cjson.c /^ void *(*reallocate)(void *pointer, size_t size);$/;" m struct:internal_hooks file: reallocate uibase/uilib/core/pugixml.cpp /^ void* reallocate(void* ptr, size_t old_size, size_t new_size)$/;" f struct:xpath_allocator reallyWriteoutToDisk polipo/diskcache.c /^reallyWriteoutToDisk(ObjectPtr object, int upto, int max)$/;" f file: really_do_dns polipo/dns.c /^really_do_dns(AtomPtr name, ObjectPtr object)$/;" f file: @@ -20693,7 +20534,7 @@ recordFunc access/sqlite3.c /^static void recordFunc($/;" f file: recordFunc logs/sqlite3.c /^static void recordFunc($/;" f file: recursiveIndexDiskObjects polipo/local.c /^recursiveIndexDiskObjects(FILE *out, char *root)$/;" f file: recvbuf net/protocol/ftp.h /^ char recvbuf[FTP_RECV_BUFSIZE];$/;" m struct:ftp_handle_s -recvmsg base/msg/compat_msghdr.c /^ssize_t recvmsg(int fd, struct msghdr *msg, int flags)$/;" f +recvmsg stdcrt/msg/compat_msghdr.c /^ssize_t recvmsg(int fd, struct msghdr *msg, int flags)$/;" f recycled mempool/alloc.h /^ unsigned recycled : 1;$/;" m struct:ngx_buf_s redirector polipo/forbidden.c /^AtomPtr redirector = NULL;$/;" v redirectorDestroyRequest polipo/forbidden.c /^redirectorDestroyRequest(RedirectRequestPtr request)$/;" f file: @@ -20737,8 +20578,8 @@ reindexTable access/sqlite3.c /^static void reindexTable(Parse *pParse, Table *p reindexTable logs/sqlite3.c /^static void reindexTable(Parse *pParse, Table *pTab, char const *zColl){$/;" f file: reinsertNodeContent access/sqlite3.c /^static int reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode){$/;" f file: reinsertNodeContent logs/sqlite3.c /^static int reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode){$/;" f file: -relative compat/darwinsysvar.hpp /^ int relative;$/;" m struct:__anon31 -relative compat/posixsysvar.hpp /^ int relative;$/;" m struct:__anon33 +relative crt/darwinsysvar.hpp /^ int relative;$/;" m struct:__anon30 +relative crt/posixsysvar.hpp /^ int relative;$/;" m struct:__anon27 relaxTransparency polipo/http.c /^int relaxTransparency = 0;$/;" v release uibase/uilib/core/pugixml.cpp /^ T* release()$/;" f struct:auto_deleter release uibase/uilib/core/pugixml.cpp /^ void release()$/;" f struct:xpath_allocator @@ -20788,10 +20629,12 @@ renameTriggerFunc access/sqlite3.c /^static void renameTriggerFunc($/;" f file: renameTriggerFunc logs/sqlite3.c /^static void renameTriggerFunc($/;" f file: renderLogMsg access/sqlite3.c /^static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){$/;" f file: renderLogMsg logs/sqlite3.c /^static void renderLogMsg(int iErrCode, const char *zFormat, va_list ap){$/;" f file: +renderVersionNumber render/render.h /^FOUNDATION_EXPORT double renderVersionNumber;$/;" v +renderVersionString render/render.h /^FOUNDATION_EXPORT const unsigned char renderVersionString[];$/;" v reopenLog polipo/log.c /^reopenLog()$/;" f replaceFunc access/sqlite3.c /^static void replaceFunc($/;" f file: replaceFunc logs/sqlite3.c /^static void replaceFunc($/;" f file: -replace_item_in_object base/code/compat_cjson.c /^static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive)$/;" f file: +replace_item_in_object stdcrt/code/compat_cjson.c /^static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive)$/;" f file: replyUnpipelineSize polipo/server.c /^int replyUnpipelineSize = 1024 * 1024;$/;" v replyUnpipelineTime polipo/server.c /^int replyUnpipelineTime = 20;$/;" v reqbegin polipo/http.h /^ int reqbegin;$/;" m struct:_HTTPConnection @@ -20809,8 +20652,10 @@ request_last polipo/server.h /^ HTTPRequestPtr request, request_last;$/;" m s requestor polipo/object.h /^ void *requestor;$/;" m struct:_Object res net/protocol/dns.h /^ uint8_t res:1;$/;" m struct:dnshdr_s res net/protocol/dns.h /^ uint8_t res:1; \/\/ reserved$/;" m struct:dnshdr_s -res1 net/protocol/tcp.h /^ uint16_t res1 : 4;$/;" m struct:tcphdr_s -res2 net/protocol/tcp.h /^ uint16_t res2 : 2;$/;" m struct:tcphdr_s +res1 net/protocol/tcp.h /^ uint16_t res1:4;$/;" m struct:tcphdr_s +res2 net/protocol/tcp.h /^ uint16_t res2:2;$/;" m struct:tcphdr_s +resVersionNumber res/res.h /^FOUNDATION_EXPORT double resVersionNumber;$/;" v +resVersionString res/res.h /^FOUNDATION_EXPORT const unsigned char resVersionString[];$/;" v resample uibase/uilib/utils/stb_image.c /^ resample_row_func resample;$/;" m struct:__anon107 file: resample_row_1 uibase/uilib/utils/stb_image.c /^static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)$/;" f file: resample_row_func uibase/uilib/utils/stb_image.c /^typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_uc *in1,$/;" t file: @@ -20819,11 +20664,11 @@ reserve uibase/uilib/core/pugixml.cpp /^ bool reserve()$/;" f struct:xml_alloca reserve uibase/uilib/core/pugixml.cpp /^ bool reserve(size_t extra = 16)$/;" f class:compact_hash_table reserved access/sqlite3.c /^ int reserved;$/;" m struct:afpLockingContext file: reserved logs/sqlite3.c /^ int reserved;$/;" m struct:afpLockingContext file: -reserved net/protocol/icmp.h /^ uint16_t reserved;$/;" m struct:icmphdr_s::__anon72::__anon74 +reserved net/protocol/icmp.h /^ uint16_t reserved;$/;" m struct:icmphdr_s::__anon67::__anon69 reset access/sqlite3.c /^ int (*reset)(sqlite3_stmt*pStmt);$/;" m struct:sqlite3_api_routines file: -reset http/http/http_header.cpp /^void http_header_t::reset() $/;" f class:http_header_t reset logs/CppSQLite3.cpp /^void CppSQLite3Statement::reset()$/;" f class:CppSQLite3Statement reset logs/sqlite3.c /^ int (*reset)(sqlite3_stmt*pStmt);$/;" m struct:sqlite3_api_routines file: +reset net/http_protocol/http_header.cpp /^void http_header_t::reset() $/;" f class:http_header_t reset uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xml_document::reset()$/;" f class:pugi::xml_document reset uibase/uilib/core/pugixml.cpp /^ PUGI__FN void xml_document::reset(const xml_document& proto)$/;" f class:pugi::xml_document resetAccumulator access/sqlite3.c /^static void resetAccumulator(Parse *pParse, AggInfo *pAggInfo){$/;" f file: @@ -20854,6 +20699,7 @@ resolveSelectStep logs/sqlite3.c /^static int resolveSelectStep(Walker *pWalker, restart_interval uibase/uilib/utils/stb_image.c /^ int restart_interval, todo;$/;" m struct:__anon105 file: restoreCursorPosition access/sqlite3.c 51411;" d file: restoreCursorPosition logs/sqlite3.c 51411;" d file: +restoreTempOptions vim_tool/.vim/autoload/acp.vim /^function s:restoreTempOptions(group)$/;" f restrict polipo/polipo.h 76;" d restrict polipo/polipo.h 78;" d restrict polipo/polipo.h 82;" d @@ -20862,6 +20708,17 @@ result uibase/uilib/core/pugixml.cpp /^ xpath_allocator result;$/;" m struct:xp result uibase/uilib/core/pugixml.cpp /^ xpath_allocator* result;$/;" m struct:xpath_stack file: result uibase/uilib/core/pugixml.cpp /^ PUGI__FN const xpath_parse_result& xpath_exception::result() const$/;" f class:pugi::xpath_exception result uibase/uilib/core/pugixml.cpp /^ PUGI__FN const xpath_parse_result& xpath_query::result() const$/;" f class:pugi::xpath_query +result vim_tool/.vim/autoload/omni/cpp/items.vim /^ let result = omni#cpp#utils#CreateTypeInfo(szTypeInfo)$/;" v +result vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let result.kind = 1$/;" v +result vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let result.value = resolvedItem.value$/;" v +result vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let result.kind = 1$/;" v +result vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let result.value = listResolvedNamespace[0]$/;" v +result vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let result = []$/;" v +result vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let result.scope = szClassScope$/;" v +result vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let result = s:GetTagOfSameScope(tagList, szTmpScope)$/;" v +result vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let result = omni#cpp#utils#GetResolvedTagItem(namespaces, omni#cpp#utils#CreateTypeInfo(result))$/;" v +result vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let result = omni#cpp#utils#GetResolvedTagItem(namespaces, omni#cpp#utils#CreateTypeInfo(szTypeInfo))$/;" v +result vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let result = result[:-2]$/;" v result_blob access/sqlite3.c /^ void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*));$/;" m struct:sqlite3_api_routines file: result_blob logs/sqlite3.c /^ void (*result_blob)(sqlite3_context*,const void*,int,void(*)(void*));$/;" m struct:sqlite3_api_routines file: result_double access/sqlite3.c /^ void (*result_double)(sqlite3_context*,double);$/;" m struct:sqlite3_api_routines file: @@ -20917,10 +20774,10 @@ rewinddir polipo/dirent_compat.c /^void rewinddir(DIR *dir)$/;" f rewriteEntry polipo/diskcache.c /^rewriteEntry(ObjectPtr object)$/;" f file: rfc2732 polipo/dns.c /^rfc2732(AtomPtr name)$/;" f rid 3rd/include/ioeventdef.h /^ unsigned long rid;$/;" m struct:io_data_s -right compat/darwinossysdef.h /^ LONG right;$/;" m struct:tagRECT -right compat/darwinossysdef.h /^ LONG right;$/;" m struct:_RECTL -right compat/posixossysdef.h /^ LONG right;$/;" m struct:tagRECT -right compat/posixossysdef.h /^ LONG right;$/;" m struct:_RECTL +right crt/darwinossysdef.h /^ LONG right;$/;" m struct:tagRECT +right crt/darwinossysdef.h /^ LONG right;$/;" m struct:_RECTL +right crt/posixossysdef.h /^ LONG right;$/;" m struct:tagRECT +right crt/posixossysdef.h /^ LONG right;$/;" m struct:_RECTL right uibase/uilib/core/uimanager.h /^ double right;$/;" m struct:DuiLib::tagTPercentInfo rlen 3rd/include/ioeventdef.h /^ unsigned long rlen;$/;" m struct:io_data_s rlen polipo/forbidden.c /^static int rlen, rsize, dlen, dsize;$/;" v file: @@ -20966,9 +20823,9 @@ rowidWrite logs/sqlite3.c /^static int rowidWrite(Rtree *pRtree, sqlite3_int64 i rptr 3rd/include/ioeventdef.h /^ unsigned char* rptr;$/;" m struct:io_data_s rsFlags access/sqlite3.c /^ u8 rsFlags; \/* Various flags *\/$/;" m struct:RowSet file: rsFlags logs/sqlite3.c /^ u8 rsFlags; \/* Various flags *\/$/;" m struct:RowSet file: -rs_assert compat/compat_assert.hpp 6;" d +rs_assert crt/crt_assert.hpp 6;" d rsize polipo/forbidden.c /^static int rlen, rsize, dlen, dsize;$/;" v file: -rst net/protocol/tcp.h /^ uint16_t rst : 1;$/;" m struct:tcphdr_s +rst net/protocol/tcp.h /^ uint16_t rst:1;$/;" m struct:tcphdr_s rtreeBestIndex access/sqlite3.c /^static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){$/;" f file: rtreeBestIndex logs/sqlite3.c /^static int rtreeBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){$/;" f file: rtreeClose access/sqlite3.c /^static int rtreeClose(sqlite3_vtab_cursor *cur){$/;" f file: @@ -21061,134 +20918,134 @@ sWC access/sqlite3.c /^ WhereClause sWC; \/* Decomposition of the WHER sWC logs/sqlite3.c /^ WhereClause sWC; \/* Decomposition of the WHERE clause *\/$/;" m struct:WhereInfo file: s_ShadowArray uibase/uilib/utils/wndshadow.h /^ static DuiLib::CDuiValArray s_ShadowArray;$/;" m class:CWndShadow s_UpdateLayeredWindow uibase/uilib/utils/wndshadow.h /^ static pfnUpdateLayeredWindow s_UpdateLayeredWindow;$/;" m class:CWndShadow -s_body_identity http/http/http_parser.cpp /^ , s_body_identity$/;" e enum:state file: -s_body_identity_eof http/http/http_parser.cpp /^ , s_body_identity_eof$/;" e enum:state file: -s_chunk_data http/http/http_parser.cpp /^ , s_chunk_data$/;" e enum:state file: -s_chunk_data_almost_done http/http/http_parser.cpp /^ , s_chunk_data_almost_done$/;" e enum:state file: -s_chunk_data_done http/http/http_parser.cpp /^ , s_chunk_data_done$/;" e enum:state file: -s_chunk_parameters http/http/http_parser.cpp /^ , s_chunk_parameters$/;" e enum:state file: -s_chunk_size http/http/http_parser.cpp /^ , s_chunk_size$/;" e enum:state file: -s_chunk_size_almost_done http/http/http_parser.cpp /^ , s_chunk_size_almost_done$/;" e enum:state file: -s_chunk_size_start http/http/http_parser.cpp /^ , s_chunk_size_start$/;" e enum:state file: -s_dead http/http/http_parser.cpp /^ { s_dead = 1 \/* important that this is > 0 *\/$/;" e enum:state file: +s_body_identity net/http_protocol/http_parser.cpp /^ , s_body_identity$/;" e enum:state file: +s_body_identity_eof net/http_protocol/http_parser.cpp /^ , s_body_identity_eof$/;" e enum:state file: +s_chunk_data net/http_protocol/http_parser.cpp /^ , s_chunk_data$/;" e enum:state file: +s_chunk_data_almost_done net/http_protocol/http_parser.cpp /^ , s_chunk_data_almost_done$/;" e enum:state file: +s_chunk_data_done net/http_protocol/http_parser.cpp /^ , s_chunk_data_done$/;" e enum:state file: +s_chunk_parameters net/http_protocol/http_parser.cpp /^ , s_chunk_parameters$/;" e enum:state file: +s_chunk_size net/http_protocol/http_parser.cpp /^ , s_chunk_size$/;" e enum:state file: +s_chunk_size_almost_done net/http_protocol/http_parser.cpp /^ , s_chunk_size_almost_done$/;" e enum:state file: +s_chunk_size_start net/http_protocol/http_parser.cpp /^ , s_chunk_size_start$/;" e enum:state file: +s_dead net/http_protocol/http_parser.cpp /^ { s_dead = 1 \/* important that this is > 0 *\/$/;" e enum:state file: s_ftp_download_cb net/protocol/ftp.c /^static int s_ftp_download_cb(ftp_handle_t* hftp, char* buf, int len) {$/;" f file: s_hInstance uibase/uilib/utils/wndshadow.cpp /^HINSTANCE CWndShadow::s_hInstance = (HINSTANCE)INVALID_HANDLE_VALUE;$/;" m class:CWndShadow file: s_hInstance uibase/uilib/utils/wndshadow.h /^ static HINSTANCE s_hInstance;$/;" m class:CWndShadow -s_header_almost_done http/http/http_parser.cpp /^ , s_header_almost_done$/;" e enum:state file: -s_header_field http/http/http_parser.cpp /^ , s_header_field$/;" e enum:state file: -s_header_field_start http/http/http_parser.cpp /^ , s_header_field_start$/;" e enum:state file: -s_header_value http/http/http_parser.cpp /^ , s_header_value$/;" e enum:state file: -s_header_value_discard_lws http/http/http_parser.cpp /^ , s_header_value_discard_lws$/;" e enum:state file: -s_header_value_discard_ws http/http/http_parser.cpp /^ , s_header_value_discard_ws$/;" e enum:state file: -s_header_value_discard_ws_almost_done http/http/http_parser.cpp /^ , s_header_value_discard_ws_almost_done$/;" e enum:state file: -s_header_value_lws http/http/http_parser.cpp /^ , s_header_value_lws$/;" e enum:state file: -s_header_value_start http/http/http_parser.cpp /^ , s_header_value_start$/;" e enum:state file: -s_headers_almost_done http/http/http_parser.cpp /^ , s_headers_almost_done$/;" e enum:state file: -s_headers_done http/http/http_parser.cpp /^ , s_headers_done$/;" e enum:state file: -s_http_host http/http/http_parser.cpp /^ , s_http_host$/;" e enum:http_host_state file: -s_http_host_dead http/http/http_parser.cpp /^ s_http_host_dead = 1$/;" e enum:http_host_state file: -s_http_host_port http/http/http_parser.cpp /^ , s_http_host_port$/;" e enum:http_host_state file: -s_http_host_port_start http/http/http_parser.cpp /^ , s_http_host_port_start$/;" e enum:http_host_state file: -s_http_host_start http/http/http_parser.cpp /^ , s_http_host_start$/;" e enum:http_host_state file: -s_http_host_v6 http/http/http_parser.cpp /^ , s_http_host_v6$/;" e enum:http_host_state file: -s_http_host_v6_end http/http/http_parser.cpp /^ , s_http_host_v6_end$/;" e enum:http_host_state file: -s_http_host_v6_start http/http/http_parser.cpp /^ , s_http_host_v6_start$/;" e enum:http_host_state file: -s_http_host_v6_zone http/http/http_parser.cpp /^ , s_http_host_v6_zone$/;" e enum:http_host_state file: -s_http_host_v6_zone_start http/http/http_parser.cpp /^ , s_http_host_v6_zone_start$/;" e enum:http_host_state file: -s_http_userinfo http/http/http_parser.cpp /^ , s_http_userinfo$/;" e enum:http_host_state file: -s_http_userinfo_start http/http/http_parser.cpp /^ , s_http_userinfo_start$/;" e enum:http_host_state file: +s_header_almost_done net/http_protocol/http_parser.cpp /^ , s_header_almost_done$/;" e enum:state file: +s_header_field net/http_protocol/http_parser.cpp /^ , s_header_field$/;" e enum:state file: +s_header_field_start net/http_protocol/http_parser.cpp /^ , s_header_field_start$/;" e enum:state file: +s_header_value net/http_protocol/http_parser.cpp /^ , s_header_value$/;" e enum:state file: +s_header_value_discard_lws net/http_protocol/http_parser.cpp /^ , s_header_value_discard_lws$/;" e enum:state file: +s_header_value_discard_ws net/http_protocol/http_parser.cpp /^ , s_header_value_discard_ws$/;" e enum:state file: +s_header_value_discard_ws_almost_done net/http_protocol/http_parser.cpp /^ , s_header_value_discard_ws_almost_done$/;" e enum:state file: +s_header_value_lws net/http_protocol/http_parser.cpp /^ , s_header_value_lws$/;" e enum:state file: +s_header_value_start net/http_protocol/http_parser.cpp /^ , s_header_value_start$/;" e enum:state file: +s_headers_almost_done net/http_protocol/http_parser.cpp /^ , s_headers_almost_done$/;" e enum:state file: +s_headers_done net/http_protocol/http_parser.cpp /^ , s_headers_done$/;" e enum:state file: +s_http_host net/http_protocol/http_parser.cpp /^ , s_http_host$/;" e enum:http_host_state file: +s_http_host_dead net/http_protocol/http_parser.cpp /^ s_http_host_dead = 1$/;" e enum:http_host_state file: +s_http_host_port net/http_protocol/http_parser.cpp /^ , s_http_host_port$/;" e enum:http_host_state file: +s_http_host_port_start net/http_protocol/http_parser.cpp /^ , s_http_host_port_start$/;" e enum:http_host_state file: +s_http_host_start net/http_protocol/http_parser.cpp /^ , s_http_host_start$/;" e enum:http_host_state file: +s_http_host_v6 net/http_protocol/http_parser.cpp /^ , s_http_host_v6$/;" e enum:http_host_state file: +s_http_host_v6_end net/http_protocol/http_parser.cpp /^ , s_http_host_v6_end$/;" e enum:http_host_state file: +s_http_host_v6_start net/http_protocol/http_parser.cpp /^ , s_http_host_v6_start$/;" e enum:http_host_state file: +s_http_host_v6_zone net/http_protocol/http_parser.cpp /^ , s_http_host_v6_zone$/;" e enum:http_host_state file: +s_http_host_v6_zone_start net/http_protocol/http_parser.cpp /^ , s_http_host_v6_zone_start$/;" e enum:http_host_state file: +s_http_userinfo net/http_protocol/http_parser.cpp /^ , s_http_userinfo$/;" e enum:http_host_state file: +s_http_userinfo_start net/http_protocol/http_parser.cpp /^ , s_http_userinfo_start$/;" e enum:http_host_state file: s_maxage polipo/object.h /^ int s_maxage;$/;" m struct:_CacheControl s_maxage polipo/object.h /^ int s_maxage;$/;" m struct:_Object -s_memchr base/stdlib/compat_memory.c /^void* s_memchr(const void *s, int c, size_t n)$/;" f -s_memcpy base/stdlib/compat_memory.c /^void* s_memcpy(void * dest, const void * src, size_t count)$/;" f -s_memicmp base/stdlib/compat_memory.c /^int s_memicmp(const void * first, const void * last, size_t count)$/;" f -s_memset base/stdlib/compat_memory.c /^void* s_memset(void *dst, int val, size_t count)$/;" f -s_message_done http/http/http_parser.cpp /^ , s_message_done$/;" e enum:state file: -s_req_fragment http/http/http_parser.cpp /^ , s_req_fragment$/;" e enum:state file: -s_req_fragment_start http/http/http_parser.cpp /^ , s_req_fragment_start$/;" e enum:state file: -s_req_http_H http/http/http_parser.cpp /^ , s_req_http_H$/;" e enum:state file: -s_req_http_HT http/http/http_parser.cpp /^ , s_req_http_HT$/;" e enum:state file: -s_req_http_HTT http/http/http_parser.cpp /^ , s_req_http_HTT$/;" e enum:state file: -s_req_http_HTTP http/http/http_parser.cpp /^ , s_req_http_HTTP$/;" e enum:state file: -s_req_http_dot http/http/http_parser.cpp /^ , s_req_http_dot$/;" e enum:state file: -s_req_http_end http/http/http_parser.cpp /^ , s_req_http_end$/;" e enum:state file: -s_req_http_major http/http/http_parser.cpp /^ , s_req_http_major$/;" e enum:state file: -s_req_http_minor http/http/http_parser.cpp /^ , s_req_http_minor$/;" e enum:state file: -s_req_http_start http/http/http_parser.cpp /^ , s_req_http_start$/;" e enum:state file: -s_req_line_almost_done http/http/http_parser.cpp /^ , s_req_line_almost_done$/;" e enum:state file: -s_req_method http/http/http_parser.cpp /^ , s_req_method$/;" e enum:state file: -s_req_path http/http/http_parser.cpp /^ , s_req_path$/;" e enum:state file: -s_req_query_string http/http/http_parser.cpp /^ , s_req_query_string$/;" e enum:state file: -s_req_query_string_start http/http/http_parser.cpp /^ , s_req_query_string_start$/;" e enum:state file: -s_req_schema http/http/http_parser.cpp /^ , s_req_schema$/;" e enum:state file: -s_req_schema_slash http/http/http_parser.cpp /^ , s_req_schema_slash$/;" e enum:state file: -s_req_schema_slash_slash http/http/http_parser.cpp /^ , s_req_schema_slash_slash$/;" e enum:state file: -s_req_server http/http/http_parser.cpp /^ , s_req_server$/;" e enum:state file: -s_req_server_start http/http/http_parser.cpp /^ , s_req_server_start$/;" e enum:state file: -s_req_server_with_at http/http/http_parser.cpp /^ , s_req_server_with_at$/;" e enum:state file: -s_req_spaces_before_url http/http/http_parser.cpp /^ , s_req_spaces_before_url$/;" e enum:state file: -s_res_H http/http/http_parser.cpp /^ , s_res_H$/;" e enum:state file: -s_res_HT http/http/http_parser.cpp /^ , s_res_HT$/;" e enum:state file: -s_res_HTT http/http/http_parser.cpp /^ , s_res_HTT$/;" e enum:state file: -s_res_HTTP http/http/http_parser.cpp /^ , s_res_HTTP$/;" e enum:state file: -s_res_first_status_code http/http/http_parser.cpp /^ , s_res_first_status_code$/;" e enum:state file: -s_res_http_dot http/http/http_parser.cpp /^ , s_res_http_dot$/;" e enum:state file: -s_res_http_end http/http/http_parser.cpp /^ , s_res_http_end$/;" e enum:state file: -s_res_http_major http/http/http_parser.cpp /^ , s_res_http_major$/;" e enum:state file: -s_res_http_minor http/http/http_parser.cpp /^ , s_res_http_minor$/;" e enum:state file: -s_res_line_almost_done http/http/http_parser.cpp /^ , s_res_line_almost_done$/;" e enum:state file: -s_res_or_resp_H http/http/http_parser.cpp /^ , s_res_or_resp_H$/;" e enum:state file: -s_res_status http/http/http_parser.cpp /^ , s_res_status$/;" e enum:state file: -s_res_status_code http/http/http_parser.cpp /^ , s_res_status_code$/;" e enum:state file: -s_res_status_start http/http/http_parser.cpp /^ , s_res_status_start$/;" e enum:state file: -s_start_req http/http/http_parser.cpp /^ , s_start_req$/;" e enum:state file: -s_start_req_or_res http/http/http_parser.cpp /^ , s_start_req_or_res$/;" e enum:state file: -s_start_res http/http/http_parser.cpp /^ , s_start_res$/;" e enum:state file: -s_strcasecmp base/stdlib/compat_str.c /^int s_strcasecmp($/;" f -s_strcat base/stdlib/compat_str.c /^char* s_strcat($/;" f -s_strchr base/stdlib/compat_str.c /^char* s_strchr($/;" f -s_strcmp base/stdlib/compat_str.c /^int s_strcmp($/;" f -s_strcpy base/stdlib/compat_str.c /^char* s_strcpy($/;" f -s_strcspn base/stdlib/compat_str.c /^size_t s_strcspn($/;" f -s_stricmp base/stdlib/compat_str.c /^int s_stricmp($/;" f -s_strlcatf base/stdlib/compat_str.c /^size_t s_strlcatf(char *dest, $/;" f -s_strlen base/stdlib/compat_str.c /^size_t s_strlen($/;" f -s_strncat base/stdlib/compat_str.c /^char* s_strncat($/;" f -s_strncmp base/stdlib/compat_str.c /^int s_strncmp($/;" f -s_strncpy base/stdlib/compat_str.c /^char* s_strncpy($/;" f -s_strnlen base/stdlib/compat_str.c /^size_t s_strnlen($/;" f -s_strpbrk base/stdlib/compat_str.c /^char* s_strpbrk($/;" f -s_strrchr base/stdlib/compat_str.c /^char* s_strrchr($/;" f -s_strrev base/stdlib/compat_str.c /^char* s_strrev($/;" f -s_strset base/stdlib/compat_str.c /^char* s_strset($/;" f -s_strspn base/stdlib/compat_str.c /^size_t s_strspn($/;" f -s_strstr base/stdlib/compat_str.c /^char* s_strstr($/;" f -s_strtok base/stdlib/compat_str.c /^char* s_strtok($/;" f -s_wmemchr base/stdlib/compat_memory.c /^wchar_t* s_wmemchr(const wchar_t *s, wchar_t c, size_t n)$/;" f -s_wmemcmp base/stdlib/compat_memory.c /^int s_wmemcmp(const wchar_t *first, const wchar_t *last, size_t count)$/;" f -s_wmemcpy base/stdlib/compat_memory.c /^wchar_t* s_wmemcpy(wchar_t *dest, const wchar_t *src, size_t count)$/;" f -s_wmemset base/stdlib/compat_memory.c /^wchar_t* s_wmemset(wchar_t *dst, wchar_t c, size_t count)$/;" f -s_wstrcasecmp base/stdlib/compat_wstr.c /^int s_wstrcasecmp($/;" f -s_wstrcat base/stdlib/compat_wstr.c /^wchar_t* s_wstrcat($/;" f -s_wstrchr base/stdlib/compat_wstr.c /^wchar_t* s_wstrchr($/;" f -s_wstrcmp base/stdlib/compat_wstr.c /^int s_wstrcmp($/;" f -s_wstrcpy base/stdlib/compat_wstr.c /^wchar_t* s_wstrcpy($/;" f -s_wstrcspn base/stdlib/compat_wstr.c /^size_t s_wstrcspn($/;" f -s_wstricmp base/stdlib/compat_wstr.c /^int s_wstricmp($/;" f -s_wstrlen base/stdlib/compat_wstr.c /^size_t s_wstrlen($/;" f -s_wstrncat base/stdlib/compat_wstr.c /^wchar_t* s_wstrncat($/;" f -s_wstrncmp base/stdlib/compat_wstr.c /^int s_wstrncmp($/;" f -s_wstrncpy base/stdlib/compat_wstr.c /^wchar_t* s_wstrncpy($/;" f -s_wstrnlen base/stdlib/compat_wstr.c /^size_t s_wstrnlen ($/;" f -s_wstrpbrk base/stdlib/compat_wstr.c /^wchar_t* s_wstrpbrk($/;" f -s_wstrrchr base/stdlib/compat_wstr.c /^wchar_t* s_wstrrchr($/;" f -s_wstrrev base/stdlib/compat_wstr.c /^wchar_t* s_wstrrev($/;" f -s_wstrset base/stdlib/compat_wstr.c /^wchar_t* s_wstrset($/;" f -s_wstrspn base/stdlib/compat_wstr.c /^size_t s_wstrspn($/;" f -s_wstrstr base/stdlib/compat_wstr.c /^wchar_t* s_wstrstr($/;" f -s_wstrtok base/stdlib/compat_wstr.c /^wchar_t* s_wstrtok($/;" f -sa polipo/dns.c /^ struct sockaddr sa;$/;" m union:__anon79 typeref:struct:__anon79::sockaddr file: -saddr net/protocol/ip.h /^ uint32_t saddr; \/\/ srcaddr$/;" m struct:iphdr_s +s_memchr stdcrt/stdlib/compat_memory.c /^void* s_memchr(const void *s, int c, size_t n)$/;" f +s_memcpy stdcrt/stdlib/compat_memory.c /^void* s_memcpy(void * dest, const void * src, size_t count)$/;" f +s_memicmp stdcrt/stdlib/compat_memory.c /^int s_memicmp(const void * first, const void * last, size_t count)$/;" f +s_memset stdcrt/stdlib/compat_memory.c /^void* s_memset(void *dst, int val, size_t count)$/;" f +s_message_done net/http_protocol/http_parser.cpp /^ , s_message_done$/;" e enum:state file: +s_req_fragment net/http_protocol/http_parser.cpp /^ , s_req_fragment$/;" e enum:state file: +s_req_fragment_start net/http_protocol/http_parser.cpp /^ , s_req_fragment_start$/;" e enum:state file: +s_req_http_H net/http_protocol/http_parser.cpp /^ , s_req_http_H$/;" e enum:state file: +s_req_http_HT net/http_protocol/http_parser.cpp /^ , s_req_http_HT$/;" e enum:state file: +s_req_http_HTT net/http_protocol/http_parser.cpp /^ , s_req_http_HTT$/;" e enum:state file: +s_req_http_HTTP net/http_protocol/http_parser.cpp /^ , s_req_http_HTTP$/;" e enum:state file: +s_req_http_dot net/http_protocol/http_parser.cpp /^ , s_req_http_dot$/;" e enum:state file: +s_req_http_end net/http_protocol/http_parser.cpp /^ , s_req_http_end$/;" e enum:state file: +s_req_http_major net/http_protocol/http_parser.cpp /^ , s_req_http_major$/;" e enum:state file: +s_req_http_minor net/http_protocol/http_parser.cpp /^ , s_req_http_minor$/;" e enum:state file: +s_req_http_start net/http_protocol/http_parser.cpp /^ , s_req_http_start$/;" e enum:state file: +s_req_line_almost_done net/http_protocol/http_parser.cpp /^ , s_req_line_almost_done$/;" e enum:state file: +s_req_method net/http_protocol/http_parser.cpp /^ , s_req_method$/;" e enum:state file: +s_req_path net/http_protocol/http_parser.cpp /^ , s_req_path$/;" e enum:state file: +s_req_query_string net/http_protocol/http_parser.cpp /^ , s_req_query_string$/;" e enum:state file: +s_req_query_string_start net/http_protocol/http_parser.cpp /^ , s_req_query_string_start$/;" e enum:state file: +s_req_schema net/http_protocol/http_parser.cpp /^ , s_req_schema$/;" e enum:state file: +s_req_schema_slash net/http_protocol/http_parser.cpp /^ , s_req_schema_slash$/;" e enum:state file: +s_req_schema_slash_slash net/http_protocol/http_parser.cpp /^ , s_req_schema_slash_slash$/;" e enum:state file: +s_req_server net/http_protocol/http_parser.cpp /^ , s_req_server$/;" e enum:state file: +s_req_server_start net/http_protocol/http_parser.cpp /^ , s_req_server_start$/;" e enum:state file: +s_req_server_with_at net/http_protocol/http_parser.cpp /^ , s_req_server_with_at$/;" e enum:state file: +s_req_spaces_before_url net/http_protocol/http_parser.cpp /^ , s_req_spaces_before_url$/;" e enum:state file: +s_res_H net/http_protocol/http_parser.cpp /^ , s_res_H$/;" e enum:state file: +s_res_HT net/http_protocol/http_parser.cpp /^ , s_res_HT$/;" e enum:state file: +s_res_HTT net/http_protocol/http_parser.cpp /^ , s_res_HTT$/;" e enum:state file: +s_res_HTTP net/http_protocol/http_parser.cpp /^ , s_res_HTTP$/;" e enum:state file: +s_res_first_status_code net/http_protocol/http_parser.cpp /^ , s_res_first_status_code$/;" e enum:state file: +s_res_http_dot net/http_protocol/http_parser.cpp /^ , s_res_http_dot$/;" e enum:state file: +s_res_http_end net/http_protocol/http_parser.cpp /^ , s_res_http_end$/;" e enum:state file: +s_res_http_major net/http_protocol/http_parser.cpp /^ , s_res_http_major$/;" e enum:state file: +s_res_http_minor net/http_protocol/http_parser.cpp /^ , s_res_http_minor$/;" e enum:state file: +s_res_line_almost_done net/http_protocol/http_parser.cpp /^ , s_res_line_almost_done$/;" e enum:state file: +s_res_or_resp_H net/http_protocol/http_parser.cpp /^ , s_res_or_resp_H$/;" e enum:state file: +s_res_status net/http_protocol/http_parser.cpp /^ , s_res_status$/;" e enum:state file: +s_res_status_code net/http_protocol/http_parser.cpp /^ , s_res_status_code$/;" e enum:state file: +s_res_status_start net/http_protocol/http_parser.cpp /^ , s_res_status_start$/;" e enum:state file: +s_start_req net/http_protocol/http_parser.cpp /^ , s_start_req$/;" e enum:state file: +s_start_req_or_res net/http_protocol/http_parser.cpp /^ , s_start_req_or_res$/;" e enum:state file: +s_start_res net/http_protocol/http_parser.cpp /^ , s_start_res$/;" e enum:state file: +s_strcasecmp stdcrt/stdlib/compat_str.c /^int s_strcasecmp($/;" f +s_strcat stdcrt/stdlib/compat_str.c /^char* s_strcat($/;" f +s_strchr stdcrt/stdlib/compat_str.c /^char* s_strchr($/;" f +s_strcmp stdcrt/stdlib/compat_str.c /^int s_strcmp($/;" f +s_strcpy stdcrt/stdlib/compat_str.c /^char* s_strcpy($/;" f +s_strcspn stdcrt/stdlib/compat_str.c /^size_t s_strcspn($/;" f +s_stricmp stdcrt/stdlib/compat_str.c /^int s_stricmp($/;" f +s_strlcatf stdcrt/stdlib/compat_str.c /^size_t s_strlcatf(char *dest, $/;" f +s_strlen stdcrt/stdlib/compat_str.c /^size_t s_strlen($/;" f +s_strncat stdcrt/stdlib/compat_str.c /^char* s_strncat($/;" f +s_strncmp stdcrt/stdlib/compat_str.c /^int s_strncmp($/;" f +s_strncpy stdcrt/stdlib/compat_str.c /^char* s_strncpy($/;" f +s_strnlen stdcrt/stdlib/compat_str.c /^size_t s_strnlen($/;" f +s_strpbrk stdcrt/stdlib/compat_str.c /^char* s_strpbrk($/;" f +s_strrchr stdcrt/stdlib/compat_str.c /^char* s_strrchr($/;" f +s_strrev stdcrt/stdlib/compat_str.c /^char* s_strrev($/;" f +s_strset stdcrt/stdlib/compat_str.c /^char* s_strset($/;" f +s_strspn stdcrt/stdlib/compat_str.c /^size_t s_strspn($/;" f +s_strstr stdcrt/stdlib/compat_str.c /^char* s_strstr($/;" f +s_strtok stdcrt/stdlib/compat_str.c /^char* s_strtok($/;" f +s_wmemchr stdcrt/stdlib/compat_memory.c /^wchar_t* s_wmemchr(const wchar_t *s, wchar_t c, size_t n)$/;" f +s_wmemcmp stdcrt/stdlib/compat_memory.c /^int s_wmemcmp(const wchar_t *first, const wchar_t *last, size_t count)$/;" f +s_wmemcpy stdcrt/stdlib/compat_memory.c /^wchar_t* s_wmemcpy(wchar_t *dest, const wchar_t *src, size_t count)$/;" f +s_wmemset stdcrt/stdlib/compat_memory.c /^wchar_t* s_wmemset(wchar_t *dst, wchar_t c, size_t count)$/;" f +s_wstrcasecmp stdcrt/stdlib/compat_wstr.c /^int s_wstrcasecmp($/;" f +s_wstrcat stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrcat($/;" f +s_wstrchr stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrchr($/;" f +s_wstrcmp stdcrt/stdlib/compat_wstr.c /^int s_wstrcmp($/;" f +s_wstrcpy stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrcpy($/;" f +s_wstrcspn stdcrt/stdlib/compat_wstr.c /^size_t s_wstrcspn($/;" f +s_wstricmp stdcrt/stdlib/compat_wstr.c /^int s_wstricmp($/;" f +s_wstrlen stdcrt/stdlib/compat_wstr.c /^size_t s_wstrlen($/;" f +s_wstrncat stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrncat($/;" f +s_wstrncmp stdcrt/stdlib/compat_wstr.c /^int s_wstrncmp($/;" f +s_wstrncpy stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrncpy($/;" f +s_wstrnlen stdcrt/stdlib/compat_wstr.c /^size_t s_wstrnlen ($/;" f +s_wstrpbrk stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrpbrk($/;" f +s_wstrrchr stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrrchr($/;" f +s_wstrrev stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrrev($/;" f +s_wstrset stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrset($/;" f +s_wstrspn stdcrt/stdlib/compat_wstr.c /^size_t s_wstrspn($/;" f +s_wstrstr stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrstr($/;" f +s_wstrtok stdcrt/stdlib/compat_wstr.c /^wchar_t* s_wstrtok($/;" f +sa polipo/dns.c /^ struct sockaddr sa;$/;" m union:__anon75 typeref:struct:__anon75::sockaddr file: +saddr net/protocol/ip.h /^ uint32_t saddr; \/\/ srcaddr$/;" m struct:iphdr_s safe 3rd/include/iotcp.hpp /^ io_strand_ptr safe;$/;" m class:IoTcpBase safe 3rd/include/iotcpaccept.hpp /^ io_strand_ptr safe;$/;" m class:IoTcpAccpet safe 3rd/include/iotimer.hpp /^ io_strand_ptr safe;$/;" m class:IoTimer @@ -21218,9 +21075,12 @@ saveAllCursors access/sqlite3.c /^static int saveAllCursors(BtShared *pBt, Pgno saveAllCursors logs/sqlite3.c /^static int saveAllCursors(BtShared *pBt, Pgno iRoot, BtCursor *pExcept){$/;" f file: saveCursorPosition access/sqlite3.c /^static int saveCursorPosition(BtCursor *pCur){$/;" f file: saveCursorPosition logs/sqlite3.c /^static int saveCursorPosition(BtCursor *pCur){$/;" f file: +saveTagsDisplay vim_tool/.vim/plugin/wintagexplorer.vim /^ let g:saveTagsDisplay = 1$/;" v save_file uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_document::save_file(const char* path_, const char_t* indent, unsigned int flags, xml_encoding encoding) const$/;" f class:pugi::xml_document save_file uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_document::save_file(const wchar_t* path_, const char_t* indent, unsigned int flags, xml_encoding encoding) const$/;" f class:pugi::xml_document save_file_impl uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool save_file_impl(const xml_document& doc, FILE* file, const char_t* indent, unsigned int flags, xml_encoding encoding)$/;" f +savedCursorCol vim_tool/.vim/plugin/wintagexplorer.vim /^let s:savedCursorCol = 1$/;" v +savedCursorRow vim_tool/.vim/plugin/wintagexplorer.vim /^let s:savedCursorRow = 1$/;" v savedNQueryLoop access/sqlite3.c /^ int savedNQueryLoop; \/* pParse->nQueryLoop outside the WHERE loop *\/$/;" m struct:WhereInfo file: savedNQueryLoop logs/sqlite3.c /^ int savedNQueryLoop; \/* pParse->nQueryLoop outside the WHERE loop *\/$/;" m struct:WhereInfo file: saved_cnt access/sqlite3.c /^static int saved_cnt;$/;" v file: @@ -21235,7 +21095,7 @@ schemaIsValid access/sqlite3.c /^static void schemaIsValid(Parse *pParse){$/;" f schemaIsValid logs/sqlite3.c /^static void schemaIsValid(Parse *pParse){$/;" f file: schema_cookie access/sqlite3.c /^ int schema_cookie; \/* Database schema version number for this file *\/$/;" m struct:Schema file: schema_cookie logs/sqlite3.c /^ int schema_cookie; \/* Database schema version number for this file *\/$/;" m struct:Schema file: -scratch uibase/uilib/core/pugixml.cpp /^ } scratch;$/;" m class:xml_buffered_writer typeref:union:xml_buffered_writer::__anon94 file: +scratch uibase/uilib/core/pugixml.cpp /^ } scratch;$/;" m class:xml_buffered_writer typeref:union:xml_buffered_writer::__anon97 file: scratchAllocOut access/sqlite3.c /^static int scratchAllocOut = 0;$/;" v file: scratchAllocOut logs/sqlite3.c /^static int scratchAllocOut = 0;$/;" v file: scrub polipo/log.c /^scrub(const char *message)$/;" f @@ -21281,8 +21141,8 @@ select_nodes uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_node_set xml_node:: select_nodes uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_node_set xml_node::select_nodes(const xpath_query& query) const$/;" f class:pugi::xml_node select_single_node uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_node xml_node::select_single_node(const char_t* query, xpath_variable_set* variables) const$/;" f class:pugi::xml_node select_single_node uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_node xml_node::select_single_node(const xpath_query& query) const$/;" f class:pugi::xml_node -self base/thread/compat_thread.c /^ _thread_t self;$/;" m struct:thread_ctx file: -sem compat/compat_threadpool.h /^ _sem_t sem;$/;" m struct:_threadpool_s +self stdcrt/thread/compat_thread.c /^ _thread_t self;$/;" m struct:thread_ctx file: +sem crt/crt_threadpool.h /^ _sem_t sem;$/;" m struct:_threadpool_s semCheckReservedLock access/sqlite3.c /^static int semCheckReservedLock(sqlite3_file *id, int *pResOut) {$/;" f file: semCheckReservedLock logs/sqlite3.c /^static int semCheckReservedLock(sqlite3_file *id, int *pResOut) {$/;" f file: semClose access/sqlite3.c /^static int semClose(sqlite3_file *id) {$/;" f file: @@ -21293,12 +21153,13 @@ semUnlock access/sqlite3.c /^static int semUnlock(sqlite3_file *id, int eFileLoc semUnlock logs/sqlite3.c /^static int semUnlock(sqlite3_file *id, int eFileLock) {$/;" f file: sem_thread_proc include/utilex/semthread.hpp /^ static void sem_thread_proc(void* pthis) {$/;" f class:CSemThread sendQuery polipo/dns.c /^sendQuery(DnsQueryPtr query)$/;" f file: -sendmail net/protocol/smtp.c /^int sendmail(const char* smtp_server,$/;" f -sendmsg base/msg/compat_msghdr.c /^ssize_t sendmsg(int fd, const struct msghdr *msg, int flags)$/;" f -seq net/protocol/tcp.h /^ uint32_t seq; \/\/ sequence$/;" m struct:tcphdr_s +sendmail net/protocol/smtp.c /^int sendmail(const char* smtp_server, const char* username, const char* password, mail_t* mail) {$/;" f +sendmsg stdcrt/msg/compat_msghdr.c /^ssize_t sendmsg(int fd, const struct msghdr *msg, int flags)$/;" f +separator vim_tool/.vim/plugin/winfileexplorer.vim /^let s:separator='"---------------------------------------------------'$/;" v +seq net/protocol/tcp.h /^ uint32_t seq; \/\/ sequence$/;" m struct:tcphdr_s seqCount access/sqlite3.c /^ i64 seqCount; \/* Sequence counter *\/$/;" m struct:VdbeCursor file: seqCount logs/sqlite3.c /^ i64 seqCount; \/* Sequence counter *\/$/;" m struct:VdbeCursor file: -sequence net/protocol/icmp.h /^ uint16_t sequence;$/;" m struct:icmphdr_s::__anon72::__anon73 +sequence net/protocol/icmp.h /^ uint16_t sequence;$/;" m struct:icmphdr_s::__anon67::__anon68 server polipo/http.h /^ struct _HTTPServer *server;$/;" m struct:_HTTPConnection typeref:struct:_HTTPConnection::_HTTPServer serverExpireTime polipo/server.c /^int serverExpireTime = 24 * 60 * 60;$/;" v serverIdleTimeout polipo/http.c /^int serverIdleTimeout = 45;$/;" v @@ -21343,6 +21204,7 @@ setChildPtrmaps access/sqlite3.c /^static int setChildPtrmaps(MemPage *pPage){$/ setChildPtrmaps access/sqlite3.c 53907;" d file: setChildPtrmaps logs/sqlite3.c /^static int setChildPtrmaps(MemPage *pPage){$/;" f file: setChildPtrmaps logs/sqlite3.c 53907;" d file: +setCompletefunc vim_tool/.vim/autoload/acp.vim /^function s:setCompletefunc()$/;" f setDateTimeToCurrent access/sqlite3.c /^static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){$/;" f file: setDateTimeToCurrent logs/sqlite3.c /^static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){$/;" f file: setDestPgsz access/sqlite3.c /^static int setDestPgsz(sqlite3_backup *p){$/;" f file: @@ -21373,47 +21235,48 @@ setSharedCacheTableLock logs/sqlite3.c /^static int setSharedCacheTableLock(Btre setSharedCacheTableLock logs/sqlite3.c 50781;" d file: setStrAccumError access/sqlite3.c /^static void setStrAccumError(StrAccum *p, u8 eError){$/;" f file: setStrAccumError logs/sqlite3.c /^static void setStrAccumError(StrAccum *p, u8 eError){$/;" f file: +setTempOption vim_tool/.vim/autoload/acp.vim /^function s:setTempOption(group, name, value)$/;" f setV6only polipo/io.c /^setV6only(int fd, int v6only)$/;" f -set_accept http/http/http_header.cpp /^int http_header_t::set_accept(const char* accept)$/;" f class:http_header_t -set_accept_charset http/http/http_header.cpp /^int http_header_t::set_accept_charset(const char* charset)$/;" f class:http_header_t -set_accept_datetime http/http/http_header.cpp /^int http_header_t::set_accept_datetime(const char* datetime)$/;" f class:http_header_t -set_accept_encoding http/http/http_header.cpp /^int http_header_t::set_accept_encoding(const char* encoding)$/;" f class:http_header_t -set_accept_language http/http/http_header.cpp /^int http_header_t::set_accept_language(const char* language)$/;" f class:http_header_t -set_authorization http/http/http_header.cpp /^int http_header_t::set_authorization(const char* authorization)$/;" f class:http_header_t +set_accept net/http_protocol/http_header.cpp /^int http_header_t::set_accept(const char* accept)$/;" f class:http_header_t +set_accept_charset net/http_protocol/http_header.cpp /^int http_header_t::set_accept_charset(const char* charset)$/;" f class:http_header_t +set_accept_datetime net/http_protocol/http_header.cpp /^int http_header_t::set_accept_datetime(const char* datetime)$/;" f class:http_header_t +set_accept_encoding net/http_protocol/http_header.cpp /^int http_header_t::set_accept_encoding(const char* encoding)$/;" f class:http_header_t +set_accept_language net/http_protocol/http_header.cpp /^int http_header_t::set_accept_language(const char* language)$/;" f class:http_header_t +set_authorization net/http_protocol/http_header.cpp /^int http_header_t::set_authorization(const char* authorization)$/;" f class:http_header_t set_authorizer access/sqlite3.c /^ int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*,$/;" m struct:sqlite3_api_routines file: set_authorizer logs/sqlite3.c /^ int (*set_authorizer)(sqlite3*,int(*)(void*,int,const char*,const char*,$/;" m struct:sqlite3_api_routines file: set_auxdata access/sqlite3.c /^ void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*));$/;" m struct:sqlite3_api_routines file: set_auxdata logs/sqlite3.c /^ void (*set_auxdata)(sqlite3_context*,int,void*,void (*)(void*));$/;" m struct:sqlite3_api_routines file: -set_cache_control http/http/http_header.cpp /^int http_header_t::set_cache_control(const char* cachecontrol)$/;" f class:http_header_t -set_cgi_mode http/http/http_header.cpp /^int http_header_t::set_cgi_mode(bool on)$/;" f class:http_header_t -set_chunked http/http/http_header.cpp /^int http_header_t::set_chunked(bool on)$/;" f class:http_header_t +set_cache_control net/http_protocol/http_header.cpp /^int http_header_t::set_cache_control(const char* cachecontrol)$/;" f class:http_header_t +set_cgi_mode net/http_protocol/http_header.cpp /^int http_header_t::set_cgi_mode(bool on)$/;" f class:http_header_t +set_chunked net/http_protocol/http_header.cpp /^int http_header_t::set_chunked(bool on)$/;" f class:http_header_t set_connect_errno polipo/mingw.c /^set_connect_errno(int winsock_err)$/;" f file: -set_connection http/http/http_header.cpp /^int http_header_t::set_connection(const char* connection)$/;" f class:http_header_t -set_content_length http/http/http_header.cpp /^int http_header_t::set_content_length(uint64 n)$/;" f class:http_header_t -set_content_md5 http/http/http_header.cpp /^int http_header_t::set_content_md5(const char* md5)$/;" f class:http_header_t -set_content_type http/http/http_header.cpp /^int http_header_t::set_content_type(const char* value)$/;" f class:http_header_t -set_data http/http/http_header.cpp /^int http_header_t::set_data(const char* data)$/;" f class:http_header_t -set_dnt http/http/http_header.cpp /^int http_header_t::set_dnt(const char* value)$/;" f class:http_header_t +set_connection net/http_protocol/http_header.cpp /^int http_header_t::set_connection(const char* connection)$/;" f class:http_header_t +set_content_length net/http_protocol/http_header.cpp /^int http_header_t::set_content_length(uint64 n)$/;" f class:http_header_t +set_content_md5 net/http_protocol/http_header.cpp /^int http_header_t::set_content_md5(const char* md5)$/;" f class:http_header_t +set_content_type net/http_protocol/http_header.cpp /^int http_header_t::set_content_type(const char* value)$/;" f class:http_header_t +set_data net/http_protocol/http_header.cpp /^int http_header_t::set_data(const char* data)$/;" f class:http_header_t +set_dnt net/http_protocol/http_header.cpp /^int http_header_t::set_dnt(const char* value)$/;" f class:http_header_t set_errno polipo/mingw.c /^set_errno(int winsock_err)$/;" f file: -set_etag http/http/http_header.cpp /^int http_header_t::set_etag(const char* etag)$/;" f class:http_header_t -set_expect http/http/http_header.cpp /^int http_header_t::set_expect(const char* expect)$/;" f class:http_header_t -set_forwarded http/http/http_header.cpp /^int http_header_t::set_forwarded(const char* forwarded)$/;" f class:http_header_t -set_host http/http/http_header.cpp /^int http_header_t::set_host(const char* host)$/;" f class:http_header_t +set_etag net/http_protocol/http_header.cpp /^int http_header_t::set_etag(const char* etag)$/;" f class:http_header_t +set_expect net/http_protocol/http_header.cpp /^int http_header_t::set_expect(const char* expect)$/;" f class:http_header_t +set_forwarded net/http_protocol/http_header.cpp /^int http_header_t::set_forwarded(const char* forwarded)$/;" f class:http_header_t +set_host net/http_protocol/http_header.cpp /^int http_header_t::set_host(const char* host)$/;" f class:http_header_t set_instance 3rd/include/iocontext.hpp /^ int set_instance(io_contextpool_t* pool) {$/;" f class:IoContextBase -set_keepalive http/http/http_header.cpp /^int http_header_t::set_keepalive(const char* value)$/;" f class:http_header_t +set_keepalive net/http_protocol/http_header.cpp /^int http_header_t::set_keepalive(const char* value)$/;" f class:http_header_t set_memory_management_functions uibase/uilib/core/pugixml.cpp /^ PUGI__FN void PUGIXML_FUNCTION set_memory_management_functions(allocation_function allocate, deallocation_function deallocate)$/;" f namespace:pugi -set_method http/http/http_header.cpp /^int http_header_t::set_method(const char* method)$/;" f class:http_header_t +set_method net/http_protocol/http_header.cpp /^int http_header_t::set_method(const char* method)$/;" f class:http_header_t set_name uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_attribute::set_name(const char_t* rhs)$/;" f class:pugi::xml_attribute set_name uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_node::set_name(const char_t* rhs)$/;" f class:pugi::xml_node set_next uibase/uilib/core/pugixml.cpp /^ void set_next(xpath_ast_node* value)$/;" f class:xpath_ast_node -set_range http/http/http_header.cpp /^int http_header_t::set_range(const char* value)$/;" f class:http_header_t -set_referer http/http/http_header.cpp /^int http_header_t::set_referer(const char* url)$/;" f class:http_header_t +set_range net/http_protocol/http_header.cpp /^int http_header_t::set_range(const char* value)$/;" f class:http_header_t +set_referer net/http_protocol/http_header.cpp /^int http_header_t::set_referer(const char* url)$/;" f class:http_header_t set_right uibase/uilib/core/pugixml.cpp /^ void set_right(xpath_ast_node* value)$/;" f class:xpath_ast_node -set_status http/http/http_header.cpp /^int http_header_t::set_status(int status)$/;" f class:http_header_t -set_transfer_gzip http/http/http_header.cpp /^int http_header_t::set_transfer_gzip(bool on)$/;" f class:http_header_t +set_status net/http_protocol/http_header.cpp /^int http_header_t::set_status(int status)$/;" f class:http_header_t +set_transfer_gzip net/http_protocol/http_header.cpp /^int http_header_t::set_transfer_gzip(bool on)$/;" f class:http_header_t set_type uibase/uilib/core/pugixml.cpp /^ void set_type(xpath_node_set::type_t value)$/;" f class:xpath_node_set_raw -set_upgrade_insecure_requests http/http/http_header.cpp /^int http_header_t::set_upgrade_insecure_requests(const char* value)$/;" f class:http_header_t -set_use_agent http/http/http_header.cpp /^int http_header_t::set_use_agent(const char* agent)$/;" f class:http_header_t +set_upgrade_insecure_requests net/http_protocol/http_header.cpp /^int http_header_t::set_upgrade_insecure_requests(const char* value)$/;" f class:http_header_t +set_use_agent net/http_protocol/http_header.cpp /^int http_header_t::set_use_agent(const char* agent)$/;" f class:http_header_t set_value uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_attribute::set_value(bool rhs)$/;" f class:pugi::xml_attribute set_value uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_attribute::set_value(const char_t* rhs)$/;" f class:pugi::xml_attribute set_value uibase/uilib/core/pugixml.cpp /^ PUGI__FN bool xml_attribute::set_value(double rhs)$/;" f class:pugi::xml_attribute @@ -21479,10 +21342,10 @@ simple_tokenizer_cursor access/sqlite3.c /^typedef struct simple_tokenizer_curso simple_tokenizer_cursor access/sqlite3.c /^} simple_tokenizer_cursor;$/;" t typeref:struct:simple_tokenizer_cursor file: simple_tokenizer_cursor logs/sqlite3.c /^typedef struct simple_tokenizer_cursor {$/;" s file: simple_tokenizer_cursor logs/sqlite3.c /^} simple_tokenizer_cursor;$/;" t typeref:struct:simple_tokenizer_cursor file: -sin polipo/dns.c /^ struct sockaddr_in sin;$/;" m union:__anon79 typeref:struct:__anon79::sockaddr_in file: -sin6 polipo/dns.c /^ struct sockaddr_in6 sin6;$/;" m union:__anon79 typeref:struct:__anon79::sockaddr_in6 file: -size compat/compat_cjson.h /^CJSON_PUBLIC(void *) cJSON_malloc(size_t size);$/;" v -size compat/compat_iterator.h /^ int size; $/;" m struct:ITER +sin polipo/dns.c /^ struct sockaddr_in sin;$/;" m union:__anon75 typeref:struct:__anon75::sockaddr_in file: +sin6 polipo/dns.c /^ struct sockaddr_in6 sin6;$/;" m union:__anon75 typeref:struct:__anon75::sockaddr_in6 file: +size crt/crt_cjson.h /^CJSON_PUBLIC(void *) cJSON_malloc(size_t size);$/;" v +size crt/crt_iterator.h /^ int size; $/;" m struct:ITER size extensions/include/log/ilogdatabase.h /^ UINT size;$/;" m struct:TagFieldSturct size include/utilex/lockqueue.hpp /^ UINT size() {$/;" f class:CLockQueue size include/utilex/slice.hpp /^ size_t size() const {$/;" f class:Slice @@ -21502,7 +21365,7 @@ size uibase/uilib/utils/stb_image.c /^ stbi_uc size[257];$/;" m struct:__anon size uibase/uilib/utils/stb_image.c /^ stbi_uc size[288];$/;" m struct:__anon108 file: size uibase/uilib/utils/stb_image.c /^ stbi_uc size,type,channel;$/;" m struct:__anon113 file: size4x access/sqlite3.c /^ u32 size4x; \/* 4x the size of current chunk in Mem3Block elements *\/$/;" m struct:Mem3Block::__anon11::__anon12 file: -size4x logs/sqlite3.c /^ u32 size4x; \/* 4x the size of current chunk in Mem3Block elements *\/$/;" m struct:Mem3Block::__anon56::__anon57 file: +size4x logs/sqlite3.c /^ u32 size4x; \/* 4x the size of current chunk in Mem3Block elements *\/$/;" m struct:Mem3Block::__anon51::__anon52 file: size_ include/utilex/slice.hpp /^ size_t size_;$/;" m class:Slice sizelExtent uibase/uilib/control/uirichedit.cpp /^ SIZEL sizelExtent; \/\/ Extent array$/;" m class:DuiLib::CTxtWinHost file: sjfd access/sqlite3.c /^ sqlite3_file *sjfd; \/* File descriptor for sub-journal *\/$/;" m struct:Pager file: @@ -21519,7 +21382,7 @@ skipToEol polipo/http_parse.c /^skipToEol(const char *restrict buf, int i, int * skipWhitespace polipo/config.c /^skipWhitespace(char *buf, int i)$/;" f file: skipWhitespace polipo/http_parse.c /^skipWhitespace(const char *restrict buf, int i)$/;" f file: skip_separator polipo/parse_time.c /^skip_separator(const char *buf, int i, int len)$/;" f -skip_utf8_bom base/code/compat_cjson.c /^static parse_buffer *skip_utf8_bom(parse_buffer * const buffer)$/;" f file: +skip_utf8_bom stdcrt/code/compat_cjson.c /^static parse_buffer *skip_utf8_bom(parse_buffer * const buffer)$/;" f file: skip_word polipo/parse_time.c /^skip_word(const char *buf, int i, int len)$/;" f file: sleep access/sqlite3.c /^ int (*sleep)(int);$/;" m struct:sqlite3_api_routines file: sleep logs/sqlite3.c /^ int (*sleep)(int);$/;" m struct:sqlite3_api_routines file: @@ -21527,8 +21390,8 @@ sleep polipo/mingw.c 38;" d file: sleep polipo/mingw.h 137;" d sleepObj access/sqlite3.c /^static HANDLE sleepObj = NULL;$/;" v file: sleepObj logs/sqlite3.c /^static HANDLE sleepObj = NULL;$/;" v file: -sleep_time compat/compat_sleep.hpp 10;" d -sleep_time compat/compat_sleep.hpp 8;" d +sleep_time crt/crt_sleep.hpp 10;" d +sleep_time crt/crt_sleep.hpp 8;" d slice include/utilex/slice.hpp /^typedef Slice slice;$/;" t smallRequestTime polipo/server.c /^int smallRequestTime = 10;$/;" v smtp_build_command net/protocol/smtp.c /^int smtp_build_command(enum smtp_command cmd, const char* param, char* buf, int buflen) {$/;" f @@ -21536,6 +21399,7 @@ smtp_command net/protocol/smtp.h /^enum smtp_command {$/;" g smtp_command_str net/protocol/smtp.c /^const char* smtp_command_str(enum smtp_command cmd) {$/;" f smtp_status net/protocol/smtp.h /^enum smtp_status {$/;" g smtp_status_str net/protocol/smtp.c /^const char* smtp_status_str(enum smtp_status status) {$/;" f +snipItems vim_tool/.vim/autoload/acp.vim /^let s:snipItems = {}$/;" v snnprint_n polipo/util.c /^snnprint_n(char *restrict buf, int n, int len, const char *s, int slen)$/;" f snnprintf polipo/util.c /^snnprintf(char *restrict buf, int n, int len, const char *format, ...)$/;" f snnvprintf polipo/util.c /^snnvprintf(char *restrict buf, int n, int len, const char *format, va_list args)$/;" f @@ -21545,9 +21409,9 @@ snprintf polipo/mingw.h 141;" d socket polipo/mingw.c 33;" d file: socket polipo/mingw.h 130;" d socket_handle_safeptr include/utilex/safeptr.hpp /^struct socket_handle_safeptr$/;" s -socketpair base/net/compat_sock.c /^int socketpair(int d, int type, int protocol, _sock_t sv[2])$/;" f +socketpair stdcrt/net/compat_sock.c /^int socketpair(int d, int type, int protocol, _sock_t sv[2])$/;" f sockfd net/protocol/ftp.h /^ int sockfd;$/;" m struct:ftp_handle_s -socklen_t compat/compat_sock.h /^ typedef int socklen_t;$/;" t +socklen_t crt/crt_sock.h /^ typedef int socklen_t;$/;" t socklen_t polipo/mingw.h /^typedef int socklen_t;$/;" t socks5ReadHandler polipo/socks.c /^socks5ReadHandler(int status,$/;" f file: socks5ReadHandler2 polipo/socks.c /^socks5ReadHandler2(int status,$/;" f file: @@ -21584,8 +21448,8 @@ sortingIdxPTab access/sqlite3.c /^ int sortingIdxPTab; \/* Cursor number of sortingIdxPTab logs/sqlite3.c /^ int sortingIdxPTab; \/* Cursor number of pseudo-table *\/$/;" m struct:AggInfo file: soundexFunc access/sqlite3.c /^static void soundexFunc($/;" f file: soundexFunc logs/sqlite3.c /^static void soundexFunc($/;" f file: -source net/protocol/tcp.h /^ uint16_t source; \/\/ source port$/;" m struct:tcphdr_s -source net/protocol/udp.h /^ uint16_t source; \/\/ source port$/;" m struct:udphdr_s +source net/protocol/tcp.h /^ uint16_t source; \/\/ source port$/;" m struct:tcphdr_s +source net/protocol/udp.h /^ uint16_t source; \/\/ source port$/;" m struct:udphdr_s sourceid access/sqlite3.c /^ const char *(*sourceid)(void);$/;" m struct:sqlite3_api_routines file: sourceid logs/sqlite3.c /^ const char *(*sourceid)(void);$/;" m struct:sqlite3_api_routines file: sourceidFunc access/sqlite3.c /^static void sourceidFunc($/;" f file: @@ -24987,18 +24851,19 @@ sqlite_uint64 logs/sqlite3.c /^ typedef unsigned long long int sqlite_uint64;$/ sqlite_uint64 logs/sqlite3.h /^ typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;$/;" t sqlite_uint64 logs/sqlite3.h /^ typedef unsigned __int64 sqlite_uint64;$/;" t sqlite_uint64 logs/sqlite3.h /^ typedef unsigned long long int sqlite_uint64;$/;" t -ssize_t compat/winosdef.h /^typedef SSIZE_T ssize_t;$/;" t +ssize_t crt/winosdef.h /^typedef SSIZE_T ssize_t;$/;" t stack uibase/uilib/core/pugixml.cpp /^ xpath_stack stack;$/;" m struct:xpath_stack_data file: star_oh access/sqlite3.c /^static int star_oh(const char *z){$/;" f file: star_oh logs/sqlite3.c /^static int star_oh(const char *z){$/;" f file: -start compat/compat_funcb.h /^ funccb start;$/;" m struct:io_func_s +start crt/crt_funcb.h /^ funccb start;$/;" m struct:io_func_s start mempool/alloc.h /^ u_char *start; \/* start of buffer *\/$/;" m struct:ngx_buf_s startEndFlag access/sqlite3.c /^ unsigned char startEndFlag; \/* 1=rel to end of fork, 0=rel to start *\/$/;" m struct:ByteRangeLockPB2 file: startEndFlag logs/sqlite3.c /^ unsigned char startEndFlag; \/* 1=rel to end of fork, 0=rel to start *\/$/;" m struct:ByteRangeLockPB2 file: +startLine vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let startLine = code.startLine$/;" v startTime access/sqlite3.c /^ i64 startTime; \/* Time when query started - used for profiling *\/$/;" m struct:Vdbe file: startTime logs/sqlite3.c /^ i64 startTime; \/* Time when query started - used for profiling *\/$/;" m struct:Vdbe file: -start_state http/http/http_parser.cpp 443;" d file: -start_threadpool base/thread/compat_threadpool.c /^int start_threadpool(_threadpool_t* pool) {$/;" f +start_state net/http_protocol/http_parser.cpp 443;" d file: +start_threadpool stdcrt/thread/compat_threadpool.c /^int start_threadpool(_threadpool_t* pool) {$/;" f start_x uibase/uilib/utils/stb_image.c /^ int start_x, start_y;$/;" m struct:__anon115 file: start_y uibase/uilib/utils/stb_image.c /^ int start_x, start_y;$/;" m struct:__anon115 file: startfunccb 3rd/include/iocontext.hpp /^ static int startfunccb(void* data, void* context) {$/;" f class:IoContextBase @@ -25021,19 +24886,29 @@ statPush access/sqlite3.c /^static void statPush($/;" f file: statPush logs/sqlite3.c /^static void statPush($/;" f file: statPushFuncdef access/sqlite3.c /^static const FuncDef statPushFuncdef = {$/;" v file: statPushFuncdef logs/sqlite3.c /^static const FuncDef statPushFuncdef = {$/;" v file: -state compat/compat_md5.h /^ unsigned int state[4];$/;" m struct:__anon29 +state crt/crt_md5.h /^ unsigned int state[4];$/;" m struct:__anon29 state extensions/include/ui/iuibase.h /^ UINT state;$/;" m struct:TagNotifyEvent -state http/http/http_parser.cpp /^enum state$/;" g file: -state http/http/http_parser.h /^ unsigned int state : 7; \/* enum state from http_parser.c *\/$/;" m struct:http_parser +state net/http_protocol/http_parser.cpp /^enum state$/;" g file: +state net/http_protocol/http_parser.h /^ unsigned int state : 7; \/* enum state from http_parser.c *\/$/;" m struct:http_parser state uibase/uilib/core/pugixml.cpp /^ const char_t* state() const$/;" f class:xpath_lexer -state_ compat/winsysvar.hpp /^ } state_;$/;" m union:__anon36 typeref:struct:__anon36::__anon37 +state vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let state=1$/;" v +state vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let state=2$/;" v +state vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let state = 0$/;" v +state vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let state=0$/;" v +state vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let state=1$/;" v +state vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let state=2$/;" v +state vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let state=3$/;" v +state vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let state = 1$/;" v +state vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let state = 2$/;" v +state vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let state = 0$/;" v +state_ crt/winsysvar.hpp /^ } state_;$/;" m union:__anon33 typeref:struct:__anon33::__anon34 stateno access/sqlite3.c /^ YYACTIONTYPE stateno; \/* The state-number *\/$/;" m struct:yyStackEntry file: stateno logs/sqlite3.c /^ YYACTIONTYPE stateno; \/* The state-number *\/$/;" m struct:yyStackEntry file: states polipo/config.c /^states[] = $/;" v typeref:struct:config_state file: -static_const compat/compat_common.hpp 75;" d -static_const compat/compat_common.hpp 91;" d -static_inline compat/compat_common.hpp 74;" d -static_inline compat/compat_common.hpp 90;" d +static_const crt/crt_common.hpp 75;" d +static_const crt/crt_common.hpp 91;" d +static_inline crt/crt_common.hpp 74;" d +static_inline crt/crt_common.hpp 90;" d status access/sqlite3.c /^ int (*status)(int,int*,int*,int);$/;" m struct:sqlite3_api_routines file: status logs/sqlite3.c /^ int (*status)(int,int*,int*,int);$/;" m struct:sqlite3_api_routines file: status polipo/event.c /^ int status;$/;" m struct:_FdEventHandlerPoke file: @@ -25047,7 +24922,7 @@ status_bad_end_element uibase/uilib/core/pugixml.hpp /^ status_bad_end_element, status_bad_pcdata uibase/uilib/core/pugixml.hpp /^ status_bad_pcdata, \/\/ Parsing error occurred while parsing PCDATA section$/;" e enum:pugi::xml_parse_status status_bad_pi uibase/uilib/core/pugixml.hpp /^ status_bad_pi, \/\/ Parsing error occurred while parsing document declaration\/processing instruction$/;" e enum:pugi::xml_parse_status status_bad_start_element uibase/uilib/core/pugixml.hpp /^ status_bad_start_element, \/\/ Parsing error occurred while parsing start element tag$/;" e enum:pugi::xml_parse_status -status_code http/http/http_parser.h /^ unsigned int status_code : 16; \/* responses only *\/$/;" m struct:http_parser +status_code net/http_protocol/http_parser.h /^ unsigned int status_code : 16; \/* responses only *\/$/;" m struct:http_parser status_end_element_mismatch uibase/uilib/core/pugixml.hpp /^ status_end_element_mismatch,\/\/ There was a mismatch of start-end tags (closing tag had incorrect name, some tag was not closed or there was an excessive closing tag)$/;" e enum:pugi::xml_parse_status status_file_not_found uibase/uilib/core/pugixml.hpp /^ status_file_not_found, \/\/ File was not found during load_file()$/;" e enum:pugi::xml_parse_status status_internal_error uibase/uilib/core/pugixml.hpp /^ status_internal_error, \/\/ Internal error occurred$/;" e enum:pugi::xml_parse_status @@ -25293,15 +25168,17 @@ stbi_zlib_decode_noheader_buffer uibase/uilib/utils/stb_image.c /^STBIDEF int st stbi_zlib_decode_noheader_malloc uibase/uilib/utils/stb_image.c /^STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int len, int *outlen)$/;" f std uibase/uilib/core/pugixml.cpp /^namespace std$/;" n file: std uibase/uilib/core/pugixml.hpp /^namespace std$/;" n -std_com_export compat/compat_comutil.hpp 88;" d -std_method compat/compat_comutil.hpp 84;" d +std_com_export crt/crt_comutil.hpp 88;" d +std_method crt/crt_comutil.hpp 84;" d std_method_ access/recordset.h /^ std_method_(uint64, GetCount)() { $/;" f class:CRecordSet std_method_ access/recordset.h /^ std_method_(unsigned int, GetFieldCount)() { $/;" f class:CRecordSet -std_method_ compat/compat_comutil.hpp 86;" d +std_method_ crt/crt_comutil.hpp 86;" d std_method_ include/dlcom/comfactory.hpp /^ std_method_(HRESULT, CreateInstance)(IBase *pUnkOuter, REFIID riid, void **ppvObject)$/;" f class:CoClassFactory std_method_ include/dlcom/comfactory.hpp /^ std_method_(HRESULT, LockServer)(int fLock)$/;" f class:CoClassFactory -std_method_impl compat/compat_comutil.hpp 85;" d -std_method_type_impl compat/compat_comutil.hpp 87;" d +std_method_impl crt/crt_comutil.hpp 85;" d +std_method_type_impl crt/crt_comutil.hpp 87;" d +stdcrtVersionNumber stdcrt/stdcrt.h /^FOUNDATION_EXPORT double stdcrtVersionNumber;$/;" v +stdcrtVersionString stdcrt/stdcrt.h /^FOUNDATION_EXPORT const unsigned char stdcrtVersionString[];$/;" v stdexcep 3rd/include/ioeventdef.h /^typedef std::exception stdexcep;$/;" t stem access/sqlite3.c /^static int stem($/;" f file: stem logs/sqlite3.c /^static int stem($/;" f file: @@ -25322,14 +25199,14 @@ stmt_readonly access/sqlite3.c /^ int (*stmt_readonly)(sqlite3_stmt*);$/;" m st stmt_readonly logs/sqlite3.c /^ int (*stmt_readonly)(sqlite3_stmt*);$/;" m struct:sqlite3_api_routines file: stmt_status access/sqlite3.c /^ int (*stmt_status)(sqlite3_stmt*,int,int);$/;" m struct:sqlite3_api_routines file: stmt_status logs/sqlite3.c /^ int (*stmt_status)(sqlite3_stmt*,int,int);$/;" m struct:sqlite3_api_routines file: -stop compat/compat_funcb.h /^ funccb stop;$/;" m struct:io_func_s -stop_threadpool base/thread/compat_threadpool.c /^int stop_threadpool(_threadpool_t* pool) {$/;" f +stop crt/crt_funcb.h /^ funccb stop;$/;" m struct:io_func_s +stop_threadpool stdcrt/thread/compat_threadpool.c /^int stop_threadpool(_threadpool_t* pool) {$/;" f stopfunccb 3rd/include/iocontext.hpp /^ static int stopfunccb(void* data, void* context) {$/;" f class:IoContextBase stopfunccb include/utilex/threadpool.hpp /^ static int stopfunccb(void* data, void* ctx)$/;" f class:CThreadPool str access/sqlite3.c /^ StrAccum str; \/* The string being accumulated *\/$/;" m struct:Explain file: str logs/sqlite3.c /^ StrAccum str; \/* The string being accumulated *\/$/;" m struct:Explain file: str msgbus/auth.hpp /^ StringPtr str;$/;" m struct:_Connect_Protocol -str msgbus/auth.hpp /^ StringPtr str;$/;" m struct:__anon71 +str msgbus/auth.hpp /^ StringPtr str;$/;" m struct:__anon66 str2jstring dispatch/native-lib.cpp /^jstring str2jstring(JNIEnv* env,const char* pat)$/;" f strHash access/sqlite3.c /^static unsigned int strHash(const char *z, int nKey){$/;" f file: strHash logs/sqlite3.c /^static unsigned int strHash(const char *z, int nKey){$/;" f file: @@ -25356,16 +25233,16 @@ strftimeFunc access/sqlite3.c /^static void strftimeFunc($/;" f file: strftimeFunc logs/sqlite3.c /^static void strftimeFunc($/;" f file: stricmp access/sqlite3.c /^ int (*stricmp)(const char*,const char*);$/;" m struct:sqlite3_api_routines file: stricmp logs/sqlite3.c /^ int (*stricmp)(const char*,const char*);$/;" m struct:sqlite3_api_routines file: -string compat/compat_cjson.h /^ char *string;$/;" m struct:cJSON +string crt/crt_cjson.h /^ char *string;$/;" m struct:cJSON string polipo/atom.h /^ char string[1];$/;" m struct:_Atom -string uibase/uilib/core/pugixml.cpp /^ const char_t* string;$/;" m union:xpath_ast_node::__anon96 file: +string uibase/uilib/core/pugixml.cpp /^ const char_t* string;$/;" m union:xpath_ast_node::__anon99 file: stringToLabels polipo/dns.c /^stringToLabels(char *buf, int offset, int n, char *string)$/;" f file: -string_strcat compat/compat_tstring.h 9;" d -string_strcpy compat/compat_tstring.h 8;" d -string_stricmp compat/compat_tstring.h 23;" d -string_stricmp compat/compat_tstring.h 33;" d -string_stricmp compat/compat_tstring.h 43;" d -string_strlen compat/compat_tstring.h 10;" d +string_strcat crt/crt_tstring.h 9;" d +string_strcpy crt/crt_tstring.h 8;" d +string_stricmp crt/crt_tstring.h 23;" d +string_stricmp crt/crt_tstring.h 33;" d +string_stricmp crt/crt_tstring.h 43;" d +string_strlen crt/crt_tstring.h 10;" d string_t uibase/uilib/core/pugixml.hpp /^ typedef std::basic_string, std::allocator > string_t;$/;" t namespace:pugi string_to_integer uibase/uilib/core/pugixml.cpp /^ template PUGI__FN PUGI__UNSIGNED_OVERFLOW U string_to_integer(const char_t* value, U minv, U maxv)$/;" f string_value uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_string string_value(const xpath_node& na, xpath_allocator* alloc)$/;" f @@ -25391,7 +25268,7 @@ substrFunc logs/sqlite3.c /^static void substrFunc($/;" f file: succ_high uibase/uilib/utils/stb_image.c /^ int succ_high;$/;" m struct:__anon105 file: succ_low uibase/uilib/utils/stb_image.c /^ int succ_low;$/;" m struct:__anon105 file: suffix uibase/uilib/utils/stb_image.c /^ stbi_uc suffix;$/;" m struct:__anon114 file: -suffix_object base/code/compat_cjson.c /^static void suffix_object(cJSON *prev, cJSON *item)$/;" f file: +suffix_object stdcrt/code/compat_cjson.c /^static void suffix_object(cJSON *prev, cJSON *item)$/;" f file: sumFinalize access/sqlite3.c /^static void sumFinalize(sqlite3_context *context){$/;" f file: sumFinalize logs/sqlite3.c /^static void sumFinalize(sqlite3_context *context){$/;" f file: sumStep access/sqlite3.c /^static void sumStep(sqlite3_context *context, int argc, sqlite3_value **argv){$/;" f file: @@ -25406,7 +25283,7 @@ swapMixedEndianFloat logs/sqlite3.c 64165;" d file: swapMixedEndianFloat logs/sqlite3.c 64167;" d file: switchLockProxyPath access/sqlite3.c /^static int switchLockProxyPath(unixFile *pFile, const char *path) {$/;" f file: switchLockProxyPath logs/sqlite3.c /^static int switchLockProxyPath(unixFile *pFile, const char *path) {$/;" f file: -syn net/protocol/tcp.h /^ uint16_t syn : 1;$/;" m struct:tcphdr_s +syn net/protocol/tcp.h /^ uint16_t syn:1;$/;" m struct:tcphdr_s sync mempool/alloc.h /^ unsigned sync : 1;$/;" m struct:ngx_buf_s syncFlags access/sqlite3.c /^ int syncFlags; \/* Flags for the fsync *\/$/;" m struct:WalWriter file: syncFlags access/sqlite3.c /^ u8 syncFlags; \/* SYNC_NORMAL or SYNC_FULL otherwise *\/$/;" m struct:Pager file: @@ -25424,13 +25301,17 @@ sync_write 3rd/include/iodgram.hpp /^ BUFFER_SIZE sync_write(NET_ADDR addr, NET_ sync_write 3rd/include/iostream.hpp /^ BUFFER_SIZE sync_write(BUFFER_PTR buf, BUFFER_SIZE size) {$/;" f class:IoStreamBase synthCollSeq access/sqlite3.c /^static int synthCollSeq(sqlite3 *db, CollSeq *pColl){$/;" f file: synthCollSeq logs/sqlite3.c /^static int synthCollSeq(sqlite3 *db, CollSeq *pColl){$/;" f file: -sys_LogPriority compat/compat_log.h /^typedef enum sys_LogPriority {$/;" g -sys_LogPriority compat/compat_log.h /^} sys_LogPriority;$/;" t typeref:enum:sys_LogPriority +sys_LogPriority crt/crt_log.h /^typedef enum sys_LogPriority {$/;" g +sys_LogPriority crt/crt_log.h /^} sys_LogPriority;$/;" t typeref:enum:sys_LogPriority syslogBuf polipo/log.c /^static char *syslogBuf;$/;" v file: syslogBufLength polipo/log.c /^static int syslogBufLength;$/;" v file: syslogBufSize polipo/log.c /^static int syslogBufSize;$/;" v file: sz access/sqlite3.c /^ u16 sz; \/* Size of each buffer in bytes *\/$/;" m struct:Lookaside file: sz logs/sqlite3.c /^ u16 sz; \/* Size of each buffer in bytes *\/$/;" m struct:Lookaside file: +szAccessFilter vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let szAccessFilter = 'public'$/;" v +szAccessFilter vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let szAccessFilter = (s:contextStack[0] == szTypeInfo)? 'all' : 'protected'$/;" v +szAccessFilter vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let szAccessFilter = 'public'$/;" v +szAccessFilter vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let szAccessFilter = (s:contextStack[0] == szTypeInfo)? 'all' : 'protected'$/;" v szAtom access/sqlite3.c /^ int szAtom; \/* Smallest possible allocation in bytes *\/$/;" m struct:Mem5Global file: szAtom logs/sqlite3.c /^ int szAtom; \/* Smallest possible allocation in bytes *\/$/;" m struct:Mem5Global file: szCache access/sqlite3.c /^ int szCache; \/* Configured cache size *\/$/;" m struct:PCache file: @@ -25439,7 +25320,14 @@ szChunk access/sqlite3.c /^ int szChunk; \/* Configured szChunk access/sqlite3.c /^ int szChunk; \/* Chunk size configured by FCNTL_CHUNK_SIZE *\/$/;" m struct:winFile file: szChunk logs/sqlite3.c /^ int szChunk; \/* Configured by FCNTL_CHUNK_SIZE *\/$/;" m struct:unixFile file: szChunk logs/sqlite3.c /^ int szChunk; \/* Chunk size configured by FCNTL_CHUNK_SIZE *\/$/;" m struct:winFile file: +szClassScope vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let szClassScope = omni#cpp#utils#ExtractTypeInfoFromTag(tagItem)$/;" v +szClassScope vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let szClassScope .= join(listClassScope, '::')$/;" v +szClassScope vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let szClassScope = join(listClassScope, '::')$/;" v +szClassScope vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let szClassScope = '::'$/;" v +szCmd vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let szCmd = omni#cpp#utils#ExtractCmdFromTagItem(result)$/;" v +szCode vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let szCode = substitute(omni#cpp#utils#GetCodeFromLine(szCmd), '\\C\\<'.result.name.'\\>.*', '', 'g')$/;" v szComponent container/stdafx.h /^ string szComponent;$/;" m class:Com_Plugin +szCurrentWorkingDir vim_tool/.vim/autoload/omni/cpp/complete.vim /^let s:szCurrentWorkingDir = getcwd()$/;" v szEst access/sqlite3.c /^ u8 szEst; \/* Estimated size of this column. INT==1 *\/$/;" m struct:Column file: szEst logs/sqlite3.c /^ u8 szEst; \/* Estimated size of this column. INT==1 *\/$/;" m struct:Column file: szExtra access/sqlite3.c /^ int szExtra; \/* Size of extra space for each page *\/$/;" m struct:PCache file: @@ -25476,10 +25364,13 @@ szPage logs/sqlite3.c /^ int szPage; \/* Size of each pag szPage logs/sqlite3.c /^ int szPage; \/* Size of one page *\/$/;" m struct:WalWriter file: szPage logs/sqlite3.c /^ u16 szPage; \/* Database page size in bytes. 1==64K *\/$/;" m struct:WalIndexHdr file: szPage logs/sqlite3.c /^ u32 szPage; \/* Database page size *\/$/;" m struct:Wal file: +szParentContext vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let szParentContext = omni#cpp#utils#ExtractScope(tagItem)$/;" v szRegion access/sqlite3.c /^ int szRegion; \/* Size of shared-memory regions *\/$/;" m struct:unixShmNode file: szRegion access/sqlite3.c /^ int szRegion; \/* Size of shared-memory regions *\/$/;" m struct:winShmNode file: szRegion logs/sqlite3.c /^ int szRegion; \/* Size of shared-memory regions *\/$/;" m struct:unixShmNode file: szRegion logs/sqlite3.c /^ int szRegion; \/* Size of shared-memory regions *\/$/;" m struct:winShmNode file: +szResult vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let szResult = token.value.szResult$/;" v +szResult vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let szResult .= token.value$/;" v szRow access/sqlite3.c /^ u32 szRow; \/* Byte available in aRow *\/$/;" m struct:VdbeCursor file: szRow logs/sqlite3.c /^ u32 szRow; \/* Byte available in aRow *\/$/;" m struct:VdbeCursor file: szScratch access/sqlite3.c /^ int szScratch; \/* Size of each scratch buffer *\/$/;" m struct:Sqlite3Config file: @@ -25488,6 +25379,11 @@ szSlot access/sqlite3.c /^ int szSlot; \/* Size of each free szSlot logs/sqlite3.c /^ int szSlot; \/* Size of each free slot *\/$/;" m struct:PCacheGlobal file: szTabRow access/sqlite3.c /^ LogEst szTabRow; \/* Estimated size of each table row in bytes *\/$/;" m struct:Table file: szTabRow logs/sqlite3.c /^ LogEst szTabRow; \/* Estimated size of each table row in bytes *\/$/;" m struct:Table file: +szTmpScope vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let szTmpScope = omni#cpp#utils#SimplifyScope('::'.szScopeOfTypeInfo)$/;" v +szTypeInfo vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let szTypeInfo = omni#cpp#utils#ExtractTypeInfoFromTag(resolvedTagItem)$/;" v +szTypeInfo vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let szTypeInfo = omni#cpp#utils#ExtractTypeInfoFromTag(resolvedTagItem)$/;" v +szTypeInfo vim_tool/.vim/autoload/omni/cpp/items.vim /^ let szTypeInfo = s:ExtractTypeInfoFromDecl(tokens)$/;" v +szTypeInfo vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let szTypeInfo = omni#cpp#utils#ExtractTypeInfoFromTokens(omni#cpp#tokenizer#Tokenize(szCode))$/;" v t include/utilex/autolock.hpp /^ T *t;$/;" m class:CStackLockWrapper2 t msgbus/auth.hpp /^ unsigned int t; \/\/type$/;" m struct:_BusProtocol tRowcnt access/sqlite3.c /^ typedef u32 tRowcnt; \/* 32-bit is the default *\/$/;" t file: @@ -25500,7 +25396,7 @@ tabTnct access/sqlite3.c /^ int tabTnct; \/* Ephemeral table used for DISTIN tabTnct logs/sqlite3.c /^ int tabTnct; \/* Ephemeral table used for DISTINCT processing *\/$/;" m struct:DistinctCtx file: table access/sqlite3.c /^ char *table; \/* The table or view to which the trigger applies *\/$/;" m struct:Trigger file: table logs/sqlite3.c /^ char *table; \/* The table or view to which the trigger applies *\/$/;" m struct:Trigger file: -table uibase/uilib/core/pugixml.cpp /^ const unsigned char* table;$/;" m union:xpath_ast_node::__anon96 file: +table uibase/uilib/core/pugixml.cpp /^ const unsigned char* table;$/;" m union:xpath_ast_node::__anon99 file: tableAndColumnIndex access/sqlite3.c /^static int tableAndColumnIndex($/;" f file: tableAndColumnIndex logs/sqlite3.c /^static int tableAndColumnIndex($/;" f file: tableExists logs/CppSQLite3.cpp /^bool CppSQLite3DB::tableExists(const char* szTable)$/;" f class:CppSQLite3DB @@ -25512,15 +25408,17 @@ tag mempool/alloc.h /^ ngx_buf_tag_t tag;$/;" m struct:ngx_buf_s tagDWL_MARGINS uibase/uilib/dwm.hpp /^typedef struct tagDWL_MARGINS {$/;" s tagFINDSHORTCUT uibase/uilib/core/uimanager.cpp /^typedef struct tagFINDSHORTCUT$/;" s namespace:DuiLib file: tagFINDTABINFO uibase/uilib/core/uimanager.cpp /^typedef struct tagFINDTABINFO$/;" s namespace:DuiLib file: -tagPOINT compat/darwinossysdef.h /^typedef struct tagPOINT$/;" s -tagPOINT compat/posixossysdef.h /^typedef struct tagPOINT$/;" s -tagRECT compat/darwinossysdef.h /^typedef struct tagRECT$/;" s -tagRECT compat/posixossysdef.h /^typedef struct tagRECT$/;" s +tagItem vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let tagItem = omni#cpp#utils#GetResolvedTagItem(namespaces, omni#cpp#utils#CreateTypeInfo(szClassScope))$/;" v +tagPOINT crt/darwinossysdef.h /^typedef struct tagPOINT$/;" s +tagPOINT crt/posixossysdef.h /^typedef struct tagPOINT$/;" s +tagPopupList vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let tagPopupList = s:SearchMembers(resolvedTagItem, a:base)$/;" v +tagRECT crt/darwinossysdef.h /^typedef struct tagRECT$/;" s +tagRECT crt/posixossysdef.h /^typedef struct tagRECT$/;" s tagRunningTableItem container/rot.h /^ typedef struct tagRunningTableItem$/;" s class:CComRunningObjectTableImpl -tagSIZE compat/darwinossysdef.h /^typedef struct tagSIZE$/;" s -tagSIZE compat/posixossysdef.h /^typedef struct tagSIZE$/;" s -tagSIZEL compat/darwinossysdef.h /^typedef struct tagSIZEL$/;" s -tagSIZEL compat/posixossysdef.h /^typedef struct tagSIZEL$/;" s +tagSIZE crt/darwinossysdef.h /^typedef struct tagSIZE$/;" s +tagSIZE crt/posixossysdef.h /^typedef struct tagSIZE$/;" s +tagSIZEL crt/darwinossysdef.h /^typedef struct tagSIZEL$/;" s +tagSIZEL crt/posixossysdef.h /^typedef struct tagSIZEL$/;" s tagTDrawInfo uibase/uilib/core/uimanager.cpp /^tagTDrawInfo::tagTDrawInfo()$/;" f class:DuiLib::tagTDrawInfo tagTDrawInfo uibase/uilib/core/uimanager.cpp /^tagTDrawInfo::tagTDrawInfo(LPCTSTR lpsz)$/;" f class:DuiLib::tagTDrawInfo tagTDrawInfo uibase/uilib/core/uimanager.h /^typedef struct tagTDrawInfo$/;" s namespace:DuiLib @@ -25533,7 +25431,7 @@ tagTNotifyUI uibase/uilib/core/uidefine.h /^ typedef struct tagTNotifyUI$/;" s n tagTPercentInfo uibase/uilib/core/uimanager.h /^typedef struct tagTPercentInfo$/;" s namespace:DuiLib tagTResInfo uibase/uilib/core/uimanager.h /^typedef struct tagTResInfo$/;" s namespace:DuiLib tagXMLELEMENT uibase/uilib/core/uimarkup.h /^ typedef struct tagXMLELEMENT$/;" s class:DuiLib::CMarkup -tag_varaint_t compat/compat_var.h /^typedef struct tag_varaint_t$/;" s +tag_varaint_t crt/crt_var.h /^typedef struct tag_varaint_t$/;" s tail polipo/tunnel.h /^ int tail;$/;" m struct:_CircularBuffer target access/sqlite3.c /^ Token target; \/* Target table for DELETE, UPDATE, INSERT *\/$/;" m struct:TriggerStep file: target logs/sqlite3.c /^ Token target; \/* Target table for DELETE, UPDATE, INSERT *\/$/;" m struct:TriggerStep file: @@ -25560,6 +25458,8 @@ temp uibase/uilib/core/pugixml.cpp /^ xpath_allocator temp;$/;" m struct:xpath_ temp uibase/uilib/core/pugixml.cpp /^ xpath_allocator* temp;$/;" m struct:xpath_stack file: tempFile access/sqlite3.c /^ u8 tempFile; \/* zFilename is a temporary file *\/$/;" m struct:Pager file: tempFile logs/sqlite3.c /^ u8 tempFile; \/* zFilename is a temporary file *\/$/;" m struct:Pager file: +tempOptionSet vim_tool/.vim/autoload/acp.vim /^ let s:tempOptionSet[a:group] = {}$/;" v +tempOptionSet vim_tool/.vim/autoload/acp.vim /^let s:tempOptionSet = [{}, {}]$/;" v tempReg access/sqlite3.c /^ u8 tempReg; \/* iReg is a temp register that needs to be freed *\/$/;" m struct:Parse::yColCache file: tempReg logs/sqlite3.c /^ u8 tempReg; \/* iReg is a temp register that needs to be freed *\/$/;" m struct:Parse::yColCache file: temp_file mempool/alloc.h /^ unsigned temp_file : 1;$/;" m struct:ngx_buf_s @@ -25602,20 +25502,20 @@ thread include/utilex/thread.hpp /^ _thread_t thread;$/;" m class:CThread thread include/utilex/timethread.hpp /^ _thread_t thread;$/;" m class:CTimeThread thread_cleanup access/sqlite3.c /^ void (*thread_cleanup)(void);$/;" m struct:sqlite3_api_routines file: thread_cleanup logs/sqlite3.c /^ void (*thread_cleanup)(void);$/;" m struct:sqlite3_api_routines file: -thread_ctx base/thread/compat_thread.c /^struct thread_ctx {$/;" s file: -thread_init base/thread/compat_threadpool.c /^static int thread_init(_threadpool_t* pool, io_thread_t* thread, void* ctx,int id) {$/;" f file: +thread_ctx stdcrt/thread/compat_thread.c /^struct thread_ctx {$/;" s file: +thread_init stdcrt/thread/compat_threadpool.c /^static int thread_init(_threadpool_t* pool, io_thread_t* thread, void* ctx,int id) {$/;" f file: thread_proc include/utilex/thread.hpp /^ static void thread_proc(void* pthis) {$/;" f class:CThread -thread_stack_size base/thread/compat_thread.c /^static size_t thread_stack_size(void) {$/;" f file: -thread_start base/thread/compat_threadpool.c /^static int thread_start(io_thread_t* thread) {$/;" f file: -thread_stop base/thread/compat_threadpool.c /^static int thread_stop(io_thread_t* thread) {$/;" f file: -threadhandler compat/compat_threadpool.h /^ _thread_t threadhandler;$/;" m struct:io_thread_s +thread_stack_size stdcrt/thread/compat_thread.c /^static size_t thread_stack_size(void) {$/;" f file: +thread_start stdcrt/thread/compat_threadpool.c /^static int thread_start(io_thread_t* thread) {$/;" f file: +thread_stop stdcrt/thread/compat_threadpool.c /^static int thread_stop(io_thread_t* thread) {$/;" f file: +threadhandler crt/crt_threadpool.h /^ _thread_t threadhandler;$/;" m struct:io_thread_s threadid access/sqlite3.c 23870;" d file: threadid access/sqlite3.c 23872;" d file: threadid logs/sqlite3.c 23870;" d file: threadid logs/sqlite3.c 23872;" d file: -threads compat/compat_threadpool.h /^ io_thread_t* threads;$/;" m struct:_threadpool_s -threshold compat/darwinsysvar.hpp /^ unsigned threshold;$/;" m struct:__anon32 -threshold compat/posixsysvar.hpp /^ unsigned threshold;$/;" m struct:__anon34 +threads crt/crt_threadpool.h /^ io_thread_t* threads;$/;" m struct:_threadpool_s +threshold crt/darwinsysvar.hpp /^ unsigned threshold;$/;" m struct:__anon31 +threshold crt/posixsysvar.hpp /^ unsigned threshold;$/;" m struct:__anon28 time polipo/dns.c /^ time_t time;$/;" m struct:_DnsQuery file: time polipo/event.h /^ struct timeval time;$/;" m struct:_TimeEventHandler typeref:struct:_TimeEventHandler::timeval time polipo/http.h /^ int time;$/;" m struct:_HTTPConnection @@ -25660,6 +25560,70 @@ tkTRIGGER access/sqlite3.c 119080;" d file: tkTRIGGER logs/sqlite3.c 119080;" d file: tkWS access/sqlite3.c 119074;" d file: tkWS logs/sqlite3.c 119074;" d file: +tlist_app_name vim_tool/.vim/plugin/taglist.vim /^let s:tlist_app_name = "none"$/;" v +tlist_brief_help vim_tool/.vim/plugin/taglist.vim /^let s:tlist_brief_help = 1$/;" v +tlist_cur_file_idx vim_tool/.vim/plugin/taglist.vim /^let s:tlist_cur_file_idx = -1$/;" v +tlist_debug vim_tool/.vim/plugin/taglist.vim /^let s:tlist_debug = 0$/;" v +tlist_debug_file vim_tool/.vim/plugin/taglist.vim /^let s:tlist_debug_file = ''$/;" v +tlist_def_ant_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_ant_settings = 'ant;p:projects;t:targets'$/;" v +tlist_def_asm_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_asm_settings = 'asm;d:define;l:label;m:macro;t:type'$/;" v +tlist_def_aspperl_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_aspperl_settings =$/;" v +tlist_def_aspvbs_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_aspvbs_settings =$/;" v +tlist_def_awk_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_awk_settings = 'awk;f:function'$/;" v +tlist_def_basic_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_basic_settings =$/;" v +tlist_def_beta_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_beta_settings = 'beta;f:fragment;s:slot;v:pattern'$/;" v +tlist_def_c_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_c_settings = 'c;d:macro;g:enum;s:struct;u:union;t:typedef;' .$/;" v +tlist_def_cobol_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_cobol_settings = 'cobol;d:data;f:file;g:group;p:paragraph;' .$/;" v +tlist_def_cpp_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_cpp_settings = 'c++;n:namespace;v:variable;d:macro;t:typedef;' .$/;" v +tlist_def_cs_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_cs_settings = 'c#;d:macro;t:typedef;n:namespace;c:class;' .$/;" v +tlist_def_csh_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_csh_settings = 'sh;f:function'$/;" v +tlist_def_d_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_d_settings = 'c++;n:namespace;v:variable;t:typedef;' .$/;" v +tlist_def_dosbatch_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_dosbatch_settings = 'dosbatch;l:labels;v:variables'$/;" v +tlist_def_eiffel_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_eiffel_settings = 'eiffel;c:class;f:feature'$/;" v +tlist_def_erlang_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_erlang_settings = 'erlang;d:macro;r:record;m:module;f:function'$/;" v +tlist_def_expect_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_expect_settings = 'tcl;c:class;f:method;p:procedure'$/;" v +tlist_def_flex_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_flex_settings = 'flex;v:global;c:classes;p:properties;'.$/;" v +tlist_def_fortran_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_fortran_settings = 'fortran;p:program;b:block data;' .$/;" v +tlist_def_go_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_go_settings = 'go;f:function;p:package;t:struct'$/;" v +tlist_def_html_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_html_settings = 'html;a:anchor;f:function'$/;" v +tlist_def_java_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_java_settings = 'java;p:package;c:class;i:interface;' .$/;" v +tlist_def_javascript_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_javascript_settings =$/;" v +tlist_def_lisp_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_lisp_settings = 'lisp;f:function'$/;" v +tlist_def_lua_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_lua_settings = 'lua;f:function'$/;" v +tlist_def_make_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_make_settings = 'make;m:macro'$/;" v +tlist_def_matlab_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_matlab_settings = 'matlab;f:function'$/;" v +tlist_def_ocamal_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_ocamal_settings = 'ocamal;M:module;v:global;t:type;'.$/;" v +tlist_def_pascal_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_pascal_settings = 'pascal;f:function;p:procedure'$/;" v +tlist_def_perl_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_perl_settings = 'perl;c:constant;l:label;p:package;s:subroutine'$/;" v +tlist_def_php_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_php_settings =$/;" v +tlist_def_python_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_python_settings = 'python;c:class;m:member;f:function'$/;" v +tlist_def_rexx_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_rexx_settings = 'rexx;s:subroutine'$/;" v +tlist_def_ruby_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_ruby_settings = 'ruby;c:class;f:method;F:function;' .$/;" v +tlist_def_scheme_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_scheme_settings = 'scheme;s:set;f:function'$/;" v +tlist_def_sh_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_sh_settings = 'sh;f:function'$/;" v +tlist_def_slang_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_slang_settings = 'slang;n:namespace;f:function'$/;" v +tlist_def_sml_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_sml_settings = 'sml;e:exception;c:functor;s:signature;' .$/;" v +tlist_def_sql_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_sql_settings = 'sql;f:functions;' .$/;" v +tlist_def_tcl_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_tcl_settings = 'tcl;c:class;f:method;m:method;p:procedure'$/;" v +tlist_def_tex_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_tex_settings = 'tex;c:chapters;s:sections;u:subsections;'.$/;" v +tlist_def_vera_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_vera_settings = 'vera;c:class;d:macro;e:enumerator;' .$/;" v +tlist_def_verilog_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_verilog_settings = 'verilog;m:module;c:constant;P:parameter;' .$/;" v +tlist_def_vhdl_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_vhdl_settings = 'vhdl;c:constant;t:type;T:subtype;r:record;e:entity;f:function;p:procedure;P:package'$/;" v +tlist_def_vim_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_vim_settings =$/;" v +tlist_def_yacc_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_yacc_settings = 'yacc;l:label'$/;" v +tlist_def_zsh_settings vim_tool/.vim/plugin/taglist.vim /^let s:tlist_def_zsh_settings = 'sh;f:function'$/;" v +tlist_file_count vim_tool/.vim/plugin/taglist.vim /^let s:tlist_file_count = 0$/;" v +tlist_file_lnum_idx_cache vim_tool/.vim/plugin/taglist.vim /^let s:tlist_file_lnum_idx_cache = -1$/;" v +tlist_file_name_idx_cache vim_tool/.vim/plugin/taglist.vim /^let s:tlist_file_name_idx_cache = -1$/;" v +tlist_file_names vim_tool/.vim/plugin/taglist.vim /^let s:tlist_file_names=''$/;" v +tlist_ftype_count vim_tool/.vim/plugin/taglist.vim /^let s:tlist_ftype_count = 0$/;" v +tlist_menu_empty vim_tool/.vim/plugin/taglist.vim /^let s:tlist_menu_empty = 1$/;" v +tlist_msg vim_tool/.vim/plugin/taglist.vim /^ let s:tlist_msg = ''$/;" v +tlist_pyrex_settings vim_tool/.vim/plugin/taglist.vim /^let tlist_pyrex_settings='python;c:classe;m:memder;f:function'$/;" v +tlist_removed_flist vim_tool/.vim/plugin/taglist.vim /^let s:tlist_removed_flist = ""$/;" v +tlist_sid vim_tool/.vim/plugin/taglist.vim /^ let s:tlist_sid = substitute(maparg('xx'), '\\(\\d\\+_\\)xx$',$/;" v +tlist_win_maximized vim_tool/.vim/plugin/taglist.vim /^let s:tlist_win_maximized = 0$/;" v +tlist_winsize_chgd vim_tool/.vim/plugin/taglist.vim /^let s:tlist_winsize_chgd = -1$/;" v tm 3rd/include/iotcp.hpp /^ io_time_ptr tm;$/;" m class:IoTcpBase tm 3rd/include/iotimer.hpp /^ io_time_ptr tm;$/;" m class:IoTimer tm extensions/include/ui/iuibase.h /^ ULONG tm;$/;" m struct:TagNotifyEvent @@ -25667,9 +25631,9 @@ tm msgbus/node.h /^ ULONG tm;$/;" m class:Node tm uibase/uilib/core/uimanager.h /^ TEXTMETRIC tm;$/;" m struct:DuiLib::tagTFontInfo tmask access/sqlite3.c 93916;" d file: tmask logs/sqlite3.c 93916;" d file: -tmemset compat/compat_tstring.h 30;" d -tmemset compat/compat_tstring.h 40;" d -tmemset compat/compat_tstring.h 50;" d +tmemset crt/crt_tstring.h 30;" d +tmemset crt/crt_tstring.h 40;" d +tmemset crt/crt_tstring.h 50;" d tnum access/sqlite3.c /^ int tnum; \/* DB Page containing root of this index *\/$/;" m struct:Index file: tnum access/sqlite3.c /^ int tnum; \/* Root BTree node for this table (see note above) *\/$/;" m struct:Table file: tnum logs/sqlite3.c /^ int tnum; \/* DB Page containing root of this index *\/$/;" m struct:Index file: @@ -25684,15 +25648,17 @@ token access/sqlite3.c /^ void *token; \/* Copy of SubProgram.token token logs/sqlite3.c /^ void *token; \/* id that may be used to recursive triggers *\/$/;" m struct:SubProgram file: token logs/sqlite3.c /^ void *token; \/* Copy of SubProgram.token *\/$/;" m struct:VdbeFrame file: token_compare polipo/http_parse.c /^token_compare(const char *buf, int start, int end, const char *s)$/;" f file: -tokens http/http/http_parser.cpp /^static const char tokens[256] = {$/;" v file: +tokens net/http_protocol/http_parser.cpp /^static const char tokens[256] = {$/;" v file: +tokens vim_tool/.vim/autoload/omni/cpp/namespaces.vim /^ let tokens = reverse(omni#cpp#tokenizer#Tokenize(code.code[:aPos-1])[:-4])$/;" v +tokens vim_tool/.vim/autoload/omni/cpp/utils.vim /^ let tokens = reverse(tokens)$/;" v tolower_ascii uibase/uilib/core/pugixml.cpp /^ PUGI__FN char_t tolower_ascii(char_t ch)$/;" f -top compat/darwinossysdef.h /^ LONG top;$/;" m struct:tagRECT -top compat/darwinossysdef.h /^ LONG top;$/;" m struct:_RECTL -top compat/posixossysdef.h /^ LONG top;$/;" m struct:tagRECT -top compat/posixossysdef.h /^ LONG top;$/;" m struct:_RECTL +top crt/darwinossysdef.h /^ LONG top;$/;" m struct:tagRECT +top crt/darwinossysdef.h /^ LONG top;$/;" m struct:_RECTL +top crt/posixossysdef.h /^ LONG top;$/;" m struct:tagRECT +top crt/posixossysdef.h /^ LONG top;$/;" m struct:_RECTL top uibase/uilib/core/uimanager.h /^ double top;$/;" m struct:DuiLib::tagTPercentInfo -tos net/protocol/ip.h /^ uint8_t tos; \/\/ type of service$/;" m struct:iphdr_s -tot_len net/protocol/ip.h /^ uint16_t tot_len; \/\/ total length$/;" m struct:iphdr_s +tos net/protocol/ip.h /^ uint8_t tos; \/\/ type of service$/;" m struct:iphdr_s +tot_len net/protocol/ip.h /^ uint16_t tot_len; \/\/ total length$/;" m struct:iphdr_s totalAlloc access/sqlite3.c /^ u64 totalAlloc; \/* Total of all malloc calls - includes internal frag *\/$/;" m struct:Mem5Global file: totalAlloc logs/sqlite3.c /^ u64 totalAlloc; \/* Total of all malloc calls - includes internal frag *\/$/;" m struct:Mem5Global file: totalChunkArenaSize polipo/chunk.c /^totalChunkArenaSize()$/;" f @@ -25736,33 +25702,33 @@ triggerStepAllocate access/sqlite3.c /^static TriggerStep *triggerStepAllocate($ triggerStepAllocate logs/sqlite3.c /^static TriggerStep *triggerStepAllocate($/;" f file: trimFunc access/sqlite3.c /^static void trimFunc($/;" f file: trimFunc logs/sqlite3.c /^static void trimFunc($/;" f file: -true compat/compat_common.hpp 105;" d +true crt/crt_common.hpp 105;" d truncate uibase/uilib/core/pugixml.cpp /^ void truncate(xpath_node* pos)$/;" f class:xpath_node_set_raw truncateOnCommit access/sqlite3.c /^ u8 truncateOnCommit; \/* True to truncate WAL file on commit *\/$/;" m struct:Wal file: truncateOnCommit logs/sqlite3.c /^ u8 truncateOnCommit; \/* True to truncate WAL file on commit *\/$/;" m struct:Wal file: truncate_zeros uibase/uilib/core/pugixml.cpp /^ PUGI__FN void truncate_zeros(char* begin, char* end)$/;" f truthProb access/sqlite3.c /^ LogEst truthProb; \/* Probability of truth for this expression *\/$/;" m struct:WhereTerm file: truthProb logs/sqlite3.c /^ LogEst truthProb; \/* Probability of truth for this expression *\/$/;" m struct:WhereTerm file: -tstring_strcat compat/compat_tstring.h 26;" d -tstring_strcat compat/compat_tstring.h 36;" d -tstring_strcat compat/compat_tstring.h 46;" d -tstring_strchr compat/compat_tstring.h 27;" d -tstring_strchr compat/compat_tstring.h 37;" d -tstring_strchr compat/compat_tstring.h 47;" d -tstring_strcpy compat/compat_tstring.h 25;" d -tstring_strcpy compat/compat_tstring.h 35;" d -tstring_strcpy compat/compat_tstring.h 45;" d -tstring_stricmp compat/compat_tstring.h 24;" d -tstring_stricmp compat/compat_tstring.h 34;" d -tstring_stricmp compat/compat_tstring.h 44;" d -tstring_strlen compat/compat_tstring.h 28;" d -tstring_strlen compat/compat_tstring.h 38;" d -tstring_strlen compat/compat_tstring.h 48;" d -tstring_ststr compat/compat_tstring.h 29;" d -tstring_ststr compat/compat_tstring.h 39;" d -tstring_ststr compat/compat_tstring.h 49;" d +tstring_strcat crt/crt_tstring.h 26;" d +tstring_strcat crt/crt_tstring.h 36;" d +tstring_strcat crt/crt_tstring.h 46;" d +tstring_strchr crt/crt_tstring.h 27;" d +tstring_strchr crt/crt_tstring.h 37;" d +tstring_strchr crt/crt_tstring.h 47;" d +tstring_strcpy crt/crt_tstring.h 25;" d +tstring_strcpy crt/crt_tstring.h 35;" d +tstring_strcpy crt/crt_tstring.h 45;" d +tstring_stricmp crt/crt_tstring.h 24;" d +tstring_stricmp crt/crt_tstring.h 34;" d +tstring_stricmp crt/crt_tstring.h 44;" d +tstring_strlen crt/crt_tstring.h 28;" d +tstring_strlen crt/crt_tstring.h 38;" d +tstring_strlen crt/crt_tstring.h 48;" d +tstring_ststr crt/crt_tstring.h 29;" d +tstring_ststr crt/crt_tstring.h 39;" d +tstring_ststr crt/crt_tstring.h 49;" d ttl net/protocol/dns.h /^ uint32_t ttl;$/;" m struct:dns_rr_s -ttl net/protocol/ip.h /^ uint8_t ttl; \/\/ Time To Live$/;" m struct:iphdr_s +ttl net/protocol/ip.h /^ uint8_t ttl; \/\/ Time To Live$/;" m struct:iphdr_s ttl4 polipo/dns.c /^ time_t ttl4, ttl6;$/;" m struct:_DnsQuery file: ttl6 polipo/dns.c /^ time_t ttl4, ttl6;$/;" m struct:_DnsQuery file: tunnelAllowedPorts polipo/http.c /^IntListPtr tunnelAllowedPorts = NULL;$/;" v @@ -25778,19 +25744,19 @@ tunnelRead2Handler polipo/tunnel.c /^tunnelRead2Handler(int status, $/;" f file: tunnelSocksHandler polipo/tunnel.c /^tunnelSocksHandler(int status, SocksRequestPtr request)$/;" f file: tunnelWrite1Handler polipo/tunnel.c /^tunnelWrite1Handler(int status,$/;" f file: tunnelWrite2Handler polipo/tunnel.c /^tunnelWrite2Handler(int status,$/;" f file: -turnstile1 compat/winsysvar.hpp /^ _sem_t turnstile1;$/;" m struct:__anon38 -turnstile2 compat/winsysvar.hpp /^ _sem_t turnstile2;$/;" m struct:__anon38 +turnstile1 crt/winsysvar.hpp /^ _sem_t turnstile1;$/;" m struct:__anon35 +turnstile2 crt/winsysvar.hpp /^ _sem_t turnstile2;$/;" m struct:__anon35 type access/sqlite3.c /^ etByte type; \/* Conversion paradigm *\/$/;" m struct:et_info file: type access/sqlite3.c /^ u8 type; \/* One of SQLITE_NULL, SQLITE_TEXT, SQLITE_INTEGER, etc *\/$/;" m struct:Mem file: type access/sqlite3.c /^struct AttachKey { int type; Token key; };$/;" m struct:AttachKey file: -type compat/compat_cjson.h /^ int type;$/;" m struct:cJSON +type crt/crt_cjson.h /^ int type;$/;" m struct:cJSON type extensions/include/log/ilogdatabase.h /^ char type[FIELD_TYPE_LEN + 1];$/;" m struct:TagFieldSturct type extensions/include/ui/iuibase.h /^ UINT type;$/;" m struct:TagNotifyEvent -type http/http/http_parser.h /^ unsigned int type : 2; \/* enum http_parser_type *\/$/;" m struct:http_parser type logs/sqlite3.c /^ etByte type; \/* Conversion paradigm *\/$/;" m struct:et_info file: type logs/sqlite3.c /^ u8 type; \/* One of SQLITE_NULL, SQLITE_TEXT, SQLITE_INTEGER, etc *\/$/;" m struct:Mem file: type logs/sqlite3.c /^struct AttachKey { int type; Token key; };$/;" m struct:AttachKey file: -type net/protocol/icmp.h /^ uint8_t type; \/\/ message type$/;" m struct:icmphdr_s +type net/http_protocol/http_parser.h /^ unsigned int type : 2; \/* enum http_parser_type *\/$/;" m struct:http_parser +type net/protocol/icmp.h /^ uint8_t type; \/\/ message type$/;" m struct:icmphdr_s type polipo/config.h /^ int type;$/;" m struct:_ConfigVariable type polipo/object.h /^ unsigned char type;$/;" m struct:_Object type uibase/uilib/core/pugixml.cpp /^ typedef uint16_t type;$/;" t struct:utf16_decoder file: @@ -25806,6 +25772,7 @@ type uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_node_set::type_t xpath_node type uibase/uilib/core/pugixml.cpp /^ PUGI__FN xpath_value_type xpath_variable::type() const$/;" f class:pugi::xpath_variable type uibase/uilib/utils/stb_image.c /^ stbi__uint32 type;$/;" m struct:__anon110 file: type uibase/uilib/utils/stb_image.c /^ stbi_uc size,type,channel;$/;" m struct:__anon113 file: +typeInfo vim_tool/.vim/autoload/omni/cpp/complete.vim /^ let typeInfo = omni#cpp#items#ResolveItemsTypeInfo(s:contextStack, g:omni#cpp#items#data)$/;" v type_sorted uibase/uilib/core/pugixml.hpp /^ type_sorted, \/\/ Sorted by document order (ascending)$/;" e enum:pugi::xpath_node_set::type_t type_sorted_reverse uibase/uilib/core/pugixml.hpp /^ type_sorted_reverse \/\/ Sorted by document order (descending)$/;" e enum:pugi::xpath_node_set::type_t type_t uibase/uilib/core/pugixml.hpp /^ enum type_t$/;" g class:pugi::xpath_node_set @@ -25825,20 +25792,20 @@ u access/sqlite3.c /^ } u;$/;" m struct:Walker typeref:union:Walker::__anon8 fi u access/sqlite3.c /^ } u;$/;" m struct:WhereLevel typeref:union:WhereLevel::__anon16 file: u access/sqlite3.c /^ } u;$/;" m struct:WhereLoop typeref:union:WhereLoop::__anon18 file: u access/sqlite3.c /^ } u;$/;" m struct:WhereTerm typeref:union:WhereTerm::__anon21 file: -u logs/sqlite3.c /^ } u;$/;" m struct:ExprList::ExprList_item typeref:union:ExprList::ExprList_item::__anon50 file: -u logs/sqlite3.c /^ } u;$/;" m struct:Bitvec typeref:union:Bitvec::__anon59 file: -u logs/sqlite3.c /^ } u;$/;" m struct:Expr typeref:union:Expr::__anon48 file: -u logs/sqlite3.c /^ } u;$/;" m struct:Mem typeref:union:Mem::__anon54 file: -u logs/sqlite3.c /^ } u;$/;" m struct:Mem3Block typeref:union:Mem3Block::__anon56 file: -u logs/sqlite3.c /^ } u;$/;" m struct:Stat4Sample typeref:union:Stat4Sample::__anon60 file: -u logs/sqlite3.c /^ } u;$/;" m struct:Walker typeref:union:Walker::__anon53 file: -u logs/sqlite3.c /^ } u;$/;" m struct:WhereLevel typeref:union:WhereLevel::__anon61 file: -u logs/sqlite3.c /^ } u;$/;" m struct:WhereLoop typeref:union:WhereLoop::__anon63 file: -u logs/sqlite3.c /^ } u;$/;" m struct:WhereTerm typeref:union:WhereTerm::__anon66 file: +u logs/sqlite3.c /^ } u;$/;" m struct:ExprList::ExprList_item typeref:union:ExprList::ExprList_item::__anon45 file: +u logs/sqlite3.c /^ } u;$/;" m struct:Bitvec typeref:union:Bitvec::__anon54 file: +u logs/sqlite3.c /^ } u;$/;" m struct:Expr typeref:union:Expr::__anon43 file: +u logs/sqlite3.c /^ } u;$/;" m struct:Mem typeref:union:Mem::__anon49 file: +u logs/sqlite3.c /^ } u;$/;" m struct:Mem3Block typeref:union:Mem3Block::__anon51 file: +u logs/sqlite3.c /^ } u;$/;" m struct:Stat4Sample typeref:union:Stat4Sample::__anon55 file: +u logs/sqlite3.c /^ } u;$/;" m struct:Walker typeref:union:Walker::__anon48 file: +u logs/sqlite3.c /^ } u;$/;" m struct:WhereLevel typeref:union:WhereLevel::__anon56 file: +u logs/sqlite3.c /^ } u;$/;" m struct:WhereLoop typeref:union:WhereLoop::__anon58 file: +u logs/sqlite3.c /^ } u;$/;" m struct:WhereTerm typeref:union:WhereTerm::__anon61 file: u msgbus/auth.hpp /^ unsigned int u; \/\/uid$/;" m struct:_BusProtocol -u polipo/io.h /^ } u;$/;" m struct:_StreamRequest typeref:union:_StreamRequest::__anon80 +u polipo/io.h /^ } u;$/;" m struct:_StreamRequest typeref:union:_StreamRequest::__anon77 u1 access/sqlite3.c /^ } u1;$/;" m struct:sqlite3 typeref:union:sqlite3::__anon2 file: -u1 logs/sqlite3.c /^ } u1;$/;" m struct:sqlite3 typeref:union:sqlite3::__anon47 file: +u1 logs/sqlite3.c /^ } u1;$/;" m struct:sqlite3 typeref:union:sqlite3::__anon42 file: u16 access/sqlite3.c /^typedef UINT16_TYPE u16; \/* 2-byte unsigned integer *\/$/;" t file: u16 logs/sqlite3.c /^typedef UINT16_TYPE u16; \/* 2-byte unsigned integer *\/$/;" t file: u32 access/sqlite3.c /^typedef UINT32_TYPE u32; \/* 4-byte unsigned integer *\/$/;" t file: @@ -25859,19 +25826,19 @@ u8 logs/sqlite3.c /^typedef unsigned char u8; \/* 1-byte (or larger) uns u8 logs/sqlite3.c /^typedef unsigned char u8;$/;" t file: uFade uibase/uilib/core/uimanager.h /^ BYTE uFade;$/;" m struct:DuiLib::tagTDrawInfo uFixedHeight uibase/uilib/control/uilist.h /^ UINT uFixedHeight; $/;" m struct:DuiLib::tagTListInfoUI -uIndex container/stdafx.h /^ DWORD uIndex;$/;" m class:Com_Plugin +uIndex container/stdafx.h /^ ULONG uIndex;$/;" m class:Com_Plugin uOffFun include/dlcom/calldll.hpp /^ size_t uOffFun;$/;" m struct:IImpModuleBase::STFunDesc uOffFun include/utilex/calldll.hpp /^ size_t uOffFun;$/;" m struct:IImpModuleBase::STFunDesc uTextStyle uibase/uilib/control/uilist.h /^ UINT uTextStyle;$/;" m struct:DuiLib::tagTListInfoUI -uVal compat/compat_var.h /^ unsigned char uVal;$/;" m union:tag_varaint_t::__anon30 +uVal crt/crt_var.h /^ unsigned char uVal;$/;" m union:tag_varaint_t::__anon25 uWinTimer uibase/uilib/core/uimanager.cpp /^ UINT uWinTimer;$/;" m struct:DuiLib::tagTIMERINFO file: -u_char compat/compat_common.hpp /^typedef unsigned char u_char;$/;" t +u_char crt/crt_common.hpp /^typedef unsigned char u_char;$/;" t u_char mempool/alloc.h /^typedef unsigned char u_char;$/;" t -u_int compat/compat_common.hpp /^typedef unsigned int u_int;$/;" t -u_long compat/compat_common.hpp /^typedef unsigned long u_long;$/;" t -u_short compat/compat_common.hpp /^typedef unsigned short u_short;$/;" t -ucs2_to_char base/string/compat_utf8.c /^char* ucs2_to_char(const wchar_t *in, size_t len)$/;" f -ucs2_to_utf8 base/string/compat_utf8.c /^int ucs2_to_utf8(const wchar_t *in,$/;" f +u_int crt/crt_common.hpp /^typedef unsigned int u_int;$/;" t +u_long crt/crt_common.hpp /^typedef unsigned long u_long;$/;" t +u_short crt/crt_common.hpp /^typedef unsigned short u_short;$/;" t +ucs2_to_char stdcrt/string/compat_utf8.c /^char* ucs2_to_char(const wchar_t *in, size_t len)$/;" f +ucs2_to_utf8 stdcrt/string/compat_utf8.c /^int ucs2_to_utf8(const wchar_t *in,$/;" f udp_assign 3rd/include/ioudp.hpp /^ int udp_assign(_sock_t* s) {$/;" f class:IoUdpBase udp_close 3rd/include/ioudp.hpp /^ int udp_close() {$/;" f class:IoUdpBase udp_create 3rd/include/ioudp.hpp /^ int udp_create(io_service* pService) {$/;" f class:IoUdpBase @@ -25880,17 +25847,19 @@ udp_is_open 3rd/include/ioudp.hpp /^ int udp_is_open() {$/;" f class:IoUdpBase udp_setoption 3rd/include/ioudp.hpp /^ int udp_setoption() {$/;" f class:IoUdpBase udphdr_s net/protocol/udp.h /^typedef struct udphdr_s {$/;" s udphdr_t net/protocol/udp.h /^} udphdr_t;$/;" t typeref:struct:udphdr_s -uiVal compat/compat_var.h /^ unsigned short uiVal;$/;" m union:tag_varaint_t::__anon30 -uinit_threadpool base/thread/compat_threadpool.c /^int uinit_threadpool(_threadpool_t* pool) {$/;" f -uint16 compat/compat_common.hpp /^typedef uint16_t uint16;$/;" t -uint16 compat/compat_common.hpp /^typedef unsigned __int16 uint16;$/;" t -uint16_t compat/winosdef.h /^typedef unsigned short uint16_t;$/;" t -uint16_t http/http/http_parser.h /^typedef unsigned __int16 uint16_t;$/;" t +uiVal crt/crt_var.h /^ unsigned short uiVal;$/;" m union:tag_varaint_t::__anon25 +uibaseVersionNumber uibase/uibase.h /^FOUNDATION_EXPORT double uibaseVersionNumber;$/;" v +uibaseVersionString uibase/uibase.h /^FOUNDATION_EXPORT const unsigned char uibaseVersionString[];$/;" v +uinit_threadpool stdcrt/thread/compat_threadpool.c /^int uinit_threadpool(_threadpool_t* pool) {$/;" f +uint16 crt/crt_common.hpp /^typedef uint16_t uint16;$/;" t +uint16 crt/crt_common.hpp /^typedef unsigned __int16 uint16;$/;" t +uint16_t crt/winosdef.h /^typedef unsigned short uint16_t;$/;" t +uint16_t net/http_protocol/http_parser.h /^typedef unsigned __int16 uint16_t;$/;" t uint16_t uibase/uilib/core/pugixml.cpp /^ typedef unsigned __int16 uint16_t;$/;" t namespace:pugi file: -uint32 compat/compat_common.hpp /^typedef uint32_t uint32;$/;" t -uint32 compat/compat_common.hpp /^typedef unsigned __int32 uint32;$/;" t -uint32_t compat/winosdef.h /^typedef unsigned int uint32_t;$/;" t -uint32_t http/http/http_parser.h /^typedef unsigned __int32 uint32_t;$/;" t +uint32 crt/crt_common.hpp /^typedef uint32_t uint32;$/;" t +uint32 crt/crt_common.hpp /^typedef unsigned __int32 uint32;$/;" t +uint32_t crt/winosdef.h /^typedef unsigned int uint32_t;$/;" t +uint32_t net/http_protocol/http_parser.h /^typedef unsigned __int32 uint32_t;$/;" t uint32_t polipo/md5import.c 11;" d file: uint32_t polipo/md5import.c 12;" d file: uint32_t polipo/md5import.c 15;" d file: @@ -25898,26 +25867,26 @@ uint32_t polipo/md5import.h 10;" d uint32_t polipo/md5import.h 13;" d uint32_t polipo/md5import.h 9;" d uint32_t uibase/uilib/core/pugixml.cpp /^ typedef unsigned __int32 uint32_t;$/;" t namespace:pugi file: -uint64 compat/compat_common.hpp /^typedef uint64_t uint64;$/;" t -uint64 compat/compat_common.hpp /^typedef unsigned __int64 uint64;$/;" t -uint64_t compat/winosdef.h /^typedef unsigned long long uint64_t;$/;" t -uint64_t http/http/http_parser.h /^typedef unsigned __int64 uint64_t;$/;" t -uint8 compat/compat_common.hpp /^typedef uint8_t uint8;$/;" t -uint8 compat/compat_common.hpp /^typedef unsigned __int8 uint8;$/;" t -uint8_t compat/winosdef.h /^typedef unsigned char uint8_t;$/;" t -uint8_t http/http/http_parser.h /^typedef unsigned __int8 uint8_t;$/;" t +uint64 crt/crt_common.hpp /^typedef uint64_t uint64;$/;" t +uint64 crt/crt_common.hpp /^typedef unsigned __int64 uint64;$/;" t +uint64_t crt/winosdef.h /^typedef unsigned long long uint64_t;$/;" t +uint64_t net/http_protocol/http_parser.h /^typedef unsigned __int64 uint64_t;$/;" t +uint8 crt/crt_common.hpp /^typedef uint8_t uint8;$/;" t +uint8 crt/crt_common.hpp /^typedef unsigned __int8 uint8;$/;" t +uint8_t crt/winosdef.h /^typedef unsigned char uint8_t;$/;" t +uint8_t net/http_protocol/http_parser.h /^typedef unsigned __int8 uint8_t;$/;" t uint8_t uibase/uilib/core/pugixml.cpp /^ typedef unsigned __int8 uint8_t;$/;" t namespace:pugi file: -uintVal compat/compat_var.h /^ unsigned int uintVal;$/;" m union:tag_varaint_t::__anon30 +uintVal crt/crt_var.h /^ unsigned int uintVal;$/;" m union:tag_varaint_t::__anon25 uintptr_t uibase/uilib/core/pugixml.cpp /^ typedef size_t uintptr_t;$/;" t namespace:pugi file: -ulVal compat/compat_var.h /^ unsigned long ulVal;$/;" m union:tag_varaint_t::__anon30 -ullVal compat/compat_var.h /^ uint64_t ullVal;$/;" m union:tag_varaint_t::__anon30 -un net/protocol/icmp.h /^ } un;$/;" m struct:icmphdr_s typeref:union:icmphdr_s::__anon72 +ulVal crt/crt_var.h /^ unsigned long ulVal;$/;" m union:tag_varaint_t::__anon25 +ullVal crt/crt_var.h /^ uint64_t ullVal;$/;" m union:tag_varaint_t::__anon25 +un net/protocol/icmp.h /^ } un;$/;" m struct:icmphdr_s typeref:union:icmphdr_s::__anon67 unLockFlag access/sqlite3.c /^ unsigned char unLockFlag; \/* 1 = unlock, 0 = lock *\/$/;" m struct:ByteRangeLockPB2 file: unLockFlag logs/sqlite3.c /^ unsigned char unLockFlag; \/* 1 = unlock, 0 = lock *\/$/;" m struct:ByteRangeLockPB2 file: uncachableDomains polipo/forbidden.c /^DomainPtr *uncachableDomains = NULL;$/;" v uncachableFile polipo/forbidden.c /^AtomPtr uncachableFile = NULL;$/;" v uncachableRegex polipo/forbidden.c /^regex_t *uncachableRegex = NULL;$/;" v -unhex http/http/http_parser.cpp /^static const int8_t unhex[256] =$/;" v file: +unhex net/http_protocol/http_parser.cpp /^static const int8_t unhex[256] =$/;" v file: unicodeAddExceptions access/sqlite3.c /^static int unicodeAddExceptions($/;" f file: unicodeAddExceptions logs/sqlite3.c /^static int unicodeAddExceptions($/;" f file: unicodeClose access/sqlite3.c /^static int unicodeClose(sqlite3_tokenizer_cursor *pCursor){$/;" f file: @@ -26095,6 +26064,7 @@ unlockBtreeMutex logs/sqlite3.c /^static void unlockBtreeMutex(Btree *p){$/;" f unlockChunk polipo/object.c /^unlockChunk(ObjectPtr object, int i)$/;" f unlock_notify access/sqlite3.c /^ int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*);$/;" m struct:sqlite3_api_routines file: unlock_notify logs/sqlite3.c /^ int (*unlock_notify)(sqlite3*,void(*)(void**,int),void*);$/;" m struct:sqlite3_api_routines file: +unmapForMappingDriven vim_tool/.vim/autoload/acp.vim /^function s:unmapForMappingDriven()$/;" f unregisterConditionHandler polipo/event.c /^unregisterConditionHandler(ConditionHandlerPtr handler)$/;" f unregisterFdEvent polipo/event.c /^unregisterFdEvent(FdEventHandlerPtr event)$/;" f unregisterFdEventI polipo/event.c /^unregisterFdEventI(FdEventHandlerPtr event, int i)$/;" f file: @@ -26123,13 +26093,13 @@ updateVirtualTable access/sqlite3.c /^static void updateVirtualTable($/;" f file updateVirtualTable logs/sqlite3.c /^static void updateVirtualTable($/;" f file: update_hook access/sqlite3.c /^ void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*,$/;" m struct:sqlite3_api_routines file: update_hook logs/sqlite3.c /^ void * (*update_hook)(sqlite3*,void(*)(void*,int ,char const*,char const*,$/;" m struct:sqlite3_api_routines file: -update_offset base/code/compat_cjson.c /^static void update_offset(printbuffer * const buffer)$/;" f file: +update_offset stdcrt/code/compat_cjson.c /^static void update_offset(printbuffer * const buffer)$/;" f file: update_tag build_tag.sh /^function update_tag() $/;" f -upgrade http/http/http_parser.h /^ unsigned int upgrade : 1;$/;" m struct:http_parser +upgrade net/http_protocol/http_parser.h /^ unsigned int upgrade : 1;$/;" m struct:http_parser upperFunc access/sqlite3.c /^static void upperFunc(sqlite3_context *context, int argc, sqlite3_value **argv){$/;" f file: upperFunc logs/sqlite3.c /^static void upperFunc(sqlite3_context *context, int argc, sqlite3_value **argv){$/;" f file: -urg net/protocol/tcp.h /^ uint16_t urg : 1;$/;" m struct:tcphdr_s -urg_ptr net/protocol/tcp.h /^ uint16_t urg_ptr; \/\/ urgent pointer$/;" m struct:tcphdr_s +urg net/protocol/tcp.h /^ uint16_t urg:1;$/;" m struct:tcphdr_s +urg_ptr net/protocol/tcp.h /^ uint16_t urg_ptr; \/\/ urgent pointer$/;" m struct:tcphdr_s uri_boolean access/sqlite3.c /^ int (*uri_boolean)(const char*,const char*,int);$/;" m struct:sqlite3_api_routines file: uri_boolean logs/sqlite3.c /^ int (*uri_boolean)(const char*,const char*,int);$/;" m struct:sqlite3_api_routines file: uri_int64 access/sqlite3.c /^ sqlite3_int64 (*uri_int64)(const char*,const char*,sqlite3_int64);$/;" m struct:sqlite3_api_routines file: @@ -26174,31 +26144,31 @@ usesStmtJournal logs/sqlite3.c /^ bft usesStmtJournal:1; \/* True if uses a st uses_heap uibase/uilib/core/pugixml.cpp /^ bool uses_heap() const$/;" f class:xpath_string utf16_counter uibase/uilib/core/pugixml.cpp /^ struct utf16_counter$/;" s file: utf16_decoder uibase/uilib/core/pugixml.cpp /^ template struct utf16_decoder$/;" s file: -utf16_literal_to_utf8 base/code/compat_cjson.c /^static unsigned char utf16_literal_to_utf8(const unsigned char * const input_pointer, const unsigned char * const input_end, unsigned char **output_pointer)$/;" f file: +utf16_literal_to_utf8 stdcrt/code/compat_cjson.c /^static unsigned char utf16_literal_to_utf8(const unsigned char * const input_pointer, const unsigned char * const input_end, unsigned char **output_pointer)$/;" f file: utf16_writer uibase/uilib/core/pugixml.cpp /^ struct utf16_writer$/;" s file: utf32_counter uibase/uilib/core/pugixml.cpp /^ struct utf32_counter$/;" s file: utf32_decoder uibase/uilib/core/pugixml.cpp /^ template struct utf32_decoder$/;" s file: utf32_writer uibase/uilib/core/pugixml.cpp /^ struct utf32_writer$/;" s file: utf8_counter uibase/uilib/core/pugixml.cpp /^ struct utf8_counter$/;" s file: utf8_decoder uibase/uilib/core/pugixml.cpp /^ struct utf8_decoder$/;" s file: -utf8_to_ucs2 base/string/compat_utf8.c /^int utf8_to_ucs2(const char *in,$/;" f +utf8_to_ucs2 stdcrt/string/compat_utf8.c /^int utf8_to_ucs2(const char *in,$/;" f utf8_writer uibase/uilib/core/pugixml.cpp /^ struct utf8_writer$/;" s file: -uu_fast compat/compat_def.h 23;" d -uu_fast compat/compat_def.h 29;" d -uu_fast compat/compat_def.h 32;" d -uu_slow compat/compat_def.h 24;" d -uu_slow compat/compat_def.h 30;" d -uu_slow compat/compat_def.h 33;" d -uuid_t compat/compat_guid.hpp 20;" d +uu_fast crt/crt_def.h 23;" d +uu_fast crt/crt_def.h 29;" d +uu_fast crt/crt_def.h 32;" d +uu_slow crt/crt_def.h 24;" d +uu_slow crt/crt_def.h 30;" d +uu_slow crt/crt_def.h 33;" d +uuid_t crt/crt_guid.hpp 20;" d uvStdComNameSpace include/dlcom/unknown.h 11;" d uvStdComNameSpace include/dlcom/unknown.h 17;" d uvStdComNameSpaceBegin include/dlcom/unknown.h 9;" d uvStdComNameSpaceEnd include/dlcom/unknown.h 10;" d uvStdComNameSpaceEnd include/dlcom/unknown.h 16;" d uvStdComlNameSpaceBegin include/dlcom/unknown.h 15;" d -uv_barrier_destroy base/thread/compat_barrier.c /^void uv_barrier_destroy(_barrier_t* barrier) {$/;" f -uv_barrier_init base/thread/compat_barrier.c /^int uv_barrier_init(_barrier_t* barrier, unsigned int count) {$/;" f -uv_barrier_wait base/thread/compat_barrier.c /^int uv_barrier_wait(_barrier_t* barrier) {$/;" f +uv_barrier_destroy stdcrt/thread/compat_barrier.c /^void uv_barrier_destroy(_barrier_t* barrier) {$/;" f +uv_barrier_init stdcrt/thread/compat_barrier.c /^int uv_barrier_init(_barrier_t* barrier, unsigned int count) {$/;" f +uv_barrier_wait stdcrt/thread/compat_barrier.c /^int uv_barrier_wait(_barrier_t* barrier) {$/;" f v access/sqlite3.c /^ Vdbe *v; \/* Vdbe to iterate through the opcodes of *\/$/;" m struct:VdbeOpIter file: v access/sqlite3.c /^ Vdbe *v; \/* VM this frame belongs to *\/$/;" m struct:VdbeFrame file: v access/sqlite3.c /^ i64 v; \/* ROWID value for this entry *\/$/;" m struct:RowSetEntry file: @@ -26207,9 +26177,9 @@ v logs/sqlite3.c /^ Vdbe *v; \/* VM this frame belongs to *\/$/; v logs/sqlite3.c /^ i64 v; \/* ROWID value for this entry *\/$/;" m struct:RowSetEntry file: v msgbus/auth.hpp /^ unsigned int v; \/\/ver$/;" m struct:_BusProtocol v uibase/uilib/utils/stb_image.c /^ int h,v;$/;" m struct:__anon105::__anon106 file: -v1 compat/compat_var.h /^ provarv1 v1;$/;" m struct:tag_varaint_t -v2 compat/compat_var.h /^ provarv2 v2;$/;" m struct:tag_varaint_t -v3 compat/compat_var.h /^ provarv3 v3;$/;" m struct:tag_varaint_t +v1 crt/crt_var.h /^ provarv1 v1;$/;" m struct:tag_varaint_t +v2 crt/crt_var.h /^ provarv2 v2;$/;" m struct:tag_varaint_t +v3 crt/crt_var.h /^ provarv3 v3;$/;" m struct:tag_varaint_t va_copy polipo/polipo.h 212;" d vacuumFinalize access/sqlite3.c /^static int vacuumFinalize(sqlite3 *db, sqlite3_stmt *pStmt, char **pzErrMsg){$/;" f file: vacuumFinalize logs/sqlite3.c /^static int vacuumFinalize(sqlite3 *db, sqlite3_stmt *pStmt, char **pzErrMsg){$/;" f file: @@ -26227,16 +26197,16 @@ validateEntry polipo/diskcache.c /^validateEntry(ObjectPtr object, int fd, $/;" validateLocalEntry polipo/diskcache.c /^validateLocalEntry(ObjectPtr object, int fd,$/;" f validate_uint32 uibase/uilib/utils/stb_image.c /^typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1];$/;" t file: value access/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m struct:__anon22::__anon23 file: -value compat/compat_atomic.h /^ atomic_type value;$/;" m struct:_atomic_s -value logs/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m struct:__anon67::__anon68 file: +value crt/crt_atomic.h /^ atomic_type value;$/;" m struct:_atomic_s +value logs/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m struct:__anon62::__anon63 file: value polipo/config.c /^static struct config_state { char *name; int value; }$/;" m struct:config_state file: -value polipo/config.h /^ } value;$/;" m struct:_ConfigVariable typeref:union:_ConfigVariable::__anon78 +value polipo/config.h /^ } value;$/;" m struct:_ConfigVariable typeref:union:_ConfigVariable::__anon76 value uibase/uilib/core/pugixml.cpp /^ void* value;$/;" m struct:compact_hash_table::item_t file: value uibase/uilib/core/pugixml.cpp /^ bool value;$/;" m struct:xpath_variable_boolean file: value uibase/uilib/core/pugixml.cpp /^ char_t* value;$/;" m struct:xpath_variable_string file: value uibase/uilib/core/pugixml.cpp /^ double value;$/;" m struct:xpath_variable_number file: -value uibase/uilib/core/pugixml.cpp /^ enum { value = 0 };$/;" e enum:opt_false::__anon91 file: -value uibase/uilib/core/pugixml.cpp /^ enum { value = 1 };$/;" e enum:opt_true::__anon92 file: +value uibase/uilib/core/pugixml.cpp /^ enum { value = 0 };$/;" e enum:opt_false::__anon94 file: +value uibase/uilib/core/pugixml.cpp /^ enum { value = 1 };$/;" e enum:opt_true::__anon95 file: value uibase/uilib/core/pugixml.cpp /^ impl::compact_string<5, 3> value;$/;" m struct:pugi::xml_attribute_struct file: value uibase/uilib/core/pugixml.cpp /^ impl::compact_string<5, 3> value;$/;" m struct:pugi::xml_node_struct file: value uibase/uilib/core/pugixml.cpp /^ xpath_node_set value;$/;" m struct:xpath_variable_node_set file: @@ -26282,18 +26252,18 @@ value_type uibase/uilib/core/pugixml.cpp /^ typedef uint8_t* value_type;$/;" t value_type uibase/uilib/core/pugixml.hpp /^ typedef xml_attribute value_type;$/;" t class:pugi::xml_attribute_iterator value_type uibase/uilib/core/pugixml.hpp /^ typedef xml_node value_type;$/;" t class:pugi::xml_named_node_iterator value_type uibase/uilib/core/pugixml.hpp /^ typedef xml_node value_type;$/;" t class:pugi::xml_node_iterator -valuedouble compat/compat_cjson.h /^ double valuedouble;$/;" m struct:cJSON -valueint compat/compat_cjson.h /^ int valueint;$/;" m struct:cJSON +valuedouble crt/crt_cjson.h /^ double valuedouble;$/;" m struct:cJSON +valueint crt/crt_cjson.h /^ int valueint;$/;" m struct:cJSON values uibase/uilib/utils/stb_image.c /^ stbi_uc values[256];$/;" m struct:__anon104 file: -valuestring compat/compat_cjson.h /^ char *valuestring;$/;" m struct:cJSON -var_enum_t compat/compat_var.h /^enum var_enum_t$/;" g -var_type compat/compat_var.h /^typedef unsigned short var_type;$/;" t -varaint_t compat/compat_var.h /^}varaint_t;$/;" t typeref:struct:tag_varaint_t -varaint_t_copy base/stdlib/compat_var.c /^int varaint_t_copy(varaint_t* src, const varaint_t* dst)$/;" f -varaint_t_free_string base/stdlib/compat_var.c /^int varaint_t_free_string(varaint_t* src)$/;" f -varaint_t_init base/stdlib/compat_var.c /^void varaint_t_init(varaint_t* src)$/;" f -varaint_t_malloc_string base/stdlib/compat_var.c /^int varaint_t_malloc_string(varaint_t* src, ULONG size)$/;" f -variable uibase/uilib/core/pugixml.cpp /^ xpath_variable* variable;$/;" m union:xpath_ast_node::__anon96 file: +valuestring crt/crt_cjson.h /^ char *valuestring;$/;" m struct:cJSON +var_enum_t crt/crt_var.h /^enum var_enum_t$/;" g +var_type crt/crt_var.h /^typedef unsigned short var_type;$/;" t +varaint_t crt/crt_var.h /^}varaint_t;$/;" t typeref:struct:tag_varaint_t +varaint_t_copy stdcrt/stdlib/compat_var.c /^int varaint_t_copy(varaint_t* src, const varaint_t* dst)$/;" f +varaint_t_free_string stdcrt/stdlib/compat_var.c /^int varaint_t_free_string(varaint_t* src)$/;" f +varaint_t_init stdcrt/stdlib/compat_var.c /^void varaint_t_init(varaint_t* src)$/;" f +varaint_t_malloc_string stdcrt/stdlib/compat_var.c /^int varaint_t_malloc_string(varaint_t* src, ULONG size)$/;" f +variable uibase/uilib/core/pugixml.cpp /^ xpath_variable* variable;$/;" m union:xpath_ast_node::__anon99 file: vdbeCommit access/sqlite3.c /^static int vdbeCommit(sqlite3 *db, Vdbe *p){$/;" f file: vdbeCommit logs/sqlite3.c /^static int vdbeCommit(sqlite3 *db, Vdbe *p){$/;" f file: vdbeFreeOpArray access/sqlite3.c /^static void vdbeFreeOpArray(sqlite3 *db, Op *aOp, int nOp){$/;" f file: @@ -26340,7 +26310,7 @@ vdbeVComment access/sqlite3.c /^static void vdbeVComment(Vdbe *p, const char *zF vdbeVComment logs/sqlite3.c /^static void vdbeVComment(Vdbe *p, const char *zFormat, va_list ap){$/;" f file: verifyDbFile access/sqlite3.c /^static void verifyDbFile(unixFile *pFile){$/;" f file: verifyDbFile logs/sqlite3.c /^static void verifyDbFile(unixFile *pFile){$/;" f file: -version net/protocol/ip.h /^ uint8_t version : 4;$/;" m struct:iphdr_s +version net/protocol/ip.h /^ uint8_t version:4;$/;" m struct:iphdr_s version polipo/http.h /^ int version;$/;" m struct:_HTTPConnection version polipo/server.h /^ int version;$/;" m struct:_HTTPServer versionFunc access/sqlite3.c /^static void versionFunc($/;" f file: @@ -26365,14 +26335,13 @@ viaCoroutine access/sqlite3.c /^ unsigned viaCoroutine :1; \/* Implemented a viaCoroutine logs/sqlite3.c /^ unsigned viaCoroutine :1; \/* Implemented as a co-routine *\/$/;" m struct:SrcList::SrcList_item file: vmprintf access/sqlite3.c /^ char *(*vmprintf)(const char*,va_list);$/;" m struct:sqlite3_api_routines file: vmprintf logs/sqlite3.c /^ char *(*vmprintf)(const char*,va_list);$/;" m struct:sqlite3_api_routines file: -volatile CMakeFiles/3.16.3/CompilerIdC/CMakeCCompilerId.c 11;" d file: vs uibase/uilib/utils/stb_image.c /^ int hs,vs; \/\/ expansion factor in each axis$/;" m struct:__anon107 file: vsnprintf access/sqlite3.c /^ char *(*vsnprintf)(int,char*,const char*,va_list);$/;" m struct:sqlite3_api_routines file: vsnprintf logs/sqlite3.c /^ char *(*vsnprintf)(int,char*,const char*,va_list);$/;" m struct:sqlite3_api_routines file: vsprintf_a polipo/util.c /^vsprintf_a(const char *f, va_list args)$/;" f -vt compat/compat_var.h /^ var_type vt;$/;" m struct:tag_varaint_t +vt crt/crt_var.h /^ var_type vt;$/;" m struct:tag_varaint_t vtab access/sqlite3.c /^ } vtab;$/;" m union:WhereLoop::__anon18 typeref:struct:WhereLoop::__anon18::__anon20 file: -vtab logs/sqlite3.c /^ } vtab;$/;" m union:WhereLoop::__anon63 typeref:struct:WhereLoop::__anon63::__anon65 file: +vtab logs/sqlite3.c /^ } vtab;$/;" m union:WhereLoop::__anon58 typeref:struct:WhereLoop::__anon58::__anon60 file: vtabBestIndex access/sqlite3.c /^static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){$/;" f file: vtabBestIndex logs/sqlite3.c /^static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){$/;" f file: vtabCallConstructor access/sqlite3.c /^static int vtabCallConstructor($/;" f file: @@ -26402,10 +26371,10 @@ wParam extensions/include/ui/iuibase.h /^ WPARAM wParam;$/;" m struct:TagNotifyE wParam uibase/uilib/core/uidefine.h /^ WPARAM wParam;$/;" m struct:DuiLib::tagTNotifyUI wParam uibase/uilib/core/uimanager.h /^ WPARAM wParam;$/;" m struct:DuiLib::tagTEventUI w_lores uibase/uilib/utils/stb_image.c /^ int w_lores; \/\/ horizontal pixels pre-expansion$/;" m struct:__anon107 file: -w_space net/protocol/dns.cpp /^const char *const w_space = " \\t\\n\\r";$/;" v -wait_done compat/winsysvar.hpp /^ _sem_t wait_done;$/;" m struct:__anon35 -wait_sem compat/winsysvar.hpp /^ _sem_t wait_sem;$/;" m struct:__anon35 -waiting compat/winsysvar.hpp /^ atomic_type waiting;$/;" m struct:__anon35 +w_space net/protocol/dns.c /^const char *const w_space = " \\t\\n\\r";$/;" v +wait_done crt/winsysvar.hpp /^ _sem_t wait_done;$/;" m struct:__anon32 +wait_sem crt/winsysvar.hpp /^ _sem_t wait_sem;$/;" m struct:__anon32 +waiting crt/winsysvar.hpp /^ atomic_type waiting;$/;" m struct:__anon32 walBusyLock access/sqlite3.c /^static int walBusyLock($/;" f file: walBusyLock logs/sqlite3.c /^static int walBusyLock($/;" f file: walCheckpoint access/sqlite3.c /^static int walCheckpoint($/;" f file: @@ -26507,9 +26476,9 @@ wchar_selector uibase/uilib/core/pugixml.cpp /^ template <> struct wchar_selecto wchar_writer uibase/uilib/core/pugixml.cpp /^ typedef wchar_selector::writer wchar_writer;$/;" t file: wctrlFlags access/sqlite3.c /^ u16 wctrlFlags; \/* Flags originally passed to sqlite3WhereBegin() *\/$/;" m struct:WhereInfo file: wctrlFlags logs/sqlite3.c /^ u16 wctrlFlags; \/* Flags originally passed to sqlite3WhereBegin() *\/$/;" m struct:WhereInfo file: -wdebug_view compat/compat_debug.hpp 20;" d -wdebug_view compat/compat_debug.hpp 24;" d -wdebug_view compat/compat_debug.hpp 27;" d +wdebug_view crt/crt_debug.hpp 20;" d +wdebug_view crt/crt_debug.hpp 24;" d +wdebug_view crt/crt_debug.hpp 27;" d what polipo/event.c /^ int what;$/;" m struct:_FdEventHandlerPoke file: what uibase/uilib/core/pugixml.cpp /^ PUGI__FN const char* xpath_exception::what() const throw()$/;" f class:pugi::xpath_exception whereAndInfoDelete access/sqlite3.c /^static void whereAndInfoDelete(sqlite3 *db, WhereAndInfo *p){$/;" f file: @@ -26688,6 +26657,8 @@ winLogIoerr access/sqlite3.c /^static void winLogIoerr(int nRetry){$/;" f file: winLogIoerr logs/sqlite3.c /^static void winLogIoerr(int nRetry){$/;" f file: winMakeEndInDirSep access/sqlite3.c /^static int winMakeEndInDirSep(int nBuf, char *zBuf){$/;" f file: winMakeEndInDirSep logs/sqlite3.c /^static int winMakeEndInDirSep(int nBuf, char *zBuf){$/;" f file: +winManagerWidth vim_tool/.vim/plugin/winmanager.vim /^ let g:winManagerWidth = 25$/;" v +winManagerWindowLayout vim_tool/.vim/plugin/winmanager.vim /^ let g:winManagerWindowLayout = "FileExplorer,TagsExplorer|BufExplorer"$/;" v winMapfile access/sqlite3.c /^static int winMapfile(winFile *pFd, sqlite3_int64 nByte){$/;" f file: winMapfile logs/sqlite3.c /^static int winMapfile(winFile *pFd, sqlite3_int64 nByte){$/;" f file: winMbcsToUnicode access/sqlite3.c /^static LPWSTR winMbcsToUnicode(const char *zFilename){$/;" f file: @@ -26852,7 +26823,9 @@ winceMutexRelease access/sqlite3.c 33169;" d file: winceMutexRelease logs/sqlite3.c 33169;" d file: winceUnlockFile access/sqlite3.c /^static BOOL winceUnlockFile($/;" f file: winceUnlockFile logs/sqlite3.c /^static BOOL winceUnlockFile($/;" f file: -window net/protocol/tcp.h /^ uint16_t window;$/;" m struct:tcphdr_s +window mainuiapp/AppDelegate.h /^@property (strong, nonatomic) UIWindow * window;$/;" v +window mainuiapp/SceneDelegate.h /^@property (strong, nonatomic) UIWindow * window;$/;" v +window net/protocol/tcp.h /^ uint16_t window;$/;" m struct:tcphdr_s withDup access/sqlite3.c /^static With *withDup(sqlite3 *db, With *p){$/;" f file: withDup access/sqlite3.c 77313;" d file: withDup logs/sqlite3.c /^static With *withDup(sqlite3 *db, With *p){$/;" f file: @@ -26861,7 +26834,7 @@ withExpand access/sqlite3.c /^static int withExpand($/;" f file: withExpand logs/sqlite3.c /^static int withExpand($/;" f file: wlen 3rd/include/ioeventdef.h /^ unsigned long wlen;$/;" m struct:io_data_s work 3rd/include/iocontext.hpp /^ io_work_ptr work;$/;" m struct:io_context_s -work compat/compat_funcb.h /^ funccb work;$/;" m struct:io_func_s +work crt/crt_funcb.h /^ funccb work;$/;" m struct:io_func_s workToDo polipo/event.c /^workToDo()$/;" f workfunccb 3rd/include/iocontext.hpp /^ static int workfunccb(void* data, void* context) {$/;" f class:IoContextBase workfunccb include/utilex/threadpool.hpp /^ static int workfunccb(void* data, void* ctx)$/;" f class:CThreadPool @@ -26897,7 +26870,7 @@ writeMasterJournal logs/sqlite3.c /^static int writeMasterJournal(Pager *pPager, writePid polipo/util.c /^writePid(char *pidfile)$/;" f write_buffer uibase/uilib/core/pugixml.cpp /^ void write_buffer(const char_t* data, size_t length)$/;" f class:xml_buffered_writer write_direct uibase/uilib/core/pugixml.cpp /^ void write_direct(const char_t* data, size_t length)$/;" f class:xml_buffered_writer -write_semaphore_ compat/winsysvar.hpp /^ _sem_t write_semaphore_;$/;" m struct:__anon36::__anon37 +write_semaphore_ crt/winsysvar.hpp /^ _sem_t write_semaphore_;$/;" m struct:__anon33::__anon34 write_string uibase/uilib/core/pugixml.cpp /^ void write_string(const char_t* data)$/;" f class:xml_buffered_writer writeoutMetadata polipo/diskcache.c /^writeoutMetadata(ObjectPtr object)$/;" f writeoutObjects polipo/object.c /^writeoutObjects(int all)$/;" f @@ -26934,34 +26907,34 @@ wsdStatInit access/sqlite3.c 14070;" d file: wsdStatInit access/sqlite3.c 14073;" d file: wsdStatInit logs/sqlite3.c 14070;" d file: wsdStatInit logs/sqlite3.c 14073;" d file: -wstring_strcat compat/compat_tstring.h 13;" d -wstring_strchr compat/compat_tstring.h 14;" d -wstring_strcpy compat/compat_tstring.h 12;" d -wstring_stricmp compat/compat_tstring.h 22;" d -wstring_stricmp compat/compat_tstring.h 32;" d -wstring_stricmp compat/compat_tstring.h 42;" d -wstring_strlen compat/compat_tstring.h 15;" d +wstring_strcat crt/crt_tstring.h 13;" d +wstring_strchr crt/crt_tstring.h 14;" d +wstring_strcpy crt/crt_tstring.h 12;" d +wstring_stricmp crt/crt_tstring.h 22;" d +wstring_stricmp crt/crt_tstring.h 32;" d +wstring_stricmp crt/crt_tstring.h 42;" d +wstring_strlen crt/crt_tstring.h 15;" d wtFlags access/sqlite3.c /^ u8 wtFlags; \/* TERM_xxx bit flags. See below *\/$/;" m struct:WhereTerm file: wtFlags logs/sqlite3.c /^ u8 wtFlags; \/* TERM_xxx bit flags. See below *\/$/;" m struct:WhereTerm file: x access/sqlite3.c /^ } x;$/;" m union:ExprList::ExprList_item::__anon5 typeref:struct:ExprList::ExprList_item::__anon5::__anon6 file: x access/sqlite3.c /^ } x;$/;" m struct:Expr typeref:union:Expr::__anon4 file: -x compat/darwinossysdef.h /^ LONG x;$/;" m struct:_POINTL -x compat/darwinossysdef.h /^ LONG x;$/;" m struct:tagPOINT -x compat/posixossysdef.h /^ LONG x;$/;" m struct:tagPOINT -x compat/posixossysdef.h /^ LONG x;$/;" m struct:_POINTL -x logs/sqlite3.c /^ } x;$/;" m union:ExprList::ExprList_item::__anon50 typeref:struct:ExprList::ExprList_item::__anon50::__anon51 file: -x logs/sqlite3.c /^ } x;$/;" m struct:Expr typeref:union:Expr::__anon49 file: +x crt/darwinossysdef.h /^ LONG x;$/;" m struct:_POINTL +x crt/darwinossysdef.h /^ LONG x;$/;" m struct:tagPOINT +x crt/posixossysdef.h /^ LONG x;$/;" m struct:tagPOINT +x crt/posixossysdef.h /^ LONG x;$/;" m struct:_POINTL +x logs/sqlite3.c /^ } x;$/;" m union:ExprList::ExprList_item::__anon45 typeref:struct:ExprList::ExprList_item::__anon45::__anon46 file: +x logs/sqlite3.c /^ } x;$/;" m struct:Expr typeref:union:Expr::__anon44 file: x uibase/uilib/utils/stb_image.c /^ int x,y,w2,h2;$/;" m struct:__anon105::__anon106 file: xAccess access/sqlite3.c /^ int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);$/;" m struct:sqlite3_vfs file: xAccess access/sqlite3.h /^ int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);$/;" m struct:sqlite3_vfs xAccess logs/sqlite3.c /^ int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);$/;" m struct:sqlite3_vfs file: xAccess logs/sqlite3.h /^ int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);$/;" m struct:sqlite3_vfs xAdvance access/sqlite3.c /^ int (*xAdvance)(BtCursor *, int *);$/;" m union:VdbeOp::__anon1 file: -xAdvance logs/sqlite3.c /^ int (*xAdvance)(BtCursor *, int *);$/;" m union:VdbeOp::__anon46 file: +xAdvance logs/sqlite3.c /^ int (*xAdvance)(BtCursor *, int *);$/;" m union:VdbeOp::__anon41 file: xAuth access/sqlite3.c /^ int (*xAuth)(void*,int,const char*,const char*,const char*,const char*);$/;" m struct:sqlite3 file: xAuth logs/sqlite3.c /^ int (*xAuth)(void*,int,const char*,const char*,const char*,const char*);$/;" m struct:sqlite3 file: xBacktrace access/sqlite3.c /^ void (*xBacktrace)(int, int, void **);$/;" m struct:__anon10 file: -xBacktrace logs/sqlite3.c /^ void (*xBacktrace)(int, int, void **);$/;" m struct:__anon55 file: +xBacktrace logs/sqlite3.c /^ void (*xBacktrace)(int, int, void **);$/;" m struct:__anon50 file: xBegin access/sqlite3.c /^ int (*xBegin)(sqlite3_vtab *pVTab);$/;" m struct:sqlite3_module file: xBegin access/sqlite3.h /^ int (*xBegin)(sqlite3_vtab *pVTab);$/;" m struct:sqlite3_module xBegin logs/sqlite3.c /^ int (*xBegin)(sqlite3_vtab *pVTab);$/;" m struct:sqlite3_module file: @@ -27350,8 +27323,8 @@ xWrite access/sqlite3.c /^ int (*xWrite)(sqlite3_file*, const void*, int iAmt, xWrite access/sqlite3.h /^ int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);$/;" m struct:sqlite3_io_methods xWrite logs/sqlite3.c /^ int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);$/;" m struct:sqlite3_io_methods file: xWrite logs/sqlite3.h /^ int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);$/;" m struct:sqlite3_io_methods -xadd base/stdlib/compat_atomic.c /^atomic_type xadd(atomic_type* ptr)$/;" f -xdel base/stdlib/compat_atomic.c /^atomic_type xdel(atomic_type* ptr)$/;" f +xadd stdcrt/stdlib/compat_atomic.c /^atomic_type xadd(atomic_type* ptr)$/;" f +xdel stdcrt/stdlib/compat_atomic.c /^atomic_type xdel(atomic_type* ptr)$/;" f xferCompatibleCollation access/sqlite3.c /^static int xferCompatibleCollation(const char *z1, const char *z2){$/;" f file: xferCompatibleCollation logs/sqlite3.c /^static int xferCompatibleCollation(const char *z1, const char *z2){$/;" f file: xferCompatibleIndex access/sqlite3.c /^static int xferCompatibleIndex(Index *pDest, Index *pSrc){$/;" f file: @@ -27495,10 +27468,10 @@ xpath_variable_string uibase/uilib/core/pugixml.cpp /^ xpath_variable_string(): xpath_variable_string uibase/uilib/core/pugixml.cpp /^ struct xpath_variable_string: xpath_variable$/;" s file: xthreadsafe access/sqlite3.c /^ int (*xthreadsafe)(void);$/;" m struct:sqlite3_api_routines file: xthreadsafe logs/sqlite3.c /^ int (*xthreadsafe)(void);$/;" m struct:sqlite3_api_routines file: -y compat/darwinossysdef.h /^ LONG y;$/;" m struct:_POINTL -y compat/darwinossysdef.h /^ LONG y;$/;" m struct:tagPOINT -y compat/posixossysdef.h /^ LONG y;$/;" m struct:_POINTL -y compat/posixossysdef.h /^ LONG y;$/;" m struct:tagPOINT +y crt/darwinossysdef.h /^ LONG y;$/;" m struct:_POINTL +y crt/darwinossysdef.h /^ LONG y;$/;" m struct:tagPOINT +y crt/posixossysdef.h /^ LONG y;$/;" m struct:_POINTL +y crt/posixossysdef.h /^ LONG y;$/;" m struct:tagPOINT y uibase/uilib/utils/stb_image.c /^ int x,y,w2,h2;$/;" m struct:__anon105::__anon106 file: yColCache access/sqlite3.c /^ struct yColCache {$/;" s struct:Parse file: yColCache logs/sqlite3.c /^ struct yColCache {$/;" s struct:Parse file: @@ -27513,37 +27486,37 @@ ynVar logs/sqlite3.c /^typedef int ynVar;$/;" t file: ypos uibase/uilib/utils/stb_image.c /^ int ypos; \/\/ which pre-expansion row we're on$/;" m struct:__anon107 file: ystep uibase/uilib/utils/stb_image.c /^ int ystep; \/\/ how far through vertical expansion we are$/;" m struct:__anon107 file: yy0 access/sqlite3.c /^ sqlite3ParserTOKENTYPE yy0;$/;" m union:__anon22 file: -yy0 logs/sqlite3.c /^ sqlite3ParserTOKENTYPE yy0;$/;" m union:__anon67 file: +yy0 logs/sqlite3.c /^ sqlite3ParserTOKENTYPE yy0;$/;" m union:__anon62 file: yy132 access/sqlite3.c /^ Expr* yy132;$/;" m union:__anon22 file: -yy132 logs/sqlite3.c /^ Expr* yy132;$/;" m union:__anon67 file: +yy132 logs/sqlite3.c /^ Expr* yy132;$/;" m union:__anon62 file: yy14 access/sqlite3.c /^ ExprList* yy14;$/;" m union:__anon22 file: -yy14 logs/sqlite3.c /^ ExprList* yy14;$/;" m union:__anon67 file: +yy14 logs/sqlite3.c /^ ExprList* yy14;$/;" m union:__anon62 file: yy186 access/sqlite3.c /^ u8 yy186;$/;" m union:__anon22 file: -yy186 logs/sqlite3.c /^ u8 yy186;$/;" m union:__anon67 file: +yy186 logs/sqlite3.c /^ u8 yy186;$/;" m union:__anon62 file: yy3 access/sqlite3.c /^ Select* yy3;$/;" m union:__anon22 file: -yy3 logs/sqlite3.c /^ Select* yy3;$/;" m union:__anon67 file: +yy3 logs/sqlite3.c /^ Select* yy3;$/;" m union:__anon62 file: yy328 access/sqlite3.c /^ int yy328;$/;" m union:__anon22 file: -yy328 logs/sqlite3.c /^ int yy328;$/;" m union:__anon67 file: +yy328 logs/sqlite3.c /^ int yy328;$/;" m union:__anon62 file: yy346 access/sqlite3.c /^ ExprSpan yy346;$/;" m union:__anon22 file: -yy346 logs/sqlite3.c /^ ExprSpan yy346;$/;" m union:__anon67 file: +yy346 logs/sqlite3.c /^ ExprSpan yy346;$/;" m union:__anon62 file: yy378 access/sqlite3.c /^ struct TrigEvent yy378;$/;" m union:__anon22 typeref:struct:__anon22::TrigEvent file: -yy378 logs/sqlite3.c /^ struct TrigEvent yy378;$/;" m union:__anon67 typeref:struct:__anon67::TrigEvent file: +yy378 logs/sqlite3.c /^ struct TrigEvent yy378;$/;" m union:__anon62 typeref:struct:__anon62::TrigEvent file: yy381 access/sqlite3.c /^ u16 yy381;$/;" m union:__anon22 file: -yy381 logs/sqlite3.c /^ u16 yy381;$/;" m union:__anon67 file: +yy381 logs/sqlite3.c /^ u16 yy381;$/;" m union:__anon62 file: yy408 access/sqlite3.c /^ IdList* yy408;$/;" m union:__anon22 file: -yy408 logs/sqlite3.c /^ IdList* yy408;$/;" m union:__anon67 file: +yy408 logs/sqlite3.c /^ IdList* yy408;$/;" m union:__anon62 file: yy429 access/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m union:__anon22 typeref:struct:__anon22::__anon23 file: -yy429 logs/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m union:__anon67 typeref:struct:__anon67::__anon68 file: +yy429 logs/sqlite3.c /^ struct {int value; int mask;} yy429;$/;" m union:__anon62 typeref:struct:__anon62::__anon63 file: yy473 access/sqlite3.c /^ TriggerStep* yy473;$/;" m union:__anon22 file: -yy473 logs/sqlite3.c /^ TriggerStep* yy473;$/;" m union:__anon67 file: +yy473 logs/sqlite3.c /^ TriggerStep* yy473;$/;" m union:__anon62 file: yy476 access/sqlite3.c /^ struct LimitVal yy476;$/;" m union:__anon22 typeref:struct:__anon22::LimitVal file: -yy476 logs/sqlite3.c /^ struct LimitVal yy476;$/;" m union:__anon67 typeref:struct:__anon67::LimitVal file: +yy476 logs/sqlite3.c /^ struct LimitVal yy476;$/;" m union:__anon62 typeref:struct:__anon62::LimitVal file: yy59 access/sqlite3.c /^ With* yy59;$/;" m union:__anon22 file: -yy59 logs/sqlite3.c /^ With* yy59;$/;" m union:__anon67 file: +yy59 logs/sqlite3.c /^ With* yy59;$/;" m union:__anon62 file: yy65 access/sqlite3.c /^ SrcList* yy65;$/;" m union:__anon22 file: -yy65 logs/sqlite3.c /^ SrcList* yy65;$/;" m union:__anon67 file: +yy65 logs/sqlite3.c /^ SrcList* yy65;$/;" m union:__anon62 file: yy96 access/sqlite3.c /^ struct LikeOp yy96;$/;" m union:__anon22 typeref:struct:__anon22::LikeOp file: -yy96 logs/sqlite3.c /^ struct LikeOp yy96;$/;" m union:__anon67 typeref:struct:__anon67::LikeOp file: +yy96 logs/sqlite3.c /^ struct LikeOp yy96;$/;" m union:__anon62 typeref:struct:__anon62::LikeOp file: yyFallback access/sqlite3.c /^static const YYCODETYPE yyFallback[] = {$/;" v file: yyFallback logs/sqlite3.c /^static const YYCODETYPE yyFallback[] = {$/;" v file: yyGrowStack access/sqlite3.c /^static void yyGrowStack(yyParser *p){$/;" f file: @@ -27553,7 +27526,7 @@ yyParser access/sqlite3.c /^typedef struct yyParser yyParser;$/;" t typeref:stru yyParser logs/sqlite3.c /^struct yyParser {$/;" s file: yyParser logs/sqlite3.c /^typedef struct yyParser yyParser;$/;" t typeref:struct:yyParser file: yyRuleInfo access/sqlite3.c /^} yyRuleInfo[] = {$/;" v typeref:struct:__anon24 file: -yyRuleInfo logs/sqlite3.c /^} yyRuleInfo[] = {$/;" v typeref:struct:__anon69 file: +yyRuleInfo logs/sqlite3.c /^} yyRuleInfo[] = {$/;" v typeref:struct:__anon64 file: yyRuleName access/sqlite3.c /^static const char *const yyRuleName[] = {$/;" v file: yyRuleName logs/sqlite3.c /^static const char *const yyRuleName[] = {$/;" v file: yyStackEntry access/sqlite3.c /^struct yyStackEntry {$/;" s file: @@ -27603,7 +27576,7 @@ yyidx logs/sqlite3.c /^ int yyidx; \/* Index of top element yyidxMax access/sqlite3.c /^ int yyidxMax; \/* Maximum value of yyidx *\/$/;" m struct:yyParser file: yyidxMax logs/sqlite3.c /^ int yyidxMax; \/* Maximum value of yyidx *\/$/;" m struct:yyParser file: yyinit access/sqlite3.c /^ int yyinit;$/;" m union:__anon22 file: -yyinit logs/sqlite3.c /^ int yyinit;$/;" m union:__anon67 file: +yyinit logs/sqlite3.c /^ int yyinit;$/;" m union:__anon62 file: yystack access/sqlite3.c /^ yyStackEntry *yystack; \/* The parser's stack *\/$/;" m struct:yyParser file: yystack logs/sqlite3.c /^ yyStackEntry *yystack; \/* The parser's stack *\/$/;" m struct:yyParser file: yystksz access/sqlite3.c /^ int yystksz; \/* Current side of the stack *\/$/;" m struct:yyParser file: @@ -27619,7 +27592,7 @@ z access/sqlite3.c /^ char *z; \/* Pointer to buffer con z access/sqlite3.c /^ char *z; \/* Text of the token *\/$/;" m struct:Fts3PhraseToken file: z access/sqlite3.c /^ char *z; \/* String or BLOB value *\/$/;" m struct:Mem file: z access/sqlite3.c /^ const char *z; \/* Text of the token. Not NULL-terminated! *\/$/;" m struct:Token file: -z logs/sqlite3.c /^ char *z; \/* Pointer to data for string (char array) types *\/$/;" m union:VdbeOp::__anon46 file: +z logs/sqlite3.c /^ char *z; \/* Pointer to data for string (char array) types *\/$/;" m union:VdbeOp::__anon41 file: z logs/sqlite3.c /^ char *z; \/* Pointer to buffer containing string *\/$/;" m struct:StrBuffer file: z logs/sqlite3.c /^ char *z; \/* Text of the token *\/$/;" m struct:Fts3PhraseToken file: z logs/sqlite3.c /^ char *z; \/* String or BLOB value *\/$/;" m struct:Mem file: @@ -27793,14 +27766,14 @@ zTerm logs/sqlite3.c /^ const char *zTerm;$/;" m struct:Fts3SegFilter file: zText access/sqlite3.c /^ char *zText; \/* The string collected so far *\/$/;" m struct:StrAccum file: zText logs/sqlite3.c /^ char *zText; \/* The string collected so far *\/$/;" m struct:StrAccum file: zTitle access/sqlite3.c /^ char zTitle[100]; \/* The title text *\/$/;" m struct:__anon10 file: -zTitle logs/sqlite3.c /^ char zTitle[100]; \/* The title text *\/$/;" m struct:__anon55 file: +zTitle logs/sqlite3.c /^ char zTitle[100]; \/* The title text *\/$/;" m struct:__anon50 file: zTo access/sqlite3.c /^ char *zTo; \/* Name of table that the key points to (aka: Parent) *\/$/;" m struct:FKey file: zTo logs/sqlite3.c /^ char *zTo; \/* Name of table that the key points to (aka: Parent) *\/$/;" m struct:FKey file: zToken access/sqlite3.c /^ char *zToken; \/* Token value. Zero terminated and dequoted *\/$/;" m union:Expr::__anon3 file: zToken access/sqlite3.c /^ char *zToken; \/* storage for current token *\/$/;" m struct:unicode_cursor file: zToken access/sqlite3.c /^ char *zToken; \/* storage for current token *\/$/;" m struct:porter_tokenizer_cursor file: zToken access/sqlite3.c /^ const char *zToken; \/* Current 'token' value *\/$/;" m struct:Fts3tokCursor file: -zToken logs/sqlite3.c /^ char *zToken; \/* Token value. Zero terminated and dequoted *\/$/;" m union:Expr::__anon48 file: +zToken logs/sqlite3.c /^ char *zToken; \/* Token value. Zero terminated and dequoted *\/$/;" m union:Expr::__anon43 file: zToken logs/sqlite3.c /^ char *zToken; \/* storage for current token *\/$/;" m struct:unicode_cursor file: zToken logs/sqlite3.c /^ char *zToken; \/* storage for current token *\/$/;" m struct:porter_tokenizer_cursor file: zToken logs/sqlite3.c /^ const char *zToken; \/* Current 'token' value *\/$/;" m struct:Fts3tokCursor file: @@ -27830,11 +27803,13 @@ zout uibase/uilib/utils/stb_image.c /^ char *zout;$/;" m struct:__anon109 file zout_end uibase/uilib/utils/stb_image.c /^ char *zout_end;$/;" m struct:__anon109 file: zout_start uibase/uilib/utils/stb_image.c /^ char *zout_start;$/;" m struct:__anon109 file: ~CAgentImpl msgbus/agent.cpp /^CAgentImpl::~CAgentImpl(void)$/;" f class:CAgentImpl +~CAppViewImpl mainui/appviewimpl.cpp /^CAppViewImpl::~CAppViewImpl(void)$/;" f class:CAppViewImpl +~CAppViewImpl mainuiapp/appviewimpl.cpp /^CAppViewImpl::~CAppViewImpl(void)$/;" f class:CAppViewImpl +~CAppViewImpl testmain/appviewimpl.cpp /^CAppViewImpl::~CAppViewImpl(void)$/;" f class:CAppViewImpl ~CAsynFrameImpl asynio/asynframeimpl.cpp /^CAsynFrameImpl::~CAsynFrameImpl(void)$/;" f class:CAsynFrameImpl ~CAutoLock include/utilex/autolock.hpp /^ virtual ~CAutoLock()$/;" f class:CAutoLock ~CBrokerImpl msgbus/broker.cpp /^CBrokerImpl::~CBrokerImpl(void)$/;" f class:CBrokerImpl ~CChannel include/comutiliy/cchannel.hpp /^ virtual ~CChannel(void) {$/;" f class:CChannel -~CChannel include/comutiliy/ctimer.hpp /^ virtual ~CChannel(void) {$/;" f class:CChannel ~CComLoader include/dlcom/loadcom.hpp /^ virtual ~CComLoader()$/;" f class:CComLoader ~CComRunningObjectTableImpl container/rot.cpp /^CComRunningObjectTableImpl::~CComRunningObjectTableImpl()$/;" f class:CComRunningObjectTableImpl ~CCondHandle include/utilex/cond.hpp /^ ~CCondHandle() {$/;" f class:CCondHandle @@ -27854,9 +27829,8 @@ zout_start uibase/uilib/utils/stb_image.c /^ char *zout_start;$/;" m struct:__ ~CFileImpl asynio/fileimpl.cpp /^CFileImpl::~CFileImpl(void)$/;" f class:CFileImpl ~CFontImpl res/fontimpl.cpp /^CFontImpl::~CFontImpl(void)$/;" f class:CFontImpl ~CGifAnimUI uibase/uilib/control/uigifanim.cpp /^ CGifAnimUI::~CGifAnimUI(void)$/;" f class:DuiLib::CGifAnimUI -~CHttpImpl http/httpimpl.cpp /^CHttpImpl::~CHttpImpl(void)$/;" f class:CHttpImpl -~CHttpParser http/http/chttpparser.cpp /^CHttpParser::~CHttpParser(void)$/;" f class:CHttpParser -~CHttptImpl http/httptimpl.cpp /^CHttptImpl::~CHttptImpl(void)$/;" f class:CHttptImpl +~CHttpParser net/http_protocol/chttpparser.cpp /^CHttpParser::~CHttpParser(void)$/;" f class:CHttpParser +~CHttptImpl net/httptimpl.cpp /^CHttptImpl::~CHttptImpl(void)$/;" f class:CHttptImpl ~CIoOperationImpl asynio/iooperationimpl.cpp /^CIoOperationImpl::~CIoOperationImpl()$/;" f class:CIoOperationImpl ~CLabelUI uibase/uilib/control/uilabel.cpp /^ CLabelUI::~CLabelUI()$/;" f class:DuiLib::CLabelUI ~CLangImpl res/langimpl.cpp /^CLangImpl::~CLangImpl(void)$/;" f class:CLangImpl @@ -27938,8 +27912,8 @@ zout_start uibase/uilib/utils/stb_image.c /^ char *zout_start;$/;" m struct:__ ~Serialize include/comutiliy/serialize.hpp /^ virtual ~Serialize(void)$/;" f class:Serialize ~WindowImplBase uibase/uilib/utils/winimplbase.h /^ virtual ~WindowImplBase(){};$/;" f class:DuiLib::WindowImplBase ~auto_deleter uibase/uilib/core/pugixml.cpp /^ ~auto_deleter()$/;" f struct:auto_deleter -~http_content_type http/http/http_content_type.cpp /^http_content_type::~http_content_type()$/;" f class:http_content_type -~http_header_t http/http/http_header.cpp /^http_header_t::~http_header_t() {$/;" f class:http_header_t +~http_content_type net/http_protocol/http_content_type.cpp /^http_content_type::~http_content_type()$/;" f class:http_content_type +~http_header_t net/http_protocol/http_header.cpp /^http_header_t::~http_header_t() {$/;" f class:http_header_t ~name_null_sentry uibase/uilib/core/pugixml.cpp /^ ~name_null_sentry()$/;" f struct:name_null_sentry ~xml_document uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_document::~xml_document()$/;" f class:pugi::xml_document ~xml_tree_walker uibase/uilib/core/pugixml.cpp /^ PUGI__FN xml_tree_walker::~xml_tree_walker()$/;" f class:pugi::xml_tree_walker diff --git a/testmain/appviewimpl.cpp b/testmain/appviewimpl.cpp index a36e38311f0ac443ed711db1cd7e9398a68e40f9..d1f38232c400922d5ee576a3e076a6ecc6840901 100644 --- a/testmain/appviewimpl.cpp +++ b/testmain/appviewimpl.cpp @@ -25,6 +25,19 @@ std_method_impl CAppViewImpl::Start(_pinstance hInstance, UINT uType) { HRESULT hr = S_OK; + _lComPtr pINet; + + m_pRot->GetObject(CLSID_INet, IID_INet, (IBase**)&pINet.m_p); + rc_assert(pINet.m_p != INULL, E_FAIL) + + _lComPtr pIDns; + pINet->CreateProtocol(Protocol_dns, (IBase**)&pIDns); + + pIDns->Send("www.baidu.com", NULL); + + pIDns->Close(); + + return hr; } std_method_impl CAppViewImpl::Stop(UINT uExitCode) diff --git a/testmain/appviewimpl.h b/testmain/appviewimpl.h index dd7e2a0a8367da82d127572a3ecf26417e6d9a10..1147fea0080c28d81bd4843c74c32ee081f73129 100644 --- a/testmain/appviewimpl.h +++ b/testmain/appviewimpl.h @@ -1,7 +1,7 @@ #ifndef _APPVIEWIMPL_H_ #define _APPVIEWIMPL_H_ -#include +#include "stdafx.h" //{a7957a54-37cb-42a4-9ee8-599168c2a3d1} diff --git a/testmain/interface.cpp b/testmain/interface.cpp index 7dc6af083599ed31c4c34348b45851c1084294f0..0db40018d81cced420e00580639c688ca66f78de 100644 --- a/testmain/interface.cpp +++ b/testmain/interface.cpp @@ -94,8 +94,24 @@ uvStdComNameSpaceBegin uvStdComNameSpaceEnd +//inet.h +// {7EB8185F-0F4E-4420-9991-B70671967377} +_DEFINE_IID_IMPL(IID_INet, + 0x7eb8185f, 0xf4e, 0x4420, 0x99, 0x91, 0xb7, 0x6, 0x71, 0x96, 0x73, 0x77); +// {C54C9CC0-F448-4A49-A622-0467D02E8EB8} +_DEFINE_GUID_IMPL(CLSID_INet, + 0xc54c9cc0, 0xf448, 0x4a49, 0xa6, 0x22, 0x4, 0x67, 0xd0, 0x2e, 0x8e, 0xb8); +//idns.h + +// {92EBBD6E-BF4D-41EC-9DFB-07C9AFF0CCC0} +_DEFINE_IID_IMPL(IID_IDnsProc, + 0x92ebbd6e, 0xbf4d, 0x41ec, 0x9d, 0xfb, 0x7, 0xc9, 0xaf, 0xf0, 0xcc, 0xc0); + +// {510FD0EA-BAE2-4BC8-B650-76E8FD5ED853} +_DEFINE_IID_IMPL(IID_IDns, + 0x510fd0ea, 0xbae2, 0x4bc8, 0xb6, 0x50, 0x76, 0xe8, 0xfd, 0x5e, 0xd8, 0x53); diff --git a/testmain/main.cpp b/testmain/main.cpp index 01123a613d6e51f85f8e5aedb81441b52ebcba7b..a0bf0397c69b997455214936702e8ffde2a7c00e 100644 --- a/testmain/main.cpp +++ b/testmain/main.cpp @@ -17,13 +17,17 @@ int main_t(_pinstance hInstance, int argc, TCHAR* argv[]) CContainer com; const char* pCode = "{\"component\":[ \ \"{F170A724-AACA-4603-BB1C-0A8EAF1C3322}:asynio:1:4\",\ - \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:3:4\",\ - \"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\ - \"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\ - \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:6:4\",\ - \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:2:4\" \ + \"{C54C9CC0-F448-4A49-A622-0467D02E8EB8}:net:2:4\",\ + \"{201409F6-22F8-48d3-A69F-7935BDDE6BFF}:msgbus:10:4\" \ ]}"; + /* + + \"{99103D46-735F-44EE-A6F1-2C94DF20901E}:logs:5:4\",\ + \"{34F9B3BF-6F56-4058-9DCD-04D9A5F0174B}:logs:4:4\",\ + \"{A8B9F69C-3523-406A-831B-2416421F324E}:logs:10:4\",\ + */ + /* \"{51FA8DE1-216F-4A76-B4F4-B986E9F54C27}:mainview:100:4\",\ \"{CE065148-7803-45B1-B1D7-874B52B8F5C5}:uibase:10:4\",\ @@ -38,11 +42,17 @@ int main_t(_pinstance hInstance, int argc, TCHAR* argv[]) logi("test_main_InitContainer"); hr = com.InitContainer(hInstance, argv, argc); + ULONG count = com.GetCompentCount(); + ULONG Index = com.GetStartIndex(count - 1); + CAppViewImpl *app = ALLOC_NEW CAppViewImpl(); _lComPtr pBase; - app->QueryInterface(IID_IBase, (void**)&pBase); - hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, 0, "main.exe"); - //pBase.dispose(); + hr = app->QueryInterface(IID_IBase, (void**)&pBase); + + + if (hr == S_OK) { + hr = com.RegisterComponent(CLSID_AppView, "AppView.impl.V1", pBase, Index - 1, "main.exe", STD_COMPOENT | STD_INIT); + } logi("test_main_RunContainer"); hr = com.RunContainer(hInstance, argv, argc, 0); diff --git a/testmain/stdafx.h b/testmain/stdafx.h index 52c6eaec60c668a768a9afb75c5860caf2c93200..154e25cbe36d1d3097ac2dd218260a2fd98eb480 100644 --- a/testmain/stdafx.h +++ b/testmain/stdafx.h @@ -10,6 +10,8 @@ #include #include #include +#include +#include #endif diff --git a/vim_tool/ctags b/vim_tool/ctags deleted file mode 100755 index 34a44741ec467ff3f04c9e84dda628002e8c4907..0000000000000000000000000000000000000000 Binary files a/vim_tool/ctags and /dev/null differ