Searched defs:NXT (Results 1 - 17 of 17) sorted by relevance

/external/smack/src/org/xbill/DNS/
H A DType.java103 public static final int NXT = 30; field in class:Type
256 types.add(NXT, "NXT", new NXTRecord());
/external/chromium_org/third_party/libxml/src/
H A Dxpointer.c890 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
903 #define NXT(val) ctxt->cur[(val)] macro
1013 if ((NXT(1) == ')') || (NXT(1) == '(') || (NXT(1) == '^')) {
1217 if ((name == NULL) && (CUR == '/') && (NXT(1) != '1')) {
H A Dpattern.c714 #define NXT(val) ctxt->cur[(val)] macro
1236 if ((CUR == '/') && (NXT(1) == '/')) {
1240 } else if ((CUR == '.') && (NXT(1) == '/') && (NXT(2) == '/')) {
1282 if (NXT(1) == '/') {
H A DHTMLparser.c277 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
298 #define NXT(val) ctxt->input->cur[(val)] macro
2388 if (!IS_ASCII_LETTER(NXT(1)) && (NXT(1) != '_') &&
2389 (NXT(1) != ':')) return(NULL);
2392 ((IS_ASCII_LETTER(NXT(1+i))) || (IS_ASCII_DIGIT(NXT(1+i))) ||
2393 (NXT(1+i) == ':') || (NXT(1+i) == '-') || (NXT(
[all...]
H A Dparser.c1790 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
1811 #define NXT(val) ctxt->input->cur[(val)] macro
2046 if ((RAW == '&') && (NXT(1) == '#') &&
2047 (NXT(2) == 'x')) {
2080 } else if ((RAW == '&') && (NXT(1) == '#')) {
2356 if (IS_BLANK_CH(NXT(1)) || NXT(1) == 0)
2443 start[1] = NXT(1);
2444 start[2] = NXT(2);
2445 start[3] = NXT(
[all...]
H A Dxmlregexp.c52 #define NXT(index) (ctxt->cur[index]) macro
5008 if ((start == '-') && (NXT(1) != ']') && (PREV != '[') && (PREV != '^')) {
5014 if ((cur != '-') || (NXT(1) == ']')) {
5092 } else if ((CUR == '-') && (NXT(1) == '[')) {
H A Dxpath.c2612 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
2625 #define NXT(val) ctxt->cur[(val)] macro
10372 } else if (IS_ASCII_DIGIT(CUR) || (CUR == '.' && IS_ASCII_DIGIT(NXT(1)))) {
10486 (CUR == '.' && IS_ASCII_DIGIT(NXT(1)))) {
10525 while (NXT(len) != 0) {
10526 if (NXT(len) == '/') {
10534 } else if (IS_BLANK_CH(NXT(len))) {
10537 } else if (NXT(len) == ':') {
10544 } else if ((NXT(len) == '(')) {
10560 } else if ((NXT(le
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dpattern.c1227 #define NXT(val) ctxt->cur[(val)] macro
1715 if ((CUR == '/') && (NXT(1) == '/')) {
1754 if ((CUR == '/') && (NXT(1) == '/')) {
1792 if ((CUR == '/') && (NXT(1) == '/')) {
H A Dxslt.c6750 #define NXT(val) cur[(val)] macro
6780 if ((CUR == 't') && (NXT(1) == 'y') && (NXT(2) == 'p') &&
6781 (NXT(3) == 'e')) {
6807 } else if ((CUR == 'h') && (NXT(1) == 'r') && (NXT(2) == 'e') &&
6808 (NXT(3) == 'f')) {
/external/libxml2/
H A Dxpointer.c890 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
903 #define NXT(val) ctxt->cur[(val)] macro
1224 if ((name == NULL) && (CUR == '/') && (NXT(1) != '1')) {
H A Dpattern.c714 #define NXT(val) ctxt->cur[(val)] macro
1236 if ((CUR == '/') && (NXT(1) == '/')) {
1240 } else if ((CUR == '.') && (NXT(1) == '/') && (NXT(2) == '/')) {
1282 if (NXT(1) == '/') {
H A DHTMLparser.c277 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
298 #define NXT(val) ctxt->input->cur[(val)] macro
2388 if (!IS_ASCII_LETTER(NXT(1)) && (NXT(1) != '_') &&
2389 (NXT(1) != ':')) return(NULL);
2392 ((IS_ASCII_LETTER(NXT(1+i))) || (IS_ASCII_DIGIT(NXT(1+i))) ||
2393 (NXT(1+i) == ':') || (NXT(1+i) == '-') || (NXT(
[all...]
H A Dparser.c1921 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
1942 #define NXT(val) ctxt->input->cur[(val)] macro
2175 if ((RAW == '&') && (NXT(1) == '#') &&
2176 (NXT(2) == 'x')) {
2207 } else if ((RAW == '&') && (NXT(1) == '#')) {
2481 if (IS_BLANK_CH(NXT(1)) || NXT(1) == 0)
2564 start[1] = NXT(1);
2565 start[2] = NXT(2);
2566 start[3] = NXT(
[all...]
H A Dxmlregexp.c52 #define NXT(index) (ctxt->cur[index]) macro
5008 if ((start == '-') && (NXT(1) != ']') && (PREV != '[') && (PREV != '^')) {
5014 if ((cur != '-') || (NXT(1) == ']')) {
5092 } else if ((CUR == '-') && (NXT(1) == '[')) {
H A Dxpath.c2656 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
2669 #define NXT(val) ctxt->cur[(val)] macro
10426 } else if (IS_ASCII_DIGIT(CUR) || (CUR == '.' && IS_ASCII_DIGIT(NXT(1)))) {
10540 (CUR == '.' && IS_ASCII_DIGIT(NXT(1)))) {
10579 while (NXT(len) != 0) {
10580 if (NXT(len) == '/') {
10588 } else if (IS_BLANK_CH(NXT(len))) {
10591 } else if (NXT(len) == ':') {
10598 } else if ((NXT(len) == '(')) {
10614 } else if ((NXT(le
[all...]
/external/libxslt/libxslt/
H A Dpattern.c1227 #define NXT(val) ctxt->cur[(val)] macro
1715 if ((CUR == '/') && (NXT(1) == '/')) {
1754 if ((CUR == '/') && (NXT(1) == '/')) {
1790 if ((CUR == '/') && (NXT(1) == '/')) {
H A Dxslt.c6750 #define NXT(val) cur[(val)] macro
6780 if ((CUR == 't') && (NXT(1) == 'y') && (NXT(2) == 'p') &&
6781 (NXT(3) == 'e')) {
6807 } else if ((CUR == 'h') && (NXT(1) == 'r') && (NXT(2) == 'e') &&
6808 (NXT(3) == 'f')) {

Completed in 611 milliseconds