Searched defs:CUR (Results 1 - 6 of 6) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/
H A Dxpointer.c885 * CUR returns the current xmlChar value, i.e. a 8 bit value
890 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
901 #define CUR (*ctxt->cur) macro
989 if (CUR != '(')
1003 while (CUR != 0) {
1004 if (CUR == ')') {
1010 } else if (CUR == '(') {
1012 } else if (CUR == '^') {
1017 *cur++ = CUR;
1022 if ((level != 0) && (CUR
[all...]
H A Dpattern.c712 #define CUR (*ctxt->cur) macro
719 while (IS_BLANK_CH(CUR)) NEXT
756 if (CUR == '"') {
775 } else if (CUR == '\'') {
901 if (CUR == ':') {
925 if (CUR == '*') {
935 if (CUR == ':') {
941 if (IS_BLANK_CH(CUR)) {
974 if (CUR == '*') {
1016 if (CUR
[all...]
H A DHTMLparser.c215 * CUR returns the current xmlChar value, i.e. a 8 bit value if compiled
220 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
222 * UPP(n) returns the n'th next xmlChar converted to uppercase. Same as CUR
261 /* #define CUR (ctxt->token ? ctxt->token : (int) (*ctxt->input->cur)) */
262 #define CUR ((int) (*ctxt->input->cur)) macro
2060 if (CUR == 0) return(1);
2061 if (CUR != '<') return(0);
2202 if (!IS_ASCII_LETTER(CUR) && (CUR != '_') &&
2203 (CUR !
[all...]
H A Dparser.c1615 * CUR returns the current xmlChar value, i.e. a 8 bit value if compiled
1619 * RAW same as CUR but in the input buffer, bypass any token
1621 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
1641 #define CUR (*ctxt->input->cur) macro
1751 * It's Okay to use CUR/NEXT here since all the blanks are on
1776 cur = CUR;
1779 cur = CUR;
1785 cur = CUR;
1821 return(CUR);
1870 * Using RAW/CUR/NEX
[all...]
H A Dxmlregexp.c51 #define CUR (*(ctxt->cur)) macro
4553 cur = CUR;
4556 cur = CUR;
4577 cur = CUR;
4596 cur = CUR;
4615 cur = CUR;
4650 cur = CUR;
4669 cur = CUR;
4692 cur = CUR;
4716 cur = CUR;
7812 #undef CUR macro
7813 #define CUR macro
[all...]
H A Dxpath.c2651 * CUR returns the current xmlChar value, i.e. a 8 bit value
2656 * NXT(n) returns the n'th next xmlChar. Same as CUR is should be used only
2667 #define CUR (*ctxt->cur) macro
9817 if (CUR == ':') {
10078 if ((CUR != '.') && ((CUR < '0') || (CUR > '9'))) {
10087 while ((CUR >= '0') && (CUR <= '9')) {
10089 tmp = (CUR
[all...]

Completed in 108 milliseconds