Searched refs:recentlyOpenedApps (Results 1 – 8 of 8) sorted by relevance
18 let recentlyOpenedApps = registry.recentlyOpenedApps() in testAddAppToRegistry() variable19 XCTAssertNotNil(recentlyOpenedApps[0]) in testAddAppToRegistry()20 XCTAssertEqual(recentlyOpenedApps[0]["url"] as! String, urlString) in testAddAppToRegistry()32 let recentlyOpenedApps = registry2.recentlyOpenedApps() in testRegistryPersistence() variable34 XCTAssertNotNil(recentlyOpenedApps[0]) in testRegistryPersistence()35 XCTAssertEqual(recentlyOpenedApps[0]["url"] as! String, urlString) in testRegistryPersistence()45 let recentlyOpenedApps = registryNew.recentlyOpenedApps() in testRemoveOldAppFromRegistry() variable47 XCTAssertTrue(recentlyOpenedApps.count == 0) in testRemoveOldAppFromRegistry()
15 expect(appsRegistry.recentlyOpenedApps().count).to(equal(0)) in spec()25 let openedApps = appsRegistry.recentlyOpenedApps() in spec()
68 public func recentlyOpenedApps() -> [[String: Any]] { in recentlyOpenedApps() function89 let recentlyOpenedApps = self.recentlyOpenedApps() in mostRecentApp() variable91 …if let mostRecentApp = recentlyOpenedApps.max(by: { ($0["timestamp"] as? Int64) ?? 0 < ($1["timest… in mostRecentApp()
55 … return EXDevLauncherController.sharedInstance().recentlyOpenedAppsRegistry.recentlyOpenedApps() in definition()
61 - (NSDictionary *)recentlyOpenedApps;
92 val recentlyOpenedApps = getRecentlyOpenedApps() in <lambda>() constant94 return if (recentlyOpenedApps.isNotEmpty()) { in <lambda>()95 recentlyOpenedApps.maxByOrNull { it.timestamp } in <lambda>()
16 const recentlyOpenedApps = await DevLauncher.getRecentlyOpenedApps(); constant17 return recentlyOpenedApps;
74 const { data: recentlyOpenedApps = [], isFetching: isFetchingApps } = useRecentlyOpenedApps();88 const hasPackagers = devSessions.length > 0 || recentlyOpenedApps.length > 0;131 {recentlyOpenedApps.length > 0 && (134 {recentlyOpenedApps.map((app, index, arr) => {