/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | take_while_test.py | 46 take_while = take_while_ops.take_while(_predicate_func) 49 dataset = dataset.apply(take_while).flat_map( 70 take_while_ops.take_while(lambda x: x < upper_bound)) 87 take_while_ops.take_while(not_equal("test"))) 112 take_while_ops.take_while(_predicate_func)) 125 take_while_ops.take_while(lambda x: x < 2)).repeat(5)
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
D | rx-take_while.hpp | 42 struct take_while struct 49 take_while(test_type t) in take_while() function 100 auto take_while(AN&&... an) in take_while() function 112 class TakeWhile = rxo::detail::take_while<SourceValue, rxu::decay_t<Predicate>>>
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/ |
D | take_while.cpp | 35 .take_while(not_equal_to(4)) in __anon657880d20202() 96 .take_while(not_equal_to(0)) in __anon657880d20302() 173 .take_while(not_equal_to(72)) in __anon657880d20402() 245 .take_while(not_equal_to(0)) in __anon657880d20502() 322 .take_while(not_equal_to(10)) in __anon657880d20602() 398 .take_while(not_equal_to(1)) in __anon657880d20702() 460 .take_while(not_equal_to(100)) in __anon657880d20802() 521 .take_while(not_equal_to(1)) in __anon657880d20902()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | ArrayRefTest.cpp | 152 EXPECT_EQ(Expected, AR1.take_while([](const int &N) { return N % 2 == 1; })); in TEST() 155 AR1.take_while([](const int &N) { return N < 0; })); in TEST() 156 EXPECT_EQ(AR1, AR1.take_while([](const int &N) { return N > 0; })); in TEST()
|
D | StringRefTest.cpp | 1022 StringRef Taken = Test.take_while([](char c) { return ::isdigit(c); }); in TEST() 1028 Taken = Test.take_while([](char c) { return true; }); in TEST() 1035 Taken = Test.take_while([](char c) { return true; }); in TEST()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
D | take_while.cpp | 9 take_while([](int v){ in __anond0b350f00102()
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/serialization/ |
D | take_while_dataset_serialization_test.py | 36 take_while_ops.take_while(lambda x: x < upper_bound))
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | take_while_ops.py | 56 def take_while(predicate): function
|
/external/Reactive-Extensions/RxCpp/projects/nuget/ |
D | rxcpp.autoconfig | 15 … changes to make repeat(0) and retry(0), VC2017 support, coroutines support, take_while, is_empty";
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | FormatVariadic.cpp | 102 Fmt.drop_front(BO).take_while([](char C) { return C == '{'; }); in splitLiteralAndReplacement()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | ArrayRef.h | 227 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { in take_while() function 403 MutableArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
|
D | StringRef.h | 629 StringRef take_while(function_ref<bool(char)> F) const { in take_while() function
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | ArrayRef.h | 219 template <class PredicateT> ArrayRef<T> take_while(PredicateT Pred) const { in take_while() function 396 MutableArrayRef<T> take_while(PredicateT Pred) const { in take_while() function
|
D | StringRef.h | 618 StringRef take_while(function_ref<bool(char)> F) const { in take_while() function
|
/external/tensorflow/tensorflow/python/data/experimental/ |
D | __init__.py | 131 from tensorflow.python.data.experimental.ops.take_while_ops import take_while
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/ |
D | CMakeLists.txt | 80 ${TEST_DIR}/operators/take_while.cpp
|
/external/Reactive-Extensions/RxCpp/projects/doxygen/ |
D | CMakeLists.txt | 107 ${DOXY_EXAMPLES_SRC_DIR}/take_while.cpp
|
/external/crosvm/devices/src/virtio/ |
D | queue.rs | 25 self.take_while(DescriptorChain::is_read_only) in readable()
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.data.experimental.pbtxt | 184 name: "take_while"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.data.experimental.pbtxt | 216 name: "take_while"
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 262 auto StackOp = StackReg.take_while([](char c) { return isalpha(c); }); in ParseReg()
|
/external/Reactive-Extensions/RxCpp/projects/CMake/ |
D | CMakeLists.txt | 79 ${RXCPP_DIR}/Rx/v2/src/rxcpp/operators/rx-take_while.hpp
|
/external/tensorflow/tensorflow/python/autograph/operators/ |
D | control_flow.py | 667 ds = ds.apply(take_while_ops.take_while(take_while_predicate))
|
D | control_flow_deprecated_py2.py | 718 ds = ds.apply(take_while_ops.take_while(take_while_predicate))
|
/external/tensorflow/tensorflow/python/autograph/g3doc/reference/ |
D | control_flow.md | 329 them to a combination of `tf.data.Dataset.scan`, `tf.data.Dataset.take_while`
|