HomeSort by relevance Sort by last modified time
    Searched refs:EventType (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/chromium/net/base/
net_log.h 40 enum EventType {
80 // particular EventType uses, in order to get at the individual components.
122 virtual void AddEntry(EventType type,
140 static const char* EventTypeToString(EventType event_type);
143 static std::vector<EventType> GetAllEventTypes();
153 static Value* EntryToDictionaryValue(NetLog::EventType type,
176 void AddEntry(NetLog::EventType type,
181 NetLog::EventType type,
189 void AddEvent(NetLog::EventType event_type,
191 void BeginEvent(NetLog::EventType event_type
    [all...]
net_log_unittest.h 28 NetLog::EventType expected_event,
63 NetLog::EventType expected_event,
73 NetLog::EventType expected_event,
83 NetLog::EventType expected_event) {
91 NetLog::EventType expected_event) {
98 NetLog::EventType type) {
118 NetLog::EventType expected_event,
138 NetLog::EventType expected_event,
capturing_net_log.h 26 Entry(EventType type,
33 EventType type;
58 virtual void AddEntry(EventType type,
net_log.cc 30 const char* NetLog::EventTypeToString(EventType event) {
40 std::vector<NetLog::EventType> NetLog::GetAllEventTypes() {
41 std::vector<NetLog::EventType> types;
74 Value* NetLog::EntryToDictionaryValue(NetLog::EventType type,
112 NetLog::EventType type,
121 NetLog::EventType type,
131 NetLog::EventType event_type,
137 NetLog::EventType event_type,
143 NetLog::EventType event_type,
148 void BoundNetLog::EndEventWithNetErrorCode(NetLog::EventType event_type
    [all...]
capturing_net_log.cc 9 CapturingNetLog::Entry::Entry(EventType type,
43 void CapturingNetLog::AddEntry(EventType type,
  /external/valgrind/tsan/
ts_events.h 41 enum EventType {
103 Event(EventType type, int32_t tid, uintptr_t pc, uintptr_t a, uintptr_t info)
112 void Init(EventType type, int32_t tid, uintptr_t pc, uintptr_t a, uintptr_t info) {
121 EventType type() const { return type_; }
131 static const char *TypeString(EventType type) {
135 EventType type_;
  /external/chromium/chrome/common/deprecated/
event_sys-inl.h 23 // 1. Choose an EventType. This could be an Enum or something more complicated.
24 // 2. Create an EventTraits class for your EventType. It must have
27 // typedef x EventType;
28 // static bool IsChannelShutdownEvent(const EventType& event);
100 typedef typename EventTraits::EventType EventType;
101 typedef EventListener<EventType> Listener;
108 explicit EventChannel(const EventType& shutdown_event)
170 void NotifyListeners(const EventType& event) {
213 const EventType shutdown_event_
    [all...]
event_sys.h 21 template <typename EventType>
24 virtual void HandleEvent(const EventType& event) = 0;
  /external/chromium/base/debug/
trace_event_win.h 47 enum EventType {
66 EventType type,
73 EventType type,
82 EventType type,
104 EventType type,
trace_event.h 93 enum EventType {
110 EventType type,
116 EventType type,
  /external/chromium/chrome/browser/chromeos/login/
shutdown_button.h 29 ui::EventType event_type,
username_view.h 49 ui::EventType event_type,
  /external/chromium/chrome/browser/debugger/
devtools_netlog_observer.h 33 virtual void OnAddEntry(net::NetLog::EventType type,
39 void OnAddURLRequestEntry(net::NetLog::EventType type,
45 void OnAddHTTPStreamJobEntry(net::NetLog::EventType type,
51 void OnAddSocketEntry(net::NetLog::EventType type,
  /external/chromium/chrome/browser/net/
chrome_net_log.h 40 net::NetLog::EventType type,
48 net::NetLog::EventType type;
83 virtual void OnAddEntry(EventType type,
110 virtual void AddEntry(EventType type,
net_log_logger.h 29 virtual void OnAddEntry(net::NetLog::EventType type,
load_timing_observer.h 68 virtual void OnAddEntry(net::NetLog::EventType type,
85 void OnAddURLRequestEntry(net::NetLog::EventType type,
91 void OnAddHTTPStreamJobEntry(net::NetLog::EventType type,
97 void OnAddConnectJobEntry(net::NetLog::EventType type,
103 void OnAddSocketEntry(net::NetLog::EventType type,
net_log_logger.cc 24 void NetLogLogger::OnAddEntry(net::NetLog::EventType type,
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.h 118 enum EventType {
123 static EventType eventType(Event*);
124 bool treatLinkAsLiveForEventType(EventType) const;
  /external/skia/include/xml/
SkXMLParser.h 105 enum EventType {
120 EventType nextToken();
121 EventType getEventType() const { return fCurr.fEventType; }
141 EventType fEventType;
151 EventType onNextToken();
  /external/chromium/net/socket/
client_socket.h 133 void LogByteTransfer(const BoundNetLog& net_log, NetLog::EventType event_type,
  /external/chromium/chrome/browser/sync/syncable/
directory_manager.h 39 typedef DirectoryManagerEvent EventType;
40 static inline bool IsChannelShutdownEvent(const EventType& event) {
  /packages/apps/Calendar/src/com/android/calendar/
SearchActivity.java 43 import com.android.calendar.CalendarController.EventType;
203 searchEventInfo.eventType = EventType.SEARCH;
252 mController.sendEvent(this, EventType.GO_TO, t, null, -1, ViewType.CURRENT);
257 mController.sendEvent(this, EventType.LAUNCH_SETTINGS, null, null, 0, 0);
309 mController.sendEvent(this, EventType.EVENTS_CHANGED, null, null, -1, ViewType.CURRENT);
314 return EventType.VIEW_EVENT | EventType.DELETE_EVENT;
320 if (event.eventType == EventType.VIEW_EVENT)
    [all...]
CalendarController.java 108 public interface EventType {
154 public long eventType; // one of the EventType
166 * For EventType.VIEW_EVENT:
171 * For EventType.CREATE_EVENT:
174 * For EventType.GO_TO:
180 * For EventType.UPDATE_TITLE:
187 * Pass to the ExtraLong parameter for EventType.CREATE_EVENT to create
193 * Pass to the ExtraLong parameter for EventType.GO_TO to signal the time
254 public void sendEventRelatedEvent(Object sender, long eventType, long eventId, long startMillis
    [all...]
AllInOneActivity.java 26 import com.android.calendar.CalendarController.EventType;
262 mController.sendEvent(this, EventType.GO_TO, time, time, -1, ViewType.CURRENT);
497 mController.sendEvent(this, EventType.UPDATE_TITLE, t, t, -1, ViewType.CURRENT,
515 mController.sendEventRelatedEventWithExtra(this, EventType.VIEW_EVENT, mViewEventId,
548 mController.sendEvent(this, EventType.USER_HOME, null, null, -1, ViewType.CURRENT);
645 mController.sendEvent(this, EventType.GO_TO, t, null, -1, viewType);
652 mController.sendEvent(this, EventType.GO_TO, null, null, -1, mPreviousView);
717 this, EventType.CREATE_EVENT, -1, t.toMillis(true), 0, 0, 0, -1);
720 mController.sendEvent(this, EventType.LAUNCH_SELECT_VISIBLE_CALENDARS, null, null,
724 mController.sendEvent(this, EventType.LAUNCH_SETTINGS, null, null, 0, 0)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaFragment.java 38 import com.android.calendar.CalendarController.EventType;
309 return EventType.GO_TO | EventType.EVENTS_CHANGED | ((mUsedForSearch)?EventType.SEARCH:0);
316 if (event.eventType == EventType.GO_TO) {
323 } else if (event.eventType == EventType.SEARCH) {
325 } else if (event.eventType == EventType.EVENTS_CHANGED)
    [all...]

Completed in 774 milliseconds

1 2 3 4