Home
last modified time | relevance | path

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

/dports/databases/grass7/grass-7.8.6/lib/db/sqlp/
H A Dsqlp.y268 … $$ = sqpNewExpressionNode ( sqpOperatorCode("-"), sqpNewValueNode ( NULL, 0, 0.0, SQLP_I ), $2 );
280 STRING { $$ = sqpNewValueNode ( $1, 0, 0.0, SQLP_S ); }
281 | INTNUM { $$ = sqpNewValueNode ( NULL, $1, 0.0, SQLP_I ); }
282 | FLOATNUM { $$ = sqpNewValueNode ( NULL, 0, $1, SQLP_D ); }
H A Dsql.c243 SQLPNODE *sqpNewValueNode(char *strval, int intval, double dblval, int type) in sqpNewValueNode() function
/dports/databases/grass7/grass-7.8.6/include/defs/
H A Dsqlp.h37 SQLPNODE *sqpNewValueNode(char *strval, int intval, double dblval, int type);