Text is matched against this regex pair, returning true only
if this or previous text matches the first regex, up until
the text is matched against the second regex.
Adds {var_name -> offset} mappings to the tuples so that global variables
can be set by the interpreter while processing filename and name=value
entries from the command-line.
Assigns an item as a particular input field; the field number can be 0.
_ATAN2_ -
Static variable in class org.jawk.intermediate.AwkTuples
Built-in function that pops the first two items off the stack, calls the java.lang.Math.atan2 method
with these as arguments, and places the result onto the stack.
_COS_ -
Static variable in class org.jawk.intermediate.AwkTuples
Built-in function that pops the top-of-stack, calls the java.lang.Math.cos method
with the top-of-stack as the argument, and places the result onto the stack.
_DEC_ -
Static variable in class org.jawk.intermediate.AwkTuples
Decreases the variable reference by one; pushes the result
onto the stack.
_EXP_ -
Static variable in class org.jawk.intermediate.AwkTuples
Built-in function that pops the top-of-stack, calls the java.lang.Math.exp method
with the top-of-stack as the argument, and places the result onto the stack.
Depending on the argument, pop and evaluate the string length of the top-of-stack
or evaluate the string length of $0; in either case, push the result onto
the stack.
_LOG_ -
Static variable in class org.jawk.intermediate.AwkTuples
Built-in function that pops the top-of-stack, calls the java.lang.Math.log method
with the top-of-stack as the argument, and places the result onto the stack.
_MATCH_ -
Static variable in class org.jawk.intermediate.AwkTuples
Built-in function that searches a string as input to a regular expression,
the location of the match is pushed onto the stack.
Takes the modulus of the contents of an input field by an adjustment value;
assigns the result to the input field and pushes the result onto the stack.
_SIN_ -
Static variable in class org.jawk.intermediate.AwkTuples
Built-in function that pops the top-of-stack, calls the java.lang.Math.sin method
with the top-of-stack as the argument, and places the result onto the stack.
_SLEEP_ -
Static variable in class org.jawk.intermediate.AwkTuples
Extension: Pauses the execution thread by N number of seconds.
_SPLIT_ -
Static variable in class org.jawk.intermediate.AwkTuples
Built-in function to split a string by a regexp and put the
components into an array.