Home
last modified time | relevance | path

Searched refs:V (Results 1 – 25 of 82) sorted by relevance

1234

/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/packages/@expo/cli/src/utils/
H A Dfn.ts16 export function guardAsync<V, T extends (...args: any[]) => Promise<V>>(fn: T): T {
18 let returnValue: V;
20 const guard: any = async (...args: any[]): Promise<V> => {
/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()
27 V fValue;
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()
71 if (V* found = this->find(key)) { in insert_or_update()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/adapters/react/views/
H A DViewGroupManagerAdapter.java18 …lass ViewGroupManagerAdapter<M extends ViewManager<V>, V extends ViewGroup> extends ViewGroupManag…
26 protected V createViewInstance(ThemedReactContext reactContext) { in createViewInstance()
31 public void onDropViewInstance(V view) { in onDropViewInstance()
48 public void setProxiedProperties(V view, ReadableMap proxiedProperties) { in setProxiedProperties()
H A DSimpleViewManagerAdapter.java18 …class SimpleViewManagerAdapter<M extends ViewManager<V>, V extends View> extends SimpleViewManager…
26 protected V createViewInstance(ThemedReactContext reactContext) { in createViewInstance()
31 public void onDropViewInstance(V view) { in onDropViewInstance()
48 public void setProxiedProperties(V view, ReadableMap proxiedProperties) { in setProxiedProperties()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/adapters/react/views/
H A DSimpleViewManagerAdapter.java18 …class SimpleViewManagerAdapter<M extends ViewManager<V>, V extends View> extends SimpleViewManager…
26 protected V createViewInstance(ThemedReactContext reactContext) { in createViewInstance()
31 public void onDropViewInstance(V view) { in onDropViewInstance()
48 public void setProxiedProperties(V view, ReadableMap proxiedProperties) { in setProxiedProperties()
H A DViewGroupManagerAdapter.java18 …lass ViewGroupManagerAdapter<M extends ViewManager<V>, V extends ViewGroup> extends ViewGroupManag…
26 protected V createViewInstance(ThemedReactContext reactContext) { in createViewInstance()
31 public void onDropViewInstance(V view) { in onDropViewInstance()
48 public void setProxiedProperties(V view, ReadableMap proxiedProperties) { in setProxiedProperties()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/adapters/react/views/
H A DViewGroupManagerAdapter.java18 …lass ViewGroupManagerAdapter<M extends ViewManager<V>, V extends ViewGroup> extends ViewGroupManag…
26 protected V createViewInstance(ThemedReactContext reactContext) { in createViewInstance()
31 public void onDropViewInstance(V view) { in onDropViewInstance()
48 public void setProxiedProperties(V view, ReadableMap proxiedProperties) { in setProxiedProperties()
H A DSimpleViewManagerAdapter.java18 …class SimpleViewManagerAdapter<M extends ViewManager<V>, V extends View> extends SimpleViewManager…
26 protected V createViewInstance(ThemedReactContext reactContext) { in createViewInstance()
31 public void onDropViewInstance(V view) { in onDropViewInstance()
48 public void setProxiedProperties(V view, ReadableMap proxiedProperties) { in setProxiedProperties()
/expo/packages/@expo/package-manager/build/utils/
H A Dspawn.d.ts15 …xport declare function createPendingSpawnAsync<V, T>(actionAsync: () => Promise<V>, spawnAsync: (r…
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkNx.h295 #define V template <int N, typename T> AI static SkNx<N,T>
296 V operator+ (T x, const SkNx<N,T>& y) { return SkNx<N,T>(x) + y; }
297 V operator- (T x, const SkNx<N,T>& y) { return SkNx<N,T>(x) - y; }
298 V operator* (T x, const SkNx<N,T>& y) { return SkNx<N,T>(x) * y; }
299 V operator/ (T x, const SkNx<N,T>& y) { return SkNx<N,T>(x) / y; }
300 V operator& (T x, const SkNx<N,T>& y) { return SkNx<N,T>(x) & y; }
301 V operator| (T x, const SkNx<N,T>& y) { return SkNx<N,T>(x) | y; }
302 V operator^ (T x, const SkNx<N,T>& y) { return SkNx<N,T>(x) ^ y; }
324 V& operator<<=(SkNx<N,T>& x, int bits) { return (x = x << bits); }
325 V& operator>>=(SkNx<N,T>& x, int bits) { return (x = x >> bits); }
[all …]
H A DSkTHash.h418 template <typename K, typename V, typename HashK = SkGoodHash>
424 SkTHashMap(SkTHashMap<K, V, HashK>&& that) = default;
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;
431 struct Pair : public std::pair<K, V> {
432 using std::pair<K, V>::pair;
460 V* set(K key, V val) { in set()
467 V* find(const K& key) const { in find()
474 V& operator[](const K& key) {
475 if (V* val = this->find(key)) {
[all …]
/expo/packages/@expo/package-manager/src/utils/
H A Dspawn.ts18 export function createPendingSpawnAsync<V, T>(
19 actionAsync: () => Promise<V>,
20 spawnAsync: (result: V) => SpawnPromise<T>
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/Libraries/StyleSheet/
H A DStyleSheet.d.ts93 V extends T,
96 style2: StyleProp<V> | Array<StyleProp<V>>,
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/Libraries/StyleSheet/
H A DStyleSheet.d.ts93 V extends T,
96 style2: StyleProp<V> | Array<StyleProp<V>>,
/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) {
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/
H A DABI49_0_0MessageTypesInlines.h133 template <typename K, typename V>
134 void put(dynamic &obj, const K &key, const V &value) {
138 template <typename K, typename V>
139 void put(dynamic &obj, const K &key, const optional<V> &optValue) {
147 template <typename K, typename V>
148 void put(dynamic &obj, const K &key, const std::unique_ptr<V> &ptr) {
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/
H A DABI47_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) {
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkTHash.h419 template <typename K, typename V, typename HashK = SkGoodHash>
425 SkTHashMap(SkTHashMap<K, V, HashK>&& that) = default;
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;
432 struct Pair : public std::pair<K, V> {
433 using std::pair<K, V>::pair;
461 V* set(K key, V val) { in set()
468 V* find(const K& key) const { in find()
475 V& operator[](const K& key) {
476 if (V* val = this->find(key)) {
[all …]
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h427 THashMap(THashMap<K, V, HashK>&& that) = default;
428 THashMap(const THashMap<K, V, HashK>& that) = default;
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;
434 struct Pair : public std::pair<K, V> {
435 using std::pair<K, V>::pair;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
478 if (V* val = this->find(key)) {
[all …]
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h427 THashMap(THashMap<K, V, HashK>&& that) = default;
428 THashMap(const THashMap<K, V, HashK>& that) = default;
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;
434 struct Pair : public std::pair<K, V> {
435 using std::pair<K, V>::pair;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
478 if (V* val = this->find(key)) {
[all …]
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h427 THashMap(THashMap<K, V, HashK>&& that) = default;
428 THashMap(const THashMap<K, V, HashK>& that) = default;
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;
434 struct Pair : public std::pair<K, V> {
435 using std::pair<K, V>::pair;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
478 if (V* val = this->find(key)) {
[all …]
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h427 THashMap(THashMap<K, V, HashK>&& that) = default;
428 THashMap(const THashMap<K, V, HashK>& that) = default;
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;
434 struct Pair : public std::pair<K, V> {
435 using std::pair<K, V>::pair;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
478 if (V* val = this->find(key)) {
[all …]
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h427 THashMap(THashMap<K, V, HashK>&& that) = default;
428 THashMap(const THashMap<K, V, HashK>& that) = default;
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;
434 struct Pair : public std::pair<K, V> {
435 using std::pair<K, V>::pair;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
478 if (V* val = this->find(key)) {
[all …]
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/src/core/
H A DSkTHash.h427 THashMap(THashMap<K, V, HashK>&& that) = default;
428 THashMap(const THashMap<K, V, HashK>& that) = default;
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;
434 struct Pair : public std::pair<K, V> {
435 using std::pair<K, V>::pair;
463 V* set(K key, V val) { in set()
470 V* find(const K& key) const { in find()
477 V& operator[](const K& key) {
478 if (V* val = this->find(key)) {
[all …]

1234