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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? path.hpp

?? 用STL的方式封裝了WindowsAPI、COM調用、ACE、ATL、MFC、WTL等多種組件
?? HPP
?? 第 1 頁 / 共 4 頁
字號:
/* /////////////////////////////////////////////////////////////////////////
 * File:        unixstl/filesystem/path.hpp (formerly unixstl_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 unixstl/filesystem/path.hpp
 *
 * \brief [C++ only] Definition of the unixstl::basic_path class template.
 *  (\ref group__library__file_system "File System" Library.)
 */

#ifndef UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_PATH
#define UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_PATH

#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_MAJOR      6
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_MINOR      2
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_REVISION   2
# define UNIXSTL_VER_UNIXSTL_FILESYSTEM_HPP_PATH_EDIT       206
#endif /* !STLSOFT_DOCUMENTATION_SKIP_SECTION */

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

#ifndef UNIXSTL_INCL_UNIXSTL_H_UNIXSTL
# include <unixstl/unixstl.h>
#endif /* !UNIXSTL_INCL_UNIXSTL_H_UNIXSTL */
#ifndef UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS
# include <unixstl/filesystem/filesystem_traits.hpp>
#endif /* !UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILESYSTEM_TRAITS */
#ifndef UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER
# include <unixstl/filesystem/file_path_buffer.hpp>
#endif /* !UNIXSTL_INCL_UNIXSTL_FILESYSTEM_HPP_FILE_PATH_BUFFER */
#ifndef STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_BASE
# include <stlsoft/memory/allocator_base.hpp>       // for STLSOFT_LF_ALLOCATOR_REBIND_SUPPORT
#endif /* !STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_BASE */
#ifndef STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_SELECTOR
# include <stlsoft/memory/allocator_selector.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_MEMORY_HPP_ALLOCATOR_SELECTOR */
#ifndef STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS
# include <stlsoft/string_access.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_HPP_STRING_ACCESS */
#ifndef UNIXSTL_INCL_UNIXSTL_HPP_STRING_ACCESS
# include <unixstl/string_access.hpp>           // for string access shims
#endif /* !UNIXSTL_INCL_UNIXSTL_HPP_STRING_ACCESS */
#ifndef STLSOFT_INCL_STLSOFT_MEMORY_HPP_AUTO_BUFFER
# include <stlsoft/memory/auto_buffer.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_MEMORY_HPP_AUTO_BUFFER */
#ifndef STLSOFT_INCL_STLSOFT_STRING_HPP_COPY_FUNCTIONS
# include <stlsoft/string/copy_functions.hpp>
#endif /* !STLSOFT_INCL_STLSOFT_STRING_HPP_COPY_FUNCTIONS */
#include <stdexcept>                            // for std::logic_error
#ifdef _WIN32
# include <ctype.h>
#endif /* _WIN32 */

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

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

namespace stlsoft
{

namespace unixstl_project
{

# endif /* _STLSOFT_NO_NAMESPACE */
#endif /* !_UNIXSTL_NO_NAMESPACE */

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

/** \brief Represents a path
 *
 * \ingroup group__library__file_system
 *
 * \param C The character type
 * \param T The traits type. Defaults to filesystem_traits<C>. On translators that do not support default template arguments, it must be explicitly stipulated
 * \param A The allocator class. Defaults to stlsoft::allocator_selector<C>::allocator_type. On translators that do not support default template arguments, it must be explicitly stipulated
 *
 * \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 = ss_typename_type_def_k stlsoft_ns_qual(allocator_selector)<C>::allocator_type
#else /* ? STLSOFT_CF_TEMPLATE_CLASS_DEFAULT_CLASS_ARGUMENT_SUPPORT */
        ,   ss_typename_param_k T /* = filesystem_traits<C> */
        ,   ss_typename_param_k A /* = ss_typename_type_def_k stlsoft_ns_qual(allocator_selector)<C>::allocator_type */
#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 us_size_t                   size_type;
    /// \brief The Boolean type
    typedef us_bool_t                   bool_type;

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

/// @}

/// \name Construction
/// @{
public:
    /// \brief Constructs an empty path
    basic_path();
    /// \brief Constructs a path from \c path
    ss_explicit_k basic_path(char_type const *path);
#ifdef STLSOFT_CF_MEMBER_TEMPLATE_CTOR_SUPPORT
    /// \brief Constructs a path from \c path
    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 \c cch characters in \c path
    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:
    bool_type equivalent(char_type const *rhs) const;
    bool_type equivalent(class_type const &rhs) const;

    bool_type equal(char_type const *rhs) const;
    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:
    void                    swap(class_type &rhs);
    class_type              &concat_(char_type const *rhs);
    class_type              &concat_(class_type const &rhs);

    static char_type const  *next_slash_or_end(char_type const *p);
    static char_type        path_name_separator_alt();

// Members
private:
    typedef basic_file_path_buffer< char_type
                                ,   allocator_type
                                >                   buffer_type;

    struct part
    {
        enum Type
        {
                normal
            ,   dot
            ,   dotdot
        };

        size_type       len;
        char_type const *p;
        Type            type;
    };

    buffer_type m_buffer;
    size_type   m_len;
};

/* /////////////////////////////////////////////////////////////////////////
 * Typedefs for commonly encountered types
 */

/// \brief Instantiation of the basic_path template for the ANSI character type \c char
typedef basic_path<us_char_a_t, filesystem_traits<us_char_a_t> >       path_a;
/// \brief Instantiation of the basic_path template for the Unicode character type \c wchar_t
typedef basic_path<us_char_w_t, filesystem_traits<us_char_w_t> >       path_w;
/// \brief Instantiation of the basic_path template for the ANSI character type \c char
typedef basic_path<us_char_a_t, filesystem_traits<us_char_a_t> >       path;

/* /////////////////////////////////////////////////////////////////////////
 * Support for PlatformSTL redefinition by inheritance+namespace, for confused
 * compilers (e.g. VC++ 6)
 */

#ifndef STLSOFT_DOCUMENTATION_SKIP_SECTION

    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__
        : public unixstl_ns_qual(basic_path)<C, T, A>
    {
    private:
        typedef unixstl_ns_qual(basic_path)<C, T, A>                    parent_class_type;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃视频免费观看一区| 欧美色视频在线观看| 波多野洁衣一区| 91精品国产综合久久精品麻豆 | 欧美视频中文字幕| 精品乱人伦小说| 亚洲成人tv网| 成人精品国产一区二区4080| 欧美一区午夜视频在线观看 | 欧美大片在线观看| 亚洲精品综合在线| 国产91在线|亚洲| 日韩你懂的在线观看| 五月综合激情网| 99re热这里只有精品免费视频| 欧美videossexotv100| 午夜精品久久久久| 欧美天天综合网| 亚洲欧美经典视频| www.亚洲在线| 国产日韩欧美综合一区| 麻豆国产欧美日韩综合精品二区| 在线观看91视频| 一区二区三区在线免费视频| 丰满少妇久久久久久久| 久久精品一二三| 精品一区二区免费视频| 精品区一区二区| 久久精品国产亚洲高清剧情介绍| 欧美日韩电影在线| 香蕉成人啪国产精品视频综合网| 色综合久久久久综合体| 中文字幕制服丝袜一区二区三区 | 欧美特级限制片免费在线观看| 欧美国产日韩精品免费观看| 国产专区综合网| 精品国产一区二区三区四区四 | 国产精品久久久久久一区二区三区 | 首页国产欧美日韩丝袜| 欧美日韩一区二区电影| 亚洲第一电影网| 91精品国产综合久久小美女| 日韩二区在线观看| 精品国产a毛片| 国产乱人伦偷精品视频不卡| 欧美精品一区二区三区高清aⅴ| 黄色日韩网站视频| 国产日产欧美一区| 97精品久久久久中文字幕 | av一本久道久久综合久久鬼色| 国产精品无遮挡| 91久久国产综合久久| 亚洲一级二级三级| 91精品国产欧美一区二区| 免费xxxx性欧美18vr| 久久久精品免费观看| 成人v精品蜜桃久久一区| 亚洲男人天堂av| 欧美三级电影网站| 经典三级视频一区| 亚洲天堂成人在线观看| 欧美日本乱大交xxxxx| 国产一区福利在线| 亚洲视频在线观看三级| 日韩一区二区三免费高清| 国产高清久久久| 亚洲一区二区在线观看视频| 欧美一区二区三区在线| 成人国产精品免费网站| 亚洲综合清纯丝袜自拍| 日韩一级大片在线观看| 99精品国产视频| 亚洲18色成人| 国产欧美日韩综合| 欧美视频在线一区二区三区 | 欧美日韩一区成人| 粉嫩av一区二区三区在线播放| 亚洲在线免费播放| 久久久无码精品亚洲日韩按摩| 色天使久久综合网天天| 精品一区二区三区在线视频| 亚洲理论在线观看| 国产嫩草影院久久久久| 欧美日韩免费在线视频| 懂色av噜噜一区二区三区av| 亚洲v中文字幕| 亚洲乱码中文字幕| 国产欧美精品日韩区二区麻豆天美| 欧美日韩一二三| 91免费视频大全| 高清不卡一二三区| 精品一区二区国语对白| 亚洲aaa精品| 亚洲在线一区二区三区| 国产精品的网站| 国产精品网友自拍| 2023国产精华国产精品| 91精品婷婷国产综合久久性色| 93久久精品日日躁夜夜躁欧美| 国产乱码精品一区二区三区忘忧草| 亚洲bt欧美bt精品777| 一区二区高清免费观看影视大全| 久久精品夜夜夜夜久久| 久久亚洲一级片| 日韩一区二区三区在线视频| 欧美精品少妇一区二区三区| 色哟哟在线观看一区二区三区| 成人精品国产福利| 国产电影一区二区三区| 韩国精品主播一区二区在线观看| 日本不卡一区二区| 亚洲第一激情av| 午夜天堂影视香蕉久久| 亚洲午夜电影在线观看| 一区二区在线观看视频| 一区二区在线观看不卡| 亚洲精品国产精品乱码不99| 国产精品国产自产拍在线| 亚洲欧洲www| 美日韩黄色大片| 青草国产精品久久久久久| 日韩中文字幕区一区有砖一区| 亚洲18色成人| 麻豆成人av在线| 久久99国产精品成人| 国产乱码精品一区二区三区av| 国产精品91一区二区| 国产精品综合视频| 成人不卡免费av| 色婷婷av一区二区三区之一色屋| 色婷婷国产精品综合在线观看| 欧美在线不卡一区| 666欧美在线视频| 日韩欧美区一区二| 中文成人av在线| 亚洲一区在线观看网站| 日韩经典一区二区| 国产精品一级在线| 91视频国产资源| 欧美疯狂做受xxxx富婆| 久久综合狠狠综合| 日韩理论片在线| 日本午夜一本久久久综合| 国产福利91精品| 欧美又粗又大又爽| 精品国产免费一区二区三区四区 | 国产精品69久久久久水密桃| 成人午夜看片网址| 欧美午夜精品理论片a级按摩| 91麻豆精品国产91久久久久久| 久久久久久久av麻豆果冻| 国产精品国产三级国产普通话三级 | jvid福利写真一区二区三区| 91黄色免费看| 精品国精品国产| 亚洲精品视频自拍| 极品瑜伽女神91| 91成人国产精品| 久久久久久久久久久电影| 一区二区在线观看视频| 韩国中文字幕2020精品| 91国偷自产一区二区三区观看| 欧美一级欧美三级在线观看| 中文字幕精品—区二区四季| 亚洲成人av免费| 成人免费毛片a| 日韩午夜在线观看| 亚洲黄色小说网站| 国产馆精品极品| 日韩欧美国产精品| 一区二区久久久久久| 国产成人免费视| 日韩欧美电影一二三| 亚洲愉拍自拍另类高清精品| 国产成人亚洲综合a∨猫咪| 欧美精品一二三| 亚洲国产精品一区二区久久恐怖片 | 日本精品视频一区二区三区| 精品久久久三级丝袜| 亚洲国产美国国产综合一区二区| 国产成a人亚洲| 久久综合五月天婷婷伊人| 亚洲小说春色综合另类电影| av不卡在线播放| 国产欧美一二三区| 国产麻豆精品95视频| 欧美一区二区三区免费在线看 | 99精品久久99久久久久| 久久精品欧美日韩精品 | 国产成人综合网站| 日韩欧美你懂的| 奇米精品一区二区三区在线观看一 | 国产精品亚洲а∨天堂免在线| 欧美一级免费观看| 免费一级欧美片在线观看| 欧美电影一区二区| 日韩av电影免费观看高清完整版在线观看 | 91看片淫黄大片一级在线观看| 国产日韩欧美精品电影三级在线| 国产精品99久久久久久似苏梦涵|