Namespaces | |
| egl | |
| internal | |
| testing | |
Typedefs | |
| using | FlutterViewId = int64_t |
| using | WindowProcDelegate = std::function< std::optional< LRESULT >(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)> |
| using | UniqueAotDataPtr = std::unique_ptr< _FlutterEngineAOTData, FlutterEngineCollectAOTDataFnPtr > |
| typedef uint64_t(* | CurrentTimeProc) () |
| 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 | GpuPreference { NoPreference , LowPowerPreference } |
| enum class | UIThreadPolicy { Default , RunOnPlatformThread , RunOnSeparateThread } |
| enum class | FlutterGpuPreference { NoPreference , LowPowerPreference } |
| enum class | FlutterUIThreadPolicy { Default , RunOnPlatformThread , RunOnSeparateThread } |
| enum class | AppExitType { required , cancelable } |
| enum class | FocusChangeDirection { kProgrammatic , kForward , kBackward } |
| enum class | WindowStateEvent { kShow , kHide , kFocus , kUnfocus } |
| An event representing a change in window state that may update the. More... | |
| 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 | |
| TEST_F (DartProjectTest, StandardProjectFormat) | |
| TEST_F (DartProjectTest, ProjectWithCustomPaths) | |
| TEST_F (DartProjectTest, DartEntrypointArguments) | |
| TEST (FlutterEngineTest, CreateDestroy) | |
| TEST (FlutterEngineTest, CreateDestroyWithCustomEntrypoint) | |
| TEST (FlutterEngineTest, ExplicitShutDown) | |
| TEST (FlutterEngineTest, ProcessMessages) | |
| TEST (FlutterEngineTest, ReloadFonts) | |
| TEST (FlutterEngineTest, GetMessenger) | |
| TEST (FlutterEngineTest, DartEntrypointArgs) | |
| TEST (FlutterEngineTest, SetNextFrameCallback) | |
| TEST (FlutterEngineTest, ProcessExternalWindowMessage) | |
| TEST (FlutterViewControllerTest, CreateDestroy) | |
| TEST (FlutterViewControllerTest, GetViewId) | |
| TEST (FlutterViewControllerTest, GetEngine) | |
| TEST (FlutterViewControllerTest, GetView) | |
| TEST (FlutterViewControllerTest, ForceRedraw) | |
| TEST (FlutterViewTest, HwndAccessPassesThrough) | |
| TEST (FlutterViewTest, GraphicsAdapterAccessPassesThrough) | |
| TEST (PluginRegistrarWindowsTest, GetView) | |
| TEST (PluginRegistrarWindowsTest, GetViewById) | |
| TEST (PluginRegistrarWindowsTest, PluginDestroyedBeforeRegistrar) | |
| TEST (PluginRegistrarWindowsTest, RegisterUnregister) | |
| TEST (PluginRegistrarWindowsTest, CallsRegisteredDelegates) | |
| TEST (PluginRegistrarWindowsTest, StopsOnceHandled) | |
| HCURSOR | GetCursorFromBuffer (const std::vector< uint8_t > &buffer, double hot_x, double hot_y, int width, int height) |
| void | GetMaskBitmaps (HBITMAP bitmap, HBITMAP &mask_bitmap) |
| UINT | GetDpiForHWND (HWND hwnd) |
| UINT | GetDpiForMonitor (HMONITOR monitor) |
| static void | WindowsPlatformThreadPrioritySetter (FlutterThreadPriority priority) |
| std::string | ConvertChar32ToUtf8 (char32_t ch) |
| static bool | isEasciiPrintable (int codeUnit) |
| static uint64_t | toLower (uint64_t n) |
| static uint16_t | normalizeScancode (int windowsScanCode, bool extended) |
| std::u16string | EncodeUtf16 (char32_t character) |
| uint32_t | UndeadChar (uint32_t ch) |
| static AppExitType | StringToAppExitType (const std::string &string) |
| std::vector< LanguageInfo > | GetPreferredLanguageInfo (const WindowsProcTable &windows_proc_table) |
| std::wstring | GetPreferredLanguagesFromMUI (const WindowsProcTable &windows_proc_table) |
| std::vector< std::wstring > | GetPreferredLanguages (const WindowsProcTable &windows_proc_table) |
| LanguageInfo | ParseLanguageName (std::wstring language_name) |
| std::wstring | GetUserTimeFormat () |
| bool | Prefer24HourTime (std::wstring time_format) |
| static int64_t | NumWindowsForThread (const THREADENTRY32 &thread) |
| 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 | kOpaqueBlack = 0xff000000 |
| constexpr FlutterViewId | kImplicitViewId = 0 |
| constexpr int | kShift = 1 << 0 |
| constexpr int | kControl = 1 << 3 |
| constexpr int | kScanCodeShiftLeft = 0x2a |
| constexpr int | kScanCodeShiftRight = 0x36 |
| constexpr int | kKeyCodeShiftLeft = 0xa0 |
| constexpr int | kScanCodeControlLeft = 0x1d |
| constexpr int | kScanCodeControlRight = 0xe01d |
| constexpr int | kKeyCodeControlLeft = 0xa2 |
| constexpr int | kDeadKeyCharMask = 0x80000000 |
| static constexpr const char * | kExitTypeNames [] |
| constexpr const wchar_t | kGetPreferredLanguageRegKey [] |
| constexpr const wchar_t | kGetPreferredLanguageRegValue [] = L"Languages" |
| static const uintptr_t | kTimerId = 0 |
| static const uintptr_t | kPollTimeoutTimerId = 1 |
| 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.
| typedef uint64_t(* flutter::CurrentTimeProc) () |
Definition at line 21 of file task_runner.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.
| typedef int64_t flutter::FlutterViewId |
Definition at line 13 of file flutter_view.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.
| using flutter::UniqueAotDataPtr = typedef std::unique_ptr<_FlutterEngineAOTData, FlutterEngineCollectAOTDataFnPtr> |
Definition at line 17 of file flutter_project_bundle.h.
| using flutter::WindowProcDelegate = typedef std::function<std::optional< LRESULT>(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)> |
Definition at line 23 of file plugin_registrar_windows.h.
|
strong |
| Enumerator | |
|---|---|
| required | |
| cancelable | |
Definition at line 27 of file platform_handler.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 |
|
strong |
| Enumerator | |
|---|---|
| Default | |
| RunOnPlatformThread | |
| RunOnSeparateThread | |
Definition at line 25 of file flutter_project_bundle.h.
|
strong |
| Enumerator | |
|---|---|
| kProgrammatic | |
| kForward | |
| kBackward | |
Definition at line 17 of file platform_view_manager.h.
|
strong |
|
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 |
| Enumerator | |
|---|---|
| Default | |
| RunOnPlatformThread | |
| RunOnSeparateThread | |
Definition at line 24 of file dart_project.h.
|
strong |
|
strong |
An event representing a change in window state that may update the.
| Enumerator | |
|---|---|
| kShow | |
| kHide | |
| kFocus | |
| kUnfocus | |
Definition at line 24 of file windows_lifecycle_manager.h.
|
constexpr |
|
static |
Definition at line 37 of file standard_message_codec_unittests.cc.
References flutter::MessageCodec< T >::DecodeMessage(), flutter::MessageCodec< T >::EncodeMessage(), and flutter::StandardMessageCodec::GetInstance().
Referenced by TEST().
|
static |
Definition at line 62 of file standard_message_codec_unittests.cc.
References flutter::MessageCodec< T >::DecodeMessage(), flutter::MessageCodec< T >::EncodeMessage(), and flutter::StandardMessageCodec::GetInstance().
Referenced by TEST().
| std::string flutter::ConvertChar32ToUtf8 | ( | char32_t | ch | ) |
Definition at line 38 of file keyboard_key_embedder_handler.cc.
Referenced by flutter::testing::TEST().
| std::u16string flutter::EncodeUtf16 | ( | char32_t | character | ) |
Definition at line 11 of file keyboard_utils.cc.
References character.
Referenced by flutter::testing::TEST().
| HCURSOR flutter::GetCursorFromBuffer | ( | const std::vector< uint8_t > & | buffer, |
| double | hot_x, | ||
| double | hot_y, | ||
| int | width, | ||
| int | height | ||
| ) |
Definition at line 186 of file cursor_handler.cc.
References GetMaskBitmaps().
| UINT flutter::GetDpiForHWND | ( | HWND | hwnd | ) |
Returns the DPI for |hwnd|. Supports all DPI awareness modes, and is backward compatible down to Windows Vista. If |hwnd| is nullptr, returns the DPI for the primary monitor. If Per-Monitor DPI awareness is not available, returns the system's DPI.
Definition at line 130 of file dpi_utils.cc.
Referenced by FlutterDesktopGetDpiForHWND(), flutter::FlutterWindow::FlutterWindow(), flutter::FlutterWindow::HandleMessage(), and flutter::testing::TEST().
| UINT flutter::GetDpiForMonitor | ( | HMONITOR | monitor | ) |
Returns the DPI of a given monitor. Defaults to 96 if the API is not available.
Definition at line 134 of file dpi_utils.cc.
Referenced by FlutterDesktopGetDpiForMonitor(), and flutter::testing::TEST().
| std::filesystem::path flutter::GetExecutableDirectory | ( | ) |
Definition at line 16 of file path_utils.cc.
Referenced by flutter::FlutterProjectBundle::FlutterProjectBundle(), and TEST().
| void flutter::GetMaskBitmaps | ( | HBITMAP | bitmap, |
| HBITMAP & | mask_bitmap | ||
| ) |
| std::vector< LanguageInfo > flutter::GetPreferredLanguageInfo | ( | const WindowsProcTable & | windows_proc_table | ) |
Definition at line 15 of file system_utils.cc.
References GetPreferredLanguages(), and ParseLanguageName().
Referenced by flutter::testing::TEST().
| std::vector< std::wstring > flutter::GetPreferredLanguages | ( | const WindowsProcTable & | windows_proc_table | ) |
Definition at line 45 of file system_utils.cc.
References GetPreferredLanguagesFromMUI().
Referenced by GetPreferredLanguageInfo(), and flutter::testing::TEST().
| std::wstring flutter::GetPreferredLanguagesFromMUI | ( | const WindowsProcTable & | windows_proc_table | ) |
Definition at line 28 of file system_utils.cc.
References flutter::WindowsProcTable::GetThreadPreferredUILanguages().
Referenced by GetPreferredLanguages().
| std::vector< std::string > flutter::GetSwitchesFromEnvironment | ( | ) |
Definition at line 14 of file engine_switches.cc.
Referenced by flutter::FlutterProjectBundle::GetSwitches(), and TEST().
| std::wstring flutter::GetUserTimeFormat | ( | ) |
Definition at line 101 of file system_utils.cc.
Referenced by flutter::SettingsPlugin::GetAlwaysUse24HourFormat(), and flutter::testing::TEST().
|
static |
Definition at line 71 of file keyboard_key_embedder_handler.cc.
|
static |
|
static |
Definition at line 149 of file windows_lifecycle_manager.cc.
Referenced by flutter::WindowsLifecycleManager::IsLastWindowOfProcess().
| LanguageInfo flutter::ParseLanguageName | ( | std::wstring | language_name | ) |
Definition at line 71 of file system_utils.cc.
References flutter::LanguageInfo::language, flutter::LanguageInfo::region, and flutter::LanguageInfo::script.
Referenced by GetPreferredLanguageInfo(), and flutter::testing::TEST().
| bool flutter::Prefer24HourTime | ( | std::wstring | time_format | ) |
Definition at line 113 of file system_utils.cc.
Referenced by flutter::SettingsPlugin::GetAlwaysUse24HourFormat(), and flutter::testing::TEST().
|
static |
Definition at line 212 of file platform_handler.cc.
References cancelable, flutter::PlatformHandler::kExitTypeCancelable, flutter::PlatformHandler::kExitTypeRequired, and required.
| flutter::TEST | ( | BasicMessageChannelTest | , |
| Registration | |||
| ) |
Definition at line 58 of file basic_message_channel_unittests.cc.
References flutter::MessageCodec< T >::EncodeMessage(), flutter::StandardMessageCodec::GetInstance(), message, and flutter::BasicMessageChannel< T >::SetMessageHandler().
| flutter::TEST | ( | BasicMessageChannelTest | , |
| Resize | |||
| ) |
Definition at line 103 of file basic_message_channel_unittests.cc.
References flutter::StandardMessageCodec::GetInstance(), and flutter::BasicMessageChannel< T >::Resize().
| flutter::TEST | ( | BasicMessageChannelTest | , |
| SetWarnsOnOverflow | |||
| ) |
Definition at line 135 of file basic_message_channel_unittests.cc.
References flutter::StandardMessageCodec::GetInstance(), and flutter::BasicMessageChannel< T >::SetWarnsOnOverflow().
| flutter::TEST | ( | BasicMessageChannelTest | , |
| Unregistration | |||
| ) |
Definition at line 86 of file basic_message_channel_unittests.cc.
References flutter::StandardMessageCodec::GetInstance(), message, and flutter::BasicMessageChannel< T >::SetMessageHandler().
| flutter::TEST | ( | EncodableValueTest | , |
| Bool | |||
| ) |
Definition at line 18 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Comparison | |||
| ) |
Definition at line 177 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| CString | |||
| ) |
Definition at line 68 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| DeepCopy | |||
| ) |
Definition at line 247 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Double | |||
| ) |
Definition at line 50 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| DoubleList | |||
| ) |
Definition at line 119 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Int | |||
| ) |
Definition at line 26 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Int32List | |||
| ) |
Definition at line 91 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Int64List | |||
| ) |
Definition at line 105 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| List | |||
| ) |
Definition at line 133 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Long | |||
| ) |
Definition at line 42 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| LongValue | |||
| ) |
Definition at line 35 of file encodable_value_unittests.cc.
References flutter::EncodableValue::LongValue().
| flutter::TEST | ( | EncodableValueTest | , |
| Map | |||
| ) |
Definition at line 153 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| Null | |||
| ) |
Definition at line 13 of file encodable_value_unittests.cc.
References flutter::EncodableValue::IsNull().
| flutter::TEST | ( | EncodableValueTest | , |
| String | |||
| ) |
Definition at line 58 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| TypeIndexesCorrect | |||
| ) |
Definition at line 301 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EncodableValueTest | , |
| UInt8List | |||
| ) |
Definition at line 77 of file encodable_value_unittests.cc.
| flutter::TEST | ( | EventChannelTest | , |
| Cancel | |||
| ) |
Definition at line 102 of file event_channel_unittests.cc.
References flutter::MethodCodec< T >::EncodeMethodCall(), flutter::StandardMethodCodec::GetInstance(), message, 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(), message, 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(), message, 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(), message, 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(), message, and flutter::EventChannel< T >::SetStreamHandler().
| flutter::TEST | ( | EventChannelTest | , |
| StreamHandlerErrorNullptr | |||
| ) |
Definition at line 295 of file event_channel_unittests.cc.
| flutter::TEST | ( | EventChannelTest | , |
| StreamHandlerErrorPassByValue | |||
| ) |
Definition at line 277 of file event_channel_unittests.cc.
| 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 | ( | FlutterEngineTest | , |
| CreateDestroy | |||
| ) |
Definition at line 103 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::Run().
| flutter::TEST | ( | FlutterEngineTest | , |
| CreateDestroyWithCustomEntrypoint | |||
| ) |
Definition at line 118 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::Run(), and flutter::DartProject::set_dart_entrypoint().
| flutter::TEST | ( | FlutterEngineTest | , |
| DartEntrypointArgs | |||
| ) |
Definition at line 183 of file flutter_engine_unittests.cc.
References flutter::DartProject::set_dart_entrypoint_arguments().
| flutter::TEST | ( | FlutterEngineTest | , |
| ExplicitShutDown | |||
| ) |
Definition at line 135 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::Run(), and flutter::FlutterEngine::ShutDown().
| flutter::TEST | ( | FlutterEngineTest | , |
| GetMessenger | |||
| ) |
Definition at line 173 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::messenger().
| flutter::TEST | ( | FlutterEngineTest | , |
| ProcessExternalWindowMessage | |||
| ) |
Definition at line 218 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::ProcessExternalWindowMessage().
| flutter::TEST | ( | FlutterEngineTest | , |
| ProcessMessages | |||
| ) |
Definition at line 149 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::ProcessMessages(), and flutter::FlutterEngine::Run().
| flutter::TEST | ( | FlutterEngineTest | , |
| ReloadFonts | |||
| ) |
Definition at line 161 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::ReloadSystemFonts(), and flutter::FlutterEngine::Run().
| flutter::TEST | ( | FlutterEngineTest | , |
| SetNextFrameCallback | |||
| ) |
Definition at line 200 of file flutter_engine_unittests.cc.
References flutter::FlutterEngine::SetNextFrameCallback().
| 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 | ( | FlutterViewControllerTest | , |
| CreateDestroy | |||
| ) |
Definition at line 61 of file flutter_view_controller_unittests.cc.
| flutter::TEST | ( | FlutterViewControllerTest | , |
| ForceRedraw | |||
| ) |
Definition at line 100 of file flutter_view_controller_unittests.cc.
References flutter::FlutterViewController::ForceRedraw().
| flutter::TEST | ( | FlutterViewControllerTest | , |
| GetEngine | |||
| ) |
Definition at line 82 of file flutter_view_controller_unittests.cc.
References flutter::FlutterViewController::engine().
| flutter::TEST | ( | FlutterViewControllerTest | , |
| GetView | |||
| ) |
Definition at line 91 of file flutter_view_controller_unittests.cc.
References flutter::FlutterViewController::view().
| flutter::TEST | ( | FlutterViewControllerTest | , |
| GetViewId | |||
| ) |
Definition at line 73 of file flutter_view_controller_unittests.cc.
References flutter::FlutterViewController::view_id().
| flutter::TEST | ( | FlutterViewTest | , |
| GraphicsAdapterAccessPassesThrough | |||
| ) |
Definition at line 35 of file flutter_view_unittests.cc.
References flutter::FlutterView::GetGraphicsAdapter().
| flutter::TEST | ( | FlutterViewTest | , |
| HwndAccessPassesThrough | |||
| ) |
Definition at line 27 of file flutter_view_unittests.cc.
References flutter::FlutterView::GetNativeWindow().
| flutter::TEST | ( | IncomingMessageDispatcher | , |
| BlockInputFalse | |||
| ) |
Definition at line 39 of file incoming_message_dispatcher_unittests.cc.
| flutter::TEST | ( | IncomingMessageDispatcher | , |
| BlockInputTrue | |||
| ) |
Definition at line 64 of file incoming_message_dispatcher_unittests.cc.
| flutter::TEST | ( | IncomingMessageDispatcher | , |
| SetHandle | |||
| ) |
Definition at line 10 of file incoming_message_dispatcher_unittests.cc.
| 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(), flutter::JsonMethodCodec::GetInstance(), and message.
| flutter::TEST | ( | JsonMethodCodec | , |
| HandlesErrorEnvelopesWithNulls | |||
| ) |
Definition at line 98 of file json_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeErrorEnvelope(), flutter::JsonMethodCodec::GetInstance(), and message.
| 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 flutter::MethodCall< T >::arguments(), and flutter::MethodCall< T >::method_name().
| flutter::TEST | ( | MethodChannelTest | , |
| Error | |||
| ) |
Definition at line 37 of file method_result_functions_unittests.cc.
References flutter::MethodResult< T >::Error(), and message.
| 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(), message, and flutter::MethodChannel< T >::SetMethodCallHandler().
| flutter::TEST | ( | MethodChannelTest | , |
| Resize | |||
| ) |
Definition at line 167 of file method_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), and flutter::MethodChannel< T >::Resize().
| flutter::TEST | ( | MethodChannelTest | , |
| SetWarnsOnOverflow | |||
| ) |
Definition at line 199 of file method_channel_unittests.cc.
References flutter::StandardMethodCodec::GetInstance(), and flutter::MethodChannel< T >::SetWarnsOnOverflow().
| flutter::TEST | ( | MethodChannelTest | , |
| Success | |||
| ) |
Definition at line 23 of file method_result_functions_unittests.cc.
References flutter::MethodResult< T >::Success().
| 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 message, flutter::PluginRegistrar::messenger(), and flutter::BinaryMessenger::Send().
| flutter::TEST | ( | PluginRegistrarTest | , |
| MessengerSetMessageHandler | |||
| ) |
Definition at line 136 of file plugin_registrar_unittests.cc.
References message, 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 | ( | PluginRegistrarWindowsTest | , |
| CallsRegisteredDelegates | |||
| ) |
Definition at line 161 of file plugin_registrar_windows_unittests.cc.
References message, and flutter::PluginRegistrarWindows::RegisterTopLevelWindowProcDelegate().
| flutter::TEST | ( | PluginRegistrarWindowsTest | , |
| GetView | |||
| ) |
Definition at line 76 of file plugin_registrar_windows_unittests.cc.
References flutter::PluginRegistrarWindows::GetView().
| flutter::TEST | ( | PluginRegistrarWindowsTest | , |
| GetViewById | |||
| ) |
Definition at line 89 of file plugin_registrar_windows_unittests.cc.
References flutter::PluginRegistrarWindows::GetView(), and flutter::PluginRegistrarWindows::GetViewById().
| flutter::TEST | ( | PluginRegistrarWindowsTest | , |
| PluginDestroyedBeforeRegistrar | |||
| ) |
Definition at line 109 of file plugin_registrar_windows_unittests.cc.
References flutter::PluginRegistrar::AddPlugin().
| flutter::TEST | ( | PluginRegistrarWindowsTest | , |
| RegisterUnregister | |||
| ) |
Definition at line 131 of file plugin_registrar_windows_unittests.cc.
References message, flutter::PluginRegistrarWindows::RegisterTopLevelWindowProcDelegate(), and flutter::PluginRegistrarWindows::UnregisterTopLevelWindowProcDelegate().
| flutter::TEST | ( | PluginRegistrarWindowsTest | , |
| StopsOnceHandled | |||
| ) |
Definition at line 198 of file plugin_registrar_windows_unittests.cc.
References message, and flutter::PluginRegistrarWindows::RegisterTopLevelWindowProcDelegate().
| 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 | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeDouble | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeEmptyList | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeEmptyString | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeFalse | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeFloat32Array | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeFloat64Array | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt32 | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt32Array | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt64 | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeInt64Array | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeList | |||
| ) |
| flutter::TEST | ( | StandardMessageCodec | , |
| CanEncodeAndDecodeMap | |||
| ) |
Definition at line 180 of file standard_message_codec_unittests.cc.
References CheckEncodeDecodeWithEncodePrefix().
| 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(), flutter::StandardMethodCodec::GetInstance(), and message.
| flutter::TEST | ( | StandardMethodCodec | , |
| HandlesErrorEnvelopesWithNulls | |||
| ) |
Definition at line 105 of file standard_method_codec_unittests.cc.
References flutter::MethodCodec< T >::DecodeAndProcessResponseEnvelope(), flutter::MethodCodec< T >::EncodeErrorEnvelope(), flutter::StandardMethodCodec::GetInstance(), and message.
| 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 | |||
| ) |
| flutter::TEST | ( | TextureRegistrarTest | , |
| UnregisterInvalidTexture | |||
| ) |
Definition at line 129 of file texture_registrar_unittests.cc.
References flutter::PluginRegistrar::texture_registrar(), and flutter::TextureRegistrar::UnregisterTexture().
| flutter::TEST_F | ( | DartProjectTest | , |
| DartEntrypointArguments | |||
| ) |
Definition at line 45 of file dart_project_unittests.cc.
References flutter::DartProject::dart_entrypoint_arguments(), and flutter::DartProject::set_dart_entrypoint_arguments().
| flutter::TEST_F | ( | DartProjectTest | , |
| ProjectWithCustomPaths | |||
| ) |
Definition at line 38 of file dart_project_unittests.cc.
| flutter::TEST_F | ( | DartProjectTest | , |
| StandardProjectFormat | |||
| ) |
Definition at line 31 of file dart_project_unittests.cc.
|
static |
Definition at line 80 of file keyboard_key_embedder_handler.cc.
|
inline |
Definition at line 34 of file keyboard_utils.h.
References kDeadKeyCharMask.
Referenced by flutter::KeyboardKeyChannelHandler::KeyboardHook().
|
static |
Definition at line 61 of file flutter_windows_engine.h.
Referenced by flutter::FlutterWindowsEngine::Run(), and flutter::testing::TEST_F().
|
constexpr |
Definition at line 15 of file keyboard_utils.h.
Referenced by flutter::FlutterWindow::HandleMessage(), flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded(), and flutter::testing::TEST().
|
constexpr |
Definition at line 30 of file keyboard_utils.h.
Referenced by flutter::KeyboardManager::HandleMessage(), and UndeadChar().
|
staticconstexpr |
Definition at line 404 of file platform_handler.cc.
Referenced by flutter::PlatformHandler::RequestAppExit().
|
constexpr |
Definition at line 18 of file system_utils.h.
|
constexpr |
Definition at line 20 of file system_utils.h.
|
constexpr |
Definition at line 16 of file accessibility_bridge.cc.
|
constexpr |
Definition at line 56 of file flutter_windows_engine.h.
Referenced by flutter::AccessibilityPlugin::Announce(), FlutterDesktopPluginRegistrarGetView(), flutter::PlatformHandler::GetHasStrings(), flutter::PlatformHandler::GetPlainText(), flutter::FlutterWindowsView::IsImplicitView(), flutter::FlutterWindowsEngine::RemoveView(), flutter::PlatformHandler::SetPlainText(), flutter::testing::TEST(), flutter::testing::TEST_F(), and flutter::testing::PlatformHandlerTest::UseEngineWithView().
|
constexpr |
Definition at line 21 of file keyboard_utils.h.
Referenced by flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded().
|
constexpr |
Definition at line 18 of file keyboard_utils.h.
Referenced by flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded().
|
constexpr |
Definition at line 12 of file compositor_software.cc.
Referenced by flutter::CompositorSoftware::Present().
|
static |
Definition at line 16 of file task_runner_window.cc.
Referenced by flutter::TaskRunnerWindow::PollOnce().
|
constexpr |
Definition at line 19 of file keyboard_utils.h.
Referenced by flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded(), and flutter::testing::TEST().
|
constexpr |
Definition at line 20 of file keyboard_utils.h.
Referenced by flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded(), and flutter::testing::TEST().
|
constexpr |
Definition at line 16 of file keyboard_utils.h.
Referenced by flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded(), flutter::testing::TEST(), and flutter::testing::TEST_F().
|
constexpr |
Definition at line 17 of file keyboard_utils.h.
Referenced by flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded(), flutter::testing::TEST(), and flutter::testing::TEST_F().
|
constexpr |
Definition at line 14 of file keyboard_utils.h.
Referenced by flutter::FlutterWindow::HandleMessage(), flutter::KeyboardKeyEmbedderHandler::SyncModifiersIfNeeded(), and flutter::testing::TEST().
|
static |
Definition at line 13 of file task_runner_window.cc.