Namespaces | |
| internal | |
| testing | |
Typedefs | |
| template<typename T > | |
| using | MessageReply = std::function< void(const T &reply)> |
| template<typename T > | |
| using | MessageHandler = std::function< void(const T &message, const MessageReply< T > &reply)> |
| typedef std::function< void(const uint8_t *reply, size_t reply_size)> | BinaryReply |
| typedef std::function< void(const uint8_t *message, size_t message_size, BinaryReply reply)> | BinaryMessageHandler |
| using | EncodableList = std::vector< EncodableValue > |
| using | EncodableMap = std::map< EncodableValue, EncodableValue > |
| template<typename T > | |
| using | StreamHandlerListen = std::function< std::unique_ptr< StreamHandlerError< T > >(const T *arguments, std::unique_ptr< EventSink< T > > &&events)> |
| template<typename T > | |
| using | StreamHandlerCancel = std::function< std::unique_ptr< StreamHandlerError< T > >(const T *arguments)> |
| template<typename T > | |
| using | MethodCallHandler = std::function< void(const MethodCall< T > &call, std::unique_ptr< MethodResult< T > > result)> |
| template<typename T > | |
| using | ResultHandlerSuccess = std::function< void(const T *result)> |
| template<typename T > | |
| using | ResultHandlerError = std::function< void(const std::string &error_code, const std::string &error_message, const T *error_details)> |
| template<typename T > | |
| using | ResultHandlerNotImplemented = std::function< void()> |
| typedef std::variant< PixelBufferTexture, GpuSurfaceTexture > | TextureVariant |
| typedef ui::AXNode::AXID | AccessibilityNodeId |
Enumerations | |
| enum class | AppLifecycleState { kDetached , kResumed , kInactive , kHidden , kPaused } |
| enum class | PlatformProvidedMenu { kAbout , kQuit , kServicesSubmenu , kHide , kHideOtherApplications , kShowAllApplications , kStartSpeaking , kStopSpeaking , kToggleFullScreen , kMinimizeWindow , kZoomWindow , kArrangeWindowsInFront } |
| enum class | WindowArchetype { kRegular } |
Functions | |
| constexpr const char * | AppLifecycleStateToString (AppLifecycleState state) |
| TEST (BasicMessageChannelTest, Registration) | |
| TEST (BasicMessageChannelTest, Unregistration) | |
| TEST (BasicMessageChannelTest, Resize) | |
| TEST (BasicMessageChannelTest, SetWarnsOnOverflow) | |
| TEST (EncodableValueTest, Null) | |
| TEST (EncodableValueTest, Bool) | |
| TEST (EncodableValueTest, Int) | |
| TEST (EncodableValueTest, LongValue) | |
| TEST (EncodableValueTest, Long) | |
| TEST (EncodableValueTest, Double) | |
| TEST (EncodableValueTest, String) | |
| TEST (EncodableValueTest, CString) | |
| TEST (EncodableValueTest, UInt8List) | |
| TEST (EncodableValueTest, Int32List) | |
| TEST (EncodableValueTest, Int64List) | |
| TEST (EncodableValueTest, DoubleList) | |
| TEST (EncodableValueTest, List) | |
| TEST (EncodableValueTest, Map) | |
| TEST (EncodableValueTest, Comparison) | |
| TEST (EncodableValueTest, DeepCopy) | |
| TEST (EncodableValueTest, TypeIndexesCorrect) | |
| TEST (EventChannelTest, Registration) | |
| TEST (EventChannelTest, Unregistration) | |
| TEST (EventChannelTest, Cancel) | |
| TEST (EventChannelTest, ListenNotCancel) | |
| TEST (EventChannelTest, ReRegistration) | |
| TEST (EventChannelTest, HandlerOutlivesEventChannel) | |
| TEST (EventChannelTest, StreamHandlerErrorPassByValue) | |
| TEST (EventChannelTest, StreamHandlerErrorNullptr) | |
| TEST (MethodCallTest, Basic) | |
| TEST (MethodChannelTest, Registration) | |
| TEST (MethodChannelTest, Unregistration) | |
| TEST (MethodChannelTest, InvokeWithoutResponse) | |
| TEST (MethodChannelTest, InvokeWithResponse) | |
| TEST (MethodChannelTest, InvokeNotImplemented) | |
| TEST (MethodChannelTest, Resize) | |
| TEST (MethodChannelTest, SetWarnsOnOverflow) | |
| TEST (MethodChannelTest, NoHandlers) | |
| TEST (MethodChannelTest, Success) | |
| TEST (MethodChannelTest, Error) | |
| TEST (MethodChannelTest, NotImplemented) | |
| TEST (PluginRegistrarTest, PluginDestroyedBeforeRegistrar) | |
| TEST (PluginRegistrarTest, MessengerSend) | |
| TEST (PluginRegistrarTest, MessengerSetMessageHandler) | |
| TEST (PluginRegistrarTest, ManagerSameInstance) | |
| TEST (PluginRegistrarTest, ManagerDifferentInstances) | |
| TEST (PluginRegistrarTest, ManagerRemovesOnDestruction) | |
| TEST (PluginRegistrarTest, TextureRegistrarNotNull) | |
| static void | CheckEncodeDecode (const EncodableValue &value, const std::vector< uint8_t > &expected_encoding, const StandardCodecSerializer *serializer=nullptr, const std::function< bool(const EncodableValue &a, const EncodableValue &b)> &custom_comparator=nullptr) |
| static void | CheckEncodeDecodeWithEncodePrefix (const EncodableValue &value, const std::vector< uint8_t > &expected_encoding_prefix, size_t expected_encoding_length) |
| TEST (StandardMessageCodec, GetInstanceCachesInstance) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeNull) | |
| TEST (StandardMessageCodec, CanDecodeEmptyBytesAsNullWithoutCallingSerializer) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeTrue) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeFalse) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeInt32) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeInt64) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeDouble) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeString) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeStringWithNonAsciiCodePoint) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeStringWithNonBMPCodePoint) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeEmptyString) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeList) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeEmptyList) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeMap) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeByteArray) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeInt32Array) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeInt64Array) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeFloat32Array) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeFloat64Array) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeSimpleCustomType) | |
| TEST (StandardMessageCodec, CanEncodeAndDecodeVariableLengthCustomType) | |
| TEST (StandardMethodCodec, GetInstanceCachesInstance) | |
| TEST (StandardMethodCodec, HandlesMethodCallsWithNullArguments) | |
| TEST (StandardMethodCodec, HandlesMethodCallsWithArgument) | |
| TEST (StandardMethodCodec, HandlesSuccessEnvelopesWithNullResult) | |
| TEST (StandardMethodCodec, HandlesSuccessEnvelopesWithResult) | |
| TEST (StandardMethodCodec, HandlesErrorEnvelopesWithNulls) | |
| TEST (StandardMethodCodec, HandlesErrorEnvelopesWithDetails) | |
| TEST (StandardMethodCodec, HandlesCustomTypeArguments) | |
| TEST (TextureRegistrarTest, RegisterUnregisterTexture) | |
| TEST (TextureRegistrarTest, UnregisterInvalidTexture) | |
| TEST (TextureRegistrarTest, MarkFrameAvailableInvalidTexture) | |
| std::vector< std::string > | GetSwitchesFromEnvironment () |
| TEST (FlutterProjectBundle, SwitchesEmpty) | |
| TEST (FlutterProjectBundle, Switches) | |
| TEST (FlutterProjectBundle, SwitchesExtraValues) | |
| TEST (FlutterProjectBundle, SwitchesMissingValues) | |
| TEST (Point, SetsCoordinates) | |
| TEST (Size, SetsDimensions) | |
| TEST (Size, ClampsDimensionsPositive) | |
| TEST (Rect, SetsOriginAndSize) | |
| TEST (Rect, ReturnsLTRB) | |
| TEST (Rect, ReturnsWidthHeight) | |
| TEST (IncomingMessageDispatcher, SetHandle) | |
| TEST (IncomingMessageDispatcher, BlockInputFalse) | |
| TEST (IncomingMessageDispatcher, BlockInputTrue) | |
| TEST (JsonMessageCodec, EncodeDecode) | |
| TEST (JsonMethodCodec, HandlesMethodCallsWithNullArguments) | |
| TEST (JsonMethodCodec, HandlesMethodCallsWithArgument) | |
| TEST (JsonMethodCodec, HandlesSuccessEnvelopesWithNullResult) | |
| TEST (JsonMethodCodec, HandlesSuccessEnvelopesWithResult) | |
| TEST (JsonMethodCodec, HandlesErrorEnvelopesWithNulls) | |
| TEST (JsonMethodCodec, HandlesErrorEnvelopesWithDetails) | |
| std::filesystem::path | GetExecutableDirectory () |
| TEST (PathUtilsTest, ExecutableDirector) | |
| TEST (TextEditingDeltaTest, TestTextEditingDeltaConstructor) | |
| TEST (TextEditingDeltaTest, TestTextEditingDeltaNonTextConstructor) | |
| TEST (TextInputModel, SetText) | |
| TEST (TextInputModel, SetTextWideCharacters) | |
| TEST (TextInputModel, SetTextEmpty) | |
| TEST (TextInputModel, SetTextReplaceText) | |
| TEST (TextInputModel, SetTextResetsSelection) | |
| TEST (TextInputModel, SetSelectionStart) | |
| TEST (TextInputModel, SetSelectionComposingStart) | |
| TEST (TextInputModel, SetSelectionMiddle) | |
| TEST (TextInputModel, SetSelectionComposingMiddle) | |
| TEST (TextInputModel, SetSelectionEnd) | |
| TEST (TextInputModel, SetSelectionComposingEnd) | |
| TEST (TextInputModel, SetSelectionWthExtent) | |
| TEST (TextInputModel, SetSelectionWthExtentComposing) | |
| TEST (TextInputModel, SetSelectionReverseExtent) | |
| TEST (TextInputModel, SetSelectionReverseExtentComposing) | |
| TEST (TextInputModel, SetSelectionOutsideString) | |
| TEST (TextInputModel, SetSelectionOutsideComposingRange) | |
| TEST (TextInputModel, SetComposingRangeStart) | |
| TEST (TextInputModel, SetComposingRangeMiddle) | |
| TEST (TextInputModel, SetComposingRangeEnd) | |
| TEST (TextInputModel, SetComposingRangeWithExtent) | |
| TEST (TextInputModel, SetComposingRangeReverseExtent) | |
| TEST (TextInputModel, SetComposingRangeOutsideString) | |
| TEST (TextInputModel, CommitComposingNoTextWithNoSelection) | |
| TEST (TextInputModel, CommitComposingNoTextWithSelection) | |
| TEST (TextInputModel, CommitComposingTextWithNoSelection) | |
| TEST (TextInputModel, CommitComposingTextWithSelection) | |
| TEST (TextInputModel, UpdateComposingRemovesLastComposingCharacter) | |
| TEST (TextInputModel, UpdateSelectionWhileComposing) | |
| TEST (TextInputModel, AddCodePoint) | |
| TEST (TextInputModel, AddCodePointSelection) | |
| TEST (TextInputModel, AddCodePointReverseSelection) | |
| TEST (TextInputModel, AddCodePointSelectionWideCharacter) | |
| TEST (TextInputModel, AddCodePointReverseSelectionWideCharacter) | |
| TEST (TextInputModel, AddText) | |
| TEST (TextInputModel, AddTextSelection) | |
| TEST (TextInputModel, AddTextReverseSelection) | |
| TEST (TextInputModel, AddTextSelectionWideCharacter) | |
| TEST (TextInputModel, AddTextReverseSelectionWideCharacter) | |
| TEST (TextInputModel, DeleteStart) | |
| TEST (TextInputModel, DeleteMiddle) | |
| TEST (TextInputModel, DeleteEnd) | |
| TEST (TextInputModel, DeleteWideCharacters) | |
| TEST (TextInputModel, DeleteSelection) | |
| TEST (TextInputModel, DeleteReverseSelection) | |
| TEST (TextInputModel, DeleteStartComposing) | |
| TEST (TextInputModel, DeleteStartReverseComposing) | |
| TEST (TextInputModel, DeleteMiddleComposing) | |
| TEST (TextInputModel, DeleteMiddleReverseComposing) | |
| TEST (TextInputModel, DeleteEndComposing) | |
| TEST (TextInputModel, DeleteEndReverseComposing) | |
| TEST (TextInputModel, DeleteSurroundingAtCursor) | |
| TEST (TextInputModel, DeleteSurroundingAtCursorComposing) | |
| TEST (TextInputModel, DeleteSurroundingAtCursorAll) | |
| TEST (TextInputModel, DeleteSurroundingAtCursorAllComposing) | |
| TEST (TextInputModel, DeleteSurroundingAtCursorGreedy) | |
| TEST (TextInputModel, DeleteSurroundingAtCursorGreedyComposing) | |
| TEST (TextInputModel, DeleteSurroundingBeforeCursor) | |
| TEST (TextInputModel, DeleteSurroundingBeforeCursorComposing) | |
| TEST (TextInputModel, DeleteSurroundingBeforeCursorAll) | |
| TEST (TextInputModel, DeleteSurroundingBeforeCursorAllComposing) | |
| TEST (TextInputModel, DeleteSurroundingBeforeCursorGreedy) | |
| TEST (TextInputModel, DeleteSurroundingBeforeCursorGreedyComposing) | |
| TEST (TextInputModel, DeleteSurroundingAfterCursor) | |
| TEST (TextInputModel, DeleteSurroundingAfterCursorComposing) | |
| TEST (TextInputModel, DeleteSurroundingAfterCursorAll) | |
| TEST (TextInputModel, DeleteSurroundingAfterCursorAllComposing) | |
| TEST (TextInputModel, DeleteSurroundingAfterCursorGreedy) | |
| TEST (TextInputModel, DeleteSurroundingAfterCursorGreedyComposing) | |
| TEST (TextInputModel, DeleteSurroundingSelection) | |
| TEST (TextInputModel, DeleteSurroundingReverseSelection) | |
| TEST (TextInputModel, BackspaceStart) | |
| TEST (TextInputModel, BackspaceMiddle) | |
| TEST (TextInputModel, BackspaceEnd) | |
| TEST (TextInputModel, BackspaceWideCharacters) | |
| TEST (TextInputModel, BackspaceSelection) | |
| TEST (TextInputModel, BackspaceReverseSelection) | |
| TEST (TextInputModel, BackspaceStartComposing) | |
| TEST (TextInputModel, BackspaceStartReverseComposing) | |
| TEST (TextInputModel, BackspaceMiddleComposing) | |
| TEST (TextInputModel, BackspaceMiddleReverseComposing) | |
| TEST (TextInputModel, BackspaceEndComposing) | |
| TEST (TextInputModel, BackspaceEndReverseComposing) | |
| TEST (TextInputModel, MoveCursorForwardStart) | |
| TEST (TextInputModel, MoveCursorForwardMiddle) | |
| TEST (TextInputModel, MoveCursorForwardEnd) | |
| TEST (TextInputModel, MoveCursorForwardWideCharacters) | |
| TEST (TextInputModel, MoveCursorForwardSelection) | |
| TEST (TextInputModel, MoveCursorForwardReverseSelection) | |
| TEST (TextInputModel, MoveCursorForwardStartComposing) | |
| TEST (TextInputModel, MoveCursorForwardStartReverseComposing) | |
| TEST (TextInputModel, MoveCursorForwardMiddleComposing) | |
| TEST (TextInputModel, MoveCursorForwardMiddleReverseComposing) | |
| TEST (TextInputModel, MoveCursorForwardEndComposing) | |
| TEST (TextInputModel, MoveCursorForwardEndReverseComposing) | |
| TEST (TextInputModel, MoveCursorBackStart) | |
| TEST (TextInputModel, MoveCursorBackMiddle) | |
| TEST (TextInputModel, MoveCursorBackEnd) | |
| TEST (TextInputModel, MoveCursorBackWideCharacters) | |
| TEST (TextInputModel, MoveCursorBackSelection) | |
| TEST (TextInputModel, MoveCursorBackReverseSelection) | |
| TEST (TextInputModel, MoveCursorBackStartComposing) | |
| TEST (TextInputModel, MoveCursorBackStartReverseComposing) | |
| TEST (TextInputModel, MoveCursorBackMiddleComposing) | |
| TEST (TextInputModel, MoveCursorBackMiddleReverseComposing) | |
| TEST (TextInputModel, MoveCursorBackEndComposing) | |
| TEST (TextInputModel, MoveCursorBackEndReverseComposing) | |
| TEST (TextInputModel, MoveCursorToBeginningStart) | |
| TEST (TextInputModel, SelectToBeginningStart) | |
| TEST (TextInputModel, MoveCursorToBeginningMiddle) | |
| TEST (TextInputModel, SelectToBeginningMiddle) | |
| TEST (TextInputModel, MoveCursorToBeginningEnd) | |
| TEST (TextInputModel, SelectToBeginningEnd) | |
| TEST (TextInputModel, MoveCursorToBeginningSelection) | |
| TEST (TextInputModel, SelectToBeginningSelection) | |
| TEST (TextInputModel, MoveCursorToBeginningReverseSelection) | |
| TEST (TextInputModel, SelectToBeginningReverseSelection) | |
| TEST (TextInputModel, MoveCursorToBeginningStartComposing) | |
| TEST (TextInputModel, SelectToBeginningStartComposing) | |
| TEST (TextInputModel, MoveCursorToBeginningStartReverseComposing) | |
| TEST (TextInputModel, SelectToBeginningStartReverseComposing) | |
| TEST (TextInputModel, MoveCursorToBeginningMiddleComposing) | |
| TEST (TextInputModel, SelectToBeginningMiddleComposing) | |
| TEST (TextInputModel, MoveCursorToBeginningMiddleReverseComposing) | |
| TEST (TextInputModel, SelectToBeginningMiddleReverseComposing) | |
| TEST (TextInputModel, MoveCursorToBeginningEndComposing) | |
| TEST (TextInputModel, SelectToBeginningEndComposing) | |
| TEST (TextInputModel, MoveCursorToBeginningEndReverseComposing) | |
| TEST (TextInputModel, SelectToBeginningEndReverseComposing) | |
| TEST (TextInputModel, MoveCursorToEndStart) | |
| TEST (TextInputModel, SelectToEndStart) | |
| TEST (TextInputModel, MoveCursorToEndMiddle) | |
| TEST (TextInputModel, SelectToEndMiddle) | |
| TEST (TextInputModel, MoveCursorToEndEnd) | |
| TEST (TextInputModel, SelectToEndEnd) | |
| TEST (TextInputModel, MoveCursorToEndSelection) | |
| TEST (TextInputModel, SelectToEndSelection) | |
| TEST (TextInputModel, MoveCursorToEndReverseSelection) | |
| TEST (TextInputModel, SelectToEndReverseSelection) | |
| TEST (TextInputModel, MoveCursorToEndStartComposing) | |
| TEST (TextInputModel, SelectToEndStartComposing) | |
| TEST (TextInputModel, MoveCursorToEndStartReverseComposing) | |
| TEST (TextInputModel, SelectToEndStartReverseComposing) | |
| TEST (TextInputModel, MoveCursorToEndMiddleComposing) | |
| TEST (TextInputModel, SelectToEndMiddleComposing) | |
| TEST (TextInputModel, MoveCursorToEndMiddleReverseComposing) | |
| TEST (TextInputModel, SelectToEndMiddleReverseComposing) | |
| TEST (TextInputModel, MoveCursorToEndEndComposing) | |
| TEST (TextInputModel, SelectToEndEndComposing) | |
| TEST (TextInputModel, MoveCursorToEndEndReverseComposing) | |
| TEST (TextInputModel, SelectToEndEndReverseComposing) | |
| TEST (TextInputModel, GetCursorOffset) | |
| TEST (TextInputModel, GetCursorOffsetSelection) | |
| TEST (TextInputModel, GetCursorOffsetReverseSelection) | |
| TEST (TextRange, TextRangeFromPositionZero) | |
| TEST (TextRange, TextRangeFromPositionNonZero) | |
| TEST (TextRange, TextRangeFromRange) | |
| TEST (TextRange, TextRangeFromReversedRange) | |
| TEST (TextRange, SetBase) | |
| TEST (TextRange, SetBaseReversed) | |
| TEST (TextRange, SetExtent) | |
| TEST (TextRange, SetExtentReversed) | |
| TEST (TextRange, SetStart) | |
| TEST (TextRange, SetStartReversed) | |
| TEST (TextRange, SetEnd) | |
| TEST (TextRange, SetEndReversed) | |
| TEST (TextRange, ContainsPreStartPosition) | |
| TEST (TextRange, ContainsStartPosition) | |
| TEST (TextRange, ContainsMiddlePosition) | |
| TEST (TextRange, ContainsEndPosition) | |
| TEST (TextRange, ContainsPostEndPosition) | |
| TEST (TextRange, ContainsPreStartPositionReversed) | |
| TEST (TextRange, ContainsStartPositionReversed) | |
| TEST (TextRange, ContainsMiddlePositionReversed) | |
| TEST (TextRange, ContainsEndPositionReversed) | |
| TEST (TextRange, ContainsPostEndPositionReversed) | |
| TEST (TextRange, ContainsRangePreStartPosition) | |
| TEST (TextRange, ContainsRangeSpanningStartPosition) | |
| TEST (TextRange, ContainsRangeStartPosition) | |
| TEST (TextRange, ContainsRangeMiddlePosition) | |
| TEST (TextRange, ContainsRangeEndPosition) | |
| TEST (TextRange, ContainsRangeSpanningEndPosition) | |
| TEST (TextRange, ContainsRangePostEndPosition) | |
| TEST (TextRange, ContainsRangePreStartPositionReversed) | |
| TEST (TextRange, ContainsRangeSpanningStartPositionReversed) | |
| TEST (TextRange, ContainsRangeStartPositionReversed) | |
| TEST (TextRange, ContainsRangeMiddlePositionReversed) | |
| TEST (TextRange, ContainsRangeSpanningEndPositionReversed) | |
| TEST (TextRange, ContainsRangeEndPositionReversed) | |
| TEST (TextRange, ContainsRangePostEndPositionReversed) | |
| TEST (TextRange, ReversedForwardRange) | |
| TEST (TextRange, ReversedCollapsedRange) | |
| TEST (TextRange, ReversedReversedRange) | |
Variables | |
| constexpr int | kHasScrollingAction |
| typedef ui::AXNode::AXID flutter::AccessibilityNodeId |
Definition at line 15 of file flutter_platform_node_delegate.h.
| typedef std::function< void(const uint8_t* message, size_t message_size, BinaryReply reply)> flutter::BinaryMessageHandler |
Definition at line 24 of file binary_messenger.h.
| typedef std::function<void(const uint8_t* reply, size_t reply_size)> flutter::BinaryReply |
Definition at line 17 of file binary_messenger.h.
| using flutter::EncodableList = typedef std::vector<EncodableValue> |
Definition at line 94 of file encodable_value.h.
| using flutter::EncodableMap = typedef std::map<EncodableValue, EncodableValue> |
Definition at line 95 of file encodable_value.h.
| using flutter::MessageHandler = typedef std::function<void(const T& message, const MessageReply<T>& reply)> |
Definition at line 50 of file basic_message_channel.h.
| using flutter::MessageReply = typedef std::function<void(const T& reply)> |
Definition at line 43 of file basic_message_channel.h.
| using flutter::MethodCallHandler = typedef std::function<void(const MethodCall<T>& call, std::unique_ptr<MethodResult<T> > result)> |
Definition at line 27 of file method_channel.h.
| using flutter::ResultHandlerError = typedef std::function<void(const std::string& error_code, const std::string& error_message, const T* error_details)> |
Definition at line 22 of file method_result_functions.h.
| using flutter::ResultHandlerNotImplemented = typedef std::function<void()> |
Definition at line 26 of file method_result_functions.h.
| using flutter::ResultHandlerSuccess = typedef std::function<void(const T* result)> |
Definition at line 20 of file method_result_functions.h.
| using flutter::StreamHandlerCancel = typedef std::function<std::unique_ptr<StreamHandlerError<T> >(const T* arguments)> |
Definition at line 26 of file event_stream_handler_functions.h.
| using flutter::StreamHandlerListen = typedef std::function<std::unique_ptr<StreamHandlerError<T> >( const T* arguments, std::unique_ptr<EventSink<T> >&& events)> |
Definition at line 20 of file event_stream_handler_functions.h.
| typedef std::variant<PixelBufferTexture, GpuSurfaceTexture> flutter::TextureVariant |
Definition at line 79 of file texture_registrar.h.
|
strong |
These constants describe the possible lifecycle states of the application. They must be kept up to date with changes in the framework's AppLifecycleState enum. They are passed to the embedder's |SetLifecycleState| function.
States not supported on a platform will be synthesized by the framework when transitioning between states which are supported, so that all implementations share the same state machine.
Here is the state machine:
+-----------+ +-----------+
| detached |------------------------------>| resumed |
+-----------+ +-----------+
^ ^
| |
| v
+-----------+ +--------------+ +-----------+
| paused |<------>| hidden |<----->| inactive |
+-----------+ +--------------+ +-----------+
Definition at line 32 of file app_lifecycle_state.h.
|
strong |
| Enumerator | |
|---|---|
| kAbout | |
| kQuit | |
| kServicesSubmenu | |
| kHide | |
| kHideOtherApplications | |
| kShowAllApplications | |
| kStartSpeaking | |
| kStopSpeaking | |
| kToggleFullScreen | |
| kMinimizeWindow | |
| kZoomWindow | |
| kArrangeWindowsInFront | |
Definition at line 12 of file platform_provided_menu.h.
|
strong |
|
constexpr |
|
static |
Definition at line 37 of file standard_message_codec_unittests.cc.
References flutter::MessageCodec< T >::DecodeMessage(), flutter::MessageCodec< T >::EncodeMessage(), flutter::StandardMessageCodec::GetInstance(), and value.
Referenced by TEST().
|
static |
Definition at line 62 of file standard_message_codec_unittests.cc.
References flutter::MessageCodec< T >::DecodeMessage(), flutter::MessageCodec< T >::EncodeMessage(), flutter::StandardMessageCodec::GetInstance(), and value.
Referenced by TEST().
| std::filesystem::path flutter::GetExecutableDirectory | ( | ) |
| std::vector< std::string > flutter::GetSwitchesFromEnvironment | ( | ) |
Definition at line 14 of file engine_switches.cc.
References i.
Referenced by fl_engine_start(), and TEST().
| flutter::TEST | ( | BasicMessageChannelTest | , |
| Registration | |||
| ) |
Definition at line 58 of file basic_message_channel_unittests.cc.
References flutter::MessageCodec< T >::EncodeMessage(), flutter::StandardMessageCodec::GetInstance(), and flutter::BasicMessageChannel< T >::SetMessageHandler().
| flutter::TEST | ( | BasicMessageChannelTest | , |
| Resize | |||
| ) |
Definition at line 103 of file basic_message_channel_unittests.cc.
References flutter::StandardMessageCodec::GetInstance(), i, and flutter::BasicMessageChannel< T >::Resize().
| flutter::TEST | ( | BasicMessageChannelTest | , |
| SetWarnsOnOverflow | |||
| ) |
Definition at line 135 of file basic_message_channel_unittests.cc.
References flutter::StandardMessageCodec::GetInstance(), i, and flutter::BasicMessageChannel< T >::SetWarnsOnOverflow().
| flutter::TEST | ( | BasicMessageChannelTest | , |
| Unregistration | |||
| ) |
Definition at line 86 of file basic_message_channel_unittests.cc.
References flutter::StandardMessageCodec::GetInstance(), and flutter::BasicMessageChannel< T >::SetMessageHandler().
| flutter::TEST | ( | EncodableValueTest | , |
| Bool | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| Comparison | |||
| ) |
Definition at line 177 of file encodable_value_unittests.cc.
References i.
| flutter::TEST | ( | EncodableValueTest | , |
| CString | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| DeepCopy | |||
| ) |
Definition at line 247 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Double | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| DoubleList | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| Int | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| Int32List | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| Int64List | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| List | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| Long | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| LongValue | |||
| ) |
Definition at line 35 of file encodable_value_unittests.cc.
References flutter::EncodableValue::LongValue().
| flutter::TEST | ( | EncodableValueTest | , |
| Map | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| Null | |||
| ) |
Definition at line 13 of file encodable_value_unittests.cc.
References value.
| flutter::TEST | ( | EncodableValueTest | , |
| String | |||
| ) |
| flutter::TEST | ( | EncodableValueTest | , |
| TypeIndexesCorrect | |||
| ) |
Definition at line 301 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| UInt8List | |||
| ) |
| flutter::TEST | ( | EventChannelTest | , |
| Cancel | |||
| ) |
Definition at line 102 of file event_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeMethodCall(), flutter::StandardMethodCodec::GetInstance(), and flutter::EventChannel< T >::SetStreamHandler().
| flutter::TEST | ( | EventChannelTest | , |
| HandlerOutlivesEventChannel | |||
| ) |
Definition at line 232 of file event_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeMethodCall(), flutter::StandardMethodCodec::GetInstance(), and flutter::EventChannel< T >::SetStreamHandler().
| flutter::TEST | ( | EventChannelTest | , |
| ListenNotCancel | |||
| ) |
Definition at line 146 of file event_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeMethodCall(), flutter::StandardMethodCodec::GetInstance(), and flutter::EventChannel< T >::SetStreamHandler().
| flutter::TEST | ( | EventChannelTest | , |
| Registration | |||
| ) |
Definition at line 49 of file event_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeMethodCall(), flutter::StandardMethodCodec::GetInstance(), and flutter::EventChannel< T >::SetStreamHandler().
| flutter::TEST | ( | EventChannelTest | , |
| ReRegistration | |||
| ) |
Definition at line 186 of file event_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeMethodCall(), flutter::StandardMethodCodec::GetInstance(), and flutter::EventChannel< T >::SetStreamHandler().
| flutter::TEST | ( | EventChannelTest | , |
| StreamHandlerErrorNullptr | |||
| ) |
| flutter::TEST | ( | EventChannelTest | , |
| StreamHandlerErrorPassByValue | |||
| ) |
| flutter::TEST | ( | EventChannelTest | , |
| Unregistration | |||
| ) |
Definition at line 81 of file event_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), and flutter::EventChannel< T >::SetStreamHandler().
| flutter::TEST | ( | FlutterProjectBundle | , |
| Switches | |||
| ) |
Definition at line 50 of file engine_switches_unittests.cc.
References GetSwitchesFromEnvironment().
| flutter::TEST | ( | FlutterProjectBundle | , |
| SwitchesEmpty | |||
| ) |
Definition at line 31 of file engine_switches_unittests.cc.
References GetSwitchesFromEnvironment().
| flutter::TEST | ( | FlutterProjectBundle | , |
| SwitchesExtraValues | |||
| ) |
Definition at line 61 of file engine_switches_unittests.cc.
References GetSwitchesFromEnvironment().
| flutter::TEST | ( | FlutterProjectBundle | , |
| SwitchesMissingValues | |||
| ) |
Definition at line 71 of file engine_switches_unittests.cc.
References GetSwitchesFromEnvironment().
| flutter::TEST | ( | IncomingMessageDispatcher | , |
| BlockInputFalse | |||
| ) |
Definition at line 39 of file incoming_message_dispatcher_unittests.cc.
References FlutterDesktopMessage::struct_size, and user_data.
| flutter::TEST | ( | IncomingMessageDispatcher | , |
| BlockInputTrue | |||
| ) |
Definition at line 64 of file incoming_message_dispatcher_unittests.cc.
References FlutterDesktopMessage::struct_size, and user_data.
| flutter::TEST | ( | IncomingMessageDispatcher | , |
| SetHandle | |||
| ) |
Definition at line 10 of file incoming_message_dispatcher_unittests.cc.
References FlutterDesktopMessage::message, FlutterDesktopMessage::message_size, FlutterDesktopMessage::struct_size, and user_data.
| flutter::TEST | ( | JsonMessageCodec | , |
| EncodeDecode | |||
| ) |
Definition at line 29 of file json_message_codec_unittests.cc.
References CheckEncodeDecode().
| flutter::TEST | ( | JsonMethodCodec | , |
| HandlesErrorEnvelopesWithDetails | |||
| ) |
Definition at line 125 of file json_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeErrorEnvelope(), and flutter::JsonMethodCodec::GetInstance().
| flutter::TEST | ( | JsonMethodCodec | , |
| HandlesErrorEnvelopesWithNulls | |||
| ) |
Definition at line 98 of file json_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeErrorEnvelope(), and flutter::JsonMethodCodec::GetInstance().
| flutter::TEST | ( | JsonMethodCodec | , |
| HandlesMethodCallsWithArgument | |||
| ) |
Definition at line 42 of file json_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeMethodCall(), flutter::MethodCodec< T >::EncodeMethodCall(), and flutter::JsonMethodCodec::GetInstance().
| flutter::TEST | ( | JsonMethodCodec | , |
| HandlesMethodCallsWithNullArguments | |||
| ) |
Definition at line 31 of file json_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeMethodCall(), flutter::MethodCodec< T >::EncodeMethodCall(), and flutter::JsonMethodCodec::GetInstance().
| flutter::TEST | ( | JsonMethodCodec | , |
| HandlesSuccessEnvelopesWithNullResult | |||
| ) |
Definition at line 58 of file json_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeSuccessEnvelope(), and flutter::JsonMethodCodec::GetInstance().
| flutter::TEST | ( | JsonMethodCodec | , |
| HandlesSuccessEnvelopesWithResult | |||
| ) |
Definition at line 77 of file json_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeSuccessEnvelope(), and flutter::JsonMethodCodec::GetInstance().
| flutter::TEST | ( | MethodCallTest | , |
| Basic | |||
| ) |
Definition at line 14 of file method_call_unittests.cc.
References method_call.
| flutter::TEST | ( | MethodChannelTest | , |
| Error | |||
| ) |
Definition at line 37 of file method_result_functions_unittests.cc.
References flutter::MethodResult< T >::Error().
| flutter::TEST | ( | MethodChannelTest | , |
| InvokeNotImplemented | |||
| ) |
Definition at line 145 of file method_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), and flutter::MethodChannel< T >::InvokeMethod().
| flutter::TEST | ( | MethodChannelTest | , |
| InvokeWithoutResponse | |||
| ) |
Definition at line 107 of file method_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), and flutter::MethodChannel< T >::InvokeMethod().
| flutter::TEST | ( | MethodChannelTest | , |
| InvokeWithResponse | |||
| ) |
Definition at line 118 of file method_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeSuccessEnvelope(), flutter::StandardMethodCodec::GetInstance(), and flutter::MethodChannel< T >::InvokeMethod().
| flutter::TEST | ( | MethodChannelTest | , |
| NoHandlers | |||
| ) |
Definition at line 15 of file method_result_functions_unittests.cc.
References flutter::MethodResult< T >::Error(), flutter::MethodResult< T >::NotImplemented(), and flutter::MethodResult< T >::Success().
| flutter::TEST | ( | MethodChannelTest | , |
| NotImplemented | |||
| ) |
Definition at line 58 of file method_result_functions_unittests.cc.
References flutter::MethodResult< T >::NotImplemented().
| flutter::TEST | ( | MethodChannelTest | , |
| Registration | |||
| ) |
Definition at line 62 of file method_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeMethodCall(), flutter::StandardMethodCodec::GetInstance(), and flutter::MethodChannel< T >::SetMethodCallHandler().
| flutter::TEST | ( | MethodChannelTest | , |
| Resize | |||
| ) |
Definition at line 167 of file method_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), i, and flutter::MethodChannel< T >::Resize().
| flutter::TEST | ( | MethodChannelTest | , |
| SetWarnsOnOverflow | |||
| ) |
Definition at line 199 of file method_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), i, and flutter::MethodChannel< T >::SetWarnsOnOverflow().
| flutter::TEST | ( | MethodChannelTest | , |
| Success | |||
| ) |
Definition at line 23 of file method_result_functions_unittests.cc.
References i, flutter::MethodResult< T >::Success(), and value.
| flutter::TEST | ( | MethodChannelTest | , |
| Unregistration | |||
| ) |
Definition at line 92 of file method_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), and flutter::MethodChannel< T >::SetMethodCallHandler().
| flutter::TEST | ( | PathUtilsTest | , |
| ExecutableDirector | |||
| ) |
Definition at line 12 of file path_utils_unittests.cc.
References GetExecutableDirectory().
| flutter::TEST | ( | PluginRegistrarTest | , |
| ManagerDifferentInstances | |||
| ) |
Definition at line 175 of file plugin_registrar_unittests.cc.
References flutter::PluginRegistrarManager::GetInstance(), flutter::PluginRegistrarManager::GetRegistrar(), and flutter::PluginRegistrarManager::Reset().
| flutter::TEST | ( | PluginRegistrarTest | , |
| ManagerRemovesOnDestruction | |||
| ) |
Definition at line 192 of file plugin_registrar_unittests.cc.
References flutter::PluginRegistrarManager::GetInstance(), flutter::PluginRegistrarManager::GetRegistrar(), and flutter::PluginRegistrarManager::Reset().
| flutter::TEST | ( | PluginRegistrarTest | , |
| ManagerSameInstance | |||
| ) |
Definition at line 160 of file plugin_registrar_unittests.cc.
References flutter::PluginRegistrarManager::GetInstance(), flutter::PluginRegistrarManager::GetRegistrar(), and flutter::PluginRegistrarManager::Reset().
| flutter::TEST | ( | PluginRegistrarTest | , |
| MessengerSend | |||
| ) |
Definition at line 120 of file plugin_registrar_unittests.cc.
References flutter::PluginRegistrar::messenger(), and flutter::BinaryMessenger::Send().
| flutter::TEST | ( | PluginRegistrarTest | , |
| MessengerSetMessageHandler | |||
| ) |
Definition at line 136 of file plugin_registrar_unittests.cc.
References flutter::PluginRegistrar::messenger(), and flutter::BinaryMessenger::SetMessageHandler().
| flutter::TEST | ( | PluginRegistrarTest | , |
| PluginDestroyedBeforeRegistrar | |||
| ) |
Definition at line 104 of file plugin_registrar_unittests.cc.
References flutter::PluginRegistrar::AddPlugin().
| flutter::TEST | ( | PluginRegistrarTest | , |
| TextureRegistrarNotNull | |||
| ) |
Definition at line 218 of file plugin_registrar_unittests.cc.
References flutter::PluginRegistrar::texture_registrar().
| flutter::TEST | ( | Point | , |
| SetsCoordinates | |||
| ) |
Definition at line 11 of file geometry_unittests.cc.
References flutter::Point::x(), and flutter::Point::y().
| flutter::TEST | ( | Rect | , |
| ReturnsLTRB | |||
| ) |
Definition at line 37 of file geometry_unittests.cc.
References flutter::Rect::bottom(), flutter::Rect::left(), flutter::Rect::right(), and flutter::Rect::top().
| flutter::TEST | ( | Rect | , |
| ReturnsWidthHeight | |||
| ) |
Definition at line 47 of file geometry_unittests.cc.
References flutter::Rect::height(), and flutter::Rect::width().
| flutter::TEST | ( | Rect | , |
| SetsOriginAndSize | |||
| ) |
Definition at line 29 of file geometry_unittests.cc.
References flutter::Rect::origin(), and flutter::Rect::size().
| flutter::TEST | ( | Size | , |
| ClampsDimensionsPositive | |||
| ) |
Definition at line 23 of file geometry_unittests.cc.
References flutter::Size::height(), and flutter::Size::width().
| flutter::TEST | ( | Size | , |
| SetsDimensions | |||
| ) |
Definition at line 17 of file geometry_unittests.cc.
References flutter::Size::height(), and flutter::Size::width().
| flutter::TEST | ( | StandardMessageCodec | , |
| CanDecodeEmptyBytesAsNullWithoutCallingSerializer | |||
| ) |
Definition at line 95 of file standard_message_codec_unittests.cc.
References flutter::MessageCodec< T >::DecodeMessage(), and flutter::StandardMessageCodec::GetInstance().
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeByteArray | |||
| ) |
Definition at line 193 of file standard_message_codec_unittests.cc.
References CheckEncodeDecode(), and value.
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeDouble | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeEmptyList | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeEmptyString | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeFalse | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeFloat32Array | |||
| ) |
Definition at line 214 of file standard_message_codec_unittests.cc.
References CheckEncodeDecode(), and value.
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeFloat64Array | |||
| ) |
Definition at line 221 of file standard_message_codec_unittests.cc.
References CheckEncodeDecode(), and value.
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt32 | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt32Array | |||
| ) |
Definition at line 199 of file standard_message_codec_unittests.cc.
References CheckEncodeDecode(), and value.
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt64 | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt64Array | |||
| ) |
Definition at line 206 of file standard_message_codec_unittests.cc.
References CheckEncodeDecode(), and value.
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeList | |||
| ) |
Definition at line 155 of file standard_message_codec_unittests.cc.
References CheckEncodeDecode(), and value.
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeMap | |||
| ) |
Definition at line 180 of file standard_message_codec_unittests.cc.
References CheckEncodeDecodeWithEncodePrefix(), and value.
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeNull | |||
| ) |
Definition at line 90 of file standard_message_codec_unittests.cc.
References CheckEncodeDecode().
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeSimpleCustomType | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeString | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeStringWithNonAsciiCodePoint | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeStringWithNonBMPCodePoint | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeTrue | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeVariableLengthCustomType | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| GetInstanceCachesInstance | |||
| ) |
Definition at line 82 of file standard_message_codec_unittests.cc.
References flutter::StandardMessageCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| GetInstanceCachesInstance | |||
| ) |
Definition at line 35 of file standard_method_codec_unittests.cc.
References flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesCustomTypeArguments | |||
| ) |
Definition at line 167 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeMethodCall(), flutter::MethodCodec< T >::EncodeMethodCall(), and flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesErrorEnvelopesWithDetails | |||
| ) |
Definition at line 130 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeErrorEnvelope(), and flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesErrorEnvelopesWithNulls | |||
| ) |
Definition at line 105 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeErrorEnvelope(), and flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesMethodCallsWithArgument | |||
| ) |
Definition at line 53 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeMethodCall(), flutter::MethodCodec< T >::EncodeMethodCall(), and flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesMethodCallsWithNullArguments | |||
| ) |
Definition at line 43 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeMethodCall(), flutter::MethodCodec< T >::EncodeMethodCall(), and flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesSuccessEnvelopesWithNullResult | |||
| ) |
Definition at line 66 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeSuccessEnvelope(), and flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesSuccessEnvelopesWithResult | |||
| ) |
Definition at line 85 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeSuccessEnvelope(), and flutter::StandardMethodCodec::GetInstance().
| flutter::TEST | ( | TextEditingDeltaTest | , |
| TestTextEditingDeltaConstructor | |||
| ) |
Definition at line 11 of file text_editing_delta_unittests.cc.
References flutter::TextEditingDelta::delta_end(), flutter::TextEditingDelta::delta_start(), flutter::TextEditingDelta::delta_text(), and flutter::TextEditingDelta::old_text().
| flutter::TEST | ( | TextEditingDeltaTest | , |
| TestTextEditingDeltaNonTextConstructor | |||
| ) |
Definition at line 25 of file text_editing_delta_unittests.cc.
References flutter::TextEditingDelta::delta_end(), flutter::TextEditingDelta::delta_start(), flutter::TextEditingDelta::delta_text(), and flutter::TextEditingDelta::old_text().
| flutter::TEST | ( | TextInputModel | , |
| AddCodePoint | |||
| ) |
Definition at line 417 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddCodePointReverseSelection | |||
| ) |
Definition at line 439 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddCodePointReverseSelectionWideCharacter | |||
| ) |
Definition at line 459 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddCodePointSelection | |||
| ) |
Definition at line 429 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddCodePointSelectionWideCharacter | |||
| ) |
Definition at line 449 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddText | |||
| ) |
Definition at line 469 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddTextReverseSelection | |||
| ) |
Definition at line 489 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddTextReverseSelectionWideCharacter | |||
| ) |
Definition at line 509 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddTextSelection | |||
| ) |
Definition at line 479 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| AddTextSelectionWideCharacter | |||
| ) |
Definition at line 499 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceEnd | |||
| ) |
Definition at line 878 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceEndComposing | |||
| ) |
Definition at line 962 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceEndReverseComposing | |||
| ) |
Definition at line 973 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceMiddle | |||
| ) |
Definition at line 868 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceMiddleComposing | |||
| ) |
Definition at line 940 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceMiddleReverseComposing | |||
| ) |
Definition at line 951 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceReverseSelection | |||
| ) |
Definition at line 908 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceSelection | |||
| ) |
Definition at line 898 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceStart | |||
| ) |
Definition at line 858 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceStartComposing | |||
| ) |
Definition at line 918 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceStartReverseComposing | |||
| ) |
Definition at line 929 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| BackspaceWideCharacters | |||
| ) |
Definition at line 888 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| CommitComposingNoTextWithNoSelection | |||
| ) |
Definition at line 230 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| CommitComposingNoTextWithSelection | |||
| ) |
Definition at line 255 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| CommitComposingTextWithNoSelection | |||
| ) |
Definition at line 280 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| CommitComposingTextWithSelection | |||
| ) |
Definition at line 336 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteEnd | |||
| ) |
Definition at line 539 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteEndComposing | |||
| ) |
Definition at line 627 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteEndReverseComposing | |||
| ) |
Definition at line 638 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteMiddle | |||
| ) |
Definition at line 529 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteMiddleComposing | |||
| ) |
Definition at line 605 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteMiddleReverseComposing | |||
| ) |
Definition at line 616 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteReverseSelection | |||
| ) |
Definition at line 569 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSelection | |||
| ) |
Definition at line 559 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteStart | |||
| ) |
Definition at line 519 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteStartComposing | |||
| ) |
Definition at line 579 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteStartReverseComposing | |||
| ) |
Definition at line 592 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAfterCursor | |||
| ) |
Definition at line 775 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAfterCursorAll | |||
| ) |
Definition at line 796 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAfterCursorAllComposing | |||
| ) |
Definition at line 806 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAfterCursorComposing | |||
| ) |
Definition at line 785 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAfterCursorGreedy | |||
| ) |
Definition at line 817 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAfterCursorGreedyComposing | |||
| ) |
Definition at line 827 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAtCursor | |||
| ) |
Definition at line 649 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAtCursorAll | |||
| ) |
Definition at line 670 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAtCursorAllComposing | |||
| ) |
Definition at line 680 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAtCursorComposing | |||
| ) |
Definition at line 659 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAtCursorGreedy | |||
| ) |
Definition at line 691 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingAtCursorGreedyComposing | |||
| ) |
Definition at line 701 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingBeforeCursor | |||
| ) |
Definition at line 712 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingBeforeCursorAll | |||
| ) |
Definition at line 733 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingBeforeCursorAllComposing | |||
| ) |
Definition at line 743 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingBeforeCursorComposing | |||
| ) |
Definition at line 722 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingBeforeCursorGreedy | |||
| ) |
Definition at line 754 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingBeforeCursorGreedyComposing | |||
| ) |
Definition at line 764 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingReverseSelection | |||
| ) |
Definition at line 848 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteSurroundingSelection | |||
| ) |
Definition at line 838 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| DeleteWideCharacters | |||
| ) |
Definition at line 549 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| GetCursorOffset | |||
| ) |
Definition at line 1702 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| GetCursorOffsetReverseSelection | |||
| ) |
Definition at line 1725 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| GetCursorOffsetSelection | |||
| ) |
Definition at line 1718 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackEnd | |||
| ) |
Definition at line 1130 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackEndComposing | |||
| ) |
Definition at line 1216 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackEndReverseComposing | |||
| ) |
Definition at line 1227 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackMiddle | |||
| ) |
Definition at line 1120 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackMiddleComposing | |||
| ) |
Definition at line 1194 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackMiddleReverseComposing | |||
| ) |
Definition at line 1205 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackReverseSelection | |||
| ) |
Definition at line 1160 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackSelection | |||
| ) |
Definition at line 1150 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackStart | |||
| ) |
Definition at line 1110 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackStartComposing | |||
| ) |
Definition at line 1170 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackStartReverseComposing | |||
| ) |
Definition at line 1182 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorBackWideCharacters | |||
| ) |
Definition at line 1140 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardEnd | |||
| ) |
Definition at line 1004 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardEndComposing | |||
| ) |
Definition at line 1088 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardEndReverseComposing | |||
| ) |
Definition at line 1099 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardMiddle | |||
| ) |
Definition at line 994 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardMiddleComposing | |||
| ) |
Definition at line 1066 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardMiddleReverseComposing | |||
| ) |
Definition at line 1077 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardReverseSelection | |||
| ) |
Definition at line 1034 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardSelection | |||
| ) |
Definition at line 1024 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardStart | |||
| ) |
Definition at line 984 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardStartComposing | |||
| ) |
Definition at line 1044 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardStartReverseComposing | |||
| ) |
Definition at line 1055 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorForwardWideCharacters | |||
| ) |
Definition at line 1014 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningEnd | |||
| ) |
Definition at line 1278 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningEndComposing | |||
| ) |
Definition at line 1426 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningEndReverseComposing | |||
| ) |
Definition at line 1448 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningMiddle | |||
| ) |
Definition at line 1258 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningMiddleComposing | |||
| ) |
Definition at line 1382 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningMiddleReverseComposing | |||
| ) |
Definition at line 1404 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningReverseSelection | |||
| ) |
Definition at line 1318 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningSelection | |||
| ) |
Definition at line 1298 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningStart | |||
| ) |
Definition at line 1238 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningStartComposing | |||
| ) |
Definition at line 1338 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToBeginningStartReverseComposing | |||
| ) |
Definition at line 1360 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndEnd | |||
| ) |
Definition at line 1510 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndEndComposing | |||
| ) |
Definition at line 1658 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndEndReverseComposing | |||
| ) |
Definition at line 1680 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndMiddle | |||
| ) |
Definition at line 1490 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndMiddleComposing | |||
| ) |
Definition at line 1614 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndMiddleReverseComposing | |||
| ) |
Definition at line 1636 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndReverseSelection | |||
| ) |
Definition at line 1550 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndSelection | |||
| ) |
Definition at line 1530 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndStart | |||
| ) |
Definition at line 1470 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndStartComposing | |||
| ) |
Definition at line 1570 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| MoveCursorToEndStartReverseComposing | |||
| ) |
Definition at line 1592 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningEnd | |||
| ) |
Definition at line 1288 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningEndComposing | |||
| ) |
Definition at line 1437 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningEndReverseComposing | |||
| ) |
Definition at line 1459 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningMiddle | |||
| ) |
Definition at line 1268 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningMiddleComposing | |||
| ) |
Definition at line 1393 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningMiddleReverseComposing | |||
| ) |
Definition at line 1415 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningReverseSelection | |||
| ) |
Definition at line 1328 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningSelection | |||
| ) |
Definition at line 1308 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningStart | |||
| ) |
Definition at line 1248 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningStartComposing | |||
| ) |
Definition at line 1349 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToBeginningStartReverseComposing | |||
| ) |
Definition at line 1371 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndEnd | |||
| ) |
Definition at line 1520 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndEndComposing | |||
| ) |
Definition at line 1669 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndEndReverseComposing | |||
| ) |
Definition at line 1691 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndMiddle | |||
| ) |
Definition at line 1500 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndMiddleComposing | |||
| ) |
Definition at line 1625 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndMiddleReverseComposing | |||
| ) |
Definition at line 1647 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndReverseSelection | |||
| ) |
Definition at line 1560 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndSelection | |||
| ) |
Definition at line 1540 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndStart | |||
| ) |
Definition at line 1480 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndStartComposing | |||
| ) |
Definition at line 1581 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SelectToEndStartReverseComposing | |||
| ) |
Definition at line 1603 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetComposingRangeEnd | |||
| ) |
Definition at line 190 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetComposingRangeMiddle | |||
| ) |
Definition at line 180 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetComposingRangeOutsideString | |||
| ) |
Definition at line 220 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetComposingRangeReverseExtent | |||
| ) |
Definition at line 210 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetComposingRangeStart | |||
| ) |
Definition at line 170 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetComposingRangeWithExtent | |||
| ) |
Definition at line 200 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionComposingEnd | |||
| ) |
Definition at line 99 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionComposingMiddle | |||
| ) |
Definition at line 79 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionComposingStart | |||
| ) |
Definition at line 59 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionEnd | |||
| ) |
Definition at line 90 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionMiddle | |||
| ) |
Definition at line 70 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionOutsideComposingRange | |||
| ) |
Definition at line 158 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionOutsideString | |||
| ) |
Definition at line 150 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionReverseExtent | |||
| ) |
Definition at line 130 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionReverseExtentComposing | |||
| ) |
Definition at line 139 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionStart | |||
| ) |
Definition at line 50 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionWthExtent | |||
| ) |
Definition at line 110 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetSelectionWthExtentComposing | |||
| ) |
Definition at line 119 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetText | |||
| ) |
Definition at line 15 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetTextEmpty | |||
| ) |
Definition at line 27 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetTextReplaceText | |||
| ) |
Definition at line 33 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetTextResetsSelection | |||
| ) |
Definition at line 41 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| SetTextWideCharacters | |||
| ) |
Definition at line 21 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| UpdateComposingRemovesLastComposingCharacter | |||
| ) |
Definition at line 395 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextInputModel | , |
| UpdateSelectionWhileComposing | |||
| ) |
Definition at line 406 of file text_input_model_unittests.cc.
| flutter::TEST | ( | TextRange | , |
| ContainsEndPosition | |||
| ) |
Definition at line 125 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsEndPositionReversed | |||
| ) |
Definition at line 151 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsMiddlePosition | |||
| ) |
| flutter::TEST | ( | TextRange | , |
| ContainsMiddlePositionReversed | |||
| ) |
| flutter::TEST | ( | TextRange | , |
| ContainsPostEndPosition | |||
| ) |
Definition at line 130 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsPostEndPositionReversed | |||
| ) |
Definition at line 156 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsPreStartPosition | |||
| ) |
Definition at line 109 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsPreStartPositionReversed | |||
| ) |
Definition at line 135 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeEndPosition | |||
| ) |
Definition at line 182 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeEndPositionReversed | |||
| ) |
Definition at line 223 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeMiddlePosition | |||
| ) |
| flutter::TEST | ( | TextRange | , |
| ContainsRangeMiddlePositionReversed | |||
| ) |
| flutter::TEST | ( | TextRange | , |
| ContainsRangePostEndPosition | |||
| ) |
Definition at line 192 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangePostEndPositionReversed | |||
| ) |
Definition at line 228 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangePreStartPosition | |||
| ) |
Definition at line 161 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangePreStartPositionReversed | |||
| ) |
Definition at line 197 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeSpanningEndPosition | |||
| ) |
Definition at line 187 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeSpanningEndPositionReversed | |||
| ) |
Definition at line 218 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeSpanningStartPosition | |||
| ) |
Definition at line 166 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeSpanningStartPositionReversed | |||
| ) |
Definition at line 202 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeStartPosition | |||
| ) |
Definition at line 171 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsRangeStartPositionReversed | |||
| ) |
Definition at line 207 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsStartPosition | |||
| ) |
Definition at line 114 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ContainsStartPositionReversed | |||
| ) |
Definition at line 140 of file text_range_unittests.cc.
References flutter::TextRange::Contains().
| flutter::TEST | ( | TextRange | , |
| ReversedCollapsedRange | |||
| ) |
Definition at line 238 of file text_range_unittests.cc.
References flutter::TextRange::reversed().
| flutter::TEST | ( | TextRange | , |
| ReversedForwardRange | |||
| ) |
Definition at line 233 of file text_range_unittests.cc.
References flutter::TextRange::reversed().
| flutter::TEST | ( | TextRange | , |
| ReversedReversedRange | |||
| ) |
Definition at line 243 of file text_range_unittests.cc.
References flutter::TextRange::reversed().
| flutter::TEST | ( | TextRange | , |
| SetBase | |||
| ) |
Definition at line 53 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_base().
| flutter::TEST | ( | TextRange | , |
| SetBaseReversed | |||
| ) |
Definition at line 60 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_base().
| flutter::TEST | ( | TextRange | , |
| SetEnd | |||
| ) |
Definition at line 95 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_end().
| flutter::TEST | ( | TextRange | , |
| SetEndReversed | |||
| ) |
Definition at line 102 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_end().
| flutter::TEST | ( | TextRange | , |
| SetExtent | |||
| ) |
Definition at line 67 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_extent().
| flutter::TEST | ( | TextRange | , |
| SetExtentReversed | |||
| ) |
Definition at line 74 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_extent().
| flutter::TEST | ( | TextRange | , |
| SetStart | |||
| ) |
Definition at line 81 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_start().
| flutter::TEST | ( | TextRange | , |
| SetStartReversed | |||
| ) |
Definition at line 88 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::extent(), and flutter::TextRange::set_start().
| flutter::TEST | ( | TextRange | , |
| TextRangeFromPositionNonZero | |||
| ) |
Definition at line 22 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::collapsed(), flutter::TextRange::end(), flutter::TextRange::extent(), flutter::TextRange::length(), flutter::TextRange::position(), and flutter::TextRange::start().
| flutter::TEST | ( | TextRange | , |
| TextRangeFromPositionZero | |||
| ) |
Definition at line 11 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::collapsed(), flutter::TextRange::end(), flutter::TextRange::extent(), flutter::TextRange::length(), flutter::TextRange::position(), and flutter::TextRange::start().
| flutter::TEST | ( | TextRange | , |
| TextRangeFromRange | |||
| ) |
Definition at line 33 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::collapsed(), flutter::TextRange::end(), flutter::TextRange::extent(), flutter::TextRange::length(), and flutter::TextRange::start().
| flutter::TEST | ( | TextRange | , |
| TextRangeFromReversedRange | |||
| ) |
Definition at line 43 of file text_range_unittests.cc.
References flutter::TextRange::base(), flutter::TextRange::collapsed(), flutter::TextRange::end(), flutter::TextRange::extent(), flutter::TextRange::length(), and flutter::TextRange::start().
| flutter::TEST | ( | TextureRegistrarTest | , |
| MarkFrameAvailableInvalidTexture | |||
| ) |
Definition at line 143 of file texture_registrar_unittests.cc.
References flutter::TextureRegistrar::MarkTextureFrameAvailable(), and flutter::PluginRegistrar::texture_registrar().
| flutter::TEST | ( | TextureRegistrarTest | , |
| RegisterUnregisterTexture | |||
| ) |
Definition at line 87 of file texture_registrar_unittests.cc.
References height, flutter::TextureRegistrar::MarkTextureFrameAvailable(), flutter::TextureRegistrar::RegisterTexture(), texture_id, flutter::PluginRegistrar::texture_registrar(), flutter::TextureRegistrar::UnregisterTexture(), and width.
| flutter::TEST | ( | TextureRegistrarTest | , |
| UnregisterInvalidTexture | |||
| ) |
Definition at line 129 of file texture_registrar_unittests.cc.
References flutter::PluginRegistrar::texture_registrar(), and flutter::TextureRegistrar::UnregisterTexture().
|
constexpr |
Definition at line 16 of file accessibility_bridge.cc.