summaryrefslogtreecommitdiffstats
path: root/tools/clang/rewrite_to_chrome_style/tests/enums-expected.cc
blob: 1ecdea013b74dfe1e2dc0417819923d53ed7da90 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

namespace blink {

enum EnumInNamespace {
  // These should be renamed to SHOUT_CAPS.
  NAMED_WRONG,
  NAMED_WRONG_2,
  // This shouldn't exist but if it does renaming them will help us find them.
  K_NAMED_WRONG_3,
};

class T {
 public:
  enum EnumInClass {
    // These should be renamed to SHOUT_CAPS.
    CLASS_NAMED_WRONG,
    CLASS_NAMED_WRONG_22,
    // This shouldn't exist but if it does renaming them will help us find them.
    K_CLASS_NAMED_33_WRONG,
  };

  enum class EnumClassInClass {
    // These should be renamed to SHOUT_CAPS.
    ENUM_CLASS_NAMED_WRONG,
    ENUM_CLASS_NAMED_WRONG_22,
    // This shouldn't exist but if it does renaming them will help us find them.
    K_ENUM_CLASS_NAMED_33_WRONG,
  };
};

// Already SHOUT_CAPS, so the naming shouldn't change.
enum AlreadyShouty {
  ENABLE_DIRECTZ3000_SUPPORT_FOR_HL3E1,
};

}  // namespace blink

enum EnumOutsideNamespace {
  // These should not be renamed.
  OutNamedWrong,
  outNamedWrong2,
  kOutNamedWrong3,
};

void F() {
  // These should be renamed to SHOUT_CAPS.
  blink::EnumInNamespace e1 = blink::NAMED_WRONG;
  blink::EnumInNamespace e2 = blink::NAMED_WRONG_2;
  blink::T::EnumInClass e3 = blink::T::CLASS_NAMED_WRONG;
  blink::T::EnumInClass e4 = blink::T::CLASS_NAMED_WRONG_22;
  blink::T::EnumClassInClass e5 =
      blink::T::EnumClassInClass::ENUM_CLASS_NAMED_WRONG;
  blink::T::EnumClassInClass e6 =
      blink::T::EnumClassInClass::ENUM_CLASS_NAMED_WRONG_22;
  // These should not be renamed.
  EnumOutsideNamespace e7 = OutNamedWrong;
  EnumOutsideNamespace e8 = outNamedWrong2;
}

int G() {
  using blink::NAMED_WRONG;
  using blink::NAMED_WRONG_2;
  using blink::K_NAMED_WRONG_3;
  return NAMED_WRONG | NAMED_WRONG_2 | K_NAMED_WRONG_3;
}