Lines Matching full:named

183 register named x.
186 Only 26 of these named storage registers are available.
399 The parameters named in a function definition are treated in
681 which, at the time of writing, consists of sine (named `s'),
696 BC will read and execute the named file or files before accepting
778 a program can have a variable named \fBx\fP,
779 an array named \fBx\fP and a function named \fBx\fP, all of which are separate and
822 Named expressions
824 Named expressions are
827 named expressions are legal on the left
829 The value of a named expression is the value stored in the place named.
833 Simple identifiers are named expressions.
838 Array elements are named expressions.
844 \fBscale\fP, \fBibase\fP and \fBobase\fP are all named expressions.
913 ++\|\fInamed-expression\fP
915 The named expression is
917 The result is the value of the named expression after
920 \-\-\|\fInamed-expression\fP
922 The named expression is
924 The result is the value of the named expression after
927 \fInamed-expression\fP\|++
929 The named expression is
931 The result is the value of the named expression before
934 \fInamed-expression\fP\|\-\-
936 The named expression is
938 The result is the value of the named expression before
1011 \fInamed-expression\fP = \fIexpression\fP
1015 to the named expression on the left.
1017 \fInamed-expression\fP += \fIexpression\fP
1019 \fInamed-expression\fP \-= \fIexpression\fP
1021 \fInamed-expression\fP *= \fIexpression\fP
1023 \fInamed-expression\fP /= \fIexpression\fP
1025 \fInamed-expression\fP %= \fIexpression\fP
1027 \fInamed-expression\fP ^= \fIexpression\fP
1030 to ``named expression = named expression OP expression'',