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

123456

/external/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h553 EventInfo &info = Events[getTag<EVENT>()];
559 EventInfo &info = Events[getTag<EVENT>()];
565 EventsTy::const_iterator I = Events.find(getTag<EVENT>());
566 if (I == Events.end())
655 EventsTy Events; member in class:clang::ento::CheckerManager
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js1219 var Events = new Class({
1224 type = Events.removeOn(type);
1239 type = Events.removeOn(type);
1248 type = Events.removeOn(type);
1260 if (events) events = Events.removeOn(events);
1271 Events.removeOn = function(string){
1974 Contains Element methods for dealing with events, and custom Events.
1991 var realType = type, custom = Element.Events.get(type), condition = fn, self = this;
2026 var custom = Element.Events.get(type);
2101 Element.Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DLayerTreeModel.js53 target.domModel.addEventListener(WebInspector.DOMModel.Events.DocumentUpdated, this._onDocumentUpdated, this);
58 WebInspector.LayerTreeModel.Events = {
97 this.dispatchEventToListeners(WebInspector.LayerTreeModel.Events.LayerTreeChanged);
131 this.dispatchEventToListeners(WebInspector.LayerTreeModel.Events.LayerTreeChanged);
150 this.dispatchEventToListeners(WebInspector.LayerTreeModel.Events.LayerPainted, layer);
H A DInspectorBackend.js337 InspectorBackendClass.Connection.Events = {
550 this.dispatchEventToListeners(InspectorBackendClass.Connection.Events.Disconnected, {reason: reason});
602 InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.DispatchMessage, this._dispatchMessage, this);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DNavigatorView.js56 WebInspector.NavigatorView.Events = {
78 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeAdded, this._uiSourceCodeAdded, this);
79 this._workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
80 this._workspace.addEventListener(WebInspector.Workspace.Events.ProjectRemoved, this._projectRemoved.bind(this), this);
138 project.removeEventListener(WebInspector.Project.Events.DisplayNameUpdated, this._updateProjectNodeTitle, this);
169 project.addEventListener(WebInspector.Project.Events.DisplayNameUpdated, this._updateProjectNodeTitle, this);
240 this.dispatchEventToListeners(WebInspector.NavigatorView.Events.ItemSelected, data);
457 this.dispatchEventToListeners(WebInspector.NavigatorView.Events.ItemRenamed, uiSourceCode);
526 WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events.InspectedURLChanged, this._inspectedURLChanged, this);
1171 this._uiSourceCode.addEventListener(WebInspector.UISourceCode.Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
H A DConsoleView.js63 this._filter.addEventListener(WebInspector.ConsoleViewFilter.Events.FilterChanged, this._updateMessageList.bind(this));
76 this._filterBar.addEventListener(WebInspector.FilterBar.Events.FiltersToggled, this._onFiltersToggled, this);
142 WebInspector.targetManager.addModelListener(WebInspector.RuntimeModel, WebInspector.RuntimeModel.Events.ExecutionContextCreated, this._onExecutionContextCreated, this);
143 WebInspector.targetManager.addModelListener(WebInspector.RuntimeModel, WebInspector.RuntimeModel.Events.ExecutionContextDestroyed, this._onExecutionContextDestroyed, this);
174 WebInspector.multitargetConsoleModel.addEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, this._consoleCleared, this);
175 WebInspector.multitargetConsoleModel.addEventListener(WebInspector.ConsoleModel.Events.MessageAdded, this._onConsoleMessageAdded, this);
176 WebInspector.multitargetConsoleModel.addEventListener(WebInspector.ConsoleModel.Events.CommandEvaluated, this._commandEvaluated, this);
236 WebInspector.console.addEventListener(WebInspector.Console.Events.MessageAdded, messageAdded, this);
958 this._filterChanged = this.dispatchEventToListeners.bind(this, WebInspector.ConsoleViewFilter.Events.FilterChanged);
961 WebInspector.ConsoleViewFilter.Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelinePanel.js53 this._tracingManager.addEventListener(WebInspector.TracingManager.Events.BufferUsage, this._onTracingBufferUsage, this);
64 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStarted, this._onRecordingStarted, this);
65 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingStopped, this._onRecordingStopped, this);
66 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordsCleared, this._onRecordsCleared, this);
67 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordingProgress, this._onRecordingProgress, this);
68 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordFilterChanged, this._refreshViews, this);
69 this._model.addEventListener(WebInspector.TimelineModel.Events.RecordAdded, this._onRecordAdded, this);
86 this._overviewModeSetting = WebInspector.settings.createSetting("timelineOverviewMode", WebInspector.TimelinePanel.OverviewMode.Events);
95 this._overviewPane.addEventListener(WebInspector.TimelineOverviewPane.Events.WindowChanged, this._onWindowChanged.bind(this));
101 WebInspector.targetManager.addEventListener(WebInspector.TargetManager.Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTextEditor.js37 WebInspector.TextEditor.Events = {
/external/chromium_org/ui/aura/
H A Dwindow_event_dispatcher_unittest.cc328 // Events sent to a window not in the lock container will not be processed.
334 // Events sent to a window in the lock container will be processed.
452 typedef std::vector<ui::EventType> Events; typedef in class:aura::__anon16589::EventFilterRecorder
460 const Events& events() const { return events_; }
474 Events GetAndResetEvents() {
475 Events events = events_;
519 Events events_;
605 std::string EventTypesToString(const EventFilterRecorder::Events& events) {
860 const EventFilterRecorder::Events& events = recorder.events();
2000 const EventFilterRecorder::Events
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DHeapSnapshotGridNodes.js56 WebInspector.HeapSnapshotGridNode.Events = {
434 this.dispatchEventToListeners(WebInspector.HeapSnapshotGridNode.Events.PopulateComplete);
888 this.removeEventListener(WebInspector.HeapSnapshotGridNode.Events.PopulateComplete, populateComplete, this);
893 this.addEventListener(WebInspector.HeapSnapshotGridNode.Events.PopulateComplete, populateComplete, this);
905 this._dataGrid.dispatchEventToListeners(WebInspector.HeapSnapshotRetainmentDataGrid.Events.ExpandRetainersComplete);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 5439 milliseconds

123456