Searched defs:Events (Results 101 - 125 of 137) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/layers/
H A DLayerDetailsView.js46 WebInspector.LayerDetailsView.Events = {
115 this.dispatchEventToListeners(WebInspector.LayerDetailsView.Events.ObjectSelected, {layer: this._layer, scrollRectIndex: index});
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DDatabaseQueryView.js53 WebInspector.DatabaseQueryView.Events = {
156 this.dispatchEventToListeners(WebInspector.DatabaseQueryView.Events.SchemaUpdated, this.database);
/external/lldb/tools/debugserver/source/
H A DRNBContext.h81 PThreadEvent& Events( ) { return m_events; } function in class:RNBContext
/external/chromium_org/remoting/webapp/
H A Dclient_session.js171 this.defineEvents(Object.keys(remoting.ClientSession.Events));
177 remoting.ClientSession.Events = {
982 this.raiseEvent(remoting.ClientSession.Events.videoChannelStateChanged,
1044 this.raiseEvent(remoting.ClientSession.Events.stateChanged,
1378 this.raiseEvent(remoting.ClientSession.Events.bumpScrollStarted);
1393 that.raiseEvent(remoting.ClientSession.Events.bumpScrollStopped);
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.h165 PThreadEvent& Events() { return m_events; } function in class:MachProcess
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DBreakpointManager.js53 this._workspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, this._projectRemoved, this);
54 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
55 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
58 WebInspector.BreakpointManager.Events = {
156 uiSourceCode.addEventListener(WebInspector.UISourceCode.Events.SourceMappingChanged, this._uiSourceCodeMappingChanged, this);
195 uiSourceCode.removeEventListener(WebInspector.UISourceCode.Events.SourceMappingChanged, this._uiSourceCodeMappingChanged, this);
392 this.dispatchEventToListeners(WebInspector.BreakpointManager.Events.BreakpointAdded, {breakpoint: breakpoint, uiLocation: uiLocation});
418 this.dispatchEventToListeners(WebInspector.BreakpointManager.Events.BreakpointRemoved, {breakpoint: breakpoint, uiLocation: uiLocation});
434 this.dispatchEventToListeners(WebInspector.BreakpointManager.Events.BreakpointsActiveStateChanged, active);
716 target.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DHeapSnapshotDataGrids.js58 this.addEventListener(WebInspector.HeapSnapshotSortableDataGrid.Events.SortingComplete, this._sortingComplete, this);
59 this.addEventListener(WebInspector.DataGrid.Events.SortingChanged, this.sortingChanged, this);
62 WebInspector.HeapSnapshotSortableDataGrid.Events = {
101 this.dispatchEventToListeners(WebInspector.HeapSnapshotSortableDataGrid.Events.ContentShown, this);
106 this.removeEventListener(WebInspector.HeapSnapshotSortableDataGrid.Events.SortingComplete, this._sortingComplete, this);
108 this.dispatchEventToListeners(WebInspector.HeapSnapshotSortableDataGrid.Events.ContentShown, this);
265 this.dispatchEventToListeners(WebInspector.HeapSnapshotSortableDataGrid.Events.SortingComplete);
630 WebInspector.HeapSnapshotRetainmentDataGrid.Events = {
885 this.dispatchEventToListeners(WebInspector.HeapSnapshotSortableDataGrid.Events.SortingComplete);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DConsoleModel.js49 WebInspector.ConsoleModel.Events = {
93 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.MessageAdded, msg);
130 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.ConsoleCleared);
163 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.CommandEvaluated, {result: result, wasThrown: wasThrown, text: text, commandMessage: commandMessage, exceptionDetails: exceptionDetails});
518 WebInspector.targetManager.addModelListener(WebInspector.ConsoleModel, WebInspector.ConsoleModel.Events.MessageAdded, this._consoleMessageAdded, this);
519 WebInspector.targetManager.addModelListener(WebInspector.ConsoleModel, WebInspector.ConsoleModel.Events.CommandEvaluated, this._commandEvaluated, this);
530 target.consoleModel.addEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, this._consoleCleared, this);
541 target.consoleModel.removeEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, this._consoleCleared, this);
559 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events.ConsoleCleared);
567 this.dispatchEventToListeners(WebInspector.ConsoleModel.Events
[all...]
H A DCSSStyleModel.js43 this._domModel.addEventListener(WebInspector.DOMModel.Events.UndoRedoRequested, this._undoRedoRequested, this);
44 this._domModel.addEventListener(WebInspector.DOMModel.Events.UndoRedoCompleted, this._undoRedoCompleted, this);
54 WebInspector.profilingLock().addEventListener(WebInspector.Lock.Events.StateChanged, this._profilingStateChanged, this);
75 WebInspector.CSSStyleModel.Events = {
128 this.dispatchEventToListeners(WebInspector.CSSStyleModel.Events.ModelWasEnabled);
428 this.dispatchEventToListeners(WebInspector.CSSStyleModel.Events.MediaQueryResultChanged);
470 if (!styleSheetId || !this.hasEventListeners(WebInspector.CSSStyleModel.Events.StyleSheetChanged))
473 this.dispatchEventToListeners(WebInspector.CSSStyleModel.Events.StyleSheetChanged, { styleSheetId: styleSheetId, majorChange: majorChange });
494 this.dispatchEventToListeners(WebInspector.CSSStyleModel.Events.StyleSheetAdded, styleSheetHeader);
516 this.dispatchEventToListeners(WebInspector.CSSStyleModel.Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
H A DSettingsScreen.js386 WebInspector.isolatedFileSystemManager.addEventListener(WebInspector.IsolatedFileSystemManager.Events.FileSystemAdded, this._fileSystemAdded, this);
387 WebInspector.isolatedFileSystemManager.addEventListener(WebInspector.IsolatedFileSystemManager.Events.FileSystemRemoved, this._fileSystemRemoved, this);
437 this._fileSystemsList.addEventListener(WebInspector.SettingsList.Events.Selected, this._fileSystemSelected.bind(this));
438 this._fileSystemsList.addEventListener(WebInspector.SettingsList.Events.Removed, this._fileSystemRemovedfromList.bind(this));
439 this._fileSystemsList.addEventListener(WebInspector.SettingsList.Events.DoubleClicked, this._fileSystemDoubleClicked.bind(this));
686 WebInspector.SettingsList.Events = {
736 this.dispatchEventToListeners(WebInspector.SettingsList.Events.Removed, itemId);
806 this.dispatchEventToListeners(WebInspector.SettingsList.Events.DoubleClicked, id);
822 this.dispatchEventToListeners(WebInspector.SettingsList.Events.Selected, id);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DElementsTreeOutline.js80 WebInspector.ElementsTreeOutline.Events = {
136 this._eventSupport.dispatchEventToListeners(WebInspector.ElementsTreeOutline.Events.NodePicked, node);
475 this._eventSupport.dispatchEventToListeners(WebInspector.ElementsTreeOutline.Events.SelectedNodeChanged, this._selectedDOMNode);
483 this._eventSupport.dispatchEventToListeners(WebInspector.ElementsTreeOutline.Events.ElementsTreeUpdated, nodes);
2703 domModel.addEventListener(WebInspector.DOMModel.Events.NodeInserted, this._nodeInserted, this);
2704 domModel.addEventListener(WebInspector.DOMModel.Events.NodeRemoved, this._nodeRemoved, this);
2705 domModel.addEventListener(WebInspector.DOMModel.Events.AttrModified, this._attributesUpdated, this);
2706 domModel.addEventListener(WebInspector.DOMModel.Events.AttrRemoved, this._attributesUpdated, this);
2707 domModel.addEventListener(WebInspector.DOMModel.Events.CharacterDataModified, this._characterDataModified, this);
2708 domModel.addEventListener(WebInspector.DOMModel.Events
[all...]
H A DStylesSidebarPane.js55 this._addButtonLongClickController.addEventListener(WebInspector.LongClickController.Events.LongClick, this._onAddButtonLongClick.bind(this));
96 WebInspector.StylesSidebarPane.Events = {
259 this.dispatchEventToListeners(WebInspector.StylesSidebarPane.Events.SelectorEditingStarted);
265 this.dispatchEventToListeners(WebInspector.StylesSidebarPane.Events.SelectorEditingEnded);
395 this._target.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.StyleSheetAdded, this._styleSheetOrMediaQueryResultChanged, this);
396 this._target.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.StyleSheetRemoved, this._styleSheetOrMediaQueryResultChanged, this);
397 this._target.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.StyleSheetChanged, this._styleSheetOrMediaQueryResultChanged, this);
398 this._target.cssModel.removeEventListener(WebInspector.CSSStyleModel.Events.MediaQueryResultChanged, this._styleSheetOrMediaQueryResultChanged, this);
399 this._target.domModel.removeEventListener(WebInspector.DOMModel.Events.AttrModified, this._attributeChanged, this);
400 this._target.domModel.removeEventListener(WebInspector.DOMModel.Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DPaintProfilerView.js51 this._selectionWindow.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);
61 WebInspector.PaintProfilerView.Events = {
175 this.dispatchEventToListeners(WebInspector.PaintProfilerView.Events.WindowChanged);
H A DTimelineOverviewPane.js49 model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._reset, this);
50 this._overviewGrid.addEventListener(WebInspector.OverviewGrid.Events.WindowChanged, this._onWindowChanged, this);
54 WebInspector.TimelineOverviewPane.Events = {
146 this.dispatchEventToListeners(WebInspector.TimelineOverviewPane.Events.WindowChanged, windowTimes);
160 this.dispatchEventToListeners(WebInspector.TimelineOverviewPane.Events.WindowChanged, { startTime: startTime, endTime: endTime });
H A DCountersGraph.js380 this._swatch.addEventListener(WebInspector.SwatchCheckbox.Events.Changed, this._toggleCounterGraph.bind(this));
537 WebInspector.SwatchCheckbox.Events = {
559 this.dispatchEventToListeners(WebInspector.SwatchCheckbox.Events.Changed);
H A DTimelineUIUtils.js407 WebInspector.TimelineCategory.Events = {
423 this.dispatchEventToListeners(WebInspector.TimelineCategory.Events.VisibilityChanged, this);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DInspectedPagePlaceholder.js13 WebInspector.zoomManager.addEventListener(WebInspector.ZoomManager.Events.ZoomChanged, this._scheduleUpdate, this);
18 WebInspector.InspectedPagePlaceholder.Events = {
119 this.dispatchEventToListeners(WebInspector.InspectedPagePlaceholder.Events.Update, bounds);
/external/chromium_org/third_party/webrtc/modules/audio_processing/test/
H A Dprocess_test.cc814 enum Events { enum
/external/webrtc/src/modules/audio_processing/test/
H A Dprocess_test.cc673 enum Events { enum
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DFilterBar.js47 WebInspector.FilterBar.Events = {
98 filter.addEventListener(WebInspector.FilterUI.Events.FilterChanged, this._filterChanged, this);
151 this.dispatchEventToListeners(WebInspector.FilterBar.Events.FiltersToggled, this._filtersShown);
180 WebInspector.FilterUI.Events = {
376 this.dispatchEventToListeners(WebInspector.FilterUI.Events.FilterChanged, null);
536 this.dispatchEventToListeners(WebInspector.FilterUI.Events.FilterChanged, null);
661 this.dispatchEventToListeners(WebInspector.FilterUI.Events.FilterChanged, null);
730 this.dispatchEventToListeners(WebInspector.FilterUI.Events.FilterChanged, null);
H A DOverviewGrid.js188 WebInspector.OverviewGrid.Events = {
379 this.dispatchEventToListeners(WebInspector.OverviewGrid.Events.WindowChanged);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DSplitView.js65 this._resizerWidget.addEventListener(WebInspector.ResizerWidget.Events.ResizeStart, this._onResizeStart, this);
66 this._resizerWidget.addEventListener(WebInspector.ResizerWidget.Events.ResizeUpdate, this._onResizeUpdate, this);
67 this._resizerWidget.addEventListener(WebInspector.ResizerWidget.Events.ResizeEnd, this._onResizeEnd, this);
92 WebInspector.SplitView.Events = {
407 this.dispatchEventToListeners(WebInspector.SplitView.Events.ShowModeChanged, showMode);
478 this.dispatchEventToListeners(WebInspector.SplitView.Events.SidebarSizeChanged, this.sidebarSize());
536 this.dispatchEventToListeners(WebInspector.SplitView.Events.SidebarSizeChanged, this.sidebarSize());
623 WebInspector.zoomManager.addEventListener(WebInspector.ZoomManager.Events.ZoomChanged, this._onZoomChanged, this);
628 WebInspector.zoomManager.removeEventListener(WebInspector.ZoomManager.Events.ZoomChanged, this._onZoomChanged, this);
H A DUIUtils.js995 WebInspector.LongClickController.Events = {
1056 this.dispatchEventToListeners(longClicks === 1 ? WebInspector.LongClickController.Events.LongClick : WebInspector.LongClickController.Events.LongPress, e);
/external/chromium_org/net/tools/epoll_server/
H A Depoll_server.h613 // Events are removed before they are added, thus, if ~0 is put
769 Events& events_for_fd = event_counts_[fd];
842 struct Events { struct in struct:net::EpollServer::EventRecorder
843 Events() : function in struct:net::EpollServer::EventRecorder::Events
872 friend ostream& operator<<(ostream& os, const Events& ev) {
927 std::vector<Events> unregistered_fds_;
928 typedef base::hash_map<int, Events> EventCountsMap;
/external/chromium_org/third_party/webrtc/base/
H A Dtestutils.h71 int Events(StreamInterface* stream, bool reset = true) { function in class:testing::StreamSink
93 int Events(AsyncSocket* socket, bool reset = true) { function in class:testing::StreamSink

Completed in 375 milliseconds

123456