className stringlengths 1 167 | headerPath stringlengths 14 166 | description stringlengths 0 1.62k | module stringlengths 0 76 | code stringlengths 0 11.4k | variables listlengths 0 395 |
|---|---|---|---|---|---|
ITimingViewExtender::OnBeginSession | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewExtender.h | Called to set up any data at the end of the timing view session | TraceInsights | void OnBeginSession ( [ITimingViewSession](API\Developer\TraceInsights\Insights\ITimingViewSession) & InSession ) | [] |
ITimingViewExtender::OnEndSession | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewExtender.h | Called to clear out any data at the end of the timing view session | TraceInsights | void OnEndSession ( [ITimingViewSession](API\Developer\TraceInsights\Insights\ITimingViewSession) & InSession ) | [] |
ITimingViewExtender::Tick | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewExtender.h | Called each frame. If any new tracks are created they can be added via ITimingViewSession::Add*Track() | TraceInsights | void Tick ( [ITimingViewSession](API\Developer\TraceInsights\Insights\ITimingViewSession) & InSession, const [TraceServices::IAnalysisSession](API\Developer\TraceServices\TraceServices\Model\IAnalysisSession) & InAnalysisSession ) | [] |
ITimingViewExtender::~ITimingViewExtender | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewExtender.h | TraceInsights | virtual ~ITimingViewExtender() | [] | |
ITimingViewExtender | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewExtender.h | TraceInsights | class ITimingViewExtender : public [IModularFeature](API\Runtime\Core\Features\IModularFeature) | [] | |
ITimingViewSession::AddBottomDockedTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Adds a new bottom docked track. | TraceInsights | void AddBottomDockedTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::AddForegroundTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Adds a new foreground track. | TraceInsights | void AddForegroundTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::AddOverlayWidget | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Adds a slot to the overlay. | TraceInsights | void AddOverlayWidget ( const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > & InWidget ) | [] |
ITimingViewSession::AddTopDockedTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Adds a new top docked track. | TraceInsights | void AddTopDockedTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::AddScrollableTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Adds a new scrollable track. | TraceInsights | void AddScrollableTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::AddTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Adds a new track, specifying the location. | TraceInsights | void AddTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track, [ETimingTrackLocation](API\Developer\TraceInsights\Insights\ViewModels\ETimingTrackLocation) Location ) | [] |
ITimingViewSession::FindTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Finds a track has been added via Add*Track(). | TraceInsights | [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > FindTrack ( uint64 InTrackId ) | [] |
ITimingViewSession::GetName | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the name of the view. | TraceInsights | const [FName](API\Runtime\Core\UObject\FName) & GetName() const | [] |
ITimingViewSession::GetTimeMarker | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the current marker time. | TraceInsights | double GetTimeMarker() const | [] |
ITimingViewSession::InvalidateScrollableTracksOrder | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Marks the scrollable tracks as not being in the correct order, so they will be re-sorted. | TraceInsights | void InvalidateScrollableTracksOrder() | [] |
ITimingViewSession::OnCustomTimeMarkerChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when a custom time marker has changed. | TraceInsights | [FCustomTimeMarkerChangedDelegate](API\Developer\TraceInsights\Insights\FCustomTimeMarkerChangedDelegate) & OnCustomTimeMarkerChanged() | [] |
ITimingViewSession::OnHoveredEventChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when the timing event being hovered by the mouse has changed. | TraceInsights | [FHoveredEventChangedDelegate](API\Developer\TraceInsights\Insights\FHoveredEventChangedDelegate) & OnHoveredEventChanged() | [] |
ITimingViewSession::OnHoveredTrackChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when the timing track being hovered by the mouse has changed. | TraceInsights | [FHoveredTrackChangedDelegate](API\Developer\TraceInsights\Insights\FHoveredTrackChangedDelegate) & OnHoveredTrackChanged() | [] |
ITimingViewSession::OnSelectedEventChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when the selected timing event has changed. | TraceInsights | [FSelectedEventChangedDelegate](API\Developer\TraceInsights\Insights\FSelectedEventChangedDelegate) & OnSelectedEventChanged() | [] |
ITimingViewSession::OnSelectedTrackChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when the selected timing track has changed. | TraceInsights | [FSelectedTrackChangedDelegate](API\Developer\TraceInsights\Insights\FSelectedTrackChangedDelegate) & OnSelectedTrackChanged() | [] |
ITimingViewSession::OnSelectionChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when the selection have been changed. | TraceInsights | [FSelectionChangedDelegate](API\Developer\TraceInsights\Insights\FSelectionChangedDelegate) & OnSelectionChanged() | [] |
ITimingViewSession::OnTrackAdded | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when a new track is added. | TraceInsights | [Insights::FTrackAddedDelegate](API\Developer\TraceInsights\Insights\FTrackAddedDelegate) & OnTrackAdded() | [] |
ITimingViewSession::OnTimeMarkerChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when the time marker has changed. | TraceInsights | [FTimeMarkerChangedDelegate](API\Developer\TraceInsights\Insights\FTimeMarkerChangedDelegate) & OnTimeMarkerChanged() | [] |
ITimingViewSession::OnTrackVisibilityChanged | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when the track visibility has changed. | TraceInsights | [FTrackVisibilityChangedDelegate](API\Developer\TraceInsights\Insights\FTrackVisibilityChangedDelegate) & OnTrackVisibilityChanged() | [] |
ITimingViewSession::PreventThrottling | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Prevents mouse movements from throttling application updates. | TraceInsights | void PreventThrottling() | [] |
ITimingViewSession::RemoveBottomDockedTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Removes a bottom docked track. Returns whether the track was removed or not. | TraceInsights | bool RemoveBottomDockedTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::RemoveForegroundTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Removes a foreground track. Returns whether the track was removed or not. | TraceInsights | bool RemoveForegroundTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::RemoveScrollableTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Removes a scrollable track. Returns whether the track was removed or not. | TraceInsights | bool RemoveScrollableTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::RemoveTopDockedTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Removes a top docked track. Returns whether the track was removed or not. | TraceInsights | bool RemoveTopDockedTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::RemoveTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Removes a track. Returns whether the track was removed or not. | TraceInsights | bool RemoveTrack ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) > Track ) | [] |
ITimingViewSession::OnTrackRemoved | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Gets the delegate to be invoked when a track is removed. | TraceInsights | [Insights::FTrackRemovedDelegate](API\Developer\TraceInsights\Insights\FTrackRemovedDelegate) & OnTrackRemoved() | [] |
ITimingViewSession::ResetEventFilter | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Resets the event filter back to empty. | TraceInsights | void ResetEventFilter() | [] |
ITimingViewSession::ResetSelectedEvent | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Resets the selected event back to empty. | TraceInsights | void ResetSelectedEvent() | [] |
ITimingViewSession::SetAndCenterOnTimeMarker | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Sets the current marker time and center the view on it | TraceInsights | void SetAndCenterOnTimeMarker ( double InTimeMarker ) | [] |
ITimingViewSession::SetTimeMarker | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Sets the current marker time. | TraceInsights | void SetTimeMarker ( double InTimeMarker ) | [] |
ITimingViewSession::~ITimingViewSession | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | TraceInsights | virtual ~ITimingViewSession() | [] | |
ITimingViewSession | /Engine/Source/Developer/TraceInsights/Public/Insights/ITimingViewSession.h | Hosts a number of timing view visualizers, represents a session of the timing view. | TraceInsights | class ITimingViewSession | [] |
IUnrealInsightsModule::ConnectToStore | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Connects to a specified store.
If connected succesfully or not. | TraceInsights | bool ConnectToStore ( const TCHAR * InStoreHost, uint32 InStorePort ) | [] |
IUnrealInsightsModule::CreateDefaultStore | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Creates the default trace store (for "Browser" mode). | TraceInsights | void CreateDefaultStore() | [] |
IUnrealInsightsModule::CreateSessionBrowser | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Called when the application starts in "Browser" mode. | TraceInsights | void CreateSessionBrowser ( const [FCreateSessionBrowserParams](API\Developer\TraceInsights\Insights\FCreateSessionBrowserParams) & Params ) | [] |
IUnrealInsightsModule::CreateSessionViewer | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Called when the application starts in "Viewer" mode. | TraceInsights | void CreateSessionViewer ( bool bAllowDebugTools ) | [] |
IUnrealInsightsModule::FindMajorTabConfig | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Finds a major tab config for the specified id. | TraceInsights | const [FInsightsMajorTabConfig](API\Developer\TraceInsights\Insights\FInsightsMajorTabConfig) & FindMajorTabConfig ( const [FName](API\Runtime\Core\UObject\FName) & InMajorTabId ) const | [] |
IUnrealInsightsModule::Exec | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Execute command. | TraceInsights | bool Exec ( const TCHAR * Cmd, [FOutputDevice](API\Runtime\Core\Misc\FOutputDevice) & Ar ) | [] |
IUnrealInsightsModule::FindMajorTabLayoutExtension | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | TraceInsights | [FOnRegisterMajorTabExtensions](API\Developer\TraceInsights\Insights\FOnRegisterMajorTabExtensions) * FindMajorTabLayoutExtension ( const [FName](API\Runtime\Core\UObject\FName) & InMajorTabId ) | [] | |
IUnrealInsightsModule::GetAnalysisSession | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Gets the current analysis session. | TraceInsights | [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< const [TraceServices::IAnalysisSession](API\Developer\TraceServices\TraceServices\Model\IAnalysisSession) > GetAnalysisSession() const | [] |
IUnrealInsightsModule::InitializeTesting | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Called to initialize testing in stand alone Insights. | TraceInsights | void InitializeTesting ( bool InInitAutomationModules, bool InAutoQuit ) | [] |
IUnrealInsightsModule::GetStoreClient | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Gets the store client. | TraceInsights | [UE::Trace::FStoreClient](API\Developer\TraceAnalysis\Trace\FStoreClient) * GetStoreClient() | [] |
IUnrealInsightsModule::OnMajorTabCreated | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Callback invoked when a major tab is created | TraceInsights | [FOnInsightsMajorTabCreated](API\Developer\TraceInsights\Insights\FOnInsightsMajorTabCreated) & OnMajorTabCreated() | [] |
IUnrealInsightsModule::OnRegisterMajorTabExtension | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Allows for registering a delegate callback for populating aFInsightsMajorTabExtenderstructure. | TraceInsights | [FOnRegisterMajorTabExtensions](API\Developer\TraceInsights\Insights\FOnRegisterMajorTabExtensions) & OnRegisterMajorTabExtension ( const [FName](API\Runtime\Core\UObject\FName) & InMajorTabId ) | [] |
IUnrealInsightsModule::RegisterComponent | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Registers anIInsightsComponent. The component willInitialize(). | TraceInsights | void RegisterComponent ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IInsightsComponent](API\Developer\TraceInsights\Insights\IInsightsComponent) > Component ) | [] |
IUnrealInsightsModule::RegisterMajorTabConfig | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Registers a major tab layout. This defines how the major tab will appear when spawned. If this is not called prior to tabs being spawned then the built-in default layout will be used. | TraceInsights | void RegisterMajorTabConfig ( const [FName](API\Runtime\Core\UObject\FName) & InMajorTabId, const [FInsightsMajorTabConfig](API\Developer\TraceInsights\Insights\FInsightsMajorTabConfig) & InConfig ) | [] |
IUnrealInsightsModule::ScheduleCommand | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Called to schedule a command to run after session analysis is complete. Intended for running Automation RunTests commands. | TraceInsights | void ScheduleCommand ( const [FString](API\Runtime\Core\Containers\FString) & InCmd ) | [] |
IUnrealInsightsModule::SetUnrealInsightsLayoutIni | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Sets the ini path for saving persistent layout data. | TraceInsights | void SetUnrealInsightsLayoutIni ( const [FString](API\Runtime\Core\Containers\FString) & InIniPath ) | [] |
IUnrealInsightsModule::ShutdownUserInterface | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Called when the application shutsdown. | TraceInsights | void ShutdownUserInterface() | [] |
IUnrealInsightsModule::StartAnalysisForLastLiveSession | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Starts analysis of the last live session. Called when the application starts in "Viewer" mode. On failure, if InRetryTime is > 0, retry connecting every frame for RetryTime seconds | TraceInsights | void StartAnalysisForLastLiveSession ( float InRetryTime ) | [] |
IUnrealInsightsModule::StartAnalysisForTraceFile | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Starts analysis of the specified *.utrace file. Called when the application starts in "Viewer" mode. | TraceInsights | void StartAnalysisForTraceFile ( const TCHAR * InTraceFile, bool InAutoQuit ) | [] |
IUnrealInsightsModule::StartAnalysisForTrace | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Starts analysis of the specified trace. Called when the application starts in "Viewer" mode. | TraceInsights | void StartAnalysisForTrace ( uint32 InTraceId, bool InAutoQuit ) | [] |
IUnrealInsightsModule::UnregisterComponent | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Unregisters anIInsightsComponent. The component will Shutdown(). | TraceInsights | void UnregisterComponent ( [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [IInsightsComponent](API\Developer\TraceInsights\Insights\IInsightsComponent) > Component ) | [] |
IUnrealInsightsModule::UnregisterMajorTabConfig | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Unregisters a major tab layout. This will revert the major tab to spawning with its default layout | TraceInsights | void UnregisterMajorTabConfig ( const [FName](API\Runtime\Core\UObject\FName) & InMajorTabId ) | [] |
IUnrealInsightsModule | /Engine/Source/Developer/TraceInsights/Public/Insights/IUnrealInsightsModule.h | Interface for an Unreal Insights module. | TraceInsights | class IUnrealInsightsModule : public [IModuleInterface](API\Runtime\Core\Modules\IModuleInterface) | [] |
FInsightsTestUtils::AnalyzeTrace | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/InsightsTestUtils.h | TraceInsights | bool AnalyzeTrace ( const TCHAR * Path ) const | [] | |
FInsightsTestUtils::FInsightsTestUtils | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/InsightsTestUtils.h | TraceInsights | FInsightsTestUtils ( [FAutomationTestBase](API\Runtime\Core\Misc\FAutomationTestBase) * Test ) | [] | |
FInsightsTestUtils | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/InsightsTestUtils.h | TraceInsights | class FInsightsTestUtils | [] | |
FCheckValues | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | struct FCheckValues | [
{
"type": "double",
"name": "EnumerationDuration",
"description": ""
},
{
"type": "uint64",
"name": "EventCount",
"description": ""
},
{
"type": "double",
"name": "SessionDuration",
"description": ""
},
{
"type": "uint32",
"name": "SumDepth",
"description"... | |
FEnumerateTestParams | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | struct FEnumerateTestParams | [
{
"type": "double",
"name": "Interval",
"description": ""
},
{
"type": "int32",
"name": "NumEnumerations",
"description": ""
},
{
"type": "TraceServices::...",
"name": "SortOrder",
"description": ""
}
] | |
FTimingProfilerTests::RunEnumerateAllTracksBenchmark | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | static void RunEnumerateAllTracksBenchmark ( const [FEnumerateTestParams](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FEnumerateTestPa-) & InParams, [FCheckValues](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FCheckValues) & OutCheckValues ) | [] | |
FTimingProfilerTests::GetTimelineIndex | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | static uint32 GetTimelineIndex ( const TCHAR * InName ) | [] | |
FTimingProfilerTests::RunEnumerateAsyncBenchmark | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | static void RunEnumerateAsyncBenchmark ( const [FEnumerateTestParams](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FEnumerateTestPa-) & InParams, [FCheckValues](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FCheckValues) & OutCheckValues ) | [] | |
FTimingProfilerTests::RunEnumerateAsyncAllTracksBenchmark | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | static void RunEnumerateAsyncAllTracksBenchmark ( const [FEnumerateTestParams](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FEnumerateTestPa-) & InParams, [FCheckValues](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FCheckValues) & OutCheckValues ) | [] | |
FTimingProfilerTests::RunEnumerateBenchmark | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | static void RunEnumerateBenchmark ( const [FEnumerateTestParams](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FEnumerateTestPa-) & InParams, [FCheckValues](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FCheckValues) & OutCheckValues ) | [] | |
FTimingProfilerTests::RunEnumerateSyncAsyncComparisonTest | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | static bool RunEnumerateSyncAsyncComparisonTest ( [FAutomationTestBase](API\Runtime\Core\Misc\FAutomationTestBase) & Test, const [FEnumerateTestParams](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FEnumerateTestPa-) & InParam, bool bGameThreadOnly ) | [] | |
FTimingProfilerTests::VerifyCheckValues | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | TraceInsights | static void VerifyCheckValues ( [FAutomationTestBase](API\Runtime\Core\Misc\FAutomationTestBase) & Test, [FCheckValues](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FCheckValues) First, [FCheckValues](API\Developer\TraceInsights\Insights\Tests\FTimingProfilerTests\FCheckValues) Second ) | [] | |
FTimingProfilerTests | /Engine/Source/Developer/TraceInsights/Public/Insights/Tests/TimingProfilerTests.h | A class containing code for parametric tests for Insight functionality Intended to be called from automatic or user triggered tests | TraceInsights | class FTimingProfilerTests | [] |
EDrawEventMode | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/BaseTimingTrack.h | TraceInsights | enum EDrawEventMode { None = 0, Content = (1 << 0), Hovered = (1 << 1), Selected = (1 << 2), SelectedAndHovered = Hovered | Selected, } | [] | |
EGraphOptions | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/GraphTrack.h | Various available options for display. | TraceInsights | enum EGraphOptions { None = 0, ShowDebugInfo = (1 << 0), ShowPoints = (1 << 1), ShowPointsWithBorder = (1 << 2), ShowLines = (1 << 3), ShowPolygon = (1 << 4), UseEventDuration = (1 << 5), ShowBars = (1 << 6), ShowBaseline = (1 << 7), ShowVerticalAxisGrid = (1 << 8), ShowHeader = (1 << 9), FirstCustomOption = (1 << 10), DefaultEnabledOptions = None, DefaultVisibleOptions = ShowPoints | ShowPointsWithBorder | ShowLines | ShowPolygon | UseEventDuration | ShowBars, DefaultEditableOptions = ShowPoints | ShowPointsWithBorder | ShowLines | ShowPolygon | UseEventDuration | ShowBars, } | [] |
ETimingEventSearchFlags | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEventSearch.h | Search behavior flags. | TraceInsights | enum ETimingEventSearchFlags { None = 0, SearchAll = None, StopAtFirstMatch = (1 << 0), } | [] |
ETimingTrackFlags | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/BaseTimingTrack.h | TraceInsights | enum ETimingTrackFlags { None = 0, IsVisible = (1 << 0), IsDirty = (1 << 1), IsSelected = (1 << 2), IsHovered = (1 << 3), IsHeaderHovered = (1 << 4), } | [] | |
ETimingTrackLocation | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/BaseTimingTrack.h | TraceInsights | enum ETimingTrackLocation { None = 0, Scrollable = (1 << 0), TopDocked = (1 << 1), BottomDocked = (1 << 2), Foreground = (1 << 3), All = Scrollable | TopDocked | BottomDocked | Foreground, } | [] | |
ETimingTrackViewportDirtyFlags | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingTrackViewport.h | TraceInsights | enum ETimingTrackViewportDirtyFlags { None = 0, HSizeChanged = (1 << 0), HPositionChanged = (1 << 1), HScaleChanged = (1 << 2), HClippedSessionTimeChanged = (1 << 3), HInvalidated = (1 << 4), VSizeChanged = (1 << 5), VPositionChanged = (1 << 6), VLayoutChanged = (1 << 7), VInvalidated = (1 << 8), AllHorizontal = HSizeChanged | HPositionChanged | HScaleChanged | HClippedSessionTimeChanged | HInvalidated, AllVertical = VSizeChanged | VPositionChanged | VLayoutChanged | VInvalidated, All = AllHorizontal | AllVertical, } | [] | |
FAcceptAllTimingEventFilter::FilterEvent | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | Returns true if the timing event passes the filter. | TraceInsights | virtual bool FilterEvent ( const [ITimingEvent](API\Developer\TraceInsights\Insights\ViewModels\ITimingEvent) & InEvent ) const | [] |
FAcceptAllTimingEventFilter::FilterEvent | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual bool FilterEvent ( double InEventStartTime, double InEventEndTime, uint32 InEventDepth, const TCHAR * InEventName, uint64 InEventType, uint32 InEventColor ) const | [] | |
FAcceptAllTimingEventFilter::FilterTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | Returns true if the track passes the filter. | TraceInsights | virtual bool FilterTrack ( const [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) & InTrack ) const | [] |
FAcceptAllTimingEventFilter::GetChangeNumber | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | Returns a number that changes each time an attribute of this filter changes. | TraceInsights | virtual uint32 GetChangeNumber() const | [] |
FAcceptAllTimingEventFilter::GetStaticTypeName | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | static const [FName](API\Runtime\Core\UObject\FName) & GetStaticTypeName() | [] | |
FAcceptAllTimingEventFilter::GetTypeName | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual const [FName](API\Runtime\Core\UObject\FName) & GetTypeName() const | [] | |
FAcceptAllTimingEventFilter::IsKindOf | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual bool IsKindOf ( const [FName](API\Runtime\Core\UObject\FName) & InTypeName ) const | [] | |
TypeName | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | static const [FName](API\Runtime\Core\UObject\FName) TypeName = TEXT("FAcceptAllTimingEventFilter"); | [] | |
FAcceptAllTimingEventFilter::FAcceptAllTimingEventFilter | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | FAcceptAllTimingEventFilter() | [] | |
FAcceptAllTimingEventFilter::~FAcceptAllTimingEventFilter | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual ~FAcceptAllTimingEventFilter() | [] | |
FAcceptAllTimingEventFilter | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | class FAcceptAllTimingEventFilter : public [ITimingEventFilter](API\Developer\TraceInsights\Insights\ViewModels\ITimingEventFilter) | [] | |
FAcceptNoneTimingEventFilter::FilterEvent | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | Returns true if the timing event passes the filter. | TraceInsights | virtual bool FilterEvent ( const [ITimingEvent](API\Developer\TraceInsights\Insights\ViewModels\ITimingEvent) & InEvent ) const | [] |
FAcceptNoneTimingEventFilter::FilterEvent | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual bool FilterEvent ( double InEventStartTime, double InEventEndTime, uint32 InEventDepth, const TCHAR * InEventName, uint64 InEventType, uint32 InEventColor ) const | [] | |
FAcceptNoneTimingEventFilter::FilterTrack | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | Returns true if the track passes the filter. | TraceInsights | virtual bool FilterTrack ( const [FBaseTimingTrack](API\Developer\TraceInsights\Insights\ViewModels\FBaseTimingTrack) & InTrack ) const | [] |
FAcceptNoneTimingEventFilter::GetChangeNumber | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | Returns a number that changes each time an attribute of this filter changes. | TraceInsights | virtual uint32 GetChangeNumber() const | [] |
FAcceptNoneTimingEventFilter::GetStaticTypeName | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | static const [FName](API\Runtime\Core\UObject\FName) & GetStaticTypeName() | [] | |
FAcceptNoneTimingEventFilter::GetTypeName | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual const [FName](API\Runtime\Core\UObject\FName) & GetTypeName() const | [] | |
FAcceptNoneTimingEventFilter::IsKindOf | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual bool IsKindOf ( const [FName](API\Runtime\Core\UObject\FName) & InTypeName ) const | [] | |
TypeName | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | static const [FName](API\Runtime\Core\UObject\FName) TypeName = TEXT("FAcceptNoneTimingEventFilter"); | [] | |
FAcceptNoneTimingEventFilter::~FAcceptNoneTimingEventFilter | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | virtual ~FAcceptNoneTimingEventFilter() | [] | |
FAcceptNoneTimingEventFilter::FAcceptNoneTimingEventFilter | /Engine/Source/Developer/TraceInsights/Public/Insights/ViewModels/TimingEvent.h | TraceInsights | FAcceptNoneTimingEventFilter() | [] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.