Home
last modified time | relevance | path

Searched refs:dispatch (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/expo/home/redux/
H A DSettingsActions.ts11 return async (dispatch: AppDispatch) => {
17 return dispatch({
29 return async (dispatch: AppDispatch) => {
35 dispatch({
46 return async (dispatch: AppDispatch) => {
50 dispatch({
H A DHistoryActions.ts8 return async (dispatch: AppDispatch) => {
10 return dispatch({
18 return async (dispatch: AppDispatch) => {
20 return dispatch({
27 return async (dispatch: AppDispatch) => {
40 return dispatch({
H A DSessionActions.ts9 return async (dispatch: AppDispatch) => {
11 return dispatch({
19 return async (dispatch: AppDispatch) => {
35 return dispatch({
/expo/home/screens/SettingsScreen/
H A DDevMenuGestureSection.tsx13 const dispatch = useDispatch();
17 dispatch(
23 }, [dispatch, devMenuSettings]);
26 dispatch(
32 }, [dispatch, devMenuSettings]);
H A DThemeSection.tsx14 const dispatch = useDispatch();
19 dispatch(SettingsActions.setPreferredAppearance(preferredAppearance));
21 [dispatch]
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/rnskia/
H A DABI49_0_0RNSkDispatchQueue.h25 void dispatch(const fp_t &op);
28 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp32 void ABI49_0_0RNSkDispatchQueue::dispatch(const fp_t &op) { in dispatch() function in ABI49_0_0RNSkia::ABI49_0_0RNSkDispatchQueue
42 void ABI49_0_0RNSkDispatchQueue::dispatch(fp_t &&op) { in dispatch() function in ABI49_0_0RNSkia::ABI49_0_0RNSkDispatchQueue
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/rnskia/
H A DRNSkDispatchQueue.h25 void dispatch(const fp_t &op);
28 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp32 void RNSkDispatchQueue::dispatch(const fp_t &op) { in dispatch() function in RNSkia::RNSkDispatchQueue
42 void RNSkDispatchQueue::dispatch(fp_t &&op) { in dispatch() function in RNSkia::RNSkDispatchQueue
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/rnskia/
H A DRNSkDispatchQueue.h25 void dispatch(const fp_t &op);
28 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp32 void RNSkDispatchQueue::dispatch(const fp_t &op) { in dispatch() function in RNSkia::RNSkDispatchQueue
42 void RNSkDispatchQueue::dispatch(fp_t &&op) { in dispatch() function in RNSkia::RNSkDispatchQueue
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/rnskia/
H A DRNSkDispatchQueue.h25 void dispatch(const fp_t &op);
28 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp32 void RNSkDispatchQueue::dispatch(const fp_t &op) { in dispatch() function in RNSkia::RNSkDispatchQueue
42 void RNSkDispatchQueue::dispatch(fp_t &&op) { in dispatch() function in RNSkia::RNSkDispatchQueue
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/rnskia/
H A DRNSkDispatchQueue.h25 void dispatch(const fp_t &op);
28 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp32 void RNSkDispatchQueue::dispatch(const fp_t &op) { in dispatch() function in RNSkia::RNSkDispatchQueue
42 void RNSkDispatchQueue::dispatch(fp_t &&op) { in dispatch() function in RNSkia::RNSkDispatchQueue
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/rnskia/
H A DABI48_0_0RNSkDispatchQueue.h25 void dispatch(const fp_t &op);
28 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp32 void ABI48_0_0RNSkDispatchQueue::dispatch(const fp_t &op) { in dispatch() function in ABI48_0_0RNSkia::ABI48_0_0RNSkDispatchQueue
42 void ABI48_0_0RNSkDispatchQueue::dispatch(fp_t &&op) { in dispatch() function in ABI48_0_0RNSkia::ABI48_0_0RNSkDispatchQueue
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/rnskia/
H A DABI47_0_0RNSkDispatchQueue.h23 void dispatch(const fp_t &op);
26 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp37 void ABI47_0_0RNSkDispatchQueue::dispatch(const fp_t &op) in dispatch() function in ABI47_0_0RNSkia::ABI47_0_0RNSkDispatchQueue
48 void ABI47_0_0RNSkDispatchQueue::dispatch(fp_t &&op) in dispatch() function in ABI47_0_0RNSkia::ABI47_0_0RNSkDispatchQueue
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/rnskia/
H A DRNSkDispatchQueue.h23 void dispatch(const fp_t &op);
26 void dispatch(fp_t &&op);
H A DRNSkDispatchQueue.cpp37 void RNSkDispatchQueue::dispatch(const fp_t &op) in dispatch() function in RNSkia::RNSkDispatchQueue
48 void RNSkDispatchQueue::dispatch(fp_t &&op) in dispatch() function in RNSkia::RNSkDispatchQueue
/expo/home/api/__tests__/
H A DAuthSessions-test.js25 await Store.dispatch(SessionActions.signOut());
40 await Store.dispatch(SessionActions.setSession({ sessionSecret }));
58 await Store.dispatch(SessionActions.setSession({ sessionSecret }));
/expo/apps/native-component-list/src/screens/
H A DBarCodeScannerScreen.tsx61 const [state, dispatch] = React.useReducer(reducer, initialState);
66 dispatch({ alerting: !state.alerting });
79 dispatch({ canvasWidth: layout.width, canvasHeight: layout.height, haveDimensions: true });
83 dispatch({
97 dispatch({
105 const toggleText = () => dispatch({ showText: !state.showText });
107 const toggleBoundingBox = () => dispatch({ showBoundingBox: !state.showBoundingBox });
/expo/home/screens/HomeScreen/
H A Dindex.tsx35 const dispatch = useDispatch();
60 dispatch={dispatch}
/expo/packages/expo-modules-core/common/cpp/fabric/
H A DExpoViewEventEmitter.cpp9 void ExpoViewEventEmitter::dispatch(std::string eventName, react::ValueFactory payloadFactory) cons… in dispatch() function in expo::ExpoViewEventEmitter

12345678910>>...13