Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flutter format #147

Merged
merged 1 commit into from
Sep 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions lib/src/bindings/tensorflow_lite_bindings_generated.dart
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,9 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterDeletePtr = _lookup<
ffi.NativeFunction<
ffi.Void Function(
ffi.Pointer<TfLiteInterpreter>)>>('TfLiteInterpreterDelete');
ffi
.NativeFunction<ffi.Void Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterDelete');
late final _TfLiteInterpreterDelete = _TfLiteInterpreterDeletePtr.asFunction<
void Function(ffi.Pointer<TfLiteInterpreter>)>();

Expand All @@ -566,8 +566,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterGetInputTensorCountPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterGetInputTensorCount');
late final _TfLiteInterpreterGetInputTensorCount =
_TfLiteInterpreterGetInputTensorCountPtr.asFunction<
Expand Down Expand Up @@ -643,8 +643,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterAllocateTensorsPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterAllocateTensors');
late final _TfLiteInterpreterAllocateTensors =
_TfLiteInterpreterAllocateTensorsPtr.asFunction<
Expand Down Expand Up @@ -688,9 +688,9 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterInvokePtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(
ffi.Pointer<TfLiteInterpreter>)>>('TfLiteInterpreterInvoke');
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterInvoke');
late final _TfLiteInterpreterInvoke = _TfLiteInterpreterInvokePtr.asFunction<
int Function(ffi.Pointer<TfLiteInterpreter>)>();

Expand All @@ -704,8 +704,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterGetOutputTensorCountPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterGetOutputTensorCount');
late final _TfLiteInterpreterGetOutputTensorCount =
_TfLiteInterpreterGetOutputTensorCountPtr.asFunction<
Expand Down Expand Up @@ -917,8 +917,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterResetVariableTensorsPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterResetVariableTensors');
late final _TfLiteInterpreterResetVariableTensors =
_TfLiteInterpreterResetVariableTensorsPtr.asFunction<
Expand Down Expand Up @@ -1376,8 +1376,8 @@ class TensorFlowLiteBindings {
}

late final _TfLiteInterpreterGetSignatureCountPtr = _lookup<
ffi.NativeFunction<
ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
ffi
.NativeFunction<ffi.Int32 Function(ffi.Pointer<TfLiteInterpreter>)>>(
'TfLiteInterpreterGetSignatureCount');
late final _TfLiteInterpreterGetSignatureCount =
_TfLiteInterpreterGetSignatureCountPtr.asFunction<
Expand Down