search for: command_type

Displaying 4 results from an estimated 4 matches for "command_type".

Did you mean: command_style
2016 Mar 24
2
[test-suite] r261857 - [cmake] Add support for arbitrary metrics
...verifyscript = [] >>>>>>> - keywords = ['RUN:', 'VERIFY:'] >>>>>>> + metricscripts = {} >>>>>>> + keywords = ['RUN:', 'VERIFY:', 'METRIC:'] >>>>>>> for line_number, command_type, ln in \ >>>>>>> parseIntegratedTestScriptCommands(filename, >>>>>>> keywords): >>>>>>> if command_type == 'RUN': >>>>>>> _parseShellCommand(runscript, ln) >>>>&gt...
2016 Mar 24
0
[test-suite] r261857 - [cmake] Add support for arbitrary metrics
...[] >>>>>>>> - keywords = ['RUN:', 'VERIFY:'] >>>>>>>> + metricscripts = {} >>>>>>>> + keywords = ['RUN:', 'VERIFY:', 'METRIC:'] >>>>>>>> for line_number, command_type, ln in \ >>>>>>>> parseIntegratedTestScriptCommands(filename, >>>>>>>> keywords): >>>>>>>> if command_type == 'RUN': >>>>>>>> _parseShellCommand(runscript, ln) &gt...
2016 Mar 24
1
[test-suite] r261857 - [cmake] Add support for arbitrary metrics
...gt;>>>>> - keywords = ['RUN:', 'VERIFY:'] >>>>>>>>> + metricscripts = {} >>>>>>>>> + keywords = ['RUN:', 'VERIFY:', 'METRIC:'] >>>>>>>>> for line_number, command_type, ln in \ >>>>>>>>> parseIntegratedTestScriptCommands(filename, >>>>>>>>> keywords): >>>>>>>>> if command_type == 'RUN': >>>>>>>>> _parseShellCommand(ru...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...t;<ins>+// Copyright 2007 by Kevin Smith +// released under the MIT-style wxruby2 license + +#if !defined(_wxAuiNotebookEvent_h_) +#define _wxAuiNotebookEvent_h_ + + +// aui notebook event class + +class wxAuiNotebookEvent : public wxNotifyEvent +{ +public: + wxAuiNotebookEvent(wxEventType command_type = wxEVT_NULL, + int win_id = 0) + : wxNotifyEvent(command_type, win_id) + { + old_selection = -1; + selection = -1; + drag_source = NULL; + } + + wxEvent *Clone() const { return new wxAuiNotebookEvent(*this); } + + void SetSelection(in...