HomeSort by relevance Sort by last modified time
    Searched refs:EventType (Results 26 - 50 of 229) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/ui/events/
event_rewriter_unittest.cc 23 explicit TestEvent(EventType type)
43 void AddExpectedEvent(EventType type) { expected_events_.push_back(type); }
56 std::list<EventType> expected_events_;
66 void Send(EventType type) {
81 TestConstantEventRewriter(EventRewriteStatus status, EventType type)
102 EventType type_;
110 void AddRule(int from_state, EventType from_type,
111 int to_state, EventType to_type, EventRewriteStatus to_status) {
145 typedef std::pair<int, EventType> RewriteCase;
148 EventType type
    [all...]
gesture_event_details.h 19 explicit GestureEventDetails(EventType type);
20 GestureEventDetails(EventType type, float delta_x, float delta_y);
22 EventType type() const { return type_; }
134 EventType type_;
gesture_event_details.cc 13 GestureEventDetails::GestureEventDetails(ui::EventType type)
19 GestureEventDetails::GestureEventDetails(ui::EventType type,
event.h 57 EventType type() const { return type_; }
221 Event(EventType type, base::TimeDelta time_stamp, int flags);
222 Event(const base::NativeEvent& native_event, EventType type, int flags);
224 void SetType(EventType type);
239 EventType type_;
315 LocatedEvent(EventType type,
346 EventType type,
355 MouseEvent(EventType type,
496 TouchEvent(EventType type,
501 TouchEvent(EventType type
    [all...]
  /external/chromium_org/content/common/input/
web_input_event_traits.cc 188 template <class EventType>
190 *type_size = sizeof(EventType);
196 template <class EventType>
199 DCHECK_EQ(sizeof(EventType), event.size);
201 new EventType(static_cast<const EventType&>(event)));
207 template <class EventType>
211 DCHECK_EQ(sizeof(EventType), event->size);
212 delete static_cast<EventType*>(event);
218 template <class EventType>
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_service.h 43 enum EventType {
77 static bool SignalStatusEvent(EventType type);
134 static EventType GetStatusEvent();
  /external/chromium_org/sandbox/win/src/
sync_interception.h 19 EVENT_TYPE EventType,
  /external/compiler-rt/lib/tsan/rtl/
tsan_trace.h 29 enum EventType {
40 // u64 typ : 3; // EventType.
  /external/chromium_org/mojo/services/public/cpp/input_events/lib/
input_events_type_converters.cc 62 EventType TypeConverter<EventType, ui::EventType>::Convert(ui::EventType type) {
79 ui::EventType TypeConverter<ui::EventType, EventType>::Convert(EventType type) {
95 event->action = ConvertTo<EventType>(input.type());
164 ui::EventType ui_event_type = ConvertTo<ui::EventType>(input->action)
    [all...]
  /external/chromium_org/ui/events/test/
test_event_target.h 43 bool DidReceiveEvent(ui::EventType type) const;
73 std::set<ui::EventType> received_;
  /external/llvm/unittests/ExecutionEngine/JIT/
IntelJITEventListenerTest.cpp 32 int NotifyEvent(iJIT_JVM_EVENT EventType, void *EventSpecificData) {
33 switch (EventType) {
  /frameworks/av/media/libmedia/
IDrmClient.cpp 43 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj)
47 data.writeInt32((int)eventType);
66 int eventType = data.readInt32();
73 notify((DrmPlugin::EventType)eventType, extra, &obj);
  /frameworks/base/media/jni/
android_media_MediaDrm.h 35 virtual void notify(DrmPlugin::EventType eventType, int extra,
47 void notify(DrmPlugin::EventType, int extra, const Parcel *obj);
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 100 public interface EventType {
155 public long eventType; // one of the EventType
174 * For EventType.VIEW_EVENT:
181 * For EventType.CREATE_EVENT:
184 * For EventType.GO_TO:
190 * For EventType.UPDATE_TITLE:
196 if (eventType != EventType.VIEW_EVENT) {
197 Log.wtf(TAG, "illegal call to isAllDay , wrong event type " + eventType);
    [all...]
SearchActivity.java 45 import com.android.calendar.CalendarController.EventType;
221 searchEventInfo.eventType = EventType.SEARCH;
282 mController.sendEvent(this, EventType.GO_TO, t, null, -1, ViewType.CURRENT);
287 mController.sendEvent(this, EventType.LAUNCH_SETTINGS, null, null, 0, 0);
347 mController.sendEvent(this, EventType.EVENTS_CHANGED, null, null, -1, ViewType.CURRENT);
352 return EventType.VIEW_EVENT | EventType.DELETE_EVENT;
358 if (event.eventType == EventType.VIEW_EVENT)
    [all...]
DayFragment.java 20 import com.android.calendar.CalendarController.EventType;
262 return EventType.GO_TO | EventType.EVENTS_CHANGED;
266 if (msg.eventType == EventType.GO_TO) {
272 } else if (msg.eventType == EventType.EVENTS_CHANGED) {
  /external/chromium_org/net/base/
net_log.cc 155 EventType type,
210 void NetLog::AddGlobalEntry(EventType type) {
218 EventType type,
306 const char* NetLog::EventTypeToString(EventType event) {
321 dict->SetInteger(EventTypeToString(static_cast<EventType>(i)), i);
397 void NetLog::AddEntry(EventType type,
411 void BoundNetLog::AddEntry(NetLog::EventType type,
419 NetLog::EventType type,
427 void BoundNetLog::AddEvent(NetLog::EventType type) const {
432 NetLog::EventType type
    [all...]
capturing_net_log.h 34 CapturedEntry(EventType type,
64 EventType type;
  /external/chromium_org/content/public/browser/
native_web_keyboard_event.h 26 NativeWebKeyboardEvent(ui::EventType type,
  /external/chromium_org/media/base/
keyboard_event_counter.cc 22 void KeyboardEventCounter::OnKeyboardEvent(ui::EventType event,
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter_evdev.h 93 EventType type_;
  /external/chromium_org/net/socket/
unix_domain_listen_socket_posix_unittest.cc 49 enum EventType {
67 void Notify(EventType event) {
73 EventType WaitForEvent() {
77 EventType event = events_.front();
86 queue<EventType> events_;
129 void Notify(EventType event) {
293 EventType event = event_manager_->WaitForEvent();
320 EventType event = event_manager_->WaitForEvent();
  /external/chromium_org/tools/android/forwarder2/
socket.h 94 enum EventType {
127 bool WaitForEvent(EventType type, int timeout_secs);
  /external/chromium_org/ui/events/gesture_detection/
touch_disposition_gesture_filter.cc 18 GestureEventData CreateGesture(EventType type,
46 EventType antecedent_event_type;
52 EventType antecedent_event_type)
62 EventType antecedent_event_type) {
67 DispositionHandlingInfo GetDispositionHandlingInfo(EventType type) {
118 int GetGestureTypeIndex(EventType type) {
408 EventType gesture_type) {
413 EventType antecedent_event_type =
gesture_event_data_packet_unittest.cc 18 GestureEventData CreateGesture(EventType type) {
76 const EventType type = static_cast<EventType>(i);

Completed in 901 milliseconds

12 3 4 5 6 7 8 910