HomeSort by relevance Sort by last modified time
    Searched refs:Events (Results 101 - 125 of 225) sorted by null

1 2 3 45 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
LayerDetailsView.js 44 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerTreeChanged, this._onLayerTreeUpdated, this);
45 this._model.addEventListener(WebInspector.LayerTreeModel.Events.LayerPainted, this._onLayerPainted, this);
LiveEditSupport.js 38 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this);
122 this._liveEditUISourceCode.addEventListener(WebInspector.UISourceCode.Events.WorkingCopyCommitted, this._workingCopyCommitted, this);
RequestTimingView.js 47 this._request.addEventListener(WebInspector.NetworkRequest.Events.TimingChanged, this._refresh, this);
68 this._request.removeEventListener(WebInspector.NetworkRequest.Events.TimingChanged, this._refresh, this);
Script.js 57 WebInspector.Script.Events = {
161 this.dispatchEventToListeners(WebInspector.Script.Events.ScriptEdited, newSource);
Spectrum.js 128 WebInspector.Spectrum.Events = {
268 this.dispatchEventToListeners(WebInspector.Spectrum.Events.ColorChanged, this._colorString());
334 WebInspector.SpectrumPopupHelper.Events = {
398 this.dispatchEventToListeners(WebInspector.SpectrumPopupHelper.Events.Hidden, !!commitEdit);
CallStackSidebarPane.js 45 WebInspector.CallStackSidebarPane.Events = {
118 this.dispatchEventToListeners(WebInspector.CallStackSidebarPane.Events.CallFrameRestarted, placard._callFrame);
215 this.dispatchEventToListeners(WebInspector.CallStackSidebarPane.Events.CallFrameSelected, placard._callFrame);
ContentProviderBasedProjectDelegate.js 361 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.FileAdded, fileDescriptor);
372 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.FileRemoved, path);
387 this.dispatchEventToListeners(WebInspector.ProjectDelegate.Events.Reset, null);
SourcesPanel.js 115 this._navigator.addEventListener(WebInspector.SourcesNavigator.Events.SourceSelected, this._sourceSelected, this);
116 this._navigator.addEventListener(WebInspector.SourcesNavigator.Events.ItemSearchStarted, this._itemSearchStarted, this);
117 this._navigator.addEventListener(WebInspector.SourcesNavigator.Events.ItemCreationRequested, this._itemCreationRequested, this);
118 this._navigator.addEventListener(WebInspector.SourcesNavigator.Events.ItemRenamingRequested, this._itemRenamingRequested, this);
120 this._editorContainer.addEventListener(WebInspector.TabbedEditorContainer.Events.EditorSelected, this._editorSelected, this);
121 this._editorContainer.addEventListener(WebInspector.TabbedEditorContainer.Events.EditorClosed, this._editorClosed, this);
130 this.sidebarPanes.callstack.addEventListener(WebInspector.CallStackSidebarPane.Events.CallFrameSelected, this._callFrameSelectedInSidebar.bind(this));
131 this.sidebarPanes.callstack.addEventListener(WebInspector.CallStackSidebarPane.Events.CallFrameRestarted, this._callFrameRestartedInSidebar.bind(this));
167 WebInspector.dockController.addEventListener(WebInspector.DockController.Events.DockSideChanged, this._dockSideChanged.bind(this));
179 WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, this._debuggerWasEnabled, this)
    [all...]
TimelineModel.js 108 WebInspector.TimelineModel.Events = {
230 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordingStarted);
236 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordingStopped);
247 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordAdded, record);
309 this.dispatchEventToListeners(WebInspector.TimelineModel.Events.RecordsCleared);
CanvasProfileView.js 92 this._logGrid.addEventListener(WebInspector.DataGrid.Events.SelectedNode, this._replayTraceLog, this);
648 WebInspector.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.FrameExecutionContextListAdded, this._frameAdded, this);
649 WebInspector.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.FrameExecutionContextListRemoved, this._frameRemoved, this);
    [all...]
NetworkRequest.js 64 WebInspector.NetworkRequest.Events = {
275 this.dispatchEventToListeners(WebInspector.NetworkRequest.Events.FinishedLoading, this);
339 this.dispatchEventToListeners(WebInspector.NetworkRequest.Events.TimingChanged, this);
477 this.dispatchEventToListeners(WebInspector.NetworkRequest.Events.RequestHeadersChanged);
495 this.dispatchEventToListeners(WebInspector.NetworkRequest.Events.RequestHeadersChanged);
559 this.dispatchEventToListeners(WebInspector.NetworkRequest.Events.ResponseHeadersChanged);
579 this.dispatchEventToListeners(WebInspector.NetworkRequest.Events.ResponseHeadersChanged);
ConsoleView.js 57 this._filter.addEventListener(WebInspector.ConsoleViewFilter.Events.FilterChanged, this._updateMessageList.bind(this));
74 this._filterBar.addEventListener(WebInspector.FilterBar.Events.FiltersToggled, this._onFiltersToggled, this);
102 WebInspector.console.addEventListener(WebInspector.ConsoleModel.Events.MessageAdded, this._consoleMessageAdded, this);
103 WebInspector.console.addEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, this._consoleCleared, this);
115 WebInspector.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.FrameExecutionContextListAdded, this._frameAdded, this);
116 WebInspector.runtimeModel.addEventListener(WebInspector.RuntimeModel.Events.FrameExecutionContextListRemoved, this._frameRemoved, this);
776 this._filterChanged = this.dispatchEventToListeners.bind(this, WebInspector.ConsoleViewFilter.Events.FilterChanged);
779 WebInspector.ConsoleViewFilter.Events = {
787 this._textFilterUI.addEventListener(WebInspector.FilterUI.Events.FilterChanged, this._textFilterChanged, this);
797 this._levelFilterUI.addEventListener(WebInspector.FilterUI.Events.FilterChanged, this._filterChanged, this)
    [all...]
RevisionHistoryView.js 58 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeContentCommitted, this._revisionAdded, this);
59 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.UISourceCodeRemoved, this._uiSourceCodeRemoved, this);
60 WebInspector.workspace.addEventListener(WebInspector.Workspace.Events.ProjectWillReset, this._projectWillReset, this);
RuntimeModel.js 45 WebInspector.RuntimeModel.Events = {
89 this.dispatchEventToListeners(WebInspector.RuntimeModel.Events.FrameExecutionContextListAdded, context);
106 this.dispatchEventToListeners(WebInspector.RuntimeModel.Events.FrameExecutionContextListRemoved, context);
HeapSnapshotDataGrids.js 52 this.addEventListener(WebInspector.DataGrid.Events.SortingChanged, this.sortingChanged, this);
55 WebInspector.HeapSnapshotSortableDataGrid.Events = {
81 this.dispatchEventToListeners(WebInspector.HeapSnapshotSortableDataGrid.Events.ContentShown, this);
88 this.dispatchEventToListeners(WebInspector.HeapSnapshotSortableDataGrid.Events.ContentShown, this);
516 WebInspector.HeapSnapshotRetainmentDataGrid.Events = {
553 this.removeEventListener(WebInspector.HeapSnapshotGridNode.Events.PopulateComplete, populateComplete, this);
558 retainer.addEventListener(WebInspector.HeapSnapshotGridNode.Events.PopulateComplete, populateComplete, retainer);
563 dataGrid.dispatchEventToListeners(WebInspector.HeapSnapshotRetainmentDataGrid.Events.ExpandRetainersComplete);
565 this.rootNode().addEventListener(WebInspector.HeapSnapshotGridNode.Events.PopulateComplete, populateComplete, this.rootNode());
    [all...]
MetricsSidebarPane.js 37 WebInspector.cssModel.addEventListener(WebInspector.CSSStyleModel.Events.StyleSheetChanged, this._styleSheetOrMediaQueryResultChanged, this);
38 WebInspector.cssModel.addEventListener(WebInspector.CSSStyleModel.Events.MediaQueryResultChanged, this._styleSheetOrMediaQueryResultChanged, this);
39 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.AttrModified, this._attributesUpdated, this);
40 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.AttrRemoved, this._attributesUpdated, this);
TextEditor.js 37 WebInspector.TextEditor.Events = {
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 24 import android.provider.CalendarContract.Events;
41 * Stores all the information needed to fill out an entry in the events table.
43 * the events table. Only fields that are important to the UI are included.
198 * The uri of the event in the db. This should only be null for new events.
236 // recurring events. It should not be updated after it is initially set.
241 // recurring events. It should not be updated after it is initially set.
249 public int mAvailability = Events.AVAILABILITY_BUSY;
267 public int mEventStatus = Events.STATUS_CONFIRMED;
312 String title = intent.getStringExtra(Events.TITLE);
317 String location = intent.getStringExtra(Events.EVENT_LOCATION)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlarmScheduler.java 28 import android.provider.CalendarContract.Events;
43 * Schedules the next EVENT_REMINDER_APP broadcast with AlarmManager, by querying the events
49 private static final String INSTANCES_WHERE = Events.VISIBLE + "=? AND "
51 + Events.ALL_DAY + "=?";
81 // sets the max # of events in the query before batching into multiple queries, to
87 // we cannot do the join with the Events table to calculate the actual alert time
88 // from outside of the provider. So the best we can do for now consider events
100 * has the limitation of querying events within some interval from now (ie. looks at
101 * reminders for all events occurring in the next week). This means for example,
128 * Queries events starting within a fixed interval from now
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventProxy.h 103 #pragma mark AST Events
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventProxy.h 103 #pragma mark AST Events
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugEventProxy.h 103 #pragma mark AST Events
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugEventProxy.h 103 #pragma mark AST Events
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpbase_unittest.cc 84 events.push_back(e);
93 events.push_back(e);
98 events.push_back(e);
123 // The source of http data, and source events
125 std::vector<Event> events; member in class:talk_base::HttpBaseTest
127 // Document stream, and stream events
141 EXPECT_TRUE(events.empty());
144 ASSERT_EQ(1U, events.size());
145 EXPECT_EQ(E_COMPLETE, events[0].event);
146 EXPECT_EQ(HM_CONNECT, events[0].mode)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectVisibleCalendarsActivity.java 78 getContentResolver().registerContentObserver(CalendarContract.Events.CONTENT_URI,

Completed in 2104 milliseconds

1 2 3 45 6 7 8 9