• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/

Lines Matching defs:number

243     "Invalid number of arguments\n",
380 * @line: the line number
381 * @no: the error number
406 int number;
428 list->number = 0;
430 } else if (list->size <= list->number) {
441 list->items[list->number++] = item;
466 ret->number = 0;
574 int maxStep; /* Maximum number of steps allocated */
1036 fprintf(output, "Object is a number : Infinity\n");
1039 fprintf(output, "Object is a number : -Infinity\n");
1043 fprintf(output, "Object is a number : NaN\n");
1045 fprintf(output, "Object is a number : 0\n");
1047 fprintf(output, "Object is a number : %0g\n", cur->floatval);
1715 leftObjs -= cache->nodesetObjs->number;
1717 leftObjs -= cache->stringObjs->number;
1719 leftObjs -= cache->booleanObjs->number;
1721 leftObjs -= cache->numberObjs->number;
1723 leftObjs -= cache->miscObjs->number;
1817 for (i = 0; i < list->number; i++) {
1868 * This will set the maximum number of XPath objects
1870 * There are 5 slots for: node-set, string, number, boolean, and
1871 * misc objects. Use <0 for the default number (100).
1927 (cache->miscObjs->number != 0))
1932 cache->miscObjs->items[--cache->miscObjs->number];
1963 (cache->stringObjs->number != 0))
1969 cache->stringObjs->items[--cache->stringObjs->number];
1977 (cache->miscObjs->number != 0))
1984 cache->miscObjs->items[--cache->miscObjs->number];
2015 (cache->nodesetObjs->number != 0))
2022 cache->nodesetObjs->items[--cache->nodesetObjs->number];
2040 (cache->miscObjs->number != 0))
2048 cache->miscObjs->items[--cache->miscObjs->number];
2079 (cache->stringObjs->number != 0))
2084 cache->stringObjs->items[--cache->stringObjs->number];
2093 (cache->miscObjs->number != 0))
2098 cache->miscObjs->items[--cache->miscObjs->number];
2128 (cache->stringObjs->number != 0))
2133 cache->stringObjs->items[--cache->stringObjs->number];
2144 (cache->miscObjs->number != 0))
2149 cache->miscObjs->items[--cache->miscObjs->number];
2182 (cache->booleanObjs->number != 0))
2187 cache->booleanObjs->items[--cache->booleanObjs->number];
2195 (cache->miscObjs->number != 0))
2200 cache->miscObjs->items[--cache->miscObjs->number];
2230 (cache->numberObjs->number != 0))
2235 cache->numberObjs->items[--cache->numberObjs->number];
2243 (cache->miscObjs->number != 0))
2248 cache->miscObjs->items[--cache->miscObjs->number];
2375 * Converts an existing object to its number() equivalent
2430 * returns the number of items on the value stack
2485 * Pops a number from the stack, handling conversion if needed.
2488 * Returns the number
2657 * @number: number to format
2661 * Convert the number into a string representation.
2664 xmlXPathFormatNumber(double number, char buffer[], int buffersize)
2666 switch (xmlXPathIsInf(number)) {
2676 if (xmlXPathIsNaN(number)) {
2679 } else if (number == 0 && xmlXPathGetSign(number) != 0) {
2681 } else if (number == ((int) number)) {
2684 int value = (int) number;
2711 absolute_value = fabs(number);
2725 integer_place, fraction_place, number);
2740 fraction_place, number);
2778 * field, the value stored is actually - the node number (starting at -1)
2781 * Returns the number of elements found in the document or -1 in case
5375 #define XP_CACHE_WANTS(sl, n) ((sl == NULL) || ((sl)->number < n))
5531 * @val: a number
5533 * Converts a number to its string value.
5691 * Converts a boolean to its number value
5693 * Returns the number value
5706 * Converts a string to its number value
5708 * Returns the number value
5719 * Converts a node to its number value
5721 * Returns the number value
5743 * Converts a node-set to its number value
5745 * Returns the number value
5764 * Converts an XPath object to its number value
5766 * Returns the number value
5809 * Converts an existing object to its number() equivalent
5829 * @val: a number
5831 * Converts a number to its boolean value
6302 * Implement the compare operation between a nodeset and a number
6308 * If one object to be compared is a node-set and the other is a number,
6310 * node-set such that the result of performing the comparison on the number
6312 * node to a number using the number function is true.
6422 * The number function converts its argument to a number as follows:
6425 * is converted to the IEEE 754 number that is nearest (according
6618 * If one object to be compared is a node-set and the other is a number,
6621 * number to be compared and on the result of converting the string-value
6622 * of that node to a number using the number function is true.
7158 * comparison will be true if and only if the first number is less than the
7159 * second number. The <= comparison will be true if and only if the first
7160 * number is less than or equal to the second number. The > comparison
7161 * will be true if and only if the first number is greater than the second
7162 * number. The >= comparison will be true if and only if the first number
7163 * is greater than or equal to the second number.
7285 * by calling the number function.
7314 * by calling the number function.
7337 * by calling the number function.
7360 * by calling the number function.
7383 * by calling the number function.
7424 * by calling the number function.
8302 * @nargs: the number of arguments
8305 * number last()
8306 * The last function returns the number of nodes in the context node list.
8327 * @nargs: the number of arguments
8330 * number position()
8354 * @nargs: the number of arguments
8357 * number count(node-set)
8455 * @nargs: the number of arguments
8510 * @nargs: the number of arguments
8568 * @nargs: the number of arguments
8620 * @nargs: the number of arguments
8701 * @nargs: the number of arguments
8709 * - A number is converted to a string as follows
8715 * + if the number is an integer, the number is represented in
8717 * zeros, preceded by a minus sign (-) if the number is negative
8718 * + otherwise, the number is represented in decimal form as a
8721 * decimal point, preceded by a minus sign (-) if the number
8727 * number from all other IEEE 754 numeric values.
8755 * @nargs: the number of arguments
8758 * number string-length(string?)
8759 * The string-length returns the number of characters in the string
8795 * @nargs: the number of arguments
8839 * @nargs: the number of arguments
8873 * @nargs: the number of arguments
8909 * @nargs: the number of arguments
8912 * string substring(string, number, number?)
9013 /* number of chars to copy */
9033 * @nargs: the number of arguments
9075 * @nargs: the number of arguments
9119 * @nargs: the number of arguments
9183 * @nargs: the number of arguments
9267 * @nargs: the number of arguments
9272 * - a number is true if and only if it is neither positive or
9291 * @nargs: the number of arguments
9309 * @nargs: the number of arguments
9323 * @nargs: the number of arguments
9337 * @nargs: the number of arguments
9387 * @nargs: the number of arguments
9389 * Implement the number() XPath function
9390 * number number(object?)
9419 * @nargs: the number of arguments
9422 * number sum(node-set)
9463 * @nargs: the number of arguments
9466 * number floor(number)
9468 * number that is not greater than the argument and that is an integer.
9490 * @nargs: the number of arguments
9493 * number ceiling(number)
9495 * number that is not less than the argument and that is an integer.
9526 * @nargs: the number of arguments
9529 * number round(number)
9530 * The round function returns the number that is closest to the
9861 * These are used as divisors for the fractional part of a number.
10863 * a filter can only diminish the number of items in a sequence,
11490 * context node, with the number of nodes in the
11625 * Check if the node set contains a sufficient number of nodes for
12040 * ELEM Object is a number : 1 -- predOp->ch2 = [1]
12486 * Returns the number of examined objects.
12610 * Returns the number of nodes traversed
13030 * Returns the number of nodes traversed
13465 * ELEM Object is a number : 1
13613 * context node, with the number of nodes in the
13969 * For predicates a result of type "number" is handled
13972 * "If the result is a number, the result will be converted
13973 * to true if the number is equal to the context position
14305 * the result to a boolean. If the result is a number, the result will
14306 * be converted to true if the number is equal to the position of the
14309 * is not a number, then the result will be converted as if by a call
14343 * the result to a boolean. If the result is a number, the result will
14344 * be converted to true if the number is equal to the position of the
14347 * is not a number, then the result will be converted as if by a call
14889 * @nargs: the number of arguments
15034 xmlXPathRegisterFunc(ctxt, (const xmlChar *)"number",