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

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

?? doxyfile

?? funambol windows mobile plugin source code, the source code is taken from the funambol site
??
?? 第 1 頁 / 共 4 頁
字號:
INLINE_INFO            = YES

# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
# will sort the (detailed) documentation of file and class members 
# alphabetically by member name. If set to NO the members will appear in 
# declaration order.

SORT_MEMBER_DOCS       = YES

# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 
# brief documentation of file, namespace and class members alphabetically 
# by member name. If set to NO (the default) the members will appear in 
# declaration order.

SORT_BRIEF_DOCS        = NO

# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 
# sorted by fully-qualified names, including namespaces. If set to 
# NO (the default), the class list will be sorted only by class name, 
# not including the namespace part. 
# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
# Note: This option applies only to the class list, not to the 
# alphabetical list.

SORT_BY_SCOPE_NAME     = NO

# The GENERATE_TODOLIST tag can be used to enable (YES) or 
# disable (NO) the todo list. This list is created by putting \todo 
# commands in the documentation.

GENERATE_TODOLIST      = YES

# The GENERATE_TESTLIST tag can be used to enable (YES) or 
# disable (NO) the test list. This list is created by putting \test 
# commands in the documentation.

GENERATE_TESTLIST      = YES

# The GENERATE_BUGLIST tag can be used to enable (YES) or 
# disable (NO) the bug list. This list is created by putting \bug 
# commands in the documentation.

GENERATE_BUGLIST       = YES

# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 
# disable (NO) the deprecated list. This list is created by putting 
# \deprecated commands in the documentation.

GENERATE_DEPRECATEDLIST= YES

# The ENABLED_SECTIONS tag can be used to enable conditional 
# documentation sections, marked by \if sectionname ... \endif.

ENABLED_SECTIONS       = $(ENABLED_SECTIONS)

# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 
# the initial value of a variable or define consists of for it to appear in 
# the documentation. If the initializer consists of more lines than specified 
# here it will be hidden. Use a value of 0 to hide initializers completely. 
# The appearance of the initializer of individual variables and defines in the 
# documentation can be controlled using \showinitializer or \hideinitializer 
# command in the documentation regardless of this setting.

MAX_INITIALIZER_LINES  = 30

# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 
# at the bottom of the documentation of classes and structs. If set to YES the 
# list will mention the files that were used to generate the documentation.

SHOW_USED_FILES        = YES

# If the sources in your project are distributed over multiple directories 
# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 
# in the documentation. The default is NO.

SHOW_DIRECTORIES       = NO

# The FILE_VERSION_FILTER tag can be used to specify a program or script that 
# doxygen should invoke to get the current version for each file (typically from the 
# version control system). Doxygen will invoke the program by executing (via 
# popen()) the command <command> <input-file>, where <command> is the value of 
# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 
# provided by doxygen. Whatever the program writes to standard output 
# is used as the file version. See the manual for examples.

FILE_VERSION_FILTER    = 

#---------------------------------------------------------------------------
# configuration options related to warning and progress messages
#---------------------------------------------------------------------------

# The QUIET tag can be used to turn on/off the messages that are generated 
# by doxygen. Possible values are YES and NO. If left blank NO is used.

QUIET                  = NO

# The WARNINGS tag can be used to turn on/off the warning messages that are 
# generated by doxygen. Possible values are YES and NO. If left blank 
# NO is used.

WARNINGS               = YES

# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
# automatically be disabled.

WARN_IF_UNDOCUMENTED   = NO

# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 
# potential errors in the documentation, such as not documenting some 
# parameters in a documented function, or documenting parameters that 
# don't exist or using markup commands wrongly.

WARN_IF_DOC_ERROR      = YES

# This WARN_NO_PARAMDOC option can be abled to get warnings for 
# functions that are documented, but have no documentation for their parameters 
# or return value. If set to NO (the default) doxygen will only warn about 
# wrong or incomplete parameter documentation, but not about the absence of 
# documentation.

WARN_NO_PARAMDOC       = NO

# The WARN_FORMAT tag determines the format of the warning messages that 
# doxygen can produce. The string should contain the $file, $line, and $text 
# tags, which will be replaced by the file and line number from which the 
# warning originated and the warning text. Optionally the format may contain 
# $version, which will be replaced by the version of the file (if it could 
# be obtained via FILE_VERSION_FILTER)

WARN_FORMAT            = "$file:$line: $text"

# The WARN_LOGFILE tag can be used to specify a file to which warning 
# and error messages should be written. If left blank the output is written 
# to stderr.

WARN_LOGFILE           = 

#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------

# The INPUT tag can be used to specify the files and/or directories that contain 
# documented source files. You may enter file names like "myfile.cpp" or 
# directories like "/usr/src/myproject". Separate the files or directories 
# with spaces.

INPUT                  = $(FUNAMBOL_NATIVE_ROOT)/docs \
                         $(FUNAMBOL_NATIVE_ROOT)/src/include \
                         $(FUNAMBOL_NATIVE_ROOT)/test

# This tag can be used to specify the character encoding of the source files that 
# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default 
# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. 
# See http://www.gnu.org/software/libiconv for the list of possible encodings.

INPUT_ENCODING         = UTF-8

# If the value of the INPUT tag contains directories, you can use the 
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
# and *.h) to filter out the source-files in the directories. If left 
# blank the following patterns are tested: 
# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 
# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py

FILE_PATTERNS          = *.cpp \
                         *.h \
                         *.txt

# The RECURSIVE tag can be used to turn specify whether or not subdirectories 
# should be searched for input files as well. Possible values are YES and NO. 
# If left blank NO is used.

RECURSIVE              = YES

# The EXCLUDE tag can be used to specify files and/or directories that should 
# excluded from the INPUT source files. This way you can easily exclude a 
# subdirectory from a directory tree whose root is specified with the INPUT tag.

EXCLUDE                = 

# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 
# directories that are symbolic links (a Unix filesystem feature) are excluded 
# from the input.

EXCLUDE_SYMLINKS       = NO

# If the value of the INPUT tag contains directories, you can use the 
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
# certain files from those directories. Note that the wildcards are matched 
# against the file with absolute path, so to exclude all test directories 
# for example use the pattern */test/*

EXCLUDE_PATTERNS       = 

# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 
# (namespaces, classes, functions, etc.) that should be excluded from the output. 
# The symbol name can be a fully qualified name, a word, or if the wildcard * is used, 
# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test

EXCLUDE_SYMBOLS        = 

# The EXAMPLE_PATH tag can be used to specify one or more files or 
# directories that contain example code fragments that are included (see 
# the \include command).

EXAMPLE_PATH           = 

# If the value of the EXAMPLE_PATH tag contains directories, you can use the 
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
# and *.h) to filter out the source-files in the directories. If left 
# blank all files are included.

EXAMPLE_PATTERNS       = 

# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 
# searched for input files to be used with the \include or \dontinclude 
# commands irrespective of the value of the RECURSIVE tag. 
# Possible values are YES and NO. If left blank NO is used.

EXAMPLE_RECURSIVE      = NO

# The IMAGE_PATH tag can be used to specify one or more files or 
# directories that contain image that are included in the documentation (see 
# the \image command).

IMAGE_PATH             = 

# The INPUT_FILTER tag can be used to specify a program that doxygen should 
# invoke to filter for each input file. Doxygen will invoke the filter program 
# by executing (via popen()) the command <filter> <input-file>, where <filter> 
# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
# input file. Doxygen will then use the output that the filter program writes 
# to standard output.  If FILTER_PATTERNS is specified, this tag will be 
# ignored.

INPUT_FILTER           = 

# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 
# basis.  Doxygen will compare the file name with each pattern and apply the 
# filter if there is a match.  The filters are a list of the form: 
# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 
# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 
# is applied to all files.

FILTER_PATTERNS        = 

# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 
# INPUT_FILTER) will be used to filter the input files when producing source 
# files to browse (i.e. when SOURCE_BROWSER is set to YES).

FILTER_SOURCE_FILES    = NO

#---------------------------------------------------------------------------
# configuration options related to source browsing
#---------------------------------------------------------------------------

# If the SOURCE_BROWSER tag is set to YES then a list of source files will 
# be generated. Documented entities will be cross-referenced with these sources. 
# Note: To get rid of all source code in the generated output, make sure also 
# VERBATIM_HEADERS is set to NO.

SOURCE_BROWSER         = NO

# Setting the INLINE_SOURCES tag to YES will include the body 
# of functions and classes directly in the documentation.

INLINE_SOURCES         = NO

# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
# doxygen to hide any special comment blocks from generated source code 
# fragments. Normal C and C++ comments will always remain visible.

STRIP_CODE_COMMENTS    = YES

# If the REFERENCED_BY_RELATION tag is set to YES (the default) 
# then for each documented function all documented 
# functions referencing it will be listed.

REFERENCED_BY_RELATION = YES

# If the REFERENCES_RELATION tag is set to YES (the default) 
# then for each documented function all documented entities 
# called/used by that function will be listed.

REFERENCES_RELATION    = YES

# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
# link to the source code.  Otherwise they will link to the documentstion.

REFERENCES_LINK_SOURCE = YES

# If the USE_HTAGS tag is set to YES then the references to source code 
# will point to the HTML generated by the htags(1) tool instead of doxygen 
# built-in source browser. The htags tool is part of GNU's global source 
# tagging system (see http://www.gnu.org/software/global/global.html). You 
# will need version 4.8.6 or higher.

USE_HTAGS              = NO

# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
# will generate a verbatim copy of the header file for each class for 
# which an include is specified. Set to NO to disable this.

VERBATIM_HEADERS       = YES

#---------------------------------------------------------------------------
# configuration options related to the alphabetical class index
#---------------------------------------------------------------------------

# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
# of all compounds will be generated. Enable this if the project 
# contains a lot of classes, structs, unions or interfaces.

ALPHABETICAL_INDEX     = NO

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美r级电影在线观看| 激情综合网av| 色拍拍在线精品视频8848| 亚洲啪啪综合av一区二区三区| 99这里只有精品| 午夜亚洲国产au精品一区二区| 欧美一区二区三区爱爱| 国内精品国产成人| 一区二区三区在线看| 日韩欧美一区二区久久婷婷| 不卡的av在线| 日本中文字幕一区二区有限公司| 久久免费的精品国产v∧| 91传媒视频在线播放| 国模大尺度一区二区三区| 综合激情网...| 2021中文字幕一区亚洲| 欧美日韩性生活| 国产成人自拍高清视频在线免费播放| 尤物在线观看一区| 久久新电视剧免费观看| 欧美天堂一区二区三区| 成人永久免费视频| 久久爱另类一区二区小说| 亚洲一区二区av电影| 国产精品视频麻豆| 日韩视频免费观看高清完整版 | 蜜桃91丨九色丨蝌蚪91桃色| 国产精品成人午夜| 精品国产第一区二区三区观看体验| 91蝌蚪porny九色| 国产精品综合在线视频| 热久久一区二区| 亚洲日韩欧美一区二区在线| 国产清纯白嫩初高生在线观看91| 欧美一级搡bbbb搡bbbb| 欧美日韩综合在线免费观看| 97久久精品人人做人人爽50路| 久久国产精品99久久人人澡| 天天综合天天做天天综合| 亚洲精品国久久99热| 亚洲国产精品传媒在线观看| 久久久久久久综合日本| 日韩欧美在线网站| 欧美一级黄色片| 欧美精品高清视频| 91精品一区二区三区在线观看| 欧洲生活片亚洲生活在线观看| 不卡的电视剧免费网站有什么| 国产精品一二三在| 国产激情视频一区二区在线观看 | 精品国产一区二区三区四区四| 欧美日韩亚洲另类| 51午夜精品国产| 欧美福利视频导航| 欧美一激情一区二区三区| 91精品国产乱| 精品国产91久久久久久久妲己| 久久综合999| 久久午夜免费电影| 国产精品情趣视频| 日韩美女视频19| 一区二区三区免费在线观看| 亚洲电影你懂得| 偷拍自拍另类欧美| 久久精品国产精品亚洲红杏| 国产一区二区美女诱惑| 成+人+亚洲+综合天堂| 色哟哟一区二区| 欧美一激情一区二区三区| 欧美精品一区二区精品网| 国产精品国产三级国产三级人妇| 一级中文字幕一区二区| 首页国产欧美久久| 国产一区二区三区香蕉| 成人动漫中文字幕| 欧美日韩中文国产| 久久久精品tv| 一区二区三区成人| 激情综合色播激情啊| 成人性生交大片免费看中文| 在线观看区一区二| 精品国产一区a| 综合激情成人伊人| 捆绑调教一区二区三区| 不卡的av在线播放| 日韩免费视频一区| 亚洲欧美视频在线观看| 欧美a级一区二区| 成人午夜免费av| 日韩一区二区电影在线| 中文字幕在线一区免费| 日本亚洲天堂网| 91免费版在线看| 日韩精品一区二区三区在线观看 | 婷婷开心激情综合| 风间由美一区二区三区在线观看| 一本色道久久综合狠狠躁的推荐| 日韩免费高清av| 中文字幕一区在线观看视频| 久久精品国产亚洲a| 在线观看欧美精品| 亚洲同性gay激情无套| 国产精品伊人色| 欧美一区三区二区| 亚洲午夜三级在线| 91香蕉视频mp4| 国产午夜亚洲精品羞羞网站| 婷婷六月综合亚洲| 欧美日韩高清一区二区三区| 国产精品福利影院| 国产91精品在线观看| 精品国产一区二区三区不卡 | 六月婷婷色综合| 欧美日韩另类一区| 一区二区三区蜜桃| 91麻豆123| 中文字幕一区二区三区四区| 高清成人免费视频| 久久久精品天堂| 国产一区二三区| 久久精品视频一区二区三区| 另类的小说在线视频另类成人小视频在线| 欧美无人高清视频在线观看| 一区二区国产视频| 欧美三级日本三级少妇99| 亚洲一区在线观看免费 | www.欧美.com| 亚洲欧洲韩国日本视频| caoporen国产精品视频| 中文字幕一区二区三区精华液| 国产成人99久久亚洲综合精品| 久久久另类综合| 国产91清纯白嫩初高中在线观看 | 2024国产精品视频| 国产成人自拍网| 国产欧美精品在线观看| 99视频在线观看一区三区| 亚洲视频一区在线观看| 欧美亚洲动漫另类| 日韩国产在线观看| 久久精品亚洲麻豆av一区二区| 成人高清av在线| 一区二区日韩电影| 欧美一区二区精品在线| 国产一区二区三区高清播放| 国产精品国模大尺度视频| 在线免费观看日本欧美| 日本欧美一区二区在线观看| 五月婷婷欧美视频| 亚洲丝袜另类动漫二区| 国产精品三级av在线播放| 国产欧美日韩卡一| 成人性生交大片免费看在线播放| 欧美韩日一区二区三区| 99热精品国产| 首页欧美精品中文字幕| 欧美激情一区二区三区四区| 91福利国产成人精品照片| 麻豆免费看一区二区三区| 国产视频一区不卡| 欧美区一区二区三区| 国产精品影视在线观看| 一级精品视频在线观看宜春院 | 在线国产电影不卡| 日韩av电影免费观看高清完整版 | 99免费精品视频| 亚洲三级在线观看| 欧美成人福利视频| av不卡免费在线观看| 奇米影视在线99精品| 中文字幕免费不卡| 日韩免费观看高清完整版| 在线精品亚洲一区二区不卡| 寂寞少妇一区二区三区| 亚洲高清久久久| 国产精品国产自产拍在线| 精品999在线播放| 欧美日韩国产首页| 色哟哟一区二区三区| 国产乱子伦视频一区二区三区| 午夜精品aaa| 亚洲精品中文字幕乱码三区| 久久日一线二线三线suv| 欧美日韩在线播放三区四区| 成人av网站在线观看免费| 精品系列免费在线观看| 午夜精品久久一牛影视| 成人欧美一区二区三区视频网页| 欧美mv日韩mv国产网站| 在线观看欧美精品| 51精品视频一区二区三区| 在线观看日韩电影| 不卡电影一区二区三区| 久久国产日韩欧美精品| 日韩电影一二三区| 亚洲在线观看免费| 国产精品888| 久久国产免费看| 激情综合亚洲精品|