summaryrefslogtreecommitdiff
path: root/tests/auto/xmlpatterns/queries/allAtomics.xq
blob: f2ea45940afe9a1cb2e26469041766d15bb25fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
xs:untypedAtomic("xs:untypedAtomic"),
xs:dateTime("2002-10-10T23:02:11Z"),
xs:date("2002-10-10Z"),
xs:time("23:02:12Z"),
xs:duration("P12M"),

(: Sub-types of xs:duration :)
xs:dayTimeDuration("PT1S"),
xs:yearMonthDuration("P1M"),

xs:float("3e3"),
xs:double("4e4"),
xs:decimal("2.0"),
(: Sub-types of xs:decimal :)
xs:integer("16"),
xs:nonPositiveInteger("-6"),
xs:negativeInteger("-4"),
xs:long("5"),
xs:int("6"),
xs:short("7"),
xs:byte("8"),
xs:nonNegativeInteger("9"),
xs:unsignedLong("10"),
xs:unsignedInt("11"),
xs:unsignedShort("12"),
xs:unsignedByte("13"),
xs:positiveInteger("14"),

xs:gYearMonth("1976-02Z"),
xs:gYear("2005-12:00"),
xs:gMonthDay("--12-25-14:00"),
xs:gDay("---25-14:00"),
xs:gMonth("--12-14:00"),
xs:boolean("true"),
xs:base64Binary("aaaa"),
xs:hexBinary("FFFF"),
xs:anyURI("http://example.com/"),
QName("http://example.com/2", "prefix:localName"),

xs:string("An xs:string"),
(: Sub-types of xs:string :)
xs:normalizedString("normalizedString"),
xs:token("token"),
xs:language("language"),
xs:NMTOKEN("NMTOKEN"),
xs:Name("Name"),
xs:NCName("NCName"),
xs:ID("ID"),
xs:IDREF("IDREF"),
xs:ENTITY("ENTITY")