HomeSort by relevance Sort by last modified time
    Searched full:dropwhile (Results 1 - 25 of 33) sorted by null

1 2

  /external/valgrind/auxprogs/
Merge3Way.hs 66 basename = reverse . drop 1 . dropWhile (/= '/') . reverse
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
itertools.so 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_itertools.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_itertools.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_itertools.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_itertools.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_itertools.py     [all...]
  /external/python/cpython3/Lib/test/
test_itertools.py     [all...]
  /external/python/cpython2/Lib/test/
test_itertools.py     [all...]
  /external/python/cpython2/Doc/library/
itertools.rst 53 :func:`dropwhile` pred, seq seq[n], seq[n+1], starting when pred fails ``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1``
272 .. function:: dropwhile(predicate, iterable)
279 def dropwhile(predicate, iterable):
280 # dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1
    [all...]
  /external/python/cpython3/Doc/library/
itertools.rst 54 :func:`dropwhile` pred, seq seq[n], seq[n+1], starting when pred fails ``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1``
332 .. function:: dropwhile(predicate, iterable)
339 def dropwhile(predicate, iterable):
340 # dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
itertoolsmodule.c 842 /* dropwhile object **********************************************************/
860 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds))
863 if (!PyArg_UnpackTuple(args, "dropwhile", 2, 2, &func, &seq))
936 "dropwhile(predicate, iterable) --> dropwhile object\n\
943 "itertools.dropwhile", /* tp_name */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
itertoolsmodule.c 823 /* dropwhile object **********************************************************/
841 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds))
844 if (!PyArg_UnpackTuple(args, "dropwhile", 2, 2, &func, &seq))
915 "dropwhile(predicate, iterable) --> dropwhile object\n\
922 "itertools.dropwhile", /* tp_name */
    [all...]
  /external/python/cpython2/Modules/
itertoolsmodule.c 839 /* dropwhile object **********************************************************/
857 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds))
860 if (!PyArg_UnpackTuple(args, "dropwhile", 2, 2, &func, &seq))
933 "dropwhile(predicate, iterable) --> dropwhile object\n\
940 "itertools.dropwhile", /* tp_name */
    [all...]
  /external/python/cpython3/Modules/
itertoolsmodule.c 1057 /* dropwhile object **********************************************************/
1075 if (type == &dropwhile_type && !_PyArg_NoKeywords("dropwhile()", kwds)
    [all...]
  /external/python/cpython3/Doc/howto/
functional.rst     [all...]
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.0.5/
kotlin-stdlib-1.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.5/
kotlin-stdlib-1.0.5.jar 
  /external/python/cpython2/Doc/howto/
functional.rst     [all...]
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.2-4/
kotlin-stdlib-1.1.2-4.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.2/
kotlin-stdlib-1.0.2.jar 
  /external/toolchain-utils/crosperf/
results_report.py 478 interesting_lines = itertools.dropwhile(lambda x: not samples_regex.match(x),
  /external/trappy/trappy/
ftrace.py 279 actual_trace = itertools.dropwhile(self.trace_hasnt_started(), fin)
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0/
kotlin-stdlib-1.0.0.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-stdlib/1.0.0/
kotlin-stdlib-1.0.0.jar 

Completed in 984 milliseconds

1 2