OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PREV
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/storage/
IDBCursor.idl
33
const unsigned short
PREV
= 2;
IDBIndex.cpp
60
if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBCursor::
PREV
&& direction != IDBCursor::PREV_NO_DUPLICATE) {
78
if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBCursor::
PREV
&& direction != IDBCursor::PREV_NO_DUPLICATE) {
IDBCursor.h
52
PREV
= 2,
IDBObjectStore.cpp
153
if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBCursor::
PREV
&& direction != IDBCursor::PREV_NO_DUPLICATE) {
/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])
557
int stateno, atomno, targetno,
prev
;
local
590
prev
= transitions[stateno * (nbatoms + 1) + atomno + 1];
591
if (
prev
!= 0) {
592
if (
prev
!= targetno + 1) {
597
printf(" previous to is %d\n",
prev
);
[
all
...]
Completed in 368 milliseconds