亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? path.hpp

?? 用STL的方式封裝了WindowsAPI、COM調(diào)用、ACE、ATL、MFC、WTL等多種組件
?? HPP
?? 第 1 頁 / 共 4 頁
字號(hào):
/* /////////////////////////////////////////////////////////////////////////
 * File:        winstl/filesystem/path.hpp (formerly winstl_path.h; originally MLPath.h, ::SynesisStd)
 *
 * Purpose:     Simple class that represents a path.
 *
 * Created:     1st May 1993
 * Updated:     18th June 2006
 *
 * Home:        http://stlsoft.org/
 *
 * Copyright (c) 1993-2006, Matthew Wilson and Synesis Software
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * - Redistributions of source code must retain the above copyright notice, this
 *   list of conditions and the following disclaimer.
 * - Redistributions in binary form must reproduce the above copyright notice,
 *   this list of conditions and the following disclaimer in the documentation
 *   and/or other materials provided with the distribution.
 * - Neither the name(s) of Matthew Wilson and Synesis Software nor the names of
 *   any contributors may be used to endorse or promote products derived from
 *   this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 * ////////////////////////////////////////////////////////////////////// */


/** \file winstl/filesystem/path.hpp
 *
 * \brief [C++ only] Definition of the winstl::basic_path class template.
 *  (\ref group__library__file_system "File System" Library.)
 */

#ifndef WINSTL_INCL_WINSTL_FILESYSTEM_HPP_PATH
#define WINSTL_INCL_WINSTL_FILESYSTEM_HPP_PATH

#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_PATH_MAJOR    6
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_PATH_MINOR    2
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_PATH_REVISION 2
# define WINSTL_VER_WINSTL_FILESYSTEM_HPP_PATH_EDIT     216
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */

/* /////////////////////////////////////////////////////////////////////////
 * Includes
 */

#ifndef WINSTL_INCL_WINSTL_H_WINSTL
# include <winstl/winstl.h>
#endif /* !WINSTL_INCL_WINSTL_H_WINSTL */
#ifndef WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS
# include <winstl/filesystem/filesystem_traits.hpp>
#endif /* !WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS */
#ifndef WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER
# include <winstl/filesystem/file_path_buffer.hpp>
#endif /* !WINSTL_INCL_WINSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER */
#ifndef WINSTL_INCL_WINSTL_MEMORY_HPP_PROCESSHEAP_ALLOCATOR
# include <winstl/memory/processheap_allocator.hpp>
#endif /* !WINSTL_INCL_WINSTL_MEMORY_HPP_PROCESSHEAP_ALLOCATOR */
#ifndef STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_FEATURES
# include <stlsoft/memory/allocator_features.hpp>   // for STLSOFT_LF_ALLOCATOR_REBIND_SUPPORT
#endif /* !STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_FEATURES */
#ifndef STLSOFT_INCL_STLSOFT_HPP_MEMORY_AUTO_BUFFER
# include <stlsoft/memory/auto_buffer.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_HPP_MEMORY_AUTO_BUFFER */
#ifndef STLSOFT_INCL_STLSOFT_STRING_HPP_COPY_FUNCTIONS
# include <stlsoft/string/copy_functions.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_STRING_HPP_COPY_FUNCTIONS */
#ifndef STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS
# include <stlsoft/string_access.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS */
#ifndef WINSTL_INCL_WINSTL_HPP_STRING_ACCESS
# include <winstl/string_access.hpp>            // for string access shims
#endif /* !WINSTL_INCL_WINSTL_HPP_STRING_ACCESS */
#include <stdexcept>                            // for std::logic_error

/* /////////////////////////////////////////////////////////////////////////
 * Namespace
 */

#ifndef _WINSTL_NO_NAMESPACE
# if defined(_STLSOFT_NO_NAMESPACE) || \
     defined(STLSOFT_DOCUMENTATION_SKIP_SECTION)
/* There is no stlsoft namespace, so must define ::winstl */
namespace winstl
{
# else
/* Define stlsoft::winstl_project */

namespace stlsoft
{

namespace winstl_project
{

# endif /* _STLSOFT_NO_NAMESPACE */
#endif /* !_WINSTL_NO_NAMESPACE */

/* /////////////////////////////////////////////////////////////////////////
 * basic_path
 *
 * This class represents a path, and effectively acts as a C-string of its value.
 */

/** \brief Class used for composing and decomposing file-system paths.
 *
 * \ingroup group__library__file_system
 *
 * \param C The character type
 * \param T The traits type. On translators that support default template arguments, this defaults to filesystem_traits<C>
 * \param A The allocator type. On translators that support default template arguments, this defaults to processheap_allocator<C>
 *
 * \note This class derives from the Synesis Software class Path, but has been influenced
 * by other, later, ideas. The idea of using the / operator for path concatenation was
 * sparked by the Boost implementation (although the details were not investigated prior
 * to this implementation, so the two may have significant semantic differences). This
 * has been added without requiring any major fundamental changes to the original
 * <code>push/pop</code>-based interface
 */
template<   ss_typename_param_k C
#ifdef STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT
        ,   ss_typename_param_k T = filesystem_traits<C>
        ,   ss_typename_param_k A = processheap_allocator<C>
#else /* ? STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
        ,   ss_typename_param_k T /* = filesystem_traits<C> */
        ,   ss_typename_param_k A /* = processheap_allocator<C> */
#endif /* STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
        >
class basic_path
{
/// \name Types
/// @{
public:
    /// \brief The char type
    typedef C                           char_type;
    /// \brief The traits type
    typedef T                           traits_type;
    /// \brief The allocator type
    typedef A                           allocator_type;
    /// \brief The current parameterisation of the type
    typedef basic_path<C, T, A>         class_type;
    /// \brief The size type
    typedef ws_size_t                   size_type;
    /// \brief The Boolean type
    typedef ws_bool_t                   bool_type;

// TODO: Use the slice string, and provide iterators over the directory parts

/// @}

/// \name Construction
/// @{
public:
    /// \brief Constructs an empty path.
    ///
    /// \htmlonly
    /// <pre>
    /// winstl::path  p;
    ///
    /// assert(0 == p.size());
    /// assert("" == p);
    /// </pre>
    /// \endhtmlonly
    basic_path();
    /// \brief Constructs a path from a nul-terminated character string.
    ///
    /// \htmlonly
    /// <pre>
    /// winstl::path  p("C:\\Windows");
    ///
    /// assert(10 == p.size());
    /// assert("C:\\Windows" == p);
    /// assert("C:\\WINDOWS" == p);
    /// assert("c:\\windows" == p);
    /// </pre>
    /// \endhtmlonly
    ss_explicit_k basic_path(char_type const *path);
#ifdef STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT
    /// \brief Constructs a path from a string object.
    ///
    /// \remarks The string object may be any type for which the 
    ///  <b>c_str_len</b> and <b>c_str_data</b> 
    ///  \ref group__concept__string_access_shims "String Access Shims" are
    ///  defined. The following example shows the use of a window handle
    ///  (HWND). Other types supported are <code>std::exception</code>,
    ///  <code>std::string</code>, <code>stlsoft::simple_string</code>,
    ///  <code>winstl::error_desc</code>, and many more
    ///
    /// \htmlonly
    /// <pre>
    /// HWND          hwndParent = . . . 
    /// HWND          hwnd       = winstl::CreateEdit(hwndParent, "C:\\Windows", ES_LEFT, 0, 0, 10, 10, 1001);
    /// winstl::path  p(hwnd);
    ///
    /// assert(10 == p.size());
    /// assert("C:\\Windows" == p);
    /// assert("C:\\WINDOWS" == p);
    /// assert("c:\\windows" == p);
    /// </pre>
    /// \endhtmlonly
    template<ss_typename_param_k S>
    ss_explicit_k basic_path(S const &s)
    {
        m_len = stlsoft_ns_qual(c_str_len)(s);

        traits_type::str_n_copy(&m_buffer[0], stlsoft_ns_qual(c_str_data)(s), m_len);
        m_buffer[m_len] = '\0';
    }
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT */
    /// \brief Constructs a path from a slice of a character string.
    ///
    /// \htmlonly
    /// <pre>
    /// winstl::path  p("C:\\Windows\\system32", 10);
    ///
    /// assert(10 == p.size());
    /// assert("C:\\Windows" == p);
    /// assert("C:\\WINDOWS" == p);
    /// assert("c:\\windows" == p);
    /// </pre>
    /// \endhtmlonly
    basic_path(char_type const *path, size_type cch);

#ifndef STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD
    /// \brief Copies the contents of \c rhs
    basic_path(class_type const &rhs);
#endif /* !STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD */

#ifndef STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD
    /// \brief Copies the contents of \c rhs
    class_type &operator =(class_type const &rhs);
#endif /* !STLSOFT_CF_NO_COPY_CTOR_AND_COPY_CTOR_TEMPLATE_OVERLOAD */
    /// \brief Copies the contents of \c rhs
    class_type &operator =(char_type const *rhs);
#ifdef STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT
    /// \brief Copies the contents of \c s
    template<ss_typename_param_k S>
    class_type &operator =(S const &s)
    {
        return operator =(stlsoft_ns_qual(c_str_ptr)(s));
    }
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT */

    // Creates a root path
    static class_type root(char_type const *s);
#ifdef STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT
    // Creates a root path
    template<ss_typename_param_k S>
    static class_type root(S const &s)
    {
        return root(stlsoft_ns_qual(c_str_ptr)(s));
    }
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT */
/// @}

/// \name Operations
/// @{
public:
    /// \brief Appends the contents of \c rhs to the path
    class_type  &push(class_type const &rhs, bool_type bAddPathNameSeparator = false);
    /// \brief Appends the contents of \c rhs to the path
    class_type  &push(char_type const *rhs, bool_type bAddPathNameSeparator = false);
    /// \brief Appends the contents of \c rhs to the path as an extension
    class_type  &push_ext(class_type const &rhs, bool_type bAddPathNameSeparator = false);
    /// \brief Appends the contents of \c rhs to the path as an extension
    class_type  &push_ext(char_type const *rhs, bool_type bAddPathNameSeparator = false);
    /// \brief Ensures that the path has a trailing path name separator
    class_type  &push_sep();
    /// \brief Pops the last path element from the path
    ///
    /// \note In previous versions, this operation did not remove the
    ///   left-most path component. That behaviour is no longer supported,
    ///   and the method will now leave the path instance empty in that
    ///   case.
    class_type &pop(bool_type bRemoveTrailingPathNameSeparator = true);
    /// \brief Ensures that the path does not have a trailing path name separator
    ///
    /// \note Does not trim the separator character from the root designator
    class_type  &pop_sep();
    /// \brief Removes the extension, if any, from the file component of the path
    class_type  &pop_ext();

    /// \brief Equivalent to push()
    class_type  &operator /=(char_type const *rhs);

#if !defined(STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT) || \
    defined(STLSOFT_CF_MEMBER_TEMPLATE_OVERLOAD_DISCRIMINATED)
    /// \brief Equivalent to push()
    class_type  &operator /=(class_type const &rhs);
#endif /* !STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT || STLSOFT_CF_MEMBER_TEMPLATE_OVERLOAD_DISCRIMINATED */

#if defined(STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT)
    /// \brief Equivalent to push()
    template <ss_typename_param_k S>
    class_type  &operator /=(S const &rhs)
    {
        return operator /=(stlsoft_ns_qual(c_str_ptr)(rhs));
    }
#endif /* STLSOFT_CF_MEMBER_TEMPLATE_FUNCTION_SUPPORT */

    /// \brief Removes all content
    void        clear();

    /// \brief Converts the path to absolute form
    class_type  &make_absolute(bool_type bRemoveTrailingPathNameSeparator = true);
    /// \brief Canonicalises the path, removing all "./" parts and evaluating all "../" parts
    class_type  &canonicalise(bool_type bRemoveTrailingPathNameSeparator = true);
/// @}

/// \name Attributes
/// @{
public:
    /// \brief Returns a pointer to the part of the path after the last path name separator
    ///
    /// \note If the path represents a directory, the name of the directory will be returned, except
    /// if the path is terminated by the path name separator
    ///
    /// \note If the path contains no path name separator, the full path will be returned
    char_type const *get_file() const;
    /// \brief Returns a pointer to the extension, or to the empty string if there is no extension
    char_type const *get_ext() const;
    /// \brief Returns the length of the converted path
    size_type       length() const;
    /// \brief Returns the length of the converted path
    ///
    /// \remarks Equivalent to length()
    size_type       size() const;
    /// \brief Conversion to a non-mutable (const) pointer to the path
    char_type const *c_str() const;
    /// \brief Returns a non-mutable (const) reference to the character at
    ///  the given index
    ///
    /// \note The behaviour is undefined if <code>index >= size()</code>.
    char_type const &operator [](size_type index) const;
    /// \brief Indicates whether the path represents an existing file system entry
    bool_type       exists() const;
    /// \brief Indicates whether the path is rooted
    bool_type       is_rooted() const;
    /// \brief Indicates whether the path is absolute
    bool_type       is_absolute() const;

    /// \brief Copies the contents into a caller supplied buffer
    ///
    /// \param buffer Pointer to character buffer to receive the contents.
    ///  May be NULL, in which case the method returns size().
    /// \param cchBuffer Number of characters of available space in \c buffer.
    size_type       copy(char_type *buffer, size_type cchBuffer) const;
/// @}

/// \name Comparison
/// @{
public:
    /// \brief Determines whether the instance holds a string that refers to
    ///  the same file-system entity as the given string.
    ///
    /// \htmlonly
    /// <pre>
    /// winstl::path  p("C:\\Windows\\system32\\..");
    /// 
    /// assert(p != "C:\\WINDOWS\\");
    /// assert(!p.equal("C:\\WINDOWS\\"));
    /// assert(p.equivalent("C:\\WINDOWS\\"));
    /// </pre>
    /// \endhtmlonly
    bool_type equivalent(char_type const *rhs) const;

    /// \brief Evaluates whether the two instances hold strings that refer
    ///  to the same file-system entity.
    ///
    /// \remarks See \link winstl::basic_path::equivalent(char_type const *) equivalent()\endlink for an example.
    ///
    /// \note The string comparison is case-insensitive.
    bool_type equivalent(class_type const &rhs) const;

    /// \brief Evaluates whether the instance holds an identical string.
    ///
    /// \note The string comparison is case-insensitive.
    bool_type equal(char_type const *rhs) const;
    /// \brief Evaluates whether the two instances hold identical strings.
    ///
    /// \note The string comparison is case-insensitive.
    bool_type equal(class_type const &rhs) const;
/// @}

/// \name Iteration
/// @{
public:
#if 0
    directory_iterator  dir_begin() const;
    directory_iterator  dir_end() const;
#endif /* 0 */
/// @}

// Implementation
private:
    class_type              &push_sep_(char_type sep);
    void                    swap(class_type &rhs);
    class_type              &concat_(char_type const *rhs);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕欧美区| 亚洲美女屁股眼交3| 国产91丝袜在线播放九色| 一区二区在线观看视频| 欧美mv日韩mv国产网站app| 99久久综合色| 美女一区二区久久| 亚洲美女视频在线| 国产欧美日韩麻豆91| 欧美日韩成人在线一区| 成人少妇影院yyyy| 捆绑紧缚一区二区三区视频| 1024成人网| 国产日韩在线不卡| 91精品国产麻豆| 一本一道波多野结衣一区二区| 久久国产精品无码网站| 亚洲国产一区视频| 亚洲精品国产精品乱码不99| 国产午夜精品久久久久久免费视| 91精品啪在线观看国产60岁| 91丨国产丨九色丨pron| 经典三级视频一区| 日韩二区在线观看| 一区二区三区在线看| 国产精品情趣视频| 久久久久久毛片| 日韩精品一区在线| 欧美一区二区三区四区久久| 欧美三级日韩三级国产三级| 91久久精品一区二区| 不卡的电视剧免费网站有什么| 国产一区二区三区精品视频| 麻豆91小视频| 美女一区二区三区在线观看| 日本91福利区| 日本vs亚洲vs韩国一区三区二区| 亚洲444eee在线观看| 一区二区在线免费| 亚洲在线视频免费观看| 一区二区三区国产精华| 一区二区三区资源| 亚洲另类在线一区| 一区二区三区毛片| 亚洲一级二级三级| 亚洲成人av福利| 肉色丝袜一区二区| 日本欧美韩国一区三区| 久久国产精品第一页| 麻豆91免费观看| 九九国产精品视频| 国产自产v一区二区三区c| 黑人巨大精品欧美一区| 国产老肥熟一区二区三区| 国产精品影音先锋| av在线不卡电影| 91网站视频在线观看| 91黄色免费网站| 91电影在线观看| 欧美日韩免费一区二区三区视频| 欧美精品一二三四| 精品日韩一区二区三区免费视频| 久久中文字幕电影| 国产精品二三区| 亚洲电影激情视频网站| 首页亚洲欧美制服丝腿| 黄页网站大全一区二区| 国产ts人妖一区二区| 色综合色狠狠天天综合色| 91福利社在线观看| 欧美一区二区精品在线| 国产日韩欧美高清在线| 亚洲色图清纯唯美| 日本一道高清亚洲日美韩| 激情小说欧美图片| 91污片在线观看| 91精品国产91久久久久久最新毛片| 日韩精品一区二区三区在线播放| 国产亚洲精品资源在线26u| 亚洲三级免费电影| 日本欧美大码aⅴ在线播放| 韩日av一区二区| 色系网站成人免费| 欧美电视剧免费观看| 国产精品久久久久久久久动漫| 亚洲一区二区综合| 国产一区欧美二区| 日本久久一区二区| 精品剧情v国产在线观看在线| 国产精品久久三| 免费在线观看一区| 91小视频在线观看| 欧美精品一区二区三区视频| 亚洲嫩草精品久久| 国内外成人在线视频| 91蝌蚪国产九色| 久久毛片高清国产| 午夜成人免费电影| 粗大黑人巨茎大战欧美成人| 在线不卡中文字幕| 综合激情成人伊人| 国内精品国产成人| 欧美猛男超大videosgay| 欧美国产综合色视频| 日韩在线观看一区二区| av成人免费在线观看| 欧美成人video| 亚洲国产精品人人做人人爽| 成人午夜电影小说| 日韩欧美专区在线| 亚洲一区视频在线| 99精品视频免费在线观看| 久久夜色精品国产噜噜av| 亚洲一区二区3| a在线播放不卡| 久久人人爽人人爽| 男人的天堂久久精品| 欧美色网一区二区| 日韩美女久久久| 粉嫩绯色av一区二区在线观看| 欧美一卡二卡三卡四卡| 亚洲一区二区三区中文字幕 | 亚洲视频一区二区在线| 九九在线精品视频| 日韩手机在线导航| 五月天激情综合| 欧美体内she精视频| 亚洲免费电影在线| 91首页免费视频| 国产精品夫妻自拍| 波多野结衣中文一区| 国产人成亚洲第一网站在线播放| 久草在线在线精品观看| 欧美一级黄色片| 蜜臀av性久久久久蜜臀aⅴ流畅| 欧美猛男男办公室激情| 午夜欧美在线一二页| 欧美亚洲另类激情小说| 亚洲综合视频在线观看| 91福利在线免费观看| 一区二区三区在线高清| 欧美制服丝袜第一页| 亚洲国产一区二区三区青草影视| 欧美综合欧美视频| 亚洲午夜视频在线| 欧美精品日韩一区| 秋霞av亚洲一区二区三| 日韩欧美中文字幕公布| 久久精品国产成人一区二区三区| 欧美一级片在线看| 久久99在线观看| 久久久久国产精品免费免费搜索| 国产毛片一区二区| 国产精品三级在线观看| 91影院在线观看| 一级特黄大欧美久久久| 精品视频一区二区不卡| 日本不卡高清视频| 精品卡一卡二卡三卡四在线| 国产白丝网站精品污在线入口| 国产精品夫妻自拍| 欧美日韩三级在线| 另类综合日韩欧美亚洲| 国产日产欧美一区二区三区| 91在线丨porny丨国产| 亚洲一级在线观看| 日韩欧美国产1| 成人aa视频在线观看| 亚洲一区成人在线| 精品久久久久久久久久久久久久久久久 | 中文字幕精品一区二区精品绿巨人 | 日韩欧美国产成人一区二区| 国产经典欧美精品| 亚洲欧美日韩中文播放| 欧美日韩不卡在线| 国产麻豆视频一区二区| 亚洲乱码国产乱码精品精98午夜 | 色综合久久综合网97色综合| 亚洲国产一区二区视频| 欧美电影免费观看完整版| 国产成人av电影在线| 亚洲夂夂婷婷色拍ww47| 亚洲精品一区二区三区精华液| 91在线观看免费视频| 蜜臀久久久99精品久久久久久| 国产精品无人区| 制服丝袜一区二区三区| 成人性色生活片免费看爆迷你毛片| 依依成人精品视频| 精品国产乱码久久久久久1区2区 | 香蕉成人伊视频在线观看| 精品国产人成亚洲区| 91精品办公室少妇高潮对白| 精品夜夜嗨av一区二区三区| 亚洲人成网站精品片在线观看| 日韩欧美国产综合一区| 91福利视频久久久久| 国产精品18久久久久| 视频一区中文字幕| 国产精品国产三级国产三级人妇 |