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

  /external/webrtc/webrtc/libjingle/xmpp/
mucroomuniquehangoutidtask.cc 41 !unique_elem->HasAttr(QN_HANGOUT_ID)) {
discoitemsquerytask.cc 52 if (element->HasAttr(QN_JID)) {
mucroomdiscoverytask.cc 34 if (identity == NULL || !identity->HasAttr(QN_NAME)) {
rostermoduleimpl.cc 246 if (!element->HasAttr(QN_XML_LANG)) {
548 xml->HasAttr(QN_SUBSCRIPTION) ||
549 xml->HasAttr(QN_ASK))
604 ASSERT(!element->HasAttr(QN_TO) &&
605 !element->HasAttr(QN_FROM) &&
627 element.HasAttr(QN_TO) ||
628 element.HasAttr(QN_FROM))
631 if (element.HasAttr(QN_TYPE)) {
751 contact_xml->HasAttr(QN_SUBSCRIPTION) ||
752 contact_xml->HasAttr(QN_ASK)
    [all...]
xmppengineimpl_iq.cc 52 if (!element->HasAttr(QN_ID))
241 if (!element->HasAttr(QN_ID))
chatroommoduleimpl.cc 383 if (message.HasAttr(QN_FROM)) {
516 if (presence.HasAttr(QN_TYPE) == false) {
594 if (error != NULL && error->HasAttr(QN_CODE)) {
624 if (user_status != NULL && user_status->HasAttr(QN_CODE)) {
pubsub_task.cc 179 ASSERT(items->HasAttr(QN_NODE));
xmpptask.cc 108 if (query->HasAttr(QN_FROM)) {
xmppengineimpl.cc 350 ASSERT(!element->HasAttr(QN_FROM));
xmpplogintask.cc 336 if (!element->HasAttr(QN_ID))
  /external/webrtc/webrtc/libjingle/xmllite/
xmlelement_unittest.cc 95 EXPECT_TRUE(elt.HasAttr(QName("", "a")));
96 EXPECT_TRUE(elt.HasAttr(QName("", "b")));
97 EXPECT_TRUE(elt.HasAttr(QName("", "c")));
98 EXPECT_FALSE(elt.HasAttr(QName("", "d")));
103 EXPECT_TRUE(elt.HasAttr(QName("", "d")));
xmlelement.h 137 // use HasAttr to test presence of an attribute.
140 bool HasAttr(const StaticQName& name) const;
141 bool HasAttr(const QName& name) const;
xmlelement.cc 176 bool XmlElement::HasAttr(const StaticQName& name) const {
185 bool XmlElement::HasAttr(const QName& name) const {
361 ASSERT(!HasAttr(name));
  /external/tensorflow/tensorflow/core/framework/
dataset.cc 86 bool has_output_types_attr = HasAttr(op_type_name, "output_types");
87 bool has_output_shapes_attr = HasAttr(op_type_name, "output_shapes");
188 bool GraphDefBuilderWrapper::HasAttr(const string& op_type_name,
195 return HasAttr(op_def, attr_name);
dataset.h 211 bool HasAttr(const string& op_type_name, const string& attr_name) const;
213 bool HasAttr(const OpDef* op_def, const string& attr_name) const {
op_kernel.h 313 bool HasAttr(StringPiece attr_name) const;
    [all...]
op_kernel.cc 203 bool OpKernelConstruction::HasAttr(StringPiece attr_name) const {
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/toco/
import_tensorflow.cc 66 bool HasAttr(const NodeDef& node, const string& attr_name) {
71 CHECK(HasAttr(node, attr_name));
78 CHECK(HasAttr(node, attr_name)) << attr_name << " not found in:\n"
86 CHECK(HasAttr(node, attr_name));
93 CHECK(HasAttr(node, attr_name));
101 CHECK(HasAttr(node, attr_name));
109 CHECK(HasAttr(node, attr_name));
116 CHECK(HasAttr(node, attr_name));
124 CHECK(HasAttr(node, attr_name));
748 if (HasAttr(node, "keep_dims"))
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
tensor_array_ops.cc 165 // The HasAttr check is for backwards compatibility with older op
167 if (context->HasAttr("identical_element_shapes")) {
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersNarrowingTest.cpp 284 TEST(DeclarationMatcher, HasAttr) {
286 decl(hasAttr(clang::attr::WarnUnused))));
288 decl(hasAttr(clang::attr::WarnUnused))));
    [all...]

Completed in 519 milliseconds