CARLA
 
载入中...
搜索中...
未找到
| 类型定义 | 枚举 | 函数 | 变量
pugi 命名空间参考

class  xml_attribute
 
class  xml_attribute_iterator
 
struct  xml_attribute_struct
 
class  xml_document
 
class  xml_named_node_iterator
 
class  xml_node
 
class  xml_node_iterator
 
struct  xml_node_struct
 
class  xml_object_range
 
struct  xml_parse_result
 
class  xml_text
 
class  xml_tree_walker
 
class  xml_writer
 
class  xml_writer_file
 
class  xml_writer_stream
 
class  xpath_exception
 
class  xpath_node
 
class  xpath_node_set
 
struct  xpath_parse_result
 
class  xpath_query
 
class  xpath_variable
 
class  xpath_variable_set
 

类型定义

typedef void *(* allocation_function) (size_t size)
 
typedef PUGIXML_CHAR char_t
 
typedef void(* deallocation_function) (void *ptr)
 
typedef std::basic_string< PUGIXML_CHAR, std::char_traits< PUGIXML_CHAR >, std::allocator< PUGIXML_CHAR > > string_t
 

枚举

enum  xml_encoding {
  encoding_auto , encoding_utf8 , encoding_utf16_le , encoding_utf16_be ,
  encoding_utf16 , encoding_utf32_le , encoding_utf32_be , encoding_utf32 ,
  encoding_wchar , encoding_latin1
}
 
enum  xml_node_type {
  node_null , node_document , node_element , node_pcdata ,
  node_cdata , node_comment , node_pi , node_declaration ,
  node_doctype
}
 
enum  xml_parse_status {
  status_ok = 0 , status_file_not_found , status_io_error , status_out_of_memory ,
  status_internal_error , status_unrecognized_tag , status_bad_pi , status_bad_comment ,
  status_bad_cdata , status_bad_doctype , status_bad_pcdata , status_bad_start_element ,
  status_bad_attribute , status_bad_end_element , status_end_element_mismatch , status_append_invalid_root ,
  status_no_document_element
}
 
enum  xpath_value_type {
  xpath_type_none , xpath_type_node_set , xpath_type_number , xpath_type_string ,
  xpath_type_boolean
}
 

函数

PUGI__FN std::string PUGIXML_FUNCTION as_utf8 (const std::basic_string< wchar_t > &str)
 
std::basic_string< char, std::char_traits< char >, std::allocator< char > > PUGIXML_FUNCTION as_utf8 (const std::basic_string< wchar_t, std::char_traits< wchar_t >, std::allocator< wchar_t > > &str)
 
PUGI__FN std::string PUGIXML_FUNCTION as_utf8 (const wchar_t *str)
 
PUGI__FN std::basic_string< wchar_t > PUGIXML_FUNCTION as_wide (const char *str)
 
std::basic_string< wchar_t, std::char_traits< wchar_t >, std::allocator< wchar_t > > PUGIXML_FUNCTION as_wide (const std::basic_string< char, std::char_traits< char >, std::allocator< char > > &str)
 
PUGI__FN std::basic_string< wchar_t > PUGIXML_FUNCTION as_wide (const std::string &str)
 
PUGI__FN allocation_function PUGIXML_FUNCTION get_memory_allocation_function ()
 
PUGI__FN deallocation_function PUGIXML_FUNCTION get_memory_deallocation_function ()
 
PUGI__FN void PUGIXML_FUNCTION set_memory_management_functions (allocation_function allocate, deallocation_function deallocate)
 
static PUGI__FN void unspecified_bool_xml_attribute (xml_attribute ***)
 
static PUGI__FN void unspecified_bool_xml_node (xml_node ***)
 
static PUGI__FN void unspecified_bool_xml_text (xml_text ***)
 
static PUGI__FN void unspecified_bool_xpath_node (xpath_node ***)
 
static PUGI__FN void unspecified_bool_xpath_query (xpath_query ***)
 

变量

const unsigned int format_default = format_indent
 
const unsigned int format_indent = 0x01
 
const unsigned int format_indent_attributes = 0x40
 
const unsigned int format_no_declaration = 0x08
 
const unsigned int format_no_empty_element_tags = 0x80
 
const unsigned int format_no_escapes = 0x10
 
const unsigned int format_raw = 0x04
 
const unsigned int format_save_file_text = 0x20
 
const unsigned int format_write_bom = 0x02
 
const unsigned int parse_cdata = 0x0004
 
const unsigned int parse_comments = 0x0002
 
const unsigned int parse_declaration = 0x0100
 
const unsigned int parse_default = parse_cdata | parse_escapes | parse_wconv_attribute | parse_eol
 
const unsigned int parse_doctype = 0x0200
 
const unsigned int parse_embed_pcdata = 0x2000
 
const unsigned int parse_eol = 0x0020
 
const unsigned int parse_escapes = 0x0010
 
const unsigned int parse_fragment = 0x1000
 
const unsigned int parse_full = parse_default | parse_pi | parse_comments | parse_declaration | parse_doctype
 
const unsigned int parse_minimal = 0x0000
 
const unsigned int parse_pi = 0x0001
 
const unsigned int parse_trim_pcdata = 0x0800
 
const unsigned int parse_wconv_attribute = 0x0040
 
const unsigned int parse_wnorm_attribute = 0x0080
 
const unsigned int parse_ws_pcdata = 0x0008
 
const unsigned int parse_ws_pcdata_single = 0x0400
 

类型定义说明

◆ allocation_function

typedef void *(* pugi::allocation_function) (size_t size)

在文件 pugixml.hpp1399 行定义.

◆ char_t

在文件 pugixml.hpp128 行定义.

◆ deallocation_function

typedef void(* pugi::deallocation_function) (void *ptr)

在文件 pugixml.hpp1402 行定义.

◆ string_t

typedef std::basic_string<PUGIXML_CHAR, std::char_traits<PUGIXML_CHAR>, std::allocator<PUGIXML_CHAR> > pugi::string_t

在文件 pugixml.hpp132 行定义.

枚举类型说明

◆ xml_encoding

枚举值
encoding_auto 
encoding_utf8 
encoding_utf16_le 
encoding_utf16_be 
encoding_utf16 
encoding_utf32_le 
encoding_utf32_be 
encoding_utf32 
encoding_wchar 
encoding_latin1 

在文件 pugixml.hpp218 行定义.

◆ xml_node_type

枚举值
node_null 
node_document 
node_element 
node_pcdata 
node_cdata 
node_comment 
node_pi 
node_declaration 
node_doctype 

在文件 pugixml.hpp140 行定义.

◆ xml_parse_status

枚举值
status_ok 
status_file_not_found 
status_io_error 
status_out_of_memory 
status_internal_error 
status_unrecognized_tag 
status_bad_pi 
status_bad_comment 
status_bad_cdata 
status_bad_doctype 
status_bad_pcdata 
status_bad_start_element 
status_bad_attribute 
status_bad_end_element 
status_end_element_mismatch 
status_append_invalid_root 
status_no_document_element 

在文件 pugixml.hpp947 行定义.

◆ xpath_value_type

枚举值
xpath_type_none 
xpath_type_node_set 
xpath_type_number 
xpath_type_string 
xpath_type_boolean 

在文件 pugixml.hpp1076 行定义.

函数说明

◆ as_utf8() [1/3]

PUGI__FN std::string PUGIXML_FUNCTION pugi::as_utf8 ( const std::basic_string< wchar_t > & str)

在文件 pugixml.cpp7228 行定义.

◆ as_utf8() [2/3]

std::basic_string< char, std::char_traits< char >, std::allocator< char > > PUGIXML_FUNCTION pugi::as_utf8 ( const std::basic_string< wchar_t, std::char_traits< wchar_t >, std::allocator< wchar_t > > & str)

引用了 as_utf8() , 以及 as_wide().

+ 函数调用图:

◆ as_utf8() [3/3]

std::basic_string< char, std::char_traits< char >, std::allocator< char > > PUGIXML_FUNCTION pugi::as_utf8 ( const wchar_t * str)

在文件 pugixml.cpp7221 行定义.

被这些函数引用 as_utf8().

+ 这是这个函数的调用关系图:

◆ as_wide() [1/3]

std::basic_string< wchar_t, std::char_traits< wchar_t >, std::allocator< wchar_t > > PUGIXML_FUNCTION pugi::as_wide ( const char * str)

在文件 pugixml.cpp7233 行定义.

被这些函数引用 as_utf8() , 以及 as_wide().

+ 这是这个函数的调用关系图:

◆ as_wide() [2/3]

std::basic_string< wchar_t, std::char_traits< wchar_t >, std::allocator< wchar_t > > PUGIXML_FUNCTION pugi::as_wide ( const std::basic_string< char, std::char_traits< char >, std::allocator< char > > & str)

引用了 as_wide().

+ 函数调用图:

◆ as_wide() [3/3]

PUGI__FN std::basic_string< wchar_t > PUGIXML_FUNCTION pugi::as_wide ( const std::string & str)

在文件 pugixml.cpp7240 行定义.

◆ get_memory_allocation_function()

allocation_function PUGIXML_FUNCTION pugi::get_memory_allocation_function ( )

在文件 pugixml.cpp7252 行定义.

◆ get_memory_deallocation_function()

deallocation_function PUGIXML_FUNCTION pugi::get_memory_deallocation_function ( )

在文件 pugixml.cpp7257 行定义.

◆ set_memory_management_functions()

void PUGIXML_FUNCTION pugi::set_memory_management_functions ( allocation_function allocate,
deallocation_function deallocate )

在文件 pugixml.cpp7246 行定义.

◆ unspecified_bool_xml_attribute()

static PUGI__FN void pugi::unspecified_bool_xml_attribute ( xml_attribute *** )
static

在文件 pugixml.cpp5109 行定义.

被这些函数引用 pugi::xml_attribute::operator unspecified_bool_type().

+ 这是这个函数的调用关系图:

◆ unspecified_bool_xml_node()

static PUGI__FN void pugi::unspecified_bool_xml_node ( xml_node *** )
static

在文件 pugixml.cpp5391 行定义.

被这些函数引用 pugi::xml_node::operator unspecified_bool_type().

+ 这是这个函数的调用关系图:

◆ unspecified_bool_xml_text()

static PUGI__FN void pugi::unspecified_bool_xml_text ( xml_text *** )
static

在文件 pugixml.cpp6376 行定义.

被这些函数引用 pugi::xml_text::operator unspecified_bool_type().

+ 这是这个函数的调用关系图:

◆ unspecified_bool_xpath_node()

static PUGI__FN void pugi::unspecified_bool_xpath_node ( xpath_node *** )
static

在文件 pugixml.cpp11980 行定义.

被这些函数引用 pugi::xpath_node::operator unspecified_bool_type().

+ 这是这个函数的调用关系图:

◆ unspecified_bool_xpath_query()

static PUGI__FN void pugi::unspecified_bool_xpath_query ( xpath_query *** )
static

在文件 pugixml.cpp12682 行定义.

被这些函数引用 pugi::xpath_query::operator unspecified_bool_type().

+ 这是这个函数的调用关系图:

变量说明

◆ format_default

const unsigned int pugi::format_default = format_indent

在文件 pugixml.hpp260 行定义.

◆ format_indent

const unsigned int pugi::format_indent = 0x01

在文件 pugixml.hpp235 行定义.

◆ format_indent_attributes

const unsigned int pugi::format_indent_attributes = 0x40

在文件 pugixml.hpp253 行定义.

◆ format_no_declaration

const unsigned int pugi::format_no_declaration = 0x08

在文件 pugixml.hpp244 行定义.

被这些函数引用 pugi::xml_document::save().

◆ format_no_empty_element_tags

const unsigned int pugi::format_no_empty_element_tags = 0x80

在文件 pugixml.hpp256 行定义.

◆ format_no_escapes

const unsigned int pugi::format_no_escapes = 0x10

在文件 pugixml.hpp247 行定义.

◆ format_raw

const unsigned int pugi::format_raw = 0x04

在文件 pugixml.hpp241 行定义.

被这些函数引用 pugi::xml_document::save().

◆ format_save_file_text

const unsigned int pugi::format_save_file_text = 0x20

在文件 pugixml.hpp250 行定义.

被这些函数引用 pugi::xml_document::save_file() , 以及 pugi::xml_document::save_file().

◆ format_write_bom

const unsigned int pugi::format_write_bom = 0x02

在文件 pugixml.hpp238 行定义.

被这些函数引用 pugi::xml_document::save().

◆ parse_cdata

const unsigned int pugi::parse_cdata = 0x0004

在文件 pugixml.hpp166 行定义.

◆ parse_comments

const unsigned int pugi::parse_comments = 0x0002

在文件 pugixml.hpp163 行定义.

◆ parse_declaration

const unsigned int pugi::parse_declaration = 0x0100

在文件 pugixml.hpp185 行定义.

◆ parse_default

const unsigned int pugi::parse_default = parse_cdata | parse_escapes | parse_wconv_attribute | parse_eol

在文件 pugixml.hpp210 行定义.

◆ parse_doctype

const unsigned int pugi::parse_doctype = 0x0200

在文件 pugixml.hpp188 行定义.

◆ parse_embed_pcdata

const unsigned int pugi::parse_embed_pcdata = 0x2000

在文件 pugixml.hpp205 行定义.

◆ parse_eol

const unsigned int pugi::parse_eol = 0x0020

在文件 pugixml.hpp176 行定义.

◆ parse_escapes

const unsigned int pugi::parse_escapes = 0x0010

在文件 pugixml.hpp173 行定义.

◆ parse_fragment

const unsigned int pugi::parse_fragment = 0x1000

在文件 pugixml.hpp200 行定义.

◆ parse_full

const unsigned int pugi::parse_full = parse_default | parse_pi | parse_comments | parse_declaration | parse_doctype

在文件 pugixml.hpp215 行定义.

◆ parse_minimal

const unsigned int pugi::parse_minimal = 0x0000

在文件 pugixml.hpp157 行定义.

◆ parse_pi

const unsigned int pugi::parse_pi = 0x0001

在文件 pugixml.hpp160 行定义.

◆ parse_trim_pcdata

const unsigned int pugi::parse_trim_pcdata = 0x0800

在文件 pugixml.hpp196 行定义.

◆ parse_wconv_attribute

const unsigned int pugi::parse_wconv_attribute = 0x0040

在文件 pugixml.hpp179 行定义.

◆ parse_wnorm_attribute

const unsigned int pugi::parse_wnorm_attribute = 0x0080

在文件 pugixml.hpp182 行定义.

◆ parse_ws_pcdata

const unsigned int pugi::parse_ws_pcdata = 0x0008

在文件 pugixml.hpp170 行定义.

◆ parse_ws_pcdata_single

const unsigned int pugi::parse_ws_pcdata_single = 0x0400

在文件 pugixml.hpp193 行定义.