Home
last modified time | relevance | path

Searched refs:K (Results 1 – 25 of 89) sorted by relevance

1234

/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h59 template <typename K>
60 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) == 4, uint32_t>
61 operator()(const K& k) const { in operator()
65 template <typename K>
66 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) != 4, uint32_t>
67 operator()(const K& k) const { in operator()
68 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
95 template <typename K>
97 uint32_t operator()(const K& k) const { in operator()
98 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h59 template <typename K>
60 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) == 4, uint32_t>
61 operator()(const K& k) const { in operator()
65 template <typename K>
66 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) != 4, uint32_t>
67 operator()(const K& k) const { in operator()
68 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
95 template <typename K>
97 uint32_t operator()(const K& k) const { in operator()
98 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h59 template <typename K>
60 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) == 4, uint32_t>
61 operator()(const K& k) const { in operator()
65 template <typename K>
66 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) != 4, uint32_t>
67 operator()(const K& k) const { in operator()
68 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
95 template <typename K>
97 uint32_t operator()(const K& k) const { in operator()
98 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h59 template <typename K>
60 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) == 4, uint32_t>
61 operator()(const K& k) const { in operator()
65 template <typename K>
66 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) != 4, uint32_t>
67 operator()(const K& k) const { in operator()
68 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
95 template <typename K>
97 uint32_t operator()(const K& k) const { in operator()
98 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h59 template <typename K>
60 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) == 4, uint32_t>
61 operator()(const K& k) const { in operator()
65 template <typename K>
66 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) != 4, uint32_t>
67 operator()(const K& k) const { in operator()
68 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
95 template <typename K>
97 uint32_t operator()(const K& k) const { in operator()
98 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h59 template <typename K>
60 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) == 4, uint32_t>
61 operator()(const K& k) const { in operator()
65 template <typename K>
66 std::enable_if_t<std::has_unique_object_representations<K>::value && sizeof(K) != 4, uint32_t>
67 operator()(const K& k) const { in operator()
68 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
95 template <typename K>
97 uint32_t operator()(const K& k) const { in operator()
98 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
/expo/packages/expo-modules-core/android/src/main/cpp/javaclasses/
H A DCollections.h39 template<typename K = jobject, typename V = jobject>
40 struct Map : public jni::JavaClass<Map<K, V>> {
43 jni::local_ref<V> put(jni::alias_ref<K> key, jni::alias_ref<V> value) { in put()
44 static auto putMethod = Map<K, V>::javaClassStatic()-> in put()
45 template getMethod<jni::local_ref<V>(jni::alias_ref<K>, jni::alias_ref<V>)>("put"); in put()
50 template<typename K = jobject, typename V = jobject>
51 struct HashMap : public jni::JavaClass<HashMap<K, V>, Map<K, V>> {
55 template<typename K = jobject, typename V = jobject>
56 struct LinkedHashMap : public jni::JavaClass<LinkedHashMap<K, V>, HashMap<K, V>> {
59 static jni::local_ref<typename LinkedHashMap<K, V>::javaobject> create(size_t size) { in create()
[all …]
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h54 template <typename K>
55 std::enable_if_t<sizeof(K) == 4, uint32_t> operator()(const K& k) const { in operator()
59 template <typename K>
60 std::enable_if_t<sizeof(K) != 4, uint32_t> operator()(const K& k) const { in operator()
61 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
H A DSkTHash.h93 T* find(const K& key) const { in find()
112 T findOrNull(const K& key) const { in findOrNull()
120 void remove(const K& key) { in remove()
428 SkTHashMap<K, V, HashK>& operator=(SkTHashMap<K, V, HashK>&& that) = default;
429 SkTHashMap<K, V, HashK>& operator=(const SkTHashMap<K, V, HashK>& that) = default;
461 V* set(K key, V val) { in set()
468 V* find(const K& key) const { in find()
475 V& operator[](const K& key) {
483 void remove(const K& key) { in remove()
501 using Iter = typename SkTHashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkChecksum.h54 template <typename K>
55 std::enable_if_t<sizeof(K) == 4, uint32_t> operator()(const K& k) const { in operator()
59 template <typename K>
60 std::enable_if_t<sizeof(K) != 4, uint32_t> operator()(const K& k) const { in operator()
61 return SkOpts::hash_fn(&k, sizeof(K), 0); in operator()
H A DSkTHash.h93 T* find(const K& key) const { in find()
112 T findOrNull(const K& key) const { in findOrNull()
120 void remove(const K& key) { in remove()
427 SkTHashMap<K, V, HashK>& operator=(SkTHashMap<K, V, HashK>&& that) = default;
428 SkTHashMap<K, V, HashK>& operator=(const SkTHashMap<K, V, HashK>& that) = default;
460 V* set(K key, V val) { in set()
467 V* find(const K& key) const { in find()
474 V& operator[](const K& key) {
482 void remove(const K& key) { in remove()
500 using Iter = typename SkTHashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/secrets/
H A Dkeys.json2 Ê�|y��#�a�z �-�pۦ+½�� gbC������; c���,�I�w����):���K��㜛�rA��@_�WƮ0�^꽆��ܳѪ�.�-B����-��l�����…
15K�.����~?����3�K�юHk�����������I���*=5��є��� �uf����Y��o��:q؈��>S��7�����BE�ӟ�/����…
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkLRUCache.h18 template <typename K, typename V, typename HashK = SkGoodHash>
22 Entry(const K& key, V&& value) in Entry()
26 K fKey;
45 V* find(const K& key) { in find()
58 V* insert(const K& key, V value) { in insert()
70 V* insert_or_update(const K& key, V value) { in insert_or_update()
102 static const K& GetKey(Entry* e) { in GetKey()
106 static uint32_t Hash(const K& k) { in Hash()
111 void remove(const K& key) { in remove()
122 SkTHashTable<Entry*, K, Traits> fMap;
/expo/packages/expo-router/src/
H A Dtypes.ts16 export type PickPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
/expo/packages/expo-router/build/
H A Dtypes.d.ts13 export type PickPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h95 T* find(const K& key) const { in find()
114 T findOrNull(const K& key) const { in findOrNull()
122 void remove(const K& key) { in remove()
430 THashMap<K, V, HashK>& operator=(THashMap<K, V, HashK>&& that) = default;
431 THashMap<K, V, HashK>& operator=(const THashMap<K, V, HashK>& that) = default;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
485 void remove(const K& key) { in remove()
503 using Iter = typename THashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h95 T* find(const K& key) const { in find()
114 T findOrNull(const K& key) const { in findOrNull()
122 void remove(const K& key) { in remove()
430 THashMap<K, V, HashK>& operator=(THashMap<K, V, HashK>&& that) = default;
431 THashMap<K, V, HashK>& operator=(const THashMap<K, V, HashK>& that) = default;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
485 void remove(const K& key) { in remove()
503 using Iter = typename THashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h95 T* find(const K& key) const { in find()
114 T findOrNull(const K& key) const { in findOrNull()
122 void remove(const K& key) { in remove()
430 THashMap<K, V, HashK>& operator=(THashMap<K, V, HashK>&& that) = default;
431 THashMap<K, V, HashK>& operator=(const THashMap<K, V, HashK>& that) = default;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
485 void remove(const K& key) { in remove()
503 using Iter = typename THashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h95 T* find(const K& key) const { in find()
114 T findOrNull(const K& key) const { in findOrNull()
122 void remove(const K& key) { in remove()
430 THashMap<K, V, HashK>& operator=(THashMap<K, V, HashK>&& that) = default;
431 THashMap<K, V, HashK>& operator=(const THashMap<K, V, HashK>& that) = default;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
485 void remove(const K& key) { in remove()
503 using Iter = typename THashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h95 T* find(const K& key) const { in find()
114 T findOrNull(const K& key) const { in findOrNull()
122 void remove(const K& key) { in remove()
430 THashMap<K, V, HashK>& operator=(THashMap<K, V, HashK>&& that) = default;
431 THashMap<K, V, HashK>& operator=(const THashMap<K, V, HashK>& that) = default;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
485 void remove(const K& key) { in remove()
503 using Iter = typename THashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h95 T* find(const K& key) const { in find()
114 T findOrNull(const K& key) const { in findOrNull()
122 void remove(const K& key) { in remove()
430 THashMap<K, V, HashK>& operator=(THashMap<K, V, HashK>&& that) = default;
431 THashMap<K, V, HashK>& operator=(const THashMap<K, V, HashK>& that) = default;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
485 void remove(const K& key) { in remove()
503 using Iter = typename THashTable<Pair, K>::template Iter<std::pair<K, V>>;
[all …]
/expo/packages/@expo/cli/src/utils/
H A Darray.ts49 export function groupBy<T, K extends keyof any>(list: T[], getKey: (item: T) => K): Record<K, T[]> {
59 {} as Record<K, T[]>
/expo/packages/expo-notifications/build/
H A DNotificationChannelManager.types.d.ts75 type RequiredBy<T, K extends keyof T> = Partial<Omit<T, K>> & Required<Pick<T, K>>;
/expo/packages/expo-notifications/src/
H A DNotificationChannelManager.types.ts91 type RequiredBy<T, K extends keyof T> = Partial<Omit<T, K>> & Required<Pick<T, K>>;
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/
H A DABI48_0_0MessageTypesInlines.h132 template <typename K, typename V>
133 void put(dynamic &obj, const K &key, const V &value) {
137 template <typename K, typename V>
138 void put(dynamic &obj, const K &key, const optional<V> &optValue) {
146 template <typename K, typename V>
147 void put(dynamic &obj, const K &key, const std::unique_ptr<V> &ptr) {

1234