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

1 2 3 45 6 7

  /external/webkit/LayoutTests/dom/xhtml/level2/events/
initEvent06.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level2/events/initEvent06";
85 * @see http://www.w3.org/TR/DOM-Level-2-Events/events#Events-Event-initEvent
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domimplementationregistry12.js 72 DOMImplementationRegistry.getDOMImplementation("cOrE 3.0 xMl 3.0 eVeNts 2.0 lS") should return null
94 domImpl = domImplRegistry.getDOMImplementation("cOrE 3.0 xMl 3.0 eVeNts 2.0 lS");
104 hasEvents = baseImpl.hasFeature("Events","2.0");
119 hasEvents = domImpl.hasFeature("Events","2.0");
domimplementationregistry23.js 72 DOMImplementationRegistry.getDOMImplementationList("cOrE 3.0 xMl 3.0 eVeNts 2.0 lS")
96 domImplList = domImplRegistry.getDOMImplementationList("cOrE 3.0 xMl 3.0 eVeNts 2.0 lS");
106 hasEvents = baseImpl.hasFeature("Events","2.0");
123 hasEvents = domImpl.hasFeature("Events","2.0");
nodegetfeature01.js 140 isSupported = node.isSupported("Events",nullVersion);
141 featureImpl = doc.getFeature("Events",nullVersion);
nodegetfeature02.js 140 isSupported = node.isSupported("Events",nullVersion);
141 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature03.js 141 isSupported = node.isSupported("Events",nullVersion);
142 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature04.js 140 isSupported = node.isSupported("Events",nullVersion);
141 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature05.js 141 isSupported = node.isSupported("Events",nullVersion);
142 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature06.js 140 isSupported = node.isSupported("Events",nullVersion);
141 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature07.js 140 isSupported = node.isSupported("Events",nullVersion);
141 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature08.js 142 isSupported = node.isSupported("Events",nullVersion);
143 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature09.js 141 isSupported = node.isSupported("Events",nullVersion);
142 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature10.js 145 isSupported = node.isSupported("Events",nullVersion);
146 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature11.js 140 isSupported = node.isSupported("Events",nullVersion);
141 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature12.js 146 isSupported = node.isSupported("Events",nullVersion);
147 featureImpl = node.getFeature("Events",nullVersion);
nodegetfeature13.js 146 isSupported = node.isSupported("Events",nullVersion);
147 featureImpl = node.getFeature("Events",nullVersion);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 37 import android.provider.CalendarContract.Events;
75 + " LEFT OUTER JOIN " + Views.EVENTS + " AS e ON"
76 + " (ca." + CalendarAlerts.EVENT_ID + "=e." + Events._ID + ")"
244 * This method looks at the 24-hour window from now for any events that it
284 // we start searching for events (the "start" variable defined above).
298 // Extract events from the database sorted by alarm time. The
303 // Also, ignore events whose end time is already in the past.
304 // Also, ignore events alarms that we have already scheduled.
330 + Reminders.MINUTES + " FROM " + Tables.INSTANCES + " INNER JOIN " + Views.EVENTS
331 + " ON (" + Views.EVENTS + "." + Events._ID + "=" + Tables.INSTANCES + ".
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 457 // Internal registration functions for events.
465 EventInfo &info = Events[getTag<EVENT>()];
471 EventInfo &info = Events[getTag<EVENT>()];
477 EventsTy::const_iterator I = Events.find(getTag<EVENT>());
478 if (I == Events.end())
590 EventsTy Events;
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 218 // Create a fake window relative to which all events will be sent when using offscreen rendering
222 // events don't get processed. Resizing the fake window to flash's size doesn't help.
225 // Flash requires the window to be hilited to process mouse move events.
358 // TODO: Also handle and pass on blur events (focus lost)
369 LOG(Events, "PluginView::setFocus(%d): Focus event not accepted", focused);
520 LOG(Events, "PluginView::paint(): Paint event not accepted");
575 // Mouse movement is handled by null timer events
584 // The plugin needs focus to receive keyboard events
606 LOG(Events, "PluginView::handleMouseEvent(): Mouse event type %d at %d,%d not accepted",
640 // PlatformKeyboardEvent::KeyUp events always have the text, so nothin
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
SearchActivity.java 35 import android.provider.CalendarContract.Events;
197 Uri eventUri = ContentUris.withAppendedId(Events.CONTENT_URI, event.id);
330 mContentResolver.registerContentObserver(Events.CONTENT_URI, true, mObserver);
Event.java 29 import android.provider.CalendarContract.Events;
48 * 1) events with an earlier start (begin for normal events, startday for allday)
49 * 2) events with a later end (end for normal events, endday for allday)
52 * The start and end day is sorted first so that all day events are
53 * sorted correctly with respect to events that are >24 hours (and
65 // The projection to use when querying instances to build a list of events
84 Events.ORGANIZER, // 17
85 Events.GUESTS_CAN_MODIFY, // 1
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
KeyEventMac.mm 157 LOG(Events, "received an unexpected number of characters in key event: %u", [s length]);
  /external/webkit/Source/WebCore/inspector/front-end/
ElementsPanel.js 116 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.NodeInserted, this._nodeInserted, this);
117 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.NodeRemoved, this._nodeRemoved, this);
118 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.AttrModified, this._attributesUpdated, this);
119 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.CharacterDataModified, this._characterDataModified, this);
120 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.DocumentUpdated, this._documentUpdated, this);
121 WebInspector.domAgent.addEventListener(WebInspector.DOMAgent.Events.ChildNodeCountUpdated, this._childNodeCountUpdated, this);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 34 import android.provider.CalendarContract.Events;
188 Uri.Builder builder = Events.CONTENT_URI.buildUpon();
205 Uri.Builder builder = Events.CONTENT_URI.buildUpon();
357 * Creates an expanding digest notification for expired events.
377 // expired events.
441 // If there are too many to display, add "+X missed events" for the last line.
502 Events.TITLE, // 2
503 Events.ORGANIZER, // 3
512 ContentUris.withAppendedId(Events.CONTENT_URI, eventId), EVENT_PROJECTION,
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java 38 import android.provider.CalendarContract.Events;
356 mUri = ContentUris.withAppendedId(Events.CONTENT_URI, mEvent.id);
370 mUri = ContentUris.withAppendedId(Events.CONTENT_URI, mEventBundle.id);
553 Uri uri = ContentUris.withAppendedId(Events.CONTENT_URI, mModel.mId);
558 values.put(Events.HAS_ALARM, hasAlarm ? 1 : 0);
576 // Still display the option so the user knows all events are
607 // to unsynced events in the app
650 // changeable item is response to default to all events.
709 // For allday events we want to go to the day in the
    [all...]

Completed in 1443 milliseconds

1 2 3 45 6 7