Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/library/
Dparser.rst232 .. function:: isexpr(st)
245 This function mirrors :func:`isexpr` in that it reports whether an ST object
247 assume that this function is equivalent to ``not isexpr(st)``, as additional
302 .. method:: ST.isexpr()
304 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.h191 #define isexpr(n) ((n)->ntype == NEXPR) macro
Drun.c166 if (isexpr(a)) in execute()