/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/ |
D | TreeNode.java | 27 abstract class TreeNode<V extends TreeNode<V>> { 29 private V parent; 31 private final List<V> children = new ArrayList<>(); 42 protected final V getThis() { in getThis() 43 return (V) this; in getThis() 46 public final V getParent() { in getParent() 51 protected final void setParent(V newParent) { in setParent() 58 public final void addChild(V e) { in addChild() 66 public final List<V> getChildren() { in getChildren() 77 public final void visitSelfThenChildrenRecursive(Visitor<V> visitor) { in visitSelfThenChildrenRecursive() [all …]
|
/system/libvintf/include/vintf/ |
D | MapValueIterator.h | 30 using V = typename Map::mapped_type; member 36 V, 38 typename std::conditional<is_const, const V *, V *>::type /* Pointer */, 39 typename std::conditional<is_const, const V &, V &>::type /* Reference */ 119 template<typename K, typename V> 120 using ConstMapValueIterable = typename MapIterTypes<std::map<K, V>>::ConstValueIterable; 121 template<typename K, typename V> 122 using ConstMultiMapValueIterable = typename MapIterTypes<std::multimap<K, V>>::ConstValueIterable; 123 template <typename K, typename V> 124 using MapValueIterable = typename MapIterTypes<std::map<K, V>>::ValueIterable; [all …]
|
/system/bt/service/ipc/binder/ |
D | remote_callback_map.h | 37 template <typename K, typename V> 63 bool Register(const K& key, const android::sp<V>& callback, 72 android::sp<V> Get(const K& key); 76 android::sp<V> Remove(const K& key); 84 CallbackDeathRecipient(const K& key, const android::sp<V>& callback, 85 RemoteCallbackMap<K, V>* owner, Delegate* delegate); 87 android::sp<V> get_callback() const { return callback_; } in get_callback() 94 android::sp<V> callback_; 95 RemoteCallbackMap<K, V>* owner_; // weak 121 template <typename K, typename V> [all …]
|
/system/libhidl/transport/include/hidl/ |
D | ConcurrentMap.h | 25 template<typename K, typename V> 28 using size_type = typename std::map<K, V>::size_type; 29 using iterator = typename std::map<K, V>::iterator; 30 using const_iterator = typename std::map<K, V>::const_iterator; 33 void set(K &&k, V &&v) { in set() 35 mMap[std::forward<K>(k)] = std::forward<V>(v); in set() 39 const V &get(const K &k, const V &def) const { in get() 53 size_type eraseIfEqual(const K& k, const V& v) { in eraseIfEqual() 69 void setLocked(K&& k, V&& v) { mMap[std::forward<K>(k)] = std::forward<V>(v); } in setLocked() 70 void setLocked(K&& k, const V& v) { mMap[std::forward<K>(k)] = v; } in setLocked() [all …]
|
/system/iorap/tests/src/tmp/ |
D | introspection_test.cc | 118 template <typename M, typename T, typename V> 119 constexpr void call_set_value(M member_type, T&& self, V&& value) { in call_set_value() 120 member_type.set_value(std::forward<T>(self), std::forward<V>(value)); in call_set_value() 139 template <typename M, typename T, typename V> 140 constexpr void call_set_value_lambda(M member_type, T&& self, V&& value) { in call_set_value_lambda() 142 member_type.set_value(std::forward<T>(self), std::forward<V>(value)); in call_set_value_lambda() 143 })(std::forward<V>(value)); in call_set_value_lambda() 166 template <typename T, typename V> 167 constexpr void call_set_simple_value_with_lambda(T&& self, V&& value) { in call_set_simple_value_with_lambda() 175 })(std::forward<V>(value)); in call_set_simple_value_with_lambda()
|
/system/bt/stack/smp/ |
D | p_256_multprecision.cc | 229 uint32_t V; in multiprecision_mult() local 231 U = V = W = 0; in multiprecision_mult() 241 V = a[i] * b[j]; in multiprecision_mult() 242 V = V + U; in multiprecision_mult() 243 U = (V < U); in multiprecision_mult() 245 V = V + c[i + j]; in multiprecision_mult() 246 U += (V < c[i + j]); in multiprecision_mult() 247 c[i + j] = V; in multiprecision_mult() 255 uint32_t V; in multiprecision_fast_mod() local 303 V = c[0] < U; in multiprecision_fast_mod() [all …]
|
/system/netd/libnetdutils/include/netdutils/ |
D | Misc.h | 26 template <typename U, typename V> 27 inline const V& findWithDefault(const std::map<U, V>& map, const U& key, const V& dflt) { in findWithDefault()
|
D | Slice.h | 90 template <typename U, size_t V> 91 inline const Slice makeSlice(const std::array<U, V>& a) { in makeSlice()
|
/system/core/libutils/include/utils/ |
D | TypeHelpers.h | 279 template <typename K, typename V> 280 struct trait_trivial_ctor< key_value_pair_t<K, V> > 281 { enum { value = aggregate_traits<K,V>::has_trivial_ctor }; }; 282 template <typename K, typename V> 283 struct trait_trivial_dtor< key_value_pair_t<K, V> > 284 { enum { value = aggregate_traits<K,V>::has_trivial_dtor }; }; 285 template <typename K, typename V> 286 struct trait_trivial_copy< key_value_pair_t<K, V> > 287 { enum { value = aggregate_traits<K,V>::has_trivial_copy }; }; 288 template <typename K, typename V> [all …]
|
D | LruCache.h | 179 template<typename K, typename V> 180 void LruCache<K, V>::setOnEntryRemovedListener(OnEntryRemoved<K, V>* listener) { in setOnEntryRemovedListener()
|
D | List.h | 105 template<typename V> explicit 106 _ListIterator(const V& rhs) : mpNode(rhs.mpNode) {} in _ListIterator()
|
/system/core/property_service/libpropertyinfoserializer/include/property_info_serializer/ |
D | property_info_serializer.h | 28 template <typename T, typename U, typename V> 29 PropertyInfoEntry(T&& name, U&& context, V&& type, bool exact_match) in PropertyInfoEntry() 32 type(std::forward<V>(type)), in PropertyInfoEntry()
|
/system/tools/aidl/tests/ |
D | test_helpers.h | 31 template <typename T, typename U, typename V> 34 android::binder::Status(android::aidl::tests::ITestService::*func)(T, V*), in RepeatPrimitive() argument 36 V reply; in RepeatPrimitive()
|
/system/core/init/ |
D | result.h | 158 template <typename U, typename... V, 160 sizeof...(V) == 0)>> 161 Result(U&& result, V&&... results) in Result() 163 std::forward<V>(results)...) {} in Result()
|
/system/core/libpixelflinger/codeflinger/ |
D | texturing.cpp | 466 int V = 0; in build_textures() local 507 V = scratches.obtain(); in build_textures() 518 AND(AL, 0, V, v, imm((1<<FRAC_BITS)-1)); in build_textures() 638 case 1: filter8(parts, texel, tmu, U, V, txPtr, FRAC_BITS); break; in build_textures() 639 case 2: filter16(parts, texel, tmu, U, V, txPtr, FRAC_BITS); break; in build_textures() 640 case 3: filter24(parts, texel, tmu, U, V, txPtr, FRAC_BITS); break; in build_textures() 641 case 4: filter32(parts, texel, tmu, U, V, txPtr, FRAC_BITS); break; in build_textures() 688 int U, int V, pointer_t& txPtr, in filter8() argument 720 SMULBB(AL, u, U, V); in filter8() 727 SMULBB(AL, u, U, V); in filter8() [all …]
|
D | GGLAssembler.h | 454 int U, int V, pointer_t& txPtr, 459 int U, int V, pointer_t& txPtr, 464 int U, int V, pointer_t& txPtr, 469 int U, int V, pointer_t& txPtr,
|
/system/apex/apexd/apexd_testdata/ |
D | com.android.apex.test_package.preinstall.pem | 19 WMRyZKhBAYzYCbeRJIKP0z+BrHbF+V+oX/cWjtEU9BDZ6KcQ401FgDLyPyGVfBbb 36 7V/aupzVAYYpa35FQhlaKrGDwBaU+ta3U8xEADPlF3cYhaFTm+WZhs9LmobcyHrl
|
D | com.android.apex.test_package.postinstall.pem | 25 bJtnmTyprqM8JmVAskpxV8YZJ++ZgOIHOzCXrMs7KHstbVCN750aqAdPwCOU11/V
|
/system/libhidl/transport/ |
D | HidlTransportSupport.cpp | 46 template <typename V> 47 static void pruneMapLocked(ConcurrentMap<wp<IBase>, V>& map) { in pruneMapLocked()
|
/system/update_engine/ |
D | unittest_key.pem | 21 V/xzegbh2HAglNnNizZuAQKBgQCyOxEpBP5vgS7d/MgJklFEYrb/wjgBnMI5oSek
|
/system/keymaster/include/keymaster/ |
D | List.h | 103 template<typename V> explicit 104 _ListIterator(const V& rhs) : mpNode(rhs.mpNode) {} in _ListIterator()
|
/system/media/audio_utils/tests/ |
D | statistics_tests.cpp | 26 template <typename T, typename V> 27 static void initUniform(V& data, T rangeMin, T rangeMax) { in initUniform() 39 template <typename T, typename V> 40 static void initNormal(V& data, T mean, T stddev) { in initNormal()
|
/system/tools/aidl/build/ |
D | aidl_interface.go | 672 name = name + "-V" + version
|
/system/core/libsync/tests/ |
D | sync_test.cpp | 625 template <typename K, typename V> using dict = unordered_map<K,V>;
|
/system/ca-certificates/files/ |
D | 17b51fe6.0 | 11 H7WLO7dDWWuwJKZtkIvEcupdM5i3y95ee++U8Rs+yskhwcWYAqqi9lt3m/V+llU0
|