Home
last modified time | relevance | path

Searched refs:ciface (Results 1 – 25 of 135) sorted by relevance

123456

/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControllerInterface/
H A DControllerInterface.cpp64 ciface::SDL::Init(); in Initialize()
70 ciface::evdev::Init(); in Initialize()
76 ciface::DualShockUDPClient::Init(); in Initialize()
122 ciface::SDL::PopulateDevices(); in RefreshDevices()
128 ciface::evdev::PopulateDevices(); in RefreshDevices()
131 ciface::Pipes::PopulateDevices(); in RefreshDevices()
170 ciface::Win32::DeInit(); in Shutdown()
176 ciface::OSX::DeInit(); in Shutdown()
177 ciface::Quartz::DeInit(); in Shutdown()
180 ciface::SDL::DeInit(); in Shutdown()
[all …]
H A DControllerInterface.h41 class ControllerInterface : public ciface::Core::DeviceContainer
51 void AddDevice(std::shared_ptr<ciface::Core::Device> device);
52 void RemoveDevice(std::function<bool(const ciface::Core::Device*)> callback);
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/DolphinQt/Config/ControllerInterface/
H A DDualShockUDPClientWidget.cpp30 m_servers_enabled->setChecked(Config::Get(ciface::DualShockUDPClient::Settings::SERVERS_ENABLED)); in CreateWidgets()
79 Config::Get(ciface::DualShockUDPClient::Settings::SERVER_ADDRESS); in RefreshServerList()
80 const auto server_port_setting = Config::Get(ciface::DualShockUDPClient::Settings::SERVER_PORT); in RefreshServerList()
85 const auto& servers_setting = Config::Get(ciface::DualShockUDPClient::Settings::SERVERS); in RefreshServerList()
86 Config::SetBaseOrCurrent(ciface::DualShockUDPClient::Settings::SERVERS, in RefreshServerList()
90 Config::SetBase(ciface::DualShockUDPClient::Settings::SERVER_ADDRESS, ""); in RefreshServerList()
91 Config::SetBase(ciface::DualShockUDPClient::Settings::SERVER_PORT, 0); in RefreshServerList()
94 const auto& servers_setting = Config::Get(ciface::DualShockUDPClient::Settings::SERVERS); in RefreshServerList()
121 const auto& servers_setting = Config::Get(ciface::DualShockUDPClient::Settings::SERVERS); in OnServerRemoved()
135 Config::SetBaseOrCurrent(ciface::DualShockUDPClient::Settings::SERVERS, new_server_setting); in OnServerRemoved()
[all …]
H A DDualShockUDPClientAddServerDialog.cpp43 new QLineEdit(QString::fromStdString(ciface::DualShockUDPClient::DEFAULT_SERVER_ADDRESS)); in CreateWidgets()
48 m_server_port->setValue(ciface::DualShockUDPClient::DEFAULT_SERVER_PORT); in CreateWidgets()
72 const auto& servers_setting = Config::Get(ciface::DualShockUDPClient::Settings::SERVERS); in OnServerAdded()
73 Config::SetBaseOrCurrent(ciface::DualShockUDPClient::Settings::SERVERS, in OnServerAdded()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/DolphinQt/Config/Mapping/
H A DMappingCommon.h25 const ciface::Core::DeviceQualifier& control_device,
26 const ciface::Core::DeviceQualifier& default_device,
29 QString DetectExpression(QPushButton* button, ciface::Core::DeviceContainer& device_container,
31 const ciface::Core::DeviceQualifier& default_device,
36 void RemoveSpuriousTriggerCombinations(std::vector<ciface::Core::DeviceContainer::InputDetection>*);
38 QString BuildExpression(const std::vector<ciface::Core::DeviceContainer::InputDetection>&,
39 const ciface::Core::DeviceQualifier& default_device, Quote quote);
H A DMappingCommon.cpp37 const ciface::Core::DeviceQualifier& control_device, in GetExpressionForControl()
38 const ciface::Core::DeviceQualifier& default_device, Quote quote) in GetExpressionForControl()
62 QString DetectExpression(QPushButton* button, ciface::Core::DeviceContainer& device_container, in DetectExpression()
64 const ciface::Core::DeviceQualifier& default_device, Quote quote) in DetectExpression()
119 std::vector<ciface::Core::DeviceContainer::InputDetection>* detections) in RemoveSpuriousTriggerCombinations()
134 BuildExpression(const std::vector<ciface::Core::DeviceContainer::InputDetection>& detections, in BuildExpression()
135 const ciface::Core::DeviceQualifier& default_device, Quote quote) in BuildExpression()
137 std::vector<const ciface::Core::DeviceContainer::InputDetection*> pressed_inputs; in BuildExpression()
149 ciface::Core::DeviceQualifier device_qualifier; in BuildExpression()
H A DIOWindow.cpp105 ciface::ExpressionParser::Lexer lexer(document()->toPlainText().toStdString()); in highlightBlock()
107 std::vector<ciface::ExpressionParser::Token> tokens; in highlightBlock()
110 using ciface::ExpressionParser::TokenType; in highlightBlock()
171 if (ciface::ExpressionParser::ParseStatus::Successful != tokenize_status) in highlightBlock()
177 ciface::ExpressionParser::RemoveInertTokens(&tokens); in highlightBlock()
178 const auto parse_status = ciface::ExpressionParser::ParseTokens(tokens); in highlightBlock()
183 if (ciface::ExpressionParser::ParseStatus::Successful != parse_status.status) in highlightBlock()
220 std::shared_ptr<ciface::Core::Device> IOWindow::GetSelectedDevice() in GetSelectedDevice()
456 if (ciface::ExpressionParser::ParseStatus::SyntaxError == m_reference->GetParseStatus()) in OnDialogButtonPressed()
H A DIOWindow.h59 std::shared_ptr<ciface::Core::Device> GetSelectedDevice();
113 ciface::Core::DeviceQualifier m_devq;
115 std::shared_ptr<ciface::Core::Device> m_selected_device;
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControllerEmu/
H A DControllerEmu.cpp44 ciface::ExpressionParser::ControlEnvironment env(devi, GetDefaultDevice(), m_expression_vars); in UpdateReferences()
49 void EmulatedController::UpdateReferences(ciface::ExpressionParser::ControlEnvironment& env) in UpdateReferences()
77 ciface::ExpressionParser::ControlEnvironment env(devi, GetDefaultDevice(), m_expression_vars); in UpdateSingleControlReference()
86 const ciface::Core::DeviceQualifier& EmulatedController::GetDefaultDevice() const in GetDefaultDevice()
93 ciface::Core::DeviceQualifier devq; in SetDefaultDevice()
98 void EmulatedController::SetDefaultDevice(ciface::Core::DeviceQualifier devq) in SetDefaultDevice()
138 void EmulatedController::LoadDefaults(const ControllerInterface& ciface) in LoadDefaults() argument
144 const std::string& default_device_string = ciface.GetDefaultDeviceString(); in LoadDefaults()
H A DControllerEmu.h176 virtual void LoadDefaults(const ControllerInterface& ciface);
182 const ciface::Core::DeviceQualifier& GetDefaultDevice() const;
184 void SetDefaultDevice(ciface::Core::DeviceQualifier devq);
222 ciface::ExpressionParser::ControlEnvironment::VariableContainer m_expression_vars;
224 void UpdateReferences(ciface::ExpressionParser::ControlEnvironment& env);
227 ciface::Core::DeviceQualifier m_default_device;
/dports/databases/grass7/grass-7.8.6/lib/python/temporal/testsuite/
H A Dtest_register_function.py97 ciface = tgis.get_tgis_c_library_interface()
98ciface.write_raster_timestamp("register_map_1", tgis.get_current_mapset(), "1 Jan 2001/2 Jan 2001")
99ciface.write_raster_timestamp("register_map_2", tgis.get_current_mapset(), "2 Jan 2001/3 Jan 2001")
128 ciface = tgis.get_tgis_c_library_interface()
154 ciface = tgis.get_tgis_c_library_interface()
156 ciface.write_raster_timestamp("register_map_1", tgis.get_current_mapset(), "1 day")
246 ciface = tgis.get_tgis_c_library_interface()
297 ciface = tgis.get_tgis_c_library_interface()
370 ciface = tgis.get_tgis_c_library_interface()
472 ciface = tgis.get_tgis_c_library_interface()
[all …]
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControlReference/
H A DControlReference.h38 ciface::ExpressionParser::ParseStatus GetParseStatus() const;
39 void UpdateReference(ciface::ExpressionParser::ControlEnvironment& env);
48 std::unique_ptr<ciface::ExpressionParser::Expression> m_parsed_expression;
49 ciface::ExpressionParser::ParseStatus m_parse_status;
H A DControlReference.cpp7 using namespace ciface::ExpressionParser;
27 void ControlReference::UpdateReference(ciface::ExpressionParser::ControlEnvironment& env) in UpdateReference()
/dports/databases/grass7/grass-7.8.6/lib/python/temporal/
H A Dspace_time_datasets.py230 return self.ciface.has_raster_timestamp(self.get_name(),
268 check = self.ciface.write_raster_timestamp(self.get_name(),
296 check = self.ciface.remove_raster_timestamp(self.get_name(),
311 return self.ciface.raster_map_exists(self.get_name(),
331 kvp = self.ciface.read_raster_info(self.get_name(),
578 return self.ciface.has_raster3d_timestamp(self.get_name(),
656 return self.ciface.raster3d_map_exists(self.get_name(),
677 kvp = self.ciface.read_raster3d_info(self.get_name(),
887 return self.ciface.has_vector_timestamp(self.get_name(),
960 return self.ciface.vector_map_exists(self.get_name(),
[all …]
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControllerInterface/Win32/
H A DWin32.cpp31 ciface::DInput::PopulateDevices(s_hwnd); in WindowProc()
32 ciface::XInput::PopulateDevices(); in WindowProc()
39 void ciface::Win32::Init(void* hwnd) in Init()
121 void ciface::Win32::PopulateDevices(void* hwnd) in PopulateDevices()
137 void ciface::Win32::DeInit() in DeInit()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControllerInterface/Android/
H A DAndroid.cpp9 namespace ciface::Android namespace
29 g_controller_interface.AddDevice(std::make_shared<ciface::Touch::Touchscreen>( in PopulateDevices()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Core/InputCommon/ControllerInterface/Quartz/
H A DQuartz.mm9 namespace ciface::Quartz
22 } // namespace ciface::Quartz
/dports/emulators/qemu60/qemu-6.0.0/roms/openbios/forth/system/
H A Dciface.fs2 0 value ciface-ph
8 active-package to ciface-ph
81 dup cstrlen ciface-ph find-method
251 ciface-ph " cif-claim" rot find-method
257 ciface-ph " cif-release" rot find-method
368 ciface-ph find-method 0= if -1 exit then
376 ciface-ph find-method 0= if -1 exit then
/dports/emulators/qemu5/qemu-5.2.0/roms/openbios/forth/system/
H A Dciface.fs2 0 value ciface-ph
8 active-package to ciface-ph
81 dup cstrlen ciface-ph find-method
251 ciface-ph " cif-claim" rot find-method
257 ciface-ph " cif-release" rot find-method
368 ciface-ph find-method 0= if -1 exit then
376 ciface-ph find-method 0= if -1 exit then
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/roms/openbios/forth/system/
H A Dciface.fs2 0 value ciface-ph
8 active-package to ciface-ph
81 dup cstrlen ciface-ph find-method
251 ciface-ph " cif-claim" rot find-method
257 ciface-ph " cif-release" rot find-method
368 ciface-ph find-method 0= if -1 exit then
376 ciface-ph find-method 0= if -1 exit then
/dports/emulators/qemu42/qemu-4.2.1/roms/openbios/forth/system/
H A Dciface.fs2 0 value ciface-ph
8 active-package to ciface-ph
81 dup cstrlen ciface-ph find-method
251 ciface-ph " cif-claim" rot find-method
257 ciface-ph " cif-release" rot find-method
368 ciface-ph find-method 0= if -1 exit then
376 ciface-ph find-method 0= if -1 exit then
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/openbios/forth/system/
H A Dciface.fs2 0 value ciface-ph
8 active-package to ciface-ph
81 dup cstrlen ciface-ph find-method
251 ciface-ph " cif-claim" rot find-method
257 ciface-ph " cif-release" rot find-method
368 ciface-ph find-method 0= if -1 exit then
376 ciface-ph find-method 0= if -1 exit then
/dports/emulators/qemu-utils/qemu-4.2.1/roms/openbios/forth/system/
H A Dciface.fs2 0 value ciface-ph
8 active-package to ciface-ph
81 dup cstrlen ciface-ph find-method
251 ciface-ph " cif-claim" rot find-method
257 ciface-ph " cif-release" rot find-method
368 ciface-ph find-method 0= if -1 exit then
376 ciface-ph find-method 0= if -1 exit then
/dports/emulators/qemu/qemu-6.2.0/roms/openbios/forth/system/
H A Dciface.fs2 0 value ciface-ph
8 active-package to ciface-ph
81 dup cstrlen ciface-ph find-method
251 ciface-ph " cif-claim" rot find-method
257 ciface-ph " cif-release" rot find-method
368 ciface-ph find-method 0= if -1 exit then
376 ciface-ph find-method 0= if -1 exit then
/dports/devel/kf5-ktexteditor/ktexteditor-5.89.0/src/export/
H A Dabstractexporter.h30 … if (KTextEditor::ConfigInterface *ciface = qobject_cast<KTextEditor::ConfigInterface *>(m_view)) { in m_view() local
31 QVariant variant = ciface->configValue(QStringLiteral("background-color")); in m_view()

123456