Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <precomp.h>
21 : #include <ary_i/d_token.hxx>
22 :
23 :
24 : // NOT FULLY DEFINED SERVICES
25 : #include <ary_i/disdocum.hxx>
26 :
27 :
28 :
29 :
30 : namespace csi
31 : {
32 : namespace dsapi
33 : {
34 :
35 : bool
36 5697 : DT_Dsapi::IsWhiteOnly() const
37 : {
38 5697 : return false;
39 : }
40 :
41 831712 : DT_TextToken::~DT_TextToken()
42 : {
43 831712 : }
44 :
45 : void
46 553202 : DT_TextToken::DisplayAt( DocumentationDisplay & o_rDisplay ) const
47 : {
48 553202 : o_rDisplay.Display_TextToken( *this );
49 553202 : }
50 :
51 : bool
52 34721 : DT_TextToken::IsWhiteOnly() const
53 : {
54 34721 : const char *it = sText.c_str();
55 34721 : while (static_cast<UINT8>(*it++) > 32)
56 : {
57 34721 : return false;
58 : }
59 0 : return true;
60 : }
61 :
62 838964 : DT_White::~DT_White()
63 : {
64 838964 : }
65 :
66 : void
67 553574 : DT_White::DisplayAt( DocumentationDisplay & o_rDisplay ) const
68 : {
69 553574 : o_rDisplay.Display_White();
70 553574 : }
71 :
72 : bool
73 37473 : DT_White::IsWhiteOnly() const
74 : {
75 37473 : return true;
76 : }
77 :
78 19090 : DT_MupType::~DT_MupType()
79 : {
80 19090 : }
81 :
82 : void
83 9859 : DT_MupType::DisplayAt( DocumentationDisplay & o_rDisplay ) const
84 : {
85 9859 : o_rDisplay.Display_MupType( *this );
86 9859 : }
87 :
88 9494 : DT_MupMember::~DT_MupMember()
89 : {
90 9494 : }
91 :
92 : void
93 5169 : DT_MupMember::DisplayAt( DocumentationDisplay & o_rDisplay ) const
94 : {
95 5169 : o_rDisplay.Display_MupMember( *this );
96 5169 : }
97 :
98 1698 : DT_MupConst::~DT_MupConst()
99 : {
100 1698 : }
101 :
102 : void
103 2174 : DT_MupConst::DisplayAt( DocumentationDisplay & o_rDisplay ) const
104 : {
105 2174 : o_rDisplay.Display_MupConst( *this );
106 2174 : }
107 :
108 56662 : DT_Style::~DT_Style()
109 : {
110 56662 : }
111 :
112 : void
113 24853 : DT_Style::DisplayAt( DocumentationDisplay & o_rDisplay ) const
114 : {
115 24853 : o_rDisplay.Display_Style( *this );
116 24853 : }
117 :
118 141140 : DT_EOL::~DT_EOL()
119 : {
120 141140 : }
121 :
122 : void
123 93416 : DT_EOL::DisplayAt( DocumentationDisplay & o_rDisplay ) const
124 : {
125 93416 : o_rDisplay.Display_EOL();
126 93416 : }
127 :
128 : bool
129 10126 : DT_EOL::IsWhiteOnly() const
130 : {
131 10126 : return true;
132 : }
133 :
134 0 : DT_StdAtTag::~DT_StdAtTag()
135 : {
136 0 : }
137 :
138 : void
139 3658 : DT_StdAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
140 : {
141 3658 : o_rDisplay.Display_StdAtTag( *this );
142 3658 : }
143 :
144 0 : DT_SeeAlsoAtTag::~DT_SeeAlsoAtTag()
145 : {
146 0 : }
147 :
148 : void
149 38 : DT_SeeAlsoAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
150 : {
151 38 : o_rDisplay.Display_SeeAlsoAtTag( *this );
152 38 : }
153 :
154 0 : DT_ParameterAtTag::~DT_ParameterAtTag()
155 : {
156 0 : }
157 :
158 : void
159 3476 : DT_ParameterAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
160 : {
161 3476 : o_rDisplay.Display_ParameterAtTag( *this );
162 3476 : }
163 :
164 0 : DT_SinceAtTag::~DT_SinceAtTag()
165 : {
166 0 : }
167 :
168 : void
169 413 : DT_SinceAtTag::DisplayAt( DocumentationDisplay & o_rDisplay ) const
170 : {
171 413 : o_rDisplay.Display_SinceAtTag( *this );
172 413 : }
173 :
174 :
175 :
176 :
177 : } // namespace dsapi
178 3 : } // namespace csi
179 :
180 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|