/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectwriter.h | 193 bool is_placeholder, bool is_list); 196 Item(Item* parent, ItemType item_type, bool is_placeholder, bool is_list); 218 bool is_placeholder() const { return is_placeholder_; } in is_placeholder() function 306 void Push(StringPiece name, Item::ItemType item_type, bool is_placeholder,
|
D | default_value_objectwriter.h | 138 const DataPiece& data, bool is_placeholder, const vector<string>& path, 181 void set_is_placeholder(bool is_placeholder) { in set_is_placeholder() argument 182 is_placeholder_ = is_placeholder; in set_is_placeholder()
|
D | protostream_objectwriter.cc | 376 ItemType item_type, bool is_placeholder, in Item() argument 382 is_placeholder_(is_placeholder), in Item() 390 ItemType item_type, bool is_placeholder, in Item() argument 396 is_placeholder_(is_placeholder), in Item() 1144 bool is_placeholder, bool is_list) { in Push() argument 1150 new Item(current_.release(), item_type, is_placeholder, is_list)); in Push() 1156 while (current_ != NULL && current_->is_placeholder()) { in Pop()
|
D | default_value_objectwriter.cc | 190 bool is_placeholder, in Node() argument 198 is_placeholder_(is_placeholder), in Node()
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | example-bind.cpp | 226 template<typename T> struct is_placeholder { struct 276 inline typename safe_tuple_element<is_placeholder<Bound>::value -1, 279 return get<is_placeholder<Bound>::value-1>(args); in mu() 313 && !is_placeholder<Bound>::value 335 struct is_placeholder<placeholder<N>> { struct
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | input_layer.py | 112 self.is_placeholder = True 120 self.is_placeholder = False
|
D | training.py | 397 if target is None or K.is_placeholder(target): 2689 if K.is_placeholder(v):
|
D | network.py | 312 if layer.is_placeholder:
|
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.isbind/ |
D | is_placeholder.pass.cpp | 21 static_assert(std::is_placeholder<T>::value == Expected, ""); in test()
|
/external/protobuf/src/google/protobuf/ |
D | descriptor.h | 218 bool is_placeholder() const; 851 bool is_placeholder() const; 1273 bool is_placeholder() const; 1675 PROTOBUF_DEFINE_ACCESSOR(Descriptor, is_placeholder, bool) in PROTOBUF_DEFINE_STRING_ACCESSOR() 1720 PROTOBUF_DEFINE_ACCESSOR(EnumDescriptor, is_placeholder, bool) in PROTOBUF_DEFINE_STRING_ACCESSOR() 1756 PROTOBUF_DEFINE_ACCESSOR(FileDescriptor, is_placeholder, bool) in PROTOBUF_DEFINE_STRING_ACCESSOR()
|
D | descriptor_unittest.cc | 2475 EXPECT_FALSE(bar_file_->is_placeholder()); in TEST_P() 2480 EXPECT_TRUE(baz_file->is_placeholder()); in TEST_P() 2496 EXPECT_FALSE(bar_type_->is_placeholder()); in TEST_P() 2503 EXPECT_TRUE(baz_type->is_placeholder()); in TEST_P() 2509 EXPECT_TRUE(qux_type->is_placeholder()); in TEST_P() 2567 EXPECT_TRUE(extendee->is_placeholder()); in TEST_P() 2686 EXPECT_FALSE(corge_desc->is_placeholder()); in TEST_P() 2692 EXPECT_TRUE(quux_field->message_type()->is_placeholder()); in TEST_P()
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | stepper.py | 876 def is_placeholder(self, graph_element_name): member in NodeStepper 912 if self.is_placeholder(item): 931 if self.is_placeholder(tensor_name):
|
D | stepper_test.py | 487 self.assertTrue(stepper.is_placeholder(self.ph0.name)) 488 self.assertTrue(stepper.is_placeholder(self.ph1.name)) 490 self.assertFalse(stepper.is_placeholder(self.x.name)) 491 self.assertFalse(stepper.is_placeholder(self.y.name)) 495 self.assertFalse(stepper.is_placeholder("A"))
|
/external/libcxx/include/ |
D | functional | 220 template<class T> struct is_placeholder; 226 = is_placeholder<T>::value; // C++17 2423 template<class _Tp> struct _LIBCPP_TEMPLATE_VIS is_placeholder 2428 _LIBCPP_INLINE_VAR constexpr size_t is_placeholder_v = is_placeholder<_Tp>::value; 2504 typedef typename tuple_element<is_placeholder<_Ti>::value - 1, _Uj>::type type; 2511 0 < is_placeholder<_Ti>::value, 2512 typename __mu_return2<0 < is_placeholder<_Ti>::value, _Ti, _Uj>::type 2516 const size_t _Indx = is_placeholder<_Ti>::value - 1; 2525 is_placeholder<_Ti>::value == 0 && 2559 typedef typename tuple_element<is_placeholder<_Ti>::value - 1, [all …]
|
/external/tensorflow/tensorflow/python/keras/ |
D | backend_test.py | 1508 self.assertEqual(keras.backend.is_placeholder(x), True) 1511 self.assertEqual(keras.backend.is_placeholder(x), True) 1513 self.assertEqual(keras.backend.is_placeholder(x), False)
|
D | backend.py | 894 def is_placeholder(x): function
|
/external/libcxx/include/experimental/ |
D | functional | 27 = is_placeholder<T>::value;
|