Home
last modified time | relevance | path

Searched refs:is_placeholder (Results 1 – 17 of 17) sorted by relevance

/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter.h193 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,
Ddefault_value_objectwriter.h138 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()
Dprotostream_objectwriter.cc376 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()
Ddefault_value_objectwriter.cc190 bool is_placeholder, in Node() argument
198 is_placeholder_(is_placeholder), in Node()
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-bind.cpp226 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/
Dinput_layer.py112 self.is_placeholder = True
120 self.is_placeholder = False
Dtraining.py397 if target is None or K.is_placeholder(target):
2689 if K.is_placeholder(v):
Dnetwork.py312 if layer.is_placeholder:
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.isbind/
Dis_placeholder.pass.cpp21 static_assert(std::is_placeholder<T>::value == Expected, ""); in test()
/external/protobuf/src/google/protobuf/
Ddescriptor.h218 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()
Ddescriptor_unittest.cc2475 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/
Dstepper.py876 def is_placeholder(self, graph_element_name): member in NodeStepper
912 if self.is_placeholder(item):
931 if self.is_placeholder(tensor_name):
Dstepper_test.py487 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/
Dfunctional220 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/
Dbackend_test.py1508 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)
Dbackend.py894 def is_placeholder(x): function
/external/libcxx/include/experimental/
Dfunctional27 = is_placeholder<T>::value;