HomeSort by relevance Sort by last modified time
    Searched defs:events (Results 1 - 25 of 564) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/
throw-from-finally.js 28 var events = []; variable
31 events.push("1:try");
33 events.push("1:finally");
40 events.push("2:finally");
43 events.push(e);
49 events.push(e);
51 events.push("3:finally");
58 events.push(e);
60 events.push("4:finally");
64 events.push(e)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_expose.c 34 SDL_Event events[32]; local
36 /* Pull out all old refresh events */
37 SDL_PeepEvents(events, sizeof(events)/sizeof(events[0]),
SDL_resize.c 41 SDL_Event events[32]; local
54 /* Pull out all old resize events */
55 SDL_PeepEvents(events, sizeof(events)/sizeof(events[0]),
  /development/ndk/sources/android/libportable/common/include/
epoll_portable.h 28 unsigned int events; member in struct:epoll_event_portable
  /external/chromium_org/ppapi/cpp/extensions/dev/
events_dev.h 15 namespace events { namespace in namespace:pp::ext
30 } // namespace events
events_dev.cc 21 namespace events { namespace in namespace:pp::ext
41 } // namespace events
  /packages/apps/Mms/src/org/w3c/dom/events/
DocumentEvent.java 13 package org.w3c.dom.events;
23 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113'>Document Object Model (DOM) Level 2 Events Specification</a>.
EventException.java 13 package org.w3c.dom.events;
18 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113'>Document Object Model (DOM) Level 2 Events Specification</a>.
EventListener.java 13 package org.w3c.dom.events;
17 * handling events. Users implement the <code>EventListener</code> interface
27 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113'>Document Object Model (DOM) Level 2 Events Specification</a>.
EventTarget.java 13 package org.w3c.dom.events;
22 * of events to that <code>EventTarget</code>.
23 * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113'>Document Object Model (DOM) Level 2 Events Specification</a>.
45 * events of the specified type will be dispatched to the registered
47 * <code>EventTargets</code> beneath them in the tree. Events which
80 * This method allows the dispatch of events into the implementations
81 * event model. Events dispatched in this manner will have the same
82 * capturing and bubbling behavior as events dispatched directly by the
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
poll.h 43 short int events; /* Types of events poller cares about. */ member in struct:pollfd
44 short int revents; /* Types of events that actually occurred. */
53 Returns the number of file descriptors with events, zero if timed out,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
poll.h 43 short int events; /* Types of events poller cares about. */ member in struct:pollfd
44 short int revents; /* Types of events that actually occurred. */
53 Returns the number of file descriptors with events, zero if timed out,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
poll.h 43 short int events; /* Types of events poller cares about. */ member in struct:pollfd
44 short int revents; /* Types of events that actually occurred. */
53 Returns the number of file descriptors with events, zero if timed out,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
Transcript.java 10 private List<String> events = new ArrayList<String>(); field in class:Transcript
13 events.add(event);
17 assertEquals("Expected no events but got " + events + ".", 0, events.size());
21 assertEquals(Arrays.asList(expectedEvents), events); local
22 events.clear();
26 events.clear();
30 return events;
  /external/chromium/chrome/browser/metrics/
metrics_response.cc 12 int events; member in struct:SAXState
38 if (strcmp(Char(attrs[i]), "events") == 0) {
39 state->events = atoi(Char(attrs[i + 1]));
79 events_ = state.events;
  /external/chromium_org/base/win/
startup_information_unittest.cc 22 HANDLE* events = reinterpret_cast<HANDLE*>(::MapViewOfFile(section, local
25 if (::SetEvent(events[1]))
28 if (!::SetEvent(events[0]))
49 HANDLE* events = reinterpret_cast<HANDLE*>(::MapViewOfFile(section, local
52 // Make two inheritable events.
55 events[0] = ::CreateEvent(&security_attributes, false, false, NULL);
56 ASSERT_TRUE(events[0]);
57 events[1] = ::CreateEvent(&security_attributes, false, false, NULL);
58 ASSERT_TRUE(events[1]);
62 PROC_THREAD_ATTRIBUTE_HANDLE_LIST, &events[0]
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDump.h 29 SkBool events; member in class:SkDump
  /external/guava/guava-tests/test/com/google/common/eventbus/
StringCatcher.java 32 private List<String> events = Lists.newArrayList(); field in class:StringCatcher
36 events.add(string);
44 return events;
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
CinematicEventListener.java 6 package com.jme3.cinematic.events;
  /external/oprofile/libop/tests/
parse_event_tests.c 23 static struct events_test const events[] = variable
55 for (ev = events; ev->tests[0]; ++ev)
  /external/skia/src/animator/
SkDump.h 29 SkBool events; member in class:SkDump
  /libcore/luni/src/main/java/libcore/io/
StructPollfd.java 30 * The events we're interested in. POLLIN corresponds to being in select(2)'s read fd set,
33 public short events; field in class:StructPollfd
35 /** The events that actually happened. */
46 return "StructPollfd[fd=" + fd + ",events=" + events + ",revents=" + revents + "]";
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
eventpoll.h 44 __u32 events; member in struct:epoll_event
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
eventpoll.h 44 __u32 events; member in struct:epoll_event
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
eventpoll.h 44 __u32 events; member in struct:epoll_event

Completed in 1592 milliseconds

1 2 3 4 5 6 7 8 91011>>