Home
last modified time | relevance | path

Searched refs:num_type (Results 1 – 1 of 1) sorted by relevance

/external/libxml2/
Dxmlschemastypes.c1512 #define PARSE_DIGITS(num, cur, num_type) \ argument
1514 num_type = -1; \
1534 #define PARSE_NUM(num, cur, num_type) \ argument
1536 PARSE_DIGITS(num, cur, num_type); \
1537 if (!num_type && (*cur == '.')) { \
1541 num_type = -1; \
1543 num_type = 1; \
1795 int num_type = 0; /* -1 = invalid, 0 = int, 1 = floating */ in xmlSchemaValidateDuration() local
1838 PARSE_NUM(num, cur, num_type); in xmlSchemaValidateDuration()
1840 if ((num_type == -1) || (*cur == 0)) in xmlSchemaValidateDuration()
[all …]