| /expo/packages/expo-modules-core/android/src/main/java/expo/modules/kotlin/typedarray/ |
| H A D | TypedArray.kt | 41 fun readByte(position: Int): Byte 42 fun read2Byte(position: Int): Short 43 fun read4Byte(position: Int): Int 44 fun read8Byte(position: Int): Long 45 fun readFloat(position: Int): Float 46 fun readDouble(position: Int): Double 48 fun writeByte(position: Int, value: Byte) 49 fun write2Byte(position: Int, value: Short) 50 fun write4Byte(position: Int, value: Int) 51 fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/kotlin/typedarray/ |
| H A D | TypedArray.kt | 41 fun readByte(position: Int): Byte 42 fun read2Byte(position: Int): Short 43 fun read4Byte(position: Int): Int 44 fun read8Byte(position: Int): Long 45 fun readFloat(position: Int): Float 46 fun readDouble(position: Int): Double 48 fun writeByte(position: Int, value: Byte) 49 fun write2Byte(position: Int, value: Short) 50 fun write4Byte(position: Int, value: Int) 51 fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/kotlin/typedarray/ |
| H A D | TypedArray.kt | 41 fun readByte(position: Int): Byte 42 fun read2Byte(position: Int): Short 43 fun read4Byte(position: Int): Int 44 fun read8Byte(position: Int): Long 45 fun readFloat(position: Int): Float 46 fun readDouble(position: Int): Double 48 fun writeByte(position: Int, value: Byte) 49 fun write2Byte(position: Int, value: Short) 50 fun write4Byte(position: Int, value: Int) 51 fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/kotlin/typedarray/ |
| H A D | TypedArray.kt | 41 fun readByte(position: Int): Byte 42 fun read2Byte(position: Int): Short 43 fun read4Byte(position: Int): Int 44 fun read8Byte(position: Int): Long 45 fun readFloat(position: Int): Float 46 fun readDouble(position: Int): Double 48 fun writeByte(position: Int, value: Byte) 49 fun write2Byte(position: Int, value: Short) 50 fun write4Byte(position: Int, value: Int) 51 fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/packages/expo-structured-headers/android/src/main/java/expo/modules/structuredheaders/ |
| H A D | ParseException.java | 10 private final int position; field in ParseException 27 this.position = position; in ParseException() 41 public ParseException(String message, String input, int position) { in ParseException() argument 42 this(message, input, position, null); in ParseException() 56 this(message, asString(input), input.position(), cause); in ParseException() 68 this(message, asString(input), input.position(), null); in ParseException() 86 return position; in getPosition() 101 for (int i = 0; i < position; i++) { in getDiagnostics() 105 if (position < data.length()) { in getDiagnostics() 106 char c = data.charAt(position); in getDiagnostics() [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/structuredheaders/ |
| H A D | ParseException.java | 10 private final int position; field in ParseException 27 this.position = position; in ParseException() 41 public ParseException(String message, String input, int position) { in ParseException() argument 42 this(message, input, position, null); in ParseException() 56 this(message, asString(input), input.position(), cause); in ParseException() 68 this(message, asString(input), input.position(), null); in ParseException() 86 return position; in getPosition() 101 for (int i = 0; i < position; i++) { in getDiagnostics() 105 if (position < data.length()) { in getDiagnostics() 106 char c = data.charAt(position); in getDiagnostics() [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/structuredheaders/ |
| H A D | ParseException.java | 10 private final int position; field in ParseException 27 this.position = position; in ParseException() 41 public ParseException(String message, String input, int position) { in ParseException() argument 42 this(message, input, position, null); in ParseException() 56 this(message, asString(input), input.position(), cause); in ParseException() 68 this(message, asString(input), input.position(), null); in ParseException() 86 return position; in getPosition() 101 for (int i = 0; i < position; i++) { in getDiagnostics() 105 if (position < data.length()) { in getDiagnostics() 106 char c = data.charAt(position); in getDiagnostics() [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/structuredheaders/ |
| H A D | ParseException.java | 10 private final int position; field in ParseException 27 this.position = position; in ParseException() 41 public ParseException(String message, String input, int position) { in ParseException() argument 42 this(message, input, position, null); in ParseException() 56 this(message, asString(input), input.position(), cause); in ParseException() 68 this(message, asString(input), input.position(), null); in ParseException() 86 return position; in getPosition() 101 for (int i = 0; i < position; i++) { in getDiagnostics() 105 if (position < data.length()) { in getDiagnostics() 106 char c = data.charAt(position); in getDiagnostics() [all …]
|
| /expo/packages/expo-modules-core/android/src/main/java/expo/modules/kotlin/jni/ |
| H A D | JavaScriptTypedArray.kt | 55 external override fun readByte(position: Int): Byte 56 external override fun read2Byte(position: Int): Short 57 external override fun read4Byte(position: Int): Int 58 external override fun read8Byte(position: Int): Long 59 external override fun readFloat(position: Int): Float 61 external override fun readDouble(position: Int): Double 62 external override fun writeByte(position: Int, value: Byte) 63 external override fun write2Byte(position: Int, value: Short) 64 external override fun write4Byte(position: Int, value: Int) 65 external override fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/kotlin/jni/ |
| H A D | JavaScriptTypedArray.kt | 55 external override fun readByte(position: Int): Byte 56 external override fun read2Byte(position: Int): Short 57 external override fun read4Byte(position: Int): Int 58 external override fun read8Byte(position: Int): Long 59 external override fun readFloat(position: Int): Float 61 external override fun readDouble(position: Int): Double 62 external override fun writeByte(position: Int, value: Byte) 63 external override fun write2Byte(position: Int, value: Short) 64 external override fun write4Byte(position: Int, value: Int) 65 external override fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/kotlin/jni/ |
| H A D | JavaScriptTypedArray.kt | 55 external override fun readByte(position: Int): Byte 56 external override fun read2Byte(position: Int): Short 57 external override fun read4Byte(position: Int): Int 58 external override fun read8Byte(position: Int): Long 59 external override fun readFloat(position: Int): Float 61 external override fun readDouble(position: Int): Double 62 external override fun writeByte(position: Int, value: Byte) 63 external override fun write2Byte(position: Int, value: Short) 64 external override fun write4Byte(position: Int, value: Int) 65 external override fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/kotlin/jni/ |
| H A D | JavaScriptTypedArray.kt | 55 external override fun readByte(position: Int): Byte 56 external override fun read2Byte(position: Int): Short 57 external override fun read4Byte(position: Int): Int 58 external override fun read8Byte(position: Int): Long 59 external override fun readFloat(position: Int): Float 61 external override fun readDouble(position: Int): Double 62 external override fun writeByte(position: Int, value: Byte) 63 external override fun write2Byte(position: Int, value: Short) 64 external override fun write4Byte(position: Int, value: Int) 65 external override fun write8Byte(position: Int, value: Long) [all …]
|
| /expo/packages/expo-maps/ios/ExpoMaps/Records/ |
| H A D | MarkerRecord.swift | 9 @Field var position: [String: Any?] variable 13 position = LatLngRecord(coordinate: marker.position).toDictionary() 18 position = LatLngRecord(coordinate: marker.coordinate).toDictionary() 23 position = LatLngRecord(coordinate: marker.coordinate).toDictionary() 26 init(id: String, position: CLLocationCoordinate2D) { 28 self.position = LatLngRecord(coordinate: position).toDictionary()
|
| H A D | ClusterRecord.swift | 10 @Field var position: [String: Any?] variable 14 position = LatLngRecord(coordinate: cluster.position).toDictionary() 19 position = LatLngRecord(coordinate: cluster.coordinate).toDictionary()
|
| /expo/ios/versioned/sdk49/ExpoMaps/ExpoMaps/Records/ |
| H A D | MarkerRecord.swift | 9 @Field var position: [String: Any?] variable 13 position = LatLngRecord(coordinate: marker.position).toDictionary() 18 position = LatLngRecord(coordinate: marker.coordinate).toDictionary() 23 position = LatLngRecord(coordinate: marker.coordinate).toDictionary() 26 init(id: String, position: CLLocationCoordinate2D) { 28 self.position = LatLngRecord(coordinate: position).toDictionary()
|
| H A D | ClusterRecord.swift | 10 @Field var position: [String: Any?] variable 14 position = LatLngRecord(coordinate: cluster.position).toDictionary() 19 position = LatLngRecord(coordinate: cluster.coordinate).toDictionary()
|
| /expo/ios/versioned/sdk48/ExpoMaps/ExpoMaps/Records/ |
| H A D | MarkerRecord.swift | 9 @Field var position: [String: Any?] variable 13 position = LatLngRecord(coordinate: marker.position).toDictionary() 18 position = LatLngRecord(coordinate: marker.coordinate).toDictionary() 23 position = LatLngRecord(coordinate: marker.coordinate).toDictionary() 26 init(id: String, position: CLLocationCoordinate2D) { 28 self.position = LatLngRecord(coordinate: position).toDictionary()
|
| H A D | ClusterRecord.swift | 10 @Field var position: [String: Any?] variable 14 position = LatLngRecord(coordinate: cluster.position).toDictionary() 19 position = LatLngRecord(coordinate: cluster.coordinate).toDictionary()
|
| /expo/packages/expo-maps/android/src/main/java/expo/modules/maps/records/ |
| H A D | MarkerRecord.kt | 14 lateinit var position: LatLngRecord variable in expo.modules.maps.records.MarkerRecord 18 this.position = LatLngRecord(marker.position) 23 this.position = LatLngRecord(markerObject.position)
|
| /expo/ios/versioned-react-native/ABI48_0_0/Expo/ExpoKit/Core/Api/Components/SharedElement/ |
| H A D | ABI48_0_0RNSharedElementStyle.m | 85 …(UIColor*) getInterpolatedColor:(UIColor*)color1 color2:(UIColor*)color2 position:(CGFloat)position 91 CGFloat alpha = alpha1 + ((alpha2 - alpha1) * position); 92 CGFloat red = red1 + ((red2 - red1) * position); 93 CGFloat green = green1 + ((green2 - green1) * position); 94 CGFloat blue = blue1 + ((blue2 - blue1) * position); 107 …haredElementStyle*)style1 style2:(ABI48_0_0RNSharedElementStyle*)style2 position:(CGFloat) position 110 style.opacity = style1.opacity + ((style2.opacity - style1.opacity) * position); 120 style.borderWidth = style1.borderWidth + ((style2.borderWidth - style1.borderWidth) * position); 121 …dElementStyle getInterpolatedColor:style1.borderColor color2:style2.borderColor position:position]; 122 …Style getInterpolatedColor:style1.backgroundColor color2:style2.backgroundColor position:position]; [all …]
|
| /expo/ios/versioned-react-native/ABI47_0_0/Expo/ExpoKit/Core/Api/Components/SharedElement/ |
| H A D | ABI47_0_0RNSharedElementStyle.m | 85 …(UIColor*) getInterpolatedColor:(UIColor*)color1 color2:(UIColor*)color2 position:(CGFloat)position 91 CGFloat alpha = alpha1 + ((alpha2 - alpha1) * position); 92 CGFloat red = red1 + ((red2 - red1) * position); 93 CGFloat green = green1 + ((green2 - green1) * position); 94 CGFloat blue = blue1 + ((blue2 - blue1) * position); 107 …haredElementStyle*)style1 style2:(ABI47_0_0RNSharedElementStyle*)style2 position:(CGFloat) position 110 style.opacity = style1.opacity + ((style2.opacity - style1.opacity) * position); 120 style.borderWidth = style1.borderWidth + ((style2.borderWidth - style1.borderWidth) * position); 121 …dElementStyle getInterpolatedColor:style1.borderColor color2:style2.borderColor position:position]; 122 …Style getInterpolatedColor:style1.backgroundColor color2:style2.backgroundColor position:position]; [all …]
|
| /expo/packages/expo-dev-launcher/android/src/debug/java/expo/modules/devlauncher/launcher/errors/ |
| H A D | DevLauncherStackAdapter.kt | 19 override fun getItem(position: Int): Any { in getItem() 20 return data?.error?.stackTrace?.get(position) ?: 0 in getItem() 23 override fun getItemId(position: Int): Long { in getItemId() 24 return position.toLong() in getItemId() 27 override fun getView(position: Int, convertView: View?, parent: ViewGroup?): View { in getView() 28 val stackTraceElement = getItem(position) as StackTraceElement in getView()
|
| /expo/packages/expo-structured-headers/android/src/test/java/expo/modules/structuredheaders/ |
| H A D | DiagnosticsTests.java | 17 final int position; field in DiagnosticsTests.TestCase 20 TestCase(String[] input, String type, int position, String message) { in TestCase() argument 23 this.position = position; in TestCase() 27 TestCase(String input, String type, int position, String message) { in TestCase() argument 28 this(new String[] { input }, type, position, message); in TestCase() 88 assertEquals(test.position, ex.getPosition()); in diagnostics()
|
| /expo/packages/expo-modules-core/android/src/main/cpp/ |
| H A D | JavaScriptTypedArray.h | 62 void readBuffer(jni::alias_ref<jni::JArrayByte> buffer, int position, int size); 64 void writeBuffer(jni::alias_ref<jni::JArrayByte> buffer, int position, int size); 67 T read(int position) { in read() argument 68 return *reinterpret_cast<T *>(rawPointer + position); in read() 72 void write(int position, T value) { in write() argument 73 *reinterpret_cast<T *>(rawPointer + position) = value; in write()
|
| /expo/packages/@expo/config-plugins/src/ios/__tests__/ |
| H A D | codeMod-test.ts | 204 position: 'head', 230 position: 'tail', 258 position: 'tailBeforeLastReturn', 310 { position: 'tail' } 363 position: 'head', 388 position: 'head', 412 position: 'tail', 438 position: 'tailBeforeLastReturn',
|