1 /*
2  * Copyright (C) 2018 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef TESTS_DATA_OVERLAYABLE_R_H_
18 #define TESTS_DATA_OVERLAYABLE_R_H_
19 
20 #include <cstdint>
21 
22 namespace com {
23 namespace android {
24 namespace overlayable {
25 
26 struct R {
27   struct string {
28     enum : uint32_t {
29       not_overlayable = 0x7f010000,
30       overlayable1 = 0x7f010001,
31       overlayable2 = 0x7f010002,
32       overlayable3 = 0x7f010003,
33       overlayable4 = 0x7f010004,
34       overlayable5 = 0x7f010005,
35       overlayable6 = 0x7f010006,
36       overlayable7 = 0x7f010007,
37       overlayable8 = 0x7f010008,
38       overlayable9 = 0x7f010009,
39       overlayable10 = 0x7f01000a,
40       overlayable11 = 0x7f01000b,
41     };
42   };
43 
44   struct attr {
45     enum : uint32_t  {
46       max_lines = 0x7f020000,
47     };
48   };
49 
50   struct boolean {
51     enum : uint32_t {
52       config_bool = 0x7f030000,
53     };
54   };
55 
56   struct id {
57     enum : uint32_t  {
58       hello_view = 0x7f040000,
59     };
60   };
61 
62   struct integer {
63     enum : uint32_t {
64       config_integer = 0x7f050000,
65     };
66   };
67 
68   struct layout {
69     enum : uint32_t  {
70       hello_view = 0x7f060000,
71     };
72   };
73 };
74 
75 }  // namespace overlayable
76 }  // namespace android
77 }  // namespace com
78 
79 #endif /* TESTS_DATA_OVERLAYABLE_R_H_ */
80