Lines Matching full:numeric

160 .. option:: -D#<FMT>,<NUMVAR>=<NUMERIC EXPRESSION>
162 Sets a filecheck numeric variable ``NUMVAR`` of matching format ``FMT`` to
163 the result of evaluating ``<NUMERIC EXPRESSION>`` that can be used in
165 ``FileCheck Numeric Variables and Expressions`` for details on supported
166 numeric expressions.
756 FileCheck Numeric Substitution Blocks
759 :program:`FileCheck` also supports numeric substitution blocks that allow
760 defining numeric variables and checking for numeric values that satisfy a
761 numeric expression constraint based on those variables via a numeric
762 substitution. This allows ``CHECK:`` directives to verify a numeric relation
765 The syntax to capture a numeric value is
799 As a result of the numeric variable definition being optional, it is possible
800 to only check that a numeric value is present in a given format. This can be
810 The syntax of a numeric substitution is
814 in this context indicating how a numeric expression value should be matched
816 the matching format of the numeric variable(s) used by the expression
817 constraint if any, and defaults to ``%u`` if no numeric variable is used,
819 conflict between format specifiers of several numeric variables, the
824 relate to the value of the numeric expression. The only currently accepted
832 * a numeric operand, or
833 * an expression followed by an operator and a numeric operand.
835 A numeric operand is a previously defined numeric variable, an integer
837 these elements. Numeric operands have 64-bit precision. Overflow and underflow
888 A numeric variable can also be defined to the result of a numeric expression,
889 in which case the numeric expression constraint is checked and if verified the
891 numeric expression and capturing its value into a numeric variable is thus
908 The ``--enable-var-scope`` option has the same effect on numeric variables as
912 numeric variable defined earlier in the same CHECK directive.
914 FileCheck Pseudo Numeric Variables
924 numeric variable which evaluates to the line number of the CHECK pattern where