Geant4
11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
xmltok_impl.h
Go to the documentation of this file.
1
/*
2
__ __ _
3
___\ \/ /_ __ __ _| |_
4
/ _ \\ /| '_ \ / _` | __|
5
| __// \| |_) | (_| | |_
6
\___/_/\_\ .__/ \__,_|\__|
7
|_| XML parser
8
9
Copyright (c) 1997-2000 Thai Open Source Software Center Ltd
10
Copyright (c) 2000 Clark Cooper <
[email protected]
>
11
Copyright (c) 2017-2019 Sebastian Pipping <
[email protected]
>
12
Licensed under the MIT license:
13
14
Permission is hereby granted, free of charge, to any person obtaining
15
a copy of this software and associated documentation files (the
16
"Software"), to deal in the Software without restriction, including
17
without limitation the rights to use, copy, modify, merge, publish,
18
distribute, sublicense, and/or sell copies of the Software, and to permit
19
persons to whom the Software is furnished to do so, subject to the
20
following conditions:
21
22
The above copyright notice and this permission notice shall be included
23
in all copies or substantial portions of the Software.
24
25
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
28
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
29
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
30
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
31
USE OR OTHER DEALINGS IN THE SOFTWARE.
32
*/
33
34
enum
{
35
BT_NONXML
,
/* e.g. noncharacter-FFFF */
36
BT_MALFORM
,
/* illegal, with regard to encoding */
37
BT_LT
,
/* less than = "<" */
38
BT_AMP
,
/* ampersand = "&" */
39
BT_RSQB
,
/* right square bracket = "[" */
40
BT_LEAD2
,
/* lead byte of a 2-byte UTF-8 character */
41
BT_LEAD3
,
/* lead byte of a 3-byte UTF-8 character */
42
BT_LEAD4
,
/* lead byte of a 4-byte UTF-8 character */
43
BT_TRAIL
,
/* trailing unit, e.g. second 16-bit unit of a 4-byte char. */
44
BT_CR
,
/* carriage return = "\r" */
45
BT_LF
,
/* line feed = "\n" */
46
BT_GT
,
/* greater than = ">" */
47
BT_QUOT
,
/* quotation character = "\"" */
48
BT_APOS
,
/* apostrophe = "'" */
49
BT_EQUALS
,
/* equal sign = "=" */
50
BT_QUEST
,
/* question mark = "?" */
51
BT_EXCL
,
/* exclamation mark = "!" */
52
BT_SOL
,
/* solidus, slash = "/" */
53
BT_SEMI
,
/* semicolon = ";" */
54
BT_NUM
,
/* number sign = "#" */
55
BT_LSQB
,
/* left square bracket = "[" */
56
BT_S
,
/* white space, e.g. "\t", " "[, "\r"] */
57
BT_NMSTRT
,
/* non-hex name start letter = "G".."Z" + "g".."z" + "_" */
58
BT_COLON
,
/* colon = ":" */
59
BT_HEX
,
/* hex letter = "A".."F" + "a".."f" */
60
BT_DIGIT
,
/* digit = "0".."9" */
61
BT_NAME
,
/* dot and middle dot = "." + chr(0xb7) */
62
BT_MINUS
,
/* minus = "-" */
63
BT_OTHER
,
/* known not to be a name or name start character */
64
BT_NONASCII
,
/* might be a name or name start character */
65
BT_PERCNT
,
/* percent sign = "%" */
66
BT_LPAR
,
/* left parenthesis = "(" */
67
BT_RPAR
,
/* right parenthesis = "(" */
68
BT_AST
,
/* asterisk = "*" */
69
BT_PLUS
,
/* plus sign = "+" */
70
BT_COMMA
,
/* comma = "," */
71
BT_VERBAR
/* vertical bar = "|" */
72
};
73
74
#include <stddef.h>
BT_PLUS
@ BT_PLUS
Definition
xmltok_impl.h:69
BT_SEMI
@ BT_SEMI
Definition
xmltok_impl.h:53
BT_LPAR
@ BT_LPAR
Definition
xmltok_impl.h:66
BT_HEX
@ BT_HEX
Definition
xmltok_impl.h:59
BT_PERCNT
@ BT_PERCNT
Definition
xmltok_impl.h:65
BT_NONASCII
@ BT_NONASCII
Definition
xmltok_impl.h:64
BT_RPAR
@ BT_RPAR
Definition
xmltok_impl.h:67
BT_MALFORM
@ BT_MALFORM
Definition
xmltok_impl.h:36
BT_QUOT
@ BT_QUOT
Definition
xmltok_impl.h:47
BT_COMMA
@ BT_COMMA
Definition
xmltok_impl.h:70
BT_EXCL
@ BT_EXCL
Definition
xmltok_impl.h:51
BT_LEAD4
@ BT_LEAD4
Definition
xmltok_impl.h:42
BT_MINUS
@ BT_MINUS
Definition
xmltok_impl.h:62
BT_S
@ BT_S
Definition
xmltok_impl.h:56
BT_LEAD3
@ BT_LEAD3
Definition
xmltok_impl.h:41
BT_AMP
@ BT_AMP
Definition
xmltok_impl.h:38
BT_APOS
@ BT_APOS
Definition
xmltok_impl.h:48
BT_COLON
@ BT_COLON
Definition
xmltok_impl.h:58
BT_SOL
@ BT_SOL
Definition
xmltok_impl.h:52
BT_OTHER
@ BT_OTHER
Definition
xmltok_impl.h:63
BT_TRAIL
@ BT_TRAIL
Definition
xmltok_impl.h:43
BT_CR
@ BT_CR
Definition
xmltok_impl.h:44
BT_LT
@ BT_LT
Definition
xmltok_impl.h:37
BT_LF
@ BT_LF
Definition
xmltok_impl.h:45
BT_GT
@ BT_GT
Definition
xmltok_impl.h:46
BT_QUEST
@ BT_QUEST
Definition
xmltok_impl.h:50
BT_NAME
@ BT_NAME
Definition
xmltok_impl.h:61
BT_LEAD2
@ BT_LEAD2
Definition
xmltok_impl.h:40
BT_NMSTRT
@ BT_NMSTRT
Definition
xmltok_impl.h:57
BT_AST
@ BT_AST
Definition
xmltok_impl.h:68
BT_VERBAR
@ BT_VERBAR
Definition
xmltok_impl.h:71
BT_LSQB
@ BT_LSQB
Definition
xmltok_impl.h:55
BT_RSQB
@ BT_RSQB
Definition
xmltok_impl.h:39
BT_DIGIT
@ BT_DIGIT
Definition
xmltok_impl.h:60
BT_EQUALS
@ BT_EQUALS
Definition
xmltok_impl.h:49
BT_NONXML
@ BT_NONXML
Definition
xmltok_impl.h:35
BT_NUM
@ BT_NUM
Definition
xmltok_impl.h:54
geant4-v11.2.2
source
externals
expat
src
xmltok_impl.h
Generated by
1.12.0