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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
void func1()
{
}
void func2()
{
return 123;
}
void func3() { return 123; }
void func4();
void func5()
{
/* comment */
}
/*
void funcInsideComment()
{
}
*/
void func6()
{
}
#define MACRO 123 \
456 \
789
void func7()
{
}
#if 1 || 1 || \
1 || 1 || 1
void func8()
{
}
#else
void func9()
{
}
#endif
void func10()
{
}
std::string str = "abcde"
"void funcInsideDoubleQuotedString()"
"{"
"}";
void func11()
{
}
std::string str = 'abcde'
'void funcInsideSingleQuotedString()'
'{'
'}';
void func12(int a)
{
}
void func13(int a, int b, int c)
{
}
void func14(int a, int b,
int c, int d
, int e, int f)
{
}
void func15
(int a, int b)
{
}
void funcOverloaded()
{
}
void funcOverloaded(int a)
{
}
void funcOverloaded(float a)
{
}
void Class::func16()
{
}
void Class1::Class2::func17()
{
}
static void Class2::func18()
{
}
inline void Class2::func19()
{
}
const void Class2::func20()
{
}
Class1::Type Class2::func21()
{
}
inline static const Class1::Type Class2::func22()
{
}
template<class T> void func23(T t)
{
}
template<class T>
void func24(T t)
{
}
inline static Class1::Type Class2::func25()
{
}
class Class1 {
public:
void func26();
};
void Class1::func26()
{
}
class Class2 {
void func27()
{
}
};
class Class3 : public Class4, Class5, Class6 {
void func28()
{
}
};
class Class7 {
int operator+()
{
return 123;
}
};
Class100::Class100()
{
}
Class101::~Class101()
{
}
Class102::Class102() :
member(1), member(2)
{
}
Class103::Class103()
: member(1), member(2)
{
}
struct Struct1 {
public:
void func29();
};
void Struct1::func29()
{
}
struct Struct2 {
void func30()
{
}
};
namespace NameSpace1 {
void func30()
{
}
}
namespace NameSpace1 {
namespace NameSpace2 {
void func31()
{
}
}
}
class Class104 {
int a;
int b;
int c;
int d;
};
class Class105 {
public:
int a;
int b;
private:
int c;
int d;
};
class Class106 {
int a;
int b;
void func32()
{
int c;
int d;
}
int e;
int f;
void func33()
{
int g;
int h;
}
int i;
int j;
};
namespace NameSpace3 {
int a;
int b;
namespace NameSpace4 {
int c;
int d;
};
int e;
int f;
};
namespace NameSpace5 {
int a;
int b;
namespace NameSpace6 {
int c;
int d;
class Class107 {
int e;
int f;
void func34()
{
int g;
int h;
}
int i;
int j;
};
int k;
int ll;
};
int m;
int n;
};
class Class108 {
int a;
void func35()
{
int b;
if (1) {
int c;
for (;;) {
int d;
int e;
}
int f;
}
int g;
}
int h;
};
int a[] = { };
int a[] = {
};
int a[] = { 1, 2, 3 };
int a[] = {
1,
2,
3
};
int a[3] = { 1, 2, 3 };
int a[][3] = { {1, 2, 3}, {4, 5, 6} };
int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
extern int a[];
char a[4] = "test";
namespace NameSpace7 {
int a[] = { };
int a[] = {
};
int a[] = { 1, 2, 3 };
int a[] = {
1,
2,
3
};
int a[3] = { 1, 2, 3 };
int a[][3] = { {1, 2, 3}, {4, 5, 6} };
int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
extern int a[];
char a[4] = "test";
namespace NameSpace8 {
int a[] = { };
int a[] = {
};
int a[] = { 1, 2, 3 };
int a[] = {
1,
2,
3
};
int a[3] = { 1, 2, 3 };
int a[][3] = { {1, 2, 3}, {4, 5, 6} };
int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
extern int a[];
char a[4] = "test";
};
class Class109 {
int a[] = { };
int a[] = {
};
int a[] = { 1, 2, 3 };
int a[] = {
1,
2,
3
};
int a[3] = { 1, 2, 3 };
int a[][3] = { {1, 2, 3}, {4, 5, 6} };
int a[2][3] = { {1, 2, 3}, {4, 5, 6} };
extern int a[];
char a[4] = "test";
};
};
|