Home
last modified time | relevance | path

Searched refs:catstr (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/test/support/
D__init__.py1285 def run_with_locale(catstr, *locales): argument
1290 category = getattr(locale, catstr)
/external/python/cpython2/Lib/test/
Dpickletester.py31 def run_with_locale(catstr, *locales): argument
36 category = getattr(locale, catstr)
/external/python/cpython3/Lib/test/support/
D__init__.py1602 def run_with_locale(catstr, *locales): argument
1607 category = getattr(locale, catstr)
/external/python/cpython3/Doc/library/
Dtest.rst816 .. decorator:: run_with_locale(catstr, *locales)
819 resetting it after it has finished. *catstr* is the locale category as
/external/virglrenderer/src/
Dvrend_shader.c485 static char *strcat_realloc(char *str, const char *catstr) in strcat_realloc() argument
487 char *new = realloc(str, strlen(str) + strlen(catstr) + 1); in strcat_realloc()
492 strcat(new, catstr); in strcat_realloc()