HomeSort by relevance Sort by last modified time
    Searched refs:take_while (Results 1 - 16 of 16) sorted by null

  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
take_while.cpp 6 SCENARIO("take_while sample"){
7 printf("//! [take_while sample]\n");
9 take_while([](int v){
16 printf("//! [take_while sample]\n");
  /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
take_while_test.py 15 """Tests for `tf.data.experimental.take_while()`."""
43 take_while = take_while_ops.take_while(_predicate_func)
46 dataset = dataset.apply(take_while).flat_map(
56 take_while_ops.take_while(lambda x: x < upper_bound))
72 take_while_ops.take_while(not_equal("test")))
91 take_while_ops.take_while(_predicate_func))
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-take_while.hpp 5 /*! \file rx-take_while.hpp
16 \snippet take_while.cpp take_while sample
17 \snippet output.txt take_while sample
42 struct take_while struct in namespace:rxcpp::operators::detail
49 take_while(test_type t) function in struct:rxcpp::operators::detail::take_while
97 /*! @copydoc rx-take_while.hpp
100 auto take_while(AN&&... an)
112 class TakeWhile = rxo::detail::take_while<SourceValue, rxu::decay_t<Predicate>>>
122 static_assert(sizeof...(AN) == 10000, "take_while takes (Predicate)")
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
take_while.cpp 2 #include <rxcpp/operators/rx-take_while.hpp>
15 SCENARIO("take_while not equal to 4", "[take_while][operators]"){
35 .take_while(not_equal_to(4))
62 SCENARIO("take_while, complete after", "[take_while][operators]"){
96 .take_while(not_equal_to(0))
139 SCENARIO("take_while, complete before", "[take_while][operators]"){
173 .take_while(not_equal_to(72)
    [all...]
  /external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/
take_while_dataset_serialization_test.py 34 take_while_ops.take_while(lambda x: x < upper_bound))
  /external/tensorflow/tensorflow/python/data/experimental/ops/
take_while_ops.py 31 """See `take_while()` for details."""
36 "tf.data.experimental.take_while()",
55 @tf_export("data.experimental.take_while")
56 def take_while(predicate): function
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
ArrayRefTest.cpp 152 EXPECT_EQ(Expected, AR1.take_while([](const int &N) { return N % 2 == 1; }));
155 AR1.take_while([](const int &N) { return N < 0; }));
156 EXPECT_EQ(AR1, AR1.take_while([](const int &N) { return N > 0; }));
StringRefTest.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
FormatVariadic.cpp 102 Fmt.drop_front(BO).take_while([](char C) { return C == '{'; });
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
ArrayRef.h 227 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { function in class:llvm::ArrayRef
403 MutableArrayRef<T> take_while(PredicateT Pred) const { function in class:llvm::ArrayRef
StringRef.h 629 StringRef take_while(function_ref<bool(char)> F) const {
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
ArrayRef.h 219 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { function in class:llvm::ArrayRef
396 MutableArrayRef<T> take_while(PredicateT Pred) const { function in class:llvm::ArrayRef
StringRef.h 618 StringRef take_while(function_ref<bool(char)> F) const {
  /external/tensorflow/tensorflow/python/data/experimental/
__init__.py 69 @@take_while
121 from tensorflow.python.data.experimental.ops.take_while_ops import take_while
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 262 auto StackOp = StackReg.take_while([](char c) { return isalpha(c); });
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
rx-observable.hpp     [all...]

Completed in 514 milliseconds