HomeSort by: relevance | last modified time | path
    Searched defs:is_graph (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/contrib/unicode/from_glibc/
unicode_utils.py 366 def is_graph(code_point): function
387 return (is_graph(code_point)
474 if (is_space(code_point) and is_graph(code_point)):
489 if (is_cntrl(code_point) and is_graph(code_point)):
521 and not (is_graph(code_point) or is_space(code_point))):
525 and (is_graph(code_point) or code_point == 0x0020)):
  /src/external/gpl3/gcc.old/dist/contrib/unicode/from_glibc/
unicode_utils.py 366 def is_graph(code_point): function
387 return (is_graph(code_point)
474 if (is_space(code_point) and is_graph(code_point)):
489 if (is_cntrl(code_point) and is_graph(code_point)):
521 and not (is_graph(code_point) or is_space(code_point))):
525 and (is_graph(code_point) or code_point == 0x0020)):

Completed in 29 milliseconds