Home
last modified time | relevance | path

Searched refs:isexpr (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Doc/library/
Dparser.rst233 .. function:: isexpr(st)
246 This function mirrors :func:`isexpr` in that it reports whether an ST object
248 assume that this function is equivalent to ``not isexpr(st)``, as additional
303 .. method:: ST.isexpr()
305 Same as ``isexpr(st)``.
/external/python/cpython2/Doc/library/
Dparser.rst235 .. function:: isexpr(ast)
248 This function mirrors :func:`isexpr` in that it reports whether an ST object
250 assume that this function is equivalent to ``not isexpr(ast)``, as additional
305 .. method:: ST.isexpr()
307 Same as ``isexpr(st)``.
/external/one-true-awk/
Dawk.h207 #define isexpr(n) ((n)->ntype == NEXPR) macro
Drun.c170 if (isexpr(a)) in execute()