HomeSort by relevance Sort by last modified time
    Searched refs:active (Results 76 - 100 of 558) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/test/jme3test/animation/
TestCameraMotionPath.java 58 private boolean active = true; field in class:TestCameraMotionPath
160 if (active) {
161 active = false;
164 active = true;
TestMotionPath.java 57 private boolean active = true; field in class:TestMotionPath
154 if (active) {
155 active = false;
158 active = true;
  /external/libppp/src/
prompt.h 50 unsigned active : 1; /* Is the prompt active (^Z) */ member in struct:prompt
  /external/v8/test/mjsunit/regress/
regress-982.js 34 function g(active) {
36 if (i == active) {
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.h 108 virtual void setActive(bool active = true, bool pause = false);
  /external/webkit/Source/WebCore/page/animation/
ImplicitAnimation.h 71 bool active() const { return m_active; } function in class:WebCore::ImplicitAnimation
  /libcore/luni/src/main/java/java/util/concurrent/
AbstractExecutorService.java 138 int active = 1; local
146 ++active;
148 else if (active == 0)
162 --active;
  /external/qemu/hw/
armv7m_nvic.c 97 /* Make pending IRQ active. */
207 if (s->gic.irq_state[ARMV7M_EXCP_MEM].active) val |= (1 << 0);
208 if (s->gic.irq_state[ARMV7M_EXCP_BUS].active) val |= (1 << 1);
209 if (s->gic.irq_state[ARMV7M_EXCP_USAGE].active) val |= (1 << 3);
210 if (s->gic.irq_state[ARMV7M_EXCP_SVC].active) val |= (1 << 7);
211 if (s->gic.irq_state[ARMV7M_EXCP_DEBUG].active) val |= (1 << 8);
212 if (s->gic.irq_state[ARMV7M_EXCP_PENDSV].active) val |= (1 << 10);
213 if (s->gic.irq_state[ARMV7M_EXCP_SYSTICK].active) val |= (1 << 11);
349 /* TODO: Real hardware allows you to set/clear the active bits
  /packages/apps/Settings/src/com/android/settings/
NotificationStation.java 193 public boolean active; field in class:NotificationStation.HistoricalNotificationInfo
199 StatusBarNotification[] active = mNoMan.getActiveNotifications(mContext.getPackageName()); local
203 = new ArrayList<HistoricalNotificationInfo>(active.length + dismissed.length);
206 : new StatusBarNotification[][] { active, dismissed }) {
231 info.active = (resultset == active);
341 row.setAlpha(info.active ? 1.0f : 0.5f);
  /external/clang/utils/ABITest/
Enumeration.py 201 active = range(len(bounds))
202 active.sort(key=lambda i: bounds[i])
204 for i,index in enumerate(active):
206 W = len(active) - i
214 return active[i+idelta],prevLevel+delta
  /external/e2fsprogs/lib/ext2fs/
dosio.c 49 static PARTITION *active = NULL; variable
222 /* Found it! Make it the active one */
223 active = partitions[i];
224 *channel = alloc_io_channel(active);
344 partitions[npart++] = active = part;
349 *channel = alloc_io_channel(active);
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events.c 44 int active; member in struct:__anon13318
101 while ( SDL_EventQ.active ) {
150 /* Create the lock and set ourselves active */
161 SDL_EventQ.active = 1;
189 SDL_EventQ.active = 0;
325 if ( ! SDL_EventQ.active ) {
  /external/skia/src/core/
SkTLList.h 285 bool active = fList.isInList(block->fNodes + i); local
286 SkASSERT(free != active);
287 activeCnt += active;
306 bool active = fList.isInList(block->fNodes + i); local
307 SkASSERT(free != active);
308 activeCnt += active;
  /dalvik/vm/mterp/armv5te/
OP_INVOKE_OBJECT_INIT_RANGE.S 7 * skip it unless a debugger is active.
19 ands r1, #kSubModeDebuggerActive @ debugger active?
  /dalvik/vm/mterp/mips/
OP_INVOKE_OBJECT_INIT_RANGE.S 7 * skip it unless a debugger is active.
27 and a1, kSubModeDebuggerActive # debugger active?
  /dalvik/vm/mterp/x86/
OP_INVOKE_OBJECT_INIT_RANGE.S 7 * skip it unless a debugger is active.
21 andl $$kSubModeDebuggerActive, %eax # debugger active?
  /external/bzip2/
bzip.css 13 a, a:link, a:visited, a:active { color: #336699; }
  /external/chromium/chrome/browser/resources/net_internals/
tabswitcherview.js 93 if (tab.active)
126 // Update data needed by newly active tab, as it may be
140 // the active tab.
157 this.active = isSelected;
  /external/chromium/chrome/browser/ui/views/frame/
contents_container.cc 41 ContentsContainer::ContentsContainer(views::View* active)
42 : active_(active),
141 // The active view always gets the full bounds.
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BWin.h 209 virtual void WindowActivated(bool active) {
210 SDL_PrivateAppActive(active, SDL_APPINPUTFOCUS);
  /external/quake/quake/src/WinQuake/
server.h 37 qboolean active; // false if only a net client member in struct:__anon14655
80 qboolean active; // false = client is free member in struct:client_s
  /external/smack/src/org/jivesoftware/smackx/
ChatStateManager.java 170 if (updateChatState(chat, ChatState.active)) {
171 message.addExtension(new ChatStateExtension(ChatState.active));
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 469 // If the active list is empty, then reset the max columns, clear
499 // Remove the inactive allday events. An event on the active list
503 final Event active = iter.next(); local
504 if (active.endDay < event.startDay) {
505 colMask &= ~(1L << active.getColumn());
515 // Remove the inactive events. An event on the active list
519 final Event active = iter.next(); local
522 active.getEndMillis() - active.getStartMillis(), minDurationMillis);
523 if ((active.getStartMillis() + duration) <= start)
    [all...]
  /external/qemu/audio/
audio.c 855 if (sw->active) {
871 int was_active = sw->active;
884 since this might have been the only active voice */
914 sw->active = hw->enabled;
928 dolog ("Added %s active = %d\n", sw->name, sw->active);
930 if (sw->active) {
946 if (sw->active) {
1071 if (sw->active && !sw->empty) {
1313 if (sw->active != on)
    [all...]
  /external/chromium/chrome/browser/net/
service_providers_win.cc 41 provider.active = TRUE == namespace_providers[i].fActive;

Completed in 907 milliseconds

1 2 34 5 6 7 8 91011>>