OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Events
(Results
1 - 16
of
16
) sorted by null
/external/webkit/Source/WebCore/inspector/front-end/
DebuggerModel.js
39
WebInspector.DebuggerModel.
Events
= {
63
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.DebuggerWasEnabled);
68
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.DebuggerWasDisabled);
112
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.BreakpointResolved, {breakpointId: breakpointId, location: location});
119
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.Reset);
173
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.DebuggerPaused, details);
179
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.DebuggerResumed);
186
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.ParsedScriptSource, script);
192
this.dispatchEventToListeners(WebInspector.DebuggerModel.
Events
.FailedToParseScriptSource, script);
DebuggerPresentationModel.js
41
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.
Events
.DebuggerWasEnabled, this._debuggerWasEnabled, this);
42
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.
Events
.ParsedScriptSource, this._parsedScriptSource, this);
43
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.
Events
.FailedToParseScriptSource, this._failedToParseScriptSource, this);
44
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.
Events
.BreakpointResolved, this._breakpointResolved, this);
45
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.
Events
.DebuggerPaused, this._debuggerPaused, this);
46
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.
Events
.DebuggerResumed, this._debuggerResumed, this);
47
WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.
Events
.Reset, this._debuggerReset, this);
52
WebInspector.DebuggerPresentationModel.
Events
= {
108
this.dispatchEventToListeners(WebInspector.DebuggerPresentationModel.
Events
.SourceFileChanged, this._sourceFiles[sourceFileId]);
118
this.dispatchEventToListeners(WebInspector.DebuggerPresentationModel.
Events
.SourceFileAdded, sourceFile)
[
all
...]
DOMAgent.js
343
WebInspector.DOMAgent.
Events
= {
432
this.dispatchEventToListeners(WebInspector.DOMAgent.
Events
.AttrModified, node);
439
this.dispatchEventToListeners(WebInspector.DOMAgent.
Events
.CharacterDataModified, node);
463
this.dispatchEventToListeners(WebInspector.DOMAgent.
Events
.DocumentUpdated, this._document);
498
this.dispatchEventToListeners(WebInspector.DOMAgent.
Events
.ChildNodeCountUpdated, node);
507
this.dispatchEventToListeners(WebInspector.DOMAgent.
Events
.NodeInserted, node);
515
this.dispatchEventToListeners(WebInspector.DOMAgent.
Events
.NodeRemoved, {node:node, parent:parent});
Resource.js
111
WebInspector.Resource.
Events
= {
732
this.dispatchEventToListeners(WebInspector.Resource.
Events
.RevisionAdded, revision);
SourceFrame.js
55
WebInspector.SourceFrame.
Events
= {
338
this.dispatchEventToListeners(WebInspector.SourceFrame.
Events
.Loaded);
[
all
...]
CSSStyleModel.js
44
WebInspector.CSSStyleModel.
Events
= {
193
if (!majorChange || !styleSheetId || !this.hasEventListeners(WebInspector.CSSStyleModel.
Events
.StyleSheetChanged)) {
201
this.dispatchEventToListeners(WebInspector.CSSStyleModel.
Events
.StyleSheetChanged, { styleSheetId: styleSheetId, content: content, majorChange: majorChange });
629
this._cssModel.addEventListener(WebInspector.CSSStyleModel.
Events
.StyleSheetChanged, this._styleSheetChanged, this);
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarSyncTestingBase.java
45
protected Uri mEventsUri = CalendarContract.
Events
.CONTENT_URI;
55
EVENT_COLUMNS_TO_SKIP.add(CalendarContract.
Events
._ID);
56
EVENT_COLUMNS_TO_SKIP.add(CalendarContract.
Events
.SYNC_DATA5);
57
EVENT_COLUMNS_TO_SKIP.add(CalendarContract.
Events
.SYNC_DATA4);
58
EVENT_COLUMNS_TO_SKIP.add(CalendarContract.
Events
.SYNC_DATA2);
59
EVENT_COLUMNS_TO_SKIP.add(CalendarContract.
Events
.DIRTY);
60
EVENT_COLUMNS_TO_SKIP.add(CalendarContract.
Events
.SYNC_DATA8);
108
m.put(CalendarContract.
Events
.CALENDAR_ID, calendarId);
109
m.put(CalendarContract.
Events
.TITLE, event.mTitle);
110
m.put(CalendarContract.
Events
.DTSTART, event.mDtstart)
[
all
...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProvider2.java
53
import android.provider.CalendarContract.
Events
;
96
new String[] {
Events
._ID};
99
Events
._SYNC_ID,
100
Events
.RRULE,
101
Events
.RDATE,
102
Events
.ORIGINAL_ID,
103
Events
.ORIGINAL_SYNC_ID,
124
* Projection to query for correcting times in allDay
events
.
127
Events
._ID,
128
Events
.DTSTART
3607
Cursor
events
= null;
local
[
all
...]
/external/webrtc/src/modules/audio_processing/main/source/
audio_processing_impl.cc
34
enum
Events
{
/packages/apps/Calendar/src/com/android/calendar/
DeleteEventHelper.java
32
import android.provider.CalendarContract.
Events
;
42
* A helper class for deleting
events
. If a normal event is selected for
49
*
events
in the series, or this event plus all following
events
. The user
128
Uri uri = ContentUris.withAppendedId(CalendarContract.
Events
.CONTENT_URI, id);
165
//
events
in the series to delete.
186
* a normal event) or a dialog asking which
events
to delete (if the
188
* the initial selection and is only used for repeating
events
. Set
198
Uri uri = ContentUris.withAppendedId(CalendarContract.
Events
.CONTENT_URI, eventId);
219
* <li>
Events
._ID </li
[
all
...]
/external/webrtc/src/modules/audio_processing/main/test/process_test/
process_test.cc
364
enum
Events
{
/external/chromium/net/tools/flip_server/
epoll_server.h
25
//
events
. Note that enabling this code vastly slows
49
EpollEvent(int
events
, bool is_epoll_wait)
50
: in_events(
events
),
54
int in_events; // incoming
events
131
// By default, we don't wait any amount of time for
events
, and
145
// in the set of
events
included in event_mask occurs on the
164
// the
events
for which the callback would like to be
226
// no longer request
events
when 'fd' is readable.
237
// request
events
when 'fd' is readable.
248
// no longer request
events
when 'fd' is writable
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h
357
// Internal registration functions for
events
.
365
EventInfo &info =
Events
[getTag<EVENT>()];
371
EventInfo &info =
Events
[getTag<EVENT>()];
377
EventsTy::const_iterator I =
Events
.find(getTag<EVENT>());
378
if (I ==
Events
.end())
485
EventsTy
Events
;
/external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js
1219
var
Events
= new Class({
1221
$
events
: {},
1224
type =
Events
.removeOn(type);
1226
this.$
events
[type] = this.$
events
[type] || [];
1227
this.$
events
[type].include(fn);
1233
addEvents: function(
events
){
1234
for (var type in
events
) this.addEvent(type,
events
[type]);
1239
type =
Events
.removeOn(type)
[
all
...]
/frameworks/base/core/java/android/provider/
CalendarContract.java
55
* <li>The {@link
Events
} table holds the event specific information. Each row
59
* properties are stored on separate tables and reference the {@link
Events
#_ID}
63
* one-time
events
there will be a 1:1 mapping of instances to
events
. For
64
* recurring
events
, multiple rows will automatically be generated which
77
* delete them when their related
events
are deleted.</li>
232
* Columns for Sync information used by Calendars and
Events
tables. These
279
* If set to 1 this causes
events
on this calendar to be duplicated with
280
* {@link
Events
#LAST_SYNCED} set to 1 whenever the event
283
* queries of the
events
table. It will also be deleted when th
[
all
...]
/prebuilt/sdk/14/
android.jar
Completed in 3223 milliseconds