Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/idlelib/
DAutoComplete.py190 smalll = sorted(eval("__all__", namespace))
192 smalll = [s for s in bigl if s[:1] != '_']
199 smalll = sorted(entity.__all__)
201 smalll = [s for s in bigl if s[:1] != '_']
212 smalll = [s for s in bigl if s[:1] != '.']
216 if not smalll:
217 smalll = bigl
218 return smalll, bigl
/external/python/cpython3/Lib/idlelib/
Dautocomplete.py184 smalll = sorted(eval("__all__", namespace))
186 smalll = [s for s in bigl if s[:1] != '_']
193 smalll = sorted(entity.__all__)
195 smalll = [s for s in bigl if s[:1] != '_']
206 smalll = [s for s in bigl if s[:1] != '.']
210 if not smalll:
211 smalll = bigl
212 return smalll, bigl
/external/OpenCL-CTS/test_conformance/math_brute_force/
Dreference_math.cpp3622 static const double smalll = HEX_DBL(+, 1, 0, -, 607); in reference_hypotl() local
3648 return smalll * sqrtl(max * max + min * min); in reference_hypotl()