(Class<?> key)
| 3745 | |
| 3746 | private static final ValueCache<Class<?>, Map<String, Boolean>, RuntimeException> atomic32Cache = cacheProperty(new ValueComputer<Class<?>, Map<String, Boolean>>() { |
| 3747 | @Override |
| 3748 | public Map<String, Boolean> compute(Class<?> key) { |
| 3749 | Map<String, Boolean> properties = new HashMap<>(); |
| 3750 | for (final Method method : key.getDeclaredMethods()) { |
| 3751 | if (isRelevant(method) && method.isAnnotationPresent(OpenCLMapping.class)) { |
| 3752 | properties.put(toSignature(method), method.getAnnotation(OpenCLMapping.class).atomic32()); |
| 3753 | } |
| 3754 | } |
| 3755 | return properties; |
| 3756 | } |
| 3757 | }); |
| 3758 | |
| 3759 | private static final ValueCache<Class<?>, Map<String, Boolean>, RuntimeException> atomic64Cache = cacheProperty(new ValueComputer<Class<?>, Map<String, Boolean>>() { |
nothing calls this directly
no test coverage detected