| /expo/packages/expo-modules-core/android/src/main/java/expo/modules/kotlin/typedarray/ |
| H A D | ConcreteTypedArrays.kt | 7 if (index < 0 || index >= length) { in checkIfInRange() 15 checkIfInRange(index) in get() 20 checkIfInRange(index) in set() 28 checkIfInRange(index) in get() 33 checkIfInRange(index) in set() 41 checkIfInRange(index) in get() 46 checkIfInRange(index) in set() 54 checkIfInRange(index) in get() 59 checkIfInRange(index) in set() 67 checkIfInRange(index) in get() [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/kotlin/typedarray/ |
| H A D | ConcreteTypedArrays.kt | 7 if (index < 0 || index >= length) { in checkIfInRange() 15 checkIfInRange(index) in get() 20 checkIfInRange(index) in set() 28 checkIfInRange(index) in get() 33 checkIfInRange(index) in set() 41 checkIfInRange(index) in get() 46 checkIfInRange(index) in set() 54 checkIfInRange(index) in get() 59 checkIfInRange(index) in set() 67 checkIfInRange(index) in get() [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/kotlin/typedarray/ |
| H A D | ConcreteTypedArrays.kt | 7 if (index < 0 || index >= length) { in checkIfInRange() 15 checkIfInRange(index) in get() 20 checkIfInRange(index) in set() 28 checkIfInRange(index) in get() 33 checkIfInRange(index) in set() 41 checkIfInRange(index) in get() 46 checkIfInRange(index) in set() 54 checkIfInRange(index) in get() 59 checkIfInRange(index) in set() 67 checkIfInRange(index) in get() [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/kotlin/typedarray/ |
| H A D | ConcreteTypedArrays.kt | 7 if (index < 0 || index >= length) { in checkIfInRange() 15 checkIfInRange(index) in get() 20 checkIfInRange(index) in set() 28 checkIfInRange(index) in get() 33 checkIfInRange(index) in set() 41 checkIfInRange(index) in get() 46 checkIfInRange(index) in set() 54 checkIfInRange(index) in get() 59 checkIfInRange(index) in set() 67 checkIfInRange(index) in get() [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/yoga/yoga/ |
| H A D | ABI49_0_0BitUtils.h | 25 constexpr int mask(size_t bitWidth, size_t index) { in mask() argument 26 return ((1 << bitWidth) - 1) << index; in mask() 38 constexpr Enum getEnumData(int flags, size_t index) { in getEnumData() argument 39 return static_cast<Enum>((flags & mask(bitWidthFn<Enum>(), index)) >> index); in getEnumData() 44 flags = (flags & ~mask(bitWidthFn<Enum>(), index)) | in setEnumData() 45 ((newValue << index) & (mask(bitWidthFn<Enum>(), index))); in setEnumData() 51 ((newValue << index) & in setEnumData() 55 constexpr bool getBooleanData(int flags, size_t index) { in getBooleanData() argument 56 return (flags >> index) & 1; in getBooleanData() 61 flags |= 1 << index; in setBooleanData() [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/yoga/yoga/ |
| H A D | ABI48_0_0BitUtils.h | 25 constexpr int mask(size_t bitWidth, size_t index) { in mask() argument 26 return ((1 << bitWidth) - 1) << index; in mask() 38 constexpr Enum getEnumData(int flags, size_t index) { in getEnumData() argument 39 return static_cast<Enum>((flags & mask(bitWidthFn<Enum>(), index)) >> index); in getEnumData() 44 flags = (flags & ~mask(bitWidthFn<Enum>(), index)) | in setEnumData() 45 ((newValue << index) & (mask(bitWidthFn<Enum>(), index))); in setEnumData() 51 ((newValue << index) & in setEnumData() 55 constexpr bool getBooleanData(int flags, size_t index) { in getBooleanData() argument 56 return (flags >> index) & 1; in getBooleanData() 61 flags |= 1 << index; in setBooleanData() [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/yoga/yoga/ |
| H A D | ABI47_0_0BitUtils.h | 25 constexpr int mask(size_t bitWidth, size_t index) { in mask() argument 26 return ((1 << bitWidth) - 1) << index; in mask() 38 constexpr Enum getEnumData(int flags, size_t index) { in getEnumData() argument 39 return static_cast<Enum>((flags & mask(bitWidthFn<Enum>(), index)) >> index); in getEnumData() 44 flags = (flags & ~mask(bitWidthFn<Enum>(), index)) | in setEnumData() 45 ((newValue << index) & (mask(bitWidthFn<Enum>(), index))); in setEnumData() 51 ((newValue << index) & in setEnumData() 55 constexpr bool getBooleanData(int flags, size_t index) { in getBooleanData() argument 56 return (flags >> index) & 1; in getBooleanData() 61 flags |= 1 << index; in setBooleanData() [all …]
|
| /expo/android/vendored/unversioned/react-native-pager-view/android/src/main/java/com/reactnativepagerview/ |
| H A D | ViewPagerAdapter.kt | 19 val child = getChildAt(index) in onBindViewHolder() 37 childrenViews.add(index, child) in addChild() 38 notifyItemInserted(index) in addChild() 41 fun getChildAt(index: Int): View { in getChildAt() 42 return childrenViews[index] in getChildAt() 48 if(index > -1) { in removeChild() 49 removeChildAt(index) in removeChild() 55 val child = childrenViews[index-1] in removeAll() 65 fun removeChildAt(index: Int) { in removeChildAt() 66 childrenViews.removeAt(index) in removeChildAt() [all …]
|
| /expo/android/vendored/sdk48/react-native-pager-view/android/src/main/java/abi48_0_0/com/reactnativepagerview/ |
| H A D | ViewPagerAdapter.kt | 19 val child = getChildAt(index) in onBindViewHolder() 37 childrenViews.add(index, child) in addChild() 38 notifyItemInserted(index) in addChild() 41 fun getChildAt(index: Int): View { in getChildAt() 42 return childrenViews[index] in getChildAt() 48 if(index > -1) { in removeChild() 49 removeChildAt(index) in removeChild() 55 val child = childrenViews[index-1] in removeAll() 65 fun removeChildAt(index: Int) { in removeChildAt() 66 childrenViews.removeAt(index) in removeChildAt() [all …]
|
| /expo/android/vendored/sdk49/react-native-pager-view/android/src/main/java/abi49_0_0/com/reactnativepagerview/ |
| H A D | ViewPagerAdapter.kt | 19 val child = getChildAt(index) in onBindViewHolder() 37 childrenViews.add(index, child) in addChild() 38 notifyItemInserted(index) in addChild() 41 fun getChildAt(index: Int): View { in getChildAt() 42 return childrenViews[index] in getChildAt() 48 if(index > -1) { in removeChild() 49 removeChildAt(index) in removeChild() 55 val child = childrenViews[index-1] in removeAll() 65 fun removeChildAt(index: Int) { in removeChildAt() 66 childrenViews.removeAt(index) in removeChildAt() [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/components/pagerview/ |
| H A D | ViewPagerAdapter.kt | 18 val child = getChildAt(index) in onBindViewHolder() 35 fun addChild(child: View, index: Int) { in addChild() 36 childrenViews.add(index, child) in addChild() 37 notifyItemInserted(index) in addChild() 40 fun getChildAt(index: Int): View { in getChildAt() 41 return childrenViews[index] in getChildAt() 47 if (index > -1) { in removeChild() 48 removeChildAt(index) in removeChild() 64 fun removeChildAt(index: Int) { in removeChildAt() 65 childrenViews.removeAt(index) in removeChildAt() [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/kotlin/views/ |
| H A D | ViewGroupDefinitionBuilder.kt | 38 addViewAction = { parent, child, index -> in <lambda>() method 56 getChildAtAction = { view, index -> in <lambda>() method 57 body(view as ParentType, index) in <lambda>() 63 crossinline body: (view: ParentType, index: Int) -> Unit in <lambda>() 65 removeViewAtAction = { view, index -> in <lambda>() method 66 body(view as ParentType, index) in <lambda>() 109 addViewAction = { parent, child, index -> in build() method 125 getChildAtAction = { view, index -> in GetChildViewAt() method 126 body(view as ParentViewType, index) in GetChildViewAt() 133 removeViewAtAction = { view, index -> in RemoveChildViewAt() method [all …]
|
| /expo/android/vendored/sdk47/react-native-svg/android/src/main/java/abi47_0_0/com/horcrux/svg/ |
| H A D | TextLayoutAlgorithm.java | 18 int index; field in TextLayoutAlgorithm.CharacterInformation 36 this.index = index; in CharacterInformation() 451 result[index + j].rotate = result[index + j - 1].rotate; in layoutText() 758 int index = 1; in layoutText() 793 if (result[index].middle && result[index].anchoredChunk) { in layoutText() 812 index++; in layoutText() 971 index = 0; in layoutText() 1228 result[index].x = result[index - 1].x; in layoutText() 1229 result[index].y = result[index - 1].y; in layoutText() 1230 result[index].rotate = result[index - 1].rotate; in layoutText() [all …]
|
| /expo/android/vendored/sdk48/react-native-svg/android/src/main/java/abi48_0_0/com/horcrux/svg/ |
| H A D | TextLayoutAlgorithm.java | 18 int index; field in TextLayoutAlgorithm.CharacterInformation 36 this.index = index; in CharacterInformation() 451 result[index + j].rotate = result[index + j - 1].rotate; in layoutText() 758 int index = 1; in layoutText() 793 if (result[index].middle && result[index].anchoredChunk) { in layoutText() 812 index++; in layoutText() 971 index = 0; in layoutText() 1228 result[index].x = result[index - 1].x; in layoutText() 1229 result[index].y = result[index - 1].y; in layoutText() 1230 result[index].rotate = result[index - 1].rotate; in layoutText() [all …]
|
| /expo/android/vendored/unversioned/react-native-svg/android/src/main/java/com/horcrux/svg/ |
| H A D | TextLayoutAlgorithm.java | 18 int index; field in TextLayoutAlgorithm.CharacterInformation 36 this.index = index; in CharacterInformation() 451 result[index + j].rotate = result[index + j - 1].rotate; in layoutText() 758 int index = 1; in layoutText() 793 if (result[index].middle && result[index].anchoredChunk) { in layoutText() 812 index++; in layoutText() 971 index = 0; in layoutText() 1228 result[index].x = result[index - 1].x; in layoutText() 1229 result[index].y = result[index - 1].y; in layoutText() 1230 result[index].rotate = result[index - 1].rotate; in layoutText() [all …]
|
| /expo/android/vendored/sdk49/react-native-svg/android/src/main/java/abi49_0_0/com/horcrux/svg/ |
| H A D | TextLayoutAlgorithm.java | 18 int index; field in TextLayoutAlgorithm.CharacterInformation 36 this.index = index; in CharacterInformation() 451 result[index + j].rotate = result[index + j - 1].rotate; in layoutText() 758 int index = 1; in layoutText() 793 if (result[index].middle && result[index].anchoredChunk) { in layoutText() 812 index++; in layoutText() 971 index = 0; in layoutText() 1228 result[index].x = result[index - 1].x; in layoutText() 1229 result[index].y = result[index - 1].y; in layoutText() 1230 result[index].rotate = result[index - 1].rotate; in layoutText() [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/mounting/ |
| H A D | ABI49_0_0ShadowTree.cpp | 47 auto index = size_t{0}; in progressState() 58 index++; in progressState() 108 auto index = size_t{0}; in progressState() 111 for (index = 0; index < childrenSize && index < baseChildrenSize; index++) { in progressState() 131 newChildren[index] = newChildNode; in progressState() 137 for (; index < childrenSize; index++) { in progressState() 180 size_t index; in updateMountedFlag() local 183 for (index = 0; index < oldChildren.size() && index < newChildren.size(); in updateMountedFlag() 184 index++) { in updateMountedFlag() 207 for (index = lastIndexAfterFirstStage; index < newChildren.size(); index++) { in updateMountedFlag() [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/mounting/ |
| H A D | ABI48_0_0ShadowTree.cpp | 47 auto index = size_t{0}; in progressState() 58 index++; in progressState() 108 auto index = size_t{0}; in progressState() 111 for (index = 0; index < childrenSize && index < baseChildrenSize; index++) { in progressState() 131 newChildren[index] = newChildNode; in progressState() 137 for (; index < childrenSize; index++) { in progressState() 180 size_t index; in updateMountedFlag() local 183 for (index = 0; index < oldChildren.size() && index < newChildren.size(); in updateMountedFlag() 184 index++) { in updateMountedFlag() 207 for (index = lastIndexAfterFirstStage; index < newChildren.size(); index++) { in updateMountedFlag() [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/mounting/ |
| H A D | ABI47_0_0ShadowTree.cpp | 48 auto index = size_t{0}; in progressState() 59 index++; in progressState() 109 auto index = size_t{0}; in progressState() 112 for (index = 0; index < childrenSize && index < baseChildrenSize; index++) { in progressState() 132 newChildren[index] = newChildNode; in progressState() 138 for (; index < childrenSize; index++) { in progressState() 181 size_t index; in updateMountedFlag() local 184 for (index = 0; index < oldChildren.size() && index < newChildren.size(); in updateMountedFlag() 185 index++) { in updateMountedFlag() 208 for (index = lastIndexAfterFirstStage; index < newChildren.size(); index++) { in updateMountedFlag() [all …]
|
| /expo/packages/expo-modules-core/android/src/main/java/expo/modules/kotlin/views/ |
| H A D | ViewGroupDefinitionBuilder.kt | 36 crossinline body: (parent: ParentType, child: ChildViewType, index: Int) -> Unit in <lambda>() 38 addViewAction = { parent, child, index -> in <lambda>() method 39 body(parent as ParentType, child as ChildViewType, index) in <lambda>() 54 crossinline body: (view: ParentType, index: Int) -> ChildViewType? in <lambda>() 56 getChildAtAction = { view, index -> in <lambda>() method 57 body(view as ParentType, index) in <lambda>() 63 crossinline body: (view: ParentType, index: Int) -> Unit in <lambda>() 65 removeViewAtAction = { view, index -> in <lambda>() method 66 body(view as ParentType, index) in <lambda>()
|
| /expo/ios/vendored/sdk47/react-native-gesture-handler/ios/ |
| H A D | ABI47_0_0RNGestureHandlerPointerTracker.m | 28 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 30 _trackedPointers[index] = touch; 31 return index; 40 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 42 _trackedPointers[index] = nil; 43 return index; 52 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 54 return index; 77 return @{@"id": @(index), 113 if (index >= 0) { [all …]
|
| /expo/ios/vendored/sdk49/react-native-gesture-handler/ios/ |
| H A D | ABI49_0_0RNGestureHandlerPointerTracker.m | 28 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 30 _trackedPointers[index] = touch; 31 return index; 40 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 42 _trackedPointers[index] = nil; 43 return index; 52 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 54 return index; 77 @"id" : @(index), 115 if (index >= 0) { [all …]
|
| /expo/ios/vendored/unversioned/react-native-gesture-handler/ios/ |
| H A D | RNGestureHandlerPointerTracker.m | 28 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 30 _trackedPointers[index] = touch; 31 return index; 40 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 42 _trackedPointers[index] = nil; 43 return index; 52 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 54 return index; 77 @"id" : @(index), 115 if (index >= 0) { [all …]
|
| /expo/ios/vendored/sdk48/react-native-gesture-handler/ios/ |
| H A D | ABI48_0_0RNGestureHandlerPointerTracker.m | 28 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 30 _trackedPointers[index] = touch; 31 return index; 40 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 42 _trackedPointers[index] = nil; 43 return index; 52 for (int index = 0; index < MAX_POINTERS_COUNT; index++) { 54 return index; 77 @"id" : @(index), 115 if (index >= 0) { [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/kotlin/views/ |
| H A D | ViewGroupDefinitionBuilder.kt | 36 crossinline body: (parent: ParentType, child: ChildViewType, index: Int) -> Unit in <lambda>() 38 addViewAction = { parent, child, index -> in <lambda>() method 39 body(parent as ParentType, child as ChildViewType, index) in <lambda>() 54 crossinline body: (view: ParentType, index: Int) -> ChildViewType? in <lambda>() 56 getChildAtAction = { view, index -> in <lambda>() method 57 body(view as ParentType, index) in <lambda>() 63 crossinline body: (view: ParentType, index: Int) -> Unit in <lambda>() 65 removeViewAtAction = { view, index -> in <lambda>() method 66 body(view as ParentType, index) in <lambda>()
|