Searched defs:NEXT (Results 1 - 25 of 28) sorted by relevance

12

/external/elfutils/lib/
H A Ddynamicsizehash.h46 # define NEXT(name) struct name##_ent *next; macro
49 # define NEXT(name) macro
67 NEXT (name) \
126 # undef NEXT macro
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DImageFactory.java37 NEXT = getImage("next24.png");
75 public ImageIcon NEXT; field in class:ImageFactory
/external/liblzf/cs/
H A DCLZF.cs134 UInt32 NEXT(UInt32 v,byte[] Array,UInt32 ptr) method in class:LZF.NET.CLZF
177 hval = NEXT (hval, in_data,iidx);
229 hval = NEXT (hval,in_data, iidx);
233 hval = NEXT (hval, in_data,iidx);
/external/liblzf/
H A Dlzf_c.c49 # define NEXT(v,p) (((v) << 8) | p[2]) macro
70 # define NEXT(v,p) ((v) << 5) ^ p[2]
144 hval = NEXT (hval, ip);
235 hval = NEXT (hval, ip);
240 hval = NEXT (hval, ip);
249 hval = NEXT (hval, ip);
/external/liblzf/src/org/liblzf/
H A DCLZF.java134 static int NEXT(int v,byte[] Array,int ptr) method in class:CLZF
177 hval = NEXT (hval, in_data,iidx);
229 hval = NEXT (hval,in_data, iidx);
233 hval = NEXT (hval, in_data,iidx);
/external/objenesis/main/src/main/java/org/objenesis/instantiator/basic/
H A DObjectInputStreamInstantiator.java50 private static final int[] NEXT = new int[] {1, 2, 2}; field in class:ObjectInputStreamInstantiator.MockStream
118 sequence = NEXT[sequence];
/external/minijail/
H A Dbpf.h106 #define NEXT 0 macro
/external/zlib/src/examples/
H A Dgun.c155 #define NEXT() (have ? 0 : (have = in(indp, &next)), \ macro
178 if (NEXT() == -1) \
203 int last; /* last byte read by NEXT(), or -1 if EOF */
226 flags = NEXT();
249 if (NEXT() == -1) /* no compressed data is ok */
252 if (NEXT() == -1) /* missing a bit */
279 if (NEXT() == -1) { /* EOF is end of compressed data */
291 if (NEXT() == -1) /* can't end in middle of code */
402 if (NEXT() == -1) {
406 if (last != 31 || (NEXT() !
[all...]
/external/libxml2/
H A Dxzlib.c355 #define NEXT() ((strm->avail_in == 0 && xz_avail(state) == -1) ? -1 : \ macro
465 if (NEXT() != 8) { /* compression method */
470 flags = NEXT();
476 NEXT(); /* modification time */
477 NEXT();
478 NEXT();
479 NEXT();
480 NEXT(); /* extra flags */
481 NEXT(); /* operating system */
483 len = (unsigned) NEXT();
[all...]
H A Duri.c127 #define NEXT(p) ((*p == '%')? p += 3 : p++) macro
257 NEXT(cur);
293 NEXT(cur);
365 NEXT(cur);
478 NEXT(cur);
562 NEXT(cur);
H A Dxpointer.c859 * NEXT Skip to the next character, this does the proper decoding
870 while (IS_BLANK_CH(*(ctxt->cur))) NEXT
873 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
954 NEXT;
970 NEXT;
977 NEXT;
981 NEXT;
1044 NEXT;
1194 NEXT;
1198 NEXT;
[all...]
H A Dcatalog.c2142 #define NEXT cur++; macro
2145 #define SKIP_BLANKS while (IS_BLANK_CH(*cur)) NEXT;
2161 NEXT;
2188 NEXT;
2191 NEXT;
2218 NEXT;
2231 NEXT;
H A Dpattern.c723 while (IS_BLANK_CH(CUR)) NEXT
726 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
761 NEXT;
780 NEXT;
907 NEXT;
931 NEXT;
943 NEXT;
979 NEXT;
1024 NEXT;
1038 NEXT;
[all...]
H A Dparser.c2003 * NEXT Skip to the next character, this does the proper decoding
2103 #define NEXT xmlNextChar(ctxt) macro
2143 * It's Okay to use CUR/NEXT here since all the blanks are on
2173 NEXT;
2271 * Using RAW/CUR/NEXT is okay since we are working on ASCII range here
2298 NEXT;
2302 /* on purpose to avoid reentrancy problems with NEXT and SKIP */
2327 NEXT;
2331 /* on purpose to avoid reentrancy problems with NEXT and SKIP */
2590 NEXT;
[all...]
H A Dxmlregexp.c53 #define NEXT ctxt->cur++ macro
4633 NEXT;
4636 NEXT;
4639 NEXT;
4642 NEXT;
4645 NEXT;
4648 NEXT;
4654 NEXT;
4657 NEXT;
4661 NEXT;
7861 #undef NEXT macro
7862 #define NEXT macro
[all...]
H A Dxpath.c3043 * NEXT Skip to the next character, this does the proper decoding
3061 while (IS_BLANK_CH(*(ctxt->cur))) NEXT
3064 #define NEXT ((*ctxt->cur) ? ctxt->cur++: ctxt->cur) macro
9930 NEXT;
10211 NEXT;
10220 NEXT;
10227 NEXT;
10235 NEXT;
10240 NEXT;
10243 NEXT;
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRelativeDateTimeFormatter.java53 * fmt.format(1, Direction.NEXT, RelativeUnit.DAYS); // "in 1 day"
54 * fmt.format(3, Direction.NEXT, RelativeUnit.DAYS); // "in 3 days"
59 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday"
64 * fmt.format(Direction.NEXT, AbsoluteUnit.DAY); // "tomorrow"
246 NEXT, enum constant in enum:RelativeDateTimeFormatter.Direction
450 * @param direction NEXT means a future relative date; LAST means a past
455 * NEXT or LAST.
458 if (direction != Direction.LAST && direction != Direction.NEXT) {
459 throw new IllegalArgumentException("direction must be NEXT or LAST");
462 int pastFutureIndex = (direction == Direction.NEXT
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRelativeDateTimeFormatter.java52 * fmt.format(1, Direction.NEXT, RelativeUnit.DAYS); // "in 1 day"
53 * fmt.format(3, Direction.NEXT, RelativeUnit.DAYS); // "in 3 days"
58 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday"
63 * fmt.format(Direction.NEXT, AbsoluteUnit.DAY); // "tomorrow"
277 NEXT, enum constant in enum:RelativeDateTimeFormatter.Direction
505 * @param direction NEXT means a future relative date; LAST means a past
510 * NEXT or LAST.
514 if (direction != Direction.LAST && direction != Direction.NEXT) {
515 throw new IllegalArgumentException("direction must be NEXT or LAST");
518 int pastFutureIndex = (direction == Direction.NEXT
[all...]
/external/python/cpython2/Modules/cjkcodecs/
H A Dcjkcodecs.h109 #define NEXT(i, o) \ macro
/external/python/cpython2/RISCOS/Modules/
H A Ddrawfmodule.c14 #define NEXT(d) ((drawfile_object*)((char*)(d)+(d)->size)) macro
64 d=NEXT(d);
72 for(;n>0;n--) d=NEXT(d);
401 d=NEXT(d);
420 for(;(char*)d<end;d=NEXT(d))
454 for(;q>0;q--) e=NEXT(e);
518 d=NEXT(d);
568 d=NEXT(d);
/external/swiftshader/third_party/LLVM/lib/Support/
H A Dregcomp.c120 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0)
122 #define NEXT() (p->next++) macro
390 NEXT();
427 NEXT();
598 NEXT();
756 NEXT();
784 NEXT();
846 NEXT();
/external/flatbuffers/src/
H A Didl_parser.cpp61 #define NEXT() ECHECK(Next()) macro
506 NEXT();
512 NEXT();
551 NEXT();
556 NEXT();
635 NEXT();
769 NEXT();
838 if ((!opts.strict_json || !fieldn) && Is('}')) { NEXT(); break; }
841 NEXT();
856 NEXT(); // Ignor
[all...]
/external/llvm/lib/Support/
H A Dregcomp.c128 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0)
130 #define NEXT() (p->next++) macro
426 NEXT();
463 NEXT();
634 NEXT();
792 NEXT();
820 NEXT();
882 NEXT();
/external/opencv/cv/src/
H A DmycvHaarDetectObjects.cpp456 #define NEXT(n, i) (((n) + (i)/(n)) >> 1) macro
460 unsigned int n1 = NEXT(n, (unsigned int)number);
464 n1 = NEXT(n, number);
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A Dregcomp.c128 #define EAT(c) ((SEE(c)) ? (NEXT(), 1) : 0)
130 #define NEXT() (p->next++) macro
426 NEXT();
463 NEXT();
634 NEXT();
792 NEXT();
820 NEXT();
882 NEXT();

Completed in 948 milliseconds

12