Home
last modified time | relevance | path

Searched refs:EventName (Results 1 – 25 of 1266) sorted by relevance

12345678910>>...51

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom/
H A DCodeEventReferenceExpressionTest.cs44 Assert.IsNotNull (cere.EventName, "#1"); in Constructor0()
45 Assert.AreEqual (string.Empty, cere.EventName, "#2"); in Constructor0()
49 cere.EventName = eventName; in Constructor0()
50 Assert.IsNotNull (cere.EventName, "#4"); in Constructor0()
51 Assert.AreSame (eventName, cere.EventName, "#5"); in Constructor0()
53 cere.EventName = null; in Constructor0()
54 Assert.IsNotNull (cere.EventName, "#6"); in Constructor0()
73 Assert.AreEqual ("mono", cere.EventName, "#1"); in Constructor1()
77 cere.EventName = null; in Constructor1()
78 Assert.IsNotNull (cere.EventName, "#4"); in Constructor1()
[all …]
H A DCodeRemoveEventStatementTest.cs46 Assert.AreEqual (string.Empty, caes.Event.EventName, "#3"); in Constructor0()
58 Assert.AreEqual (string.Empty, caes.Event.EventName, "#2"); in Constructor1()
64 Assert.AreEqual (string.Empty, caes.Event.EventName, "#6"); in Constructor1()
80 Assert.AreEqual (string.Empty, caes.Event.EventName, "#14"); in Constructor1()
92 Assert.AreEqual ("mono", caes.Event.EventName, "#2"); in Constructor2()
H A DCodeAttachEventStatementTest.cs46 Assert.AreEqual (string.Empty, caes.Event.EventName, "#3"); in Constructor0()
58 Assert.AreEqual (string.Empty, caes.Event.EventName, "#2"); in Constructor1()
64 Assert.AreEqual (string.Empty, caes.Event.EventName, "#6"); in Constructor1()
80 Assert.AreEqual (string.Empty, caes.Event.EventName, "#14"); in Constructor1()
92 Assert.AreEqual ("mono", caes.Event.EventName, "#2"); in Constructor2()
H A DCodeEventReferenceExpressionCas.cs56 Assert.AreEqual (String.Empty, cere.EventName, "EventName"); in Constructor0_Deny_Unrestricted()
57 cere.EventName = "mono"; in Constructor0_Deny_Unrestricted()
68 Assert.AreEqual ("mono", cere.EventName, "EventName"); in Constructor1_Deny_Unrestricted()
69 cere.EventName = String.Empty; in Constructor1_Deny_Unrestricted()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.DiagnosticSource/tests/
H A DDiagnosticSourceEventSourceBridgeTests.cs47 Assert.Equal("TestEvent1", eventSourceListener.LastEvent.EventName); in TestSpecificEvents()
63 Assert.Equal("TestEvent2", eventSourceListener.LastEvent.EventName); in TestSpecificEvents()
129 Assert.Equal("TestEvent1", eventSourceListener.LastEvent.EventName); in LinuxNewLineConventions()
141 Assert.Equal("TestEvent2", eventSourceListener.LastEvent.EventName); in LinuxNewLineConventions()
185 Assert.Equal("TestEvent1", eventSourceListener.LastEvent.EventName); in TestWildCardSourceName()
194 Assert.Equal("TestEvent2", eventSourceListener.LastEvent.EventName); in TestWildCardSourceName()
429 if (evnt.EventName == "Message") in TestMessages()
703 public string EventName; field in System.Diagnostics.Tests.DiagnosticSourceEvent
782 …if (eventData.Payload.Count == 3 && (eventData.EventName == "Event" || eventData.EventName.Contain… in OnEventWritten()
789 anEvent.EventSourceEventName = eventData.EventName; in OnEventWritten()
[all …]
/dports/net/freerdp/freerdp-2.5.0/winpr/libwinpr/utils/collections/
H A DPubSub.c59 wEventType* PubSub_FindEventType(wPubSub* pubSub, const char* EventName) in PubSub_FindEventType() argument
66 if (strcmp(pubSub->events[index].EventName, EventName) == 0) in PubSub_FindEventType()
101 int PubSub_Subscribe(wPubSub* pubSub, const char* EventName, pEventHandler EventHandler) in PubSub_Subscribe() argument
109 event = PubSub_FindEventType(pubSub, EventName); in PubSub_Subscribe()
127 int PubSub_Unsubscribe(wPubSub* pubSub, const char* EventName, pEventHandler EventHandler) in PubSub_Unsubscribe() argument
136 event = PubSub_FindEventType(pubSub, EventName); in PubSub_Unsubscribe()
161 int PubSub_OnEvent(wPubSub* pubSub, const char* EventName, void* context, wEventArgs* e) in PubSub_OnEvent() argument
170 event = PubSub_FindEventType(pubSub, EventName); in PubSub_OnEvent()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.Tracing/tests/BasicEventSourceTest/
H A DTestsWrite.cs100 Assert.Equal("Greeting", evt.EventName); in Test_Write_T()
114 Assert.Equal("Decimal", evt.EventName); in Test_Write_T()
130 Assert.Equal("DateTime", evt.EventName); in Test_Write_T()
145 Assert.Equal("Bytes", evt.EventName); in Test_Write_T()
161 Assert.Equal("UserInfo", evt.EventName); in Test_Write_T()
180 Assert.Equal("Duration", evt.EventName); in Test_Write_T()
322 Assert.Equal("EmptyEvent", evt.EventName); in Test_Write_T()
341 Assert.Equal("EmptyEvent", evt.EventName); in Test_Write_T()
352 Assert.Equal("OptionsEvent", evt.EventName); in Test_Write_T()
365 Assert.Equal("RefOptionsEvent", evt.EventName); in Test_Write_T()
[all …]
H A DTestsWriteEvent.cs122 Assert.Equal("EventNoAttributes", evt.EventName); in Test_WriteEvent_NoAttribute()
145 Assert.Equal("EventII", evt.EventName); in Test_WriteEvent()
155 Assert.Equal("EventSS", evt.EventName); in Test_WriteEvent()
170 Assert.Equal("EventWithManyTypeArgs", evt.EventName); in Test_WriteEvent()
186 Assert.Equal("EventWith7Strings", evt.EventName); in Test_WriteEvent()
199 Assert.Equal("EventWith9Strings", evt.EventName); in Test_WriteEvent()
220 Assert.True(evt.EventName.Contains("WeirdArgs")); in Test_WriteEvent()
240 Assert.Equal("EventEnum", evt.EventName); in Test_WriteEvent()
255 Assert.Equal("EventEnum1", evt.EventName); in Test_WriteEvent()
463 Assert.Equal("EventByteArrayInt", evt.EventName); in Test_WriteEvent_ComplexData_SelfDescribing()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeStatements/
H A DCodeAttachEventStatementTests.cs16 Assert.Empty(attachEvent.Event.EventName); in Ctor_Default()
33 Assert.Equal(eventName ?? string.Empty, attachEvent.Event.EventName); in Ctor_CodeExpression_String_CodeExpression()
50 …ual((eventExpresion ?? new CodeEventReferenceExpression()).EventName, attachEvent.Event.EventName); in Ctor_CodeEventReferenceExpression_CodeExpression()
61 …Assert.Equal((value ?? new CodeEventReferenceExpression()).EventName, attachEvent.Event.EventName); in Event_Set_Get_ReturnsExpected()
H A DCodeRemoveEventStatementTests.cs16 Assert.Empty(removeEvent.Event.EventName); in Ctor_Default()
33 Assert.Equal(eventName ?? string.Empty, removeEvent.Event.EventName); in Ctor_CodeExpression_String_CodeExpression()
50 …ual((eventExpresion ?? new CodeEventReferenceExpression()).EventName, removeEvent.Event.EventName); in Ctor_CodeEventReferenceExpression_CodeExpression()
61 …Assert.Equal((value ?? new CodeEventReferenceExpression()).EventName, removeEvent.Event.EventName); in Event_Set_Get_ReturnsExpected()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/dbaccess/source/core/dataaccess/
H A Ddocumenteventnotifier.cxx97 …void notifyDocumentEvent( const OUString& EventName, const Reference< XController2 >& ViewContr… in notifyDocumentEvent() argument
101 m_rDocument, EventName, ViewController, Supplement ) ); in notifyDocumentEvent()
104 …void notifyDocumentEventAsync( const OUString& EventName, const Reference< XController2 >& View… in notifyDocumentEventAsync() argument
108 m_rDocument, EventName, ViewController, Supplement ) ); in notifyDocumentEventAsync()
187 document::EventObject aLegacyEvent( _rEvent.Source, _rEvent.EventName ); in impl_notifyEvent_nothrow()
272 void DocumentEventNotifier::notifyDocumentEvent( const OUString& EventName, in notifyDocumentEvent() argument
275 m_pImpl->notifyDocumentEvent( EventName, ViewController, Supplement ); in notifyDocumentEvent()
278 void DocumentEventNotifier::notifyDocumentEventAsync( const OUString& EventName, in notifyDocumentEventAsync() argument
281 m_pImpl->notifyDocumentEventAsync( EventName, ViewController, Supplement ); in notifyDocumentEventAsync()
/dports/devel/tinygo/tinygo-0.14.1/vendor/github.com/chromedp/cdproto/domdebugger/
H A Ddomdebugger.go105 EventName string `json:"eventName"` // Event name. member
117 EventName: eventName,
135 EventName string `json:"eventName"` // Instrumentation name to stop on. member
147 EventName: eventName,
205EventName string `json:"eventName"` // DOM Event name to stop on (any DOM event will d… member
217 EventName: eventName,
236 EventName string `json:"eventName"` // Instrumentation name to stop on. member
247 EventName: eventName,
/dports/editors/libreoffice/libreoffice-7.2.6.2/dbaccess/source/core/dataaccess/
H A Ddocumenteventnotifier.cxx98 …void notifyDocumentEvent( const OUString& EventName, const Reference< XController2 >& ViewContr… in notifyDocumentEvent() argument
102 m_rDocument, EventName, ViewController, Supplement ) ); in notifyDocumentEvent()
105 …void notifyDocumentEventAsync( const OUString& EventName, const Reference< XController2 >& View… in notifyDocumentEventAsync() argument
109 m_rDocument, EventName, ViewController, Supplement ) ); in notifyDocumentEventAsync()
191 document::EventObject aLegacyEvent( _rEvent.Source, _rEvent.EventName ); in impl_notifyEvent_nothrow()
276 void DocumentEventNotifier::notifyDocumentEvent( const OUString& EventName, in notifyDocumentEvent() argument
279 m_pImpl->notifyDocumentEvent( EventName, ViewController, Supplement ); in notifyDocumentEvent()
282 void DocumentEventNotifier::notifyDocumentEventAsync( const OUString& EventName, in notifyDocumentEventAsync() argument
285 m_pImpl->notifyDocumentEventAsync( EventName, ViewController, Supplement ); in notifyDocumentEventAsync()
/dports/devel/msbuild/msbuild-0.06/src/Tasks.UnitTests/
H A DTelemetryTaskTests.cs19 EventName = "My event name", in TelemetryTaskSendsEvents()
26 Assert.True(engine.Log.Contains(telemetryTask.EventName)); in TelemetryTaskSendsEvents()
40 EventName = "My event name", in TelemetryTaskSendsEventsWithProperties()
61 EventName = "My event name", in TelemetryTaskInvalidEventData()
82 EventName = "My event name", in TelemetryTaskDuplicateEventDataProperty()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.DiagnosticSource/src/System/Diagnostics/
H A DDiagnosticSourceEventSource.cs207 …private void Event(string SourceName, string EventName, IEnumerable<KeyValuePair<string, string>> … in Event() argument
209 WriteEvent(2, SourceName, EventName, Arguments); in Event()
217 private void EventJson(string SourceName, string EventName, string ArgmentsJson) in EventJson() argument
219 WriteEvent(3, SourceName, EventName, ArgmentsJson); in EventJson()
229 WriteEvent(4, SourceName, EventName, Arguments); in Activity1Start()
236 …private void Activity1Stop(string SourceName, string EventName, IEnumerable<KeyValuePair<string, s… in Activity1Stop() argument
238 WriteEvent(5, SourceName, EventName, Arguments); in Activity1Stop()
247 WriteEvent(6, SourceName, EventName, Arguments); in Activity2Start()
256 WriteEvent(7, SourceName, EventName, Arguments); in Activity2Stop()
265 WriteEvent(8, SourceName, EventName, Arguments); in RecursiveActivity1Start()
[all …]
/dports/deskutils/pet/pet-0.4.0/vendor/github.com/xanzy/go-gitlab/
H A Devent_parsing_systemhook_test.go37 assert.Equal(t, "push", event.EventName)
52 assert.Equal(t, "tag_push", event.EventName)
82 assert.Equal(t, "repository_update", event.EventName)
106 assert.Equal(t, tc.event, event.EventName)
130 assert.Equal(t, tc.event, event.EventName)
154 assert.Equal(t, tc.event, event.EventName)
178 assert.Equal(t, tc.event, event.EventName)
202 assert.Equal(t, tc.event, event.EventName)
/dports/games/xblast/xblast-2.10.4/
H A Devent.c52 EventName (XBEventCode eCode) in EventName() function
121 Dbg_Out ("next event %s\n", EventName (ecode), data); in NextEvent()
148 Dbg_Out ("queue event %s-%c\n", EventName (ecode), data); in QueueEvent()
174 Dbg_Out ("queue event value %s %c,\n", EventName (code), data.value); in QueueEventValue()
189 Dbg_Out ("queue event pointer %s %c,\n", EventName (code), data.value); in QueueEventPointer()
216 Dbg_Out ("queue event atom %s %c,\n", EventName (code), data.value); in QueueEventAtom()
/dports/lang/mono-basic/mono-basic-4.7/vbnc/vbnc/source/Members/
H A DEventHandlerDeclaration.vb33 …Shadows Sub Init(ByVal Modifiers As Modifiers, ByVal HandlerType As KS, ByVal EventName As Identif…
49 name = prefix & EventName.Name
54 …mySignature.Init(New Identifier(mySignature, name, EventName.Location, EventName.TypeCharacter), N…
/dports/multimedia/onevpl/oneVPL-2022.0.6/tools/legacy/sample_multi_transcode/include/
H A Dsmt_tracer.h25 enum class EventName { UNDEF, BUSY, SYNC, READ_YUV, READ_BS, SURF_WAIT }; enum
34 EventName Name; //optional, if not specifyed thread name will be used
48 const EventName name,
53 const EventName name,
58 const EventName name,
66 const EventName name,
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeExpressions/
H A DCodeEventReferenceExpressionTests.cs17 Assert.Empty(eventReference.EventName); in Ctor_Default()
33 Assert.Equal(eventName ?? string.Empty, eventReference.EventName); in Ctor()
43 eventReference.EventName = value; in EventName_Set_Get_ReturnsExpected()
44 Assert.Equal(value ?? string.Empty, eventReference.EventName); in EventName_Set_Get_ReturnsExpected()
/dports/www/kf5-khtml/khtml-5.89.0/src/xml/
H A Ddom2_eventsimpl.h55 RegisteredEventListener(EventName _id, EventListener *_listener, bool _useCapture) in RegisteredEventListener()
76 EventName eventName;
110 void removeEventListener(EventName id, EventListener *listener, bool useCapture);
112 void setHTMLEventListener(EventName id, EventListener *listener);
113 EventListener *getHTMLEventListener(EventName id);
115 bool hasEventListener(EventName id);
154 void removeEventListener(EventName id, EventListener *listener, bool useCapture);
155 void setHTMLEventListener(EventName id, EventListener *listener);
157 EventListener *getHTMLEventListener(EventName id);
235 EventName name() const in name()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/uitest/libreoffice/uno/
H A Deventlistener.py42 print(event.EventName)
44 if event.EventName in self.eventNames:
46 self.eventExecuted.append(event.EventName)
49 print(event.EventName)
/dports/editors/libreoffice6/libreoffice-6.4.7.2/uitest/libreoffice/uno/
H A Deventlistener.py42 print(event.EventName)
44 if event.EventName in self.eventNames:
46 self.eventExecuted.append(event.EventName)
49 print(event.EventName)
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Activities/
H A DEventSinkActivity.cs66 public virtual string EventName property in System.Workflow.Activities.HandleExternalEventActivity
191 string eventName = this.EventName; in InitializeProperties()
203 …w new InvalidOperationException(SR.GetString(SR.MethodInfoMissing, this.EventName, this.InterfaceT… in InitializeProperties()
219 string eventName = this.EventName; in Initialize()
289 …ityHelper.ExecuteForActivity(this, executionContext, this.InterfaceType, this.EventName, out args); in Execute()
342 … CorrelationService.Unsubscribe(context, this, this.InterfaceType, this.EventName, this); in UnsubscribeForActivity()
356 …oundActivityHelper.ExecuteForActivity(this, context, this.InterfaceType, this.EventName, out args); in OnEvent()
390 …CorrelationService.Subscribe(parentContext, this, InterfaceType, EventName, parentEventHandler, th… in IEventActivity.Subscribe()
400 … CorrelationService.Unsubscribe(parentContext, this, InterfaceType, EventName, parentEventHandler); in IEventActivity.Unsubscribe()
411 return CorrelationService.ResolveQueueName(this, InterfaceType, EventName);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Extensions/ui/
H A DAsyncPostBackTrigger.cs64 public string EventName { property in System.Web.UI.AsyncPostBackTrigger
99 string eventName = EventName; in Initialize()
121 if (!String.IsNullOrEmpty(EventName)) { in HasTriggered()
153 (String.IsNullOrEmpty(EventName) ? String.Empty : ("." + EventName)); in ToString()

12345678910>>...51