| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/view/ |
| H A D | ABI49_0_0ViewPropsMapBuffer.h | 17 constexpr MapBuffer::Key VP_BG_COLOR = 10; 18 constexpr MapBuffer::Key VP_BORDER_COLOR = 11; 19 constexpr MapBuffer::Key VP_BORDER_RADII = 12; 21 constexpr MapBuffer::Key VP_COLLAPSABLE = 14; 22 constexpr MapBuffer::Key VP_ELEVATION = 15; 23 constexpr MapBuffer::Key VP_FOCUSABLE = 16; 25 constexpr MapBuffer::Key VP_HIT_SLOP = 18; 29 constexpr MapBuffer::Key VP_OPACITY = 24; 37 constexpr MapBuffer::Key VP_TEST_ID = 32; 39 constexpr MapBuffer::Key VP_ZINDEX = 34; [all …]
|
| H A D | ABI49_0_0AccessibilityPropsMapBuffer.h | 18 constexpr MapBuffer::Key AP_ACCESSIBILITY_ACTIONS = 0; 19 constexpr MapBuffer::Key AP_ACCESSIBILITY_HINT = 1; 20 constexpr MapBuffer::Key AP_ACCESSIBILITY_LABEL = 2; 21 constexpr MapBuffer::Key AP_ACCESSIBILITY_LABELLED_BY = 3; 22 constexpr MapBuffer::Key AP_ACCESSIBILITY_LIVE_REGION = 4; 23 constexpr MapBuffer::Key AP_ACCESSIBILITY_ROLE = 5; 24 constexpr MapBuffer::Key AP_ACCESSIBILITY_STATE = 6; 25 constexpr MapBuffer::Key AP_ACCESSIBILITY_VALUE = 7; 26 constexpr MapBuffer::Key AP_ACCESSIBLE = 8; 30 constexpr MapBuffer::Key ACCESSIBILITY_ACTION_NAME = 0; [all …]
|
| H A D | ABI49_0_0viewPropConversions.h | 24 constexpr MapBuffer::Key EDGE_TOP = 0; 25 constexpr MapBuffer::Key EDGE_LEFT = 1; 26 constexpr MapBuffer::Key EDGE_RIGHT = 2; 27 constexpr MapBuffer::Key EDGE_BOTTOM = 3; 28 constexpr MapBuffer::Key EDGE_START = 4; 29 constexpr MapBuffer::Key EDGE_END = 5; 30 constexpr MapBuffer::Key EDGE_ALL = 6; 31 constexpr MapBuffer::Key EDGE_BLOCK = 7; 43 constexpr MapBuffer::Key CORNER_ALL = 8; 51 MapBuffer::Key key, in putOptionalFloat() [all …]
|
| H A D | ABI49_0_0YogaStylablePropsMapBuffer.h | 18 constexpr MapBuffer::Key ABI49_0_0YG_BORDER_WIDTH = 100; 19 constexpr MapBuffer::Key ABI49_0_0YG_OVERFLOW = 101;
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/view/ |
| H A D | ABI48_0_0ViewPropsMapBuffer.h | 17 constexpr MapBuffer::Key VP_BG_COLOR = 10; 18 constexpr MapBuffer::Key VP_BORDER_COLOR = 11; 19 constexpr MapBuffer::Key VP_BORDER_RADII = 12; 21 constexpr MapBuffer::Key VP_COLLAPSABLE = 14; 22 constexpr MapBuffer::Key VP_ELEVATION = 15; 23 constexpr MapBuffer::Key VP_FOCUSABLE = 16; 25 constexpr MapBuffer::Key VP_HIT_SLOP = 18; 29 constexpr MapBuffer::Key VP_OPACITY = 24; 37 constexpr MapBuffer::Key VP_TEST_ID = 32; 39 constexpr MapBuffer::Key VP_ZINDEX = 34; [all …]
|
| H A D | ABI48_0_0AccessibilityPropsMapBuffer.h | 16 constexpr MapBuffer::Key AP_ACCESSIBILITY_ACTIONS = 0; 17 constexpr MapBuffer::Key AP_ACCESSIBILITY_HINT = 1; 18 constexpr MapBuffer::Key AP_ACCESSIBILITY_LABEL = 2; 19 constexpr MapBuffer::Key AP_ACCESSIBILITY_LABELLED_BY = 3; 20 constexpr MapBuffer::Key AP_ACCESSIBILITY_LIVE_REGION = 4; 21 constexpr MapBuffer::Key AP_ACCESSIBILITY_ROLE = 5; 22 constexpr MapBuffer::Key AP_ACCESSIBILITY_STATE = 6; 23 constexpr MapBuffer::Key AP_ACCESSIBILITY_VALUE = 7; 24 constexpr MapBuffer::Key AP_ACCESSIBLE = 8; 28 constexpr MapBuffer::Key ACCESSIBILITY_ACTION_NAME = 0; [all …]
|
| H A D | ABI48_0_0viewPropConversions.h | 24 constexpr MapBuffer::Key EDGE_TOP = 0; 25 constexpr MapBuffer::Key EDGE_LEFT = 1; 26 constexpr MapBuffer::Key EDGE_RIGHT = 2; 27 constexpr MapBuffer::Key EDGE_BOTTOM = 3; 28 constexpr MapBuffer::Key EDGE_START = 4; 29 constexpr MapBuffer::Key EDGE_END = 5; 30 constexpr MapBuffer::Key EDGE_ALL = 6; 37 constexpr MapBuffer::Key CORNER_TOP_END = 5; 40 constexpr MapBuffer::Key CORNER_ALL = 8; 44 MapBuffer::Key key, in putOptionalFloat() [all …]
|
| H A D | ABI48_0_0YogaStylablePropsMapBuffer.h | 18 constexpr MapBuffer::Key ABI48_0_0YG_BORDER_WIDTH = 100; 19 constexpr MapBuffer::Key ABI48_0_0YG_OVERFLOW = 101;
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/mapbuffer/ |
| H A D | ABI49_0_0MapBuffer.h | 71 using Key = uint16_t; 85 Key key; 89 Bucket(Key key, uint16_t type, uint64_t data) in Bucket() 120 int32_t getInt(MapBuffer::Key key) const; 122 bool getBool(MapBuffer::Key key) const; 124 double getDouble(MapBuffer::Key key) const; 126 std::string getString(MapBuffer::Key key) const; 129 MapBuffer getMapBuffer(MapBuffer::Key key) const; 131 std::vector<MapBuffer> getMapBufferList(MapBuffer::Key key) const; 149 int32_t getKeyBucket(MapBuffer::Key key) const;
|
| H A D | ABI49_0_0MapBufferBuilder.h | 29 void putInt(MapBuffer::Key key, int32_t value); 31 void putBool(MapBuffer::Key key, bool value); 33 void putDouble(MapBuffer::Key key, double value); 35 void putString(MapBuffer::Key key, std::string const &value); 37 void putMapBuffer(MapBuffer::Key key, MapBuffer const &map); 40 MapBuffer::Key key, 57 MapBuffer::Key key,
|
| H A D | ABI49_0_0MapBuffer.cpp | 35 int32_t MapBuffer::getKeyBucket(Key key) const { in getKeyBucket() 41 Key midVal = in getKeyBucket() 42 *reinterpret_cast<Key const *>(bytes_.data() + bucketOffset(mid)); in getKeyBucket() 56 int32_t MapBuffer::getInt(Key key) const { in getInt() 64 bool MapBuffer::getBool(Key key) const { in getBool() 68 double MapBuffer::getDouble(Key key) const { in getDouble() 82 std::string MapBuffer::getString(Key key) const { in getString() 95 MapBuffer MapBuffer::getMapBuffer(Key key) const { in getMapBuffer() 114 std::vector<MapBuffer> MapBuffer::getMapBufferList(MapBuffer::Key key) const { in getMapBufferList()
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/mapbuffer/ |
| H A D | ABI48_0_0MapBuffer.h | 71 using Key = uint16_t; 85 Key key; 89 Bucket(Key key, uint16_t type, uint64_t data) in Bucket() 118 int32_t getInt(MapBuffer::Key key) const; 120 bool getBool(MapBuffer::Key key) const; 122 double getDouble(MapBuffer::Key key) const; 124 std::string getString(MapBuffer::Key key) const; 127 MapBuffer getMapBuffer(MapBuffer::Key key) const; 129 std::vector<MapBuffer> getMapBufferList(MapBuffer::Key key) const; 147 int32_t getKeyBucket(MapBuffer::Key key) const;
|
| H A D | ABI48_0_0MapBufferBuilder.h | 29 void putInt(MapBuffer::Key key, int32_t value); 31 void putBool(MapBuffer::Key key, bool value); 33 void putDouble(MapBuffer::Key key, double value); 35 void putString(MapBuffer::Key key, std::string const &value); 37 void putMapBuffer(MapBuffer::Key key, MapBuffer const &map); 40 MapBuffer::Key key, 57 MapBuffer::Key key,
|
| H A D | ABI48_0_0MapBuffer.cpp | 35 int32_t MapBuffer::getKeyBucket(Key key) const { in getKeyBucket() 41 Key midVal = in getKeyBucket() 42 *reinterpret_cast<Key const *>(bytes_.data() + bucketOffset(mid)); in getKeyBucket() 56 int32_t MapBuffer::getInt(Key key) const { in getInt() 64 bool MapBuffer::getBool(Key key) const { in getBool() 68 double MapBuffer::getDouble(Key key) const { in getDouble() 82 std::string MapBuffer::getString(Key key) const { in getString() 95 MapBuffer MapBuffer::getMapBuffer(Key key) const { in getMapBuffer() 114 std::vector<MapBuffer> MapBuffer::getMapBufferList(MapBuffer::Key key) const { in getMapBufferList()
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/mapbuffer/ |
| H A D | ABI47_0_0MapBuffer.h | 71 using Key = uint16_t; 85 Key key; 89 Bucket(Key key, uint16_t type, uint64_t data) in Bucket() 118 int32_t getInt(MapBuffer::Key key) const; 120 bool getBool(MapBuffer::Key key) const; 122 double getDouble(MapBuffer::Key key) const; 124 std::string getString(MapBuffer::Key key) const; 127 MapBuffer getMapBuffer(MapBuffer::Key key) const; 145 int32_t getKeyBucket(MapBuffer::Key key) const;
|
| H A D | ABI47_0_0MapBufferBuilder.h | 28 void putInt(MapBuffer::Key key, int32_t value); 30 void putBool(MapBuffer::Key key, bool value); 32 void putDouble(MapBuffer::Key key, double value); 34 void putString(MapBuffer::Key key, std::string const &value); 36 void putMapBuffer(MapBuffer::Key key, MapBuffer const &map); 52 MapBuffer::Key key,
|
| H A D | ABI47_0_0MapBuffer.cpp | 36 int32_t MapBuffer::getKeyBucket(Key key) const { in getKeyBucket() 42 Key midVal = in getKeyBucket() 43 *reinterpret_cast<Key const *>(bytes_.data() + bucketOffset(mid)); in getKeyBucket() 57 int32_t MapBuffer::getInt(Key key) const { in getInt() 65 bool MapBuffer::getBool(Key key) const { in getBool() 69 double MapBuffer::getDouble(Key key) const { in getDouble() 83 std::string MapBuffer::getString(Key key) const { in getString() 96 MapBuffer MapBuffer::getMapBuffer(Key key) const { in getMapBuffer()
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/text/ |
| H A D | ABI49_0_0ParagraphState.h | 24 constexpr static MapBuffer::Key TX_STATE_KEY_ATTRIBUTED_STRING = 0; 25 constexpr static MapBuffer::Key TX_STATE_KEY_PARAGRAPH_ATTRIBUTES = 1; 27 constexpr static MapBuffer::Key TX_STATE_KEY_HASH = 2; 28 constexpr static MapBuffer::Key TX_STATE_KEY_MOST_RECENT_EVENT_COUNT = 3;
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/text/ |
| H A D | ABI48_0_0ParagraphState.h | 25 constexpr static MapBuffer::Key TX_STATE_KEY_ATTRIBUTED_STRING = 0; 26 constexpr static MapBuffer::Key TX_STATE_KEY_PARAGRAPH_ATTRIBUTES = 1; 28 constexpr static MapBuffer::Key TX_STATE_KEY_HASH = 2; 29 constexpr static MapBuffer::Key TX_STATE_KEY_MOST_RECENT_EVENT_COUNT = 3;
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/text/ |
| H A D | ABI47_0_0conversions.h | 30 constexpr static MapBuffer::Key TX_STATE_KEY_ATTRIBUTED_STRING = 0; 31 constexpr static MapBuffer::Key TX_STATE_KEY_PARAGRAPH_ATTRIBUTES = 1; 33 constexpr static MapBuffer::Key TX_STATE_KEY_HASH = 2; 34 constexpr static MapBuffer::Key TX_STATE_KEY_MOST_RECENT_EVENT_COUNT = 3;
|
| /expo/packages/expo-dev-launcher/ios/Errors/ |
| H A D | EXDevLauncherErrorRegistry.swift | 32 private static let Key = "expo.modules.devlauncher.errorregistry.SavedError" variable 41 ], forKey: EXDevLauncherErrorRegistry.Key) in storeException() 47 guard let savedException = defaults.dictionary(forKey: EXDevLauncherErrorRegistry.Key) else { in consumeException() 51 defaults.removeObject(forKey: EXDevLauncherErrorRegistry.Key) in consumeException()
|
| /expo/packages/@expo/cli/src/start/server/type-generation/__typetests__/fixtures/ |
| H A D | basic.ts | 110 [Key in ParameterNames<Path> as Key extends `...${infer Name}` 112 : Key]: Key extends `...${string}` ? (string | number)[] : string | number; 116 [Key in ParameterNames<Path> as Key extends `...${infer Name}` 118 : Key]: Key extends `...${string}` ? string[] : string;
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/core/ |
| H A D | ABI49_0_0PropsMapBuffer.h | 18 constexpr MapBuffer::Key PROPS_MAX = 1; 19 constexpr MapBuffer::Key PROPS_NATIVE_ID = 1;
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/core/ |
| H A D | ABI48_0_0PropsMapBuffer.h | 17 constexpr MapBuffer::Key PROPS_MAX = 1; 18 constexpr MapBuffer::Key PROPS_NATIVE_ID = 1;
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/attributedstring/ |
| H A D | ABI47_0_0conversions.h | 949 constexpr static MapBuffer::Key AS_KEY_HASH = 0; 950 constexpr static MapBuffer::Key AS_KEY_STRING = 1; 951 constexpr static MapBuffer::Key AS_KEY_FRAGMENTS = 2; 952 constexpr static MapBuffer::Key AS_KEY_CACHE_ID = 3; 955 constexpr static MapBuffer::Key FR_KEY_STRING = 0; 956 constexpr static MapBuffer::Key FR_KEY_REACT_TAG = 1; 958 constexpr static MapBuffer::Key FR_KEY_WIDTH = 3; 959 constexpr static MapBuffer::Key FR_KEY_HEIGHT = 4; 965 constexpr static MapBuffer::Key TA_KEY_OPACITY = 2; 967 constexpr static MapBuffer::Key TA_KEY_FONT_SIZE = 4; [all …]
|