HomeSort by relevance Sort by last modified time
    Searched defs:PREV (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/storage/
IDBCursor.h 52 PREV = 2,
  /bionic/libc/private/isc/
list.h 28 #define LINK(type) struct { type *prev, *next; }
31 (elt)->link.prev = (type *)(-1); \
36 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1))
46 (list).head->link.prev = (elt); \
49 (elt)->link.prev = NULL; \
61 (elt)->link.prev = (list).tail; \
70 (elt)->link.next->link.prev = (elt)->link.prev; \
72 (list).tail = (elt)->link.prev; \
73 if ((elt)->link.prev != NULL)
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 63 PREV
295 return mAction == SmilPlayerAction.PREV;
369 public synchronized void prev() { method in class:SmilPlayer
371 mAction = SmilPlayerAction.PREV;
  /external/libxml2/
xmlregexp.c 58 * Need PREV to check on a '-' within a Character Group. May only be used
61 #define PREV (ctxt->cur[-1])
550 int stateno, atomno, targetno, prev; local
583 prev = transitions[stateno * (nbatoms + 1) + atomno + 1];
584 if (prev != 0) {
585 if (prev != targetno + 1) {
590 printf(" previous to is %d\n", prev);
    [all...]

Completed in 338 milliseconds