Home | History | Annotate | Download | only in keymaster

Lines Matching full:constexpr

40 constexpr char kPlatformVersionProp[] = "ro.build.version.release";
41 constexpr char kPlatformVersionRegex[] = "^([0-9]{1,2})(\\.([0-9]{1,2}))?(\\.([0-9]{1,2}))?";
42 constexpr size_t kMajorVersionMatch = 1;
43 constexpr size_t kMinorVersionMatch = 3;
44 constexpr size_t kSubminorVersionMatch = 5;
45 constexpr size_t kPlatformVersionMatchCount = kSubminorVersionMatch + 1;
47 constexpr char kPlatformPatchlevelProp[] = "ro.build.version.security_patch";
48 constexpr char kPlatformPatchlevelRegex[] = "^([0-9]{4})-([0-9]{2})-[0-9]{2}$";
49 constexpr size_t kYearMatch = 1;
50 constexpr size_t kMonthMatch = 2;
51 constexpr size_t kPlatformPatchlevelMatchCount = kMonthMatch + 1;