Home
last modified time | relevance | path

Searched refs:RemoveAttribute (Results 1 – 24 of 24) sorted by relevance

/external/tensorflow/tensorflow/tools/graph_transforms/
Dremove_attribute_test.cc32 Status RemoveAttribute(const GraphDef& input_graph_def,
90 TF_ASSERT_OK(RemoveAttribute(graph_def, context, &wildcard_result)); in TestRemoveAttribute()
109 RemoveAttribute(graph_def, targeted_context, &targeted_result)); in TestRemoveAttribute()
Dremove_attribute.cc29 Status RemoveAttribute(const GraphDef& input_graph_def, in RemoveAttribute() function
65 REGISTER_GRAPH_TRANSFORM("remove_attribute", RemoveAttribute);
/external/pdfium/xfa/fxfa/parser/
Dcxfa_dataexporter.cpp83 pElement->RemoveAttribute(L"xmlns:xfa"); in Export()
Dcxfa_document_parser.cpp566 ToXMLElement(pXMLDocumentNode)->RemoveAttribute(L"xmlns:xfa"); in ParseAsXDPPacket_Data()
573 pElement->RemoveAttribute(L"xmlns:xfa"); in ParseAsXDPPacket_Data()
891 pXMLElement->RemoveAttribute(L"xsi:nil"); in ParseDataGroup()
Dxfa_utils.cpp466 pElement->RemoveAttribute(L"xfa:dataNode"); in XFA_DataExporter_DealWithDataGroupNode()
Dcxfa_node.cpp1592 pXMLElement->RemoveAttribute(wsAttributeName); in RemoveChildAndNotify()
/external/pdfium/core/fxcrt/xml/
Dcfx_xmlelement.h36 void RemoveAttribute(const WideString& name);
Dcfx_xmlelement.cpp144 void CFX_XMLElement::RemoveAttribute(const WideString& name) { in RemoveAttribute() function in CFX_XMLElement
Dcfx_xmlelement_unittest.cpp67 node.RemoveAttribute(L"first"); in TEST()
/external/tensorflow/tensorflow/core/grappler/utils/
Dgraph_view_internal_test.cc415 TEST(MutableNodeViewDiffTest, RemoveAttribute) { in TEST() argument
436 RemoveAttribute(&diff, "attr_1"); in TEST()
440 RemoveAttribute(&diff, "attr_3"); in TEST()
1062 TEST(MutationNewNodeTest, RemoveAttribute) { in TEST() argument
1078 RemoveAttribute(&new_node, attr_name); in TEST()
1080 RemoveAttribute(&new_node, attr_name); in TEST()
Dgraph_view_internal.h612 inline bool RemoveAttribute(NodeViewDiff<GraphViewT>* diff, in RemoveAttribute() function
876 inline void RemoveAttribute(NewNode<GraphViewT>* new_node, in RemoveAttribute() function
Dgraph_view.cc412 return internal::RemoveAttribute(diff, attr_name); in RemoveNodeAttr()
419 internal::RemoveAttribute(&new_nodes_[node.index_], attr_name); in RemoveNodeAttr()
/external/webrtc/api/transport/
Dstun_unittest.cc1637 TEST_F(StunTest, RemoveAttribute) { in TEST_F() argument
1641 EXPECT_EQ(msg.RemoveAttribute(STUN_ATTR_USERNAME), nullptr); in TEST_F()
1651 auto attr = msg.RemoveAttribute(STUN_ATTR_USERNAME); in TEST_F()
1674 auto attr = msg.RemoveAttribute(STUN_ATTR_USERNAME); in TEST_F()
1683 auto attr = msg.RemoveAttribute(STUN_ATTR_USERNAME); in TEST_F()
1691 EXPECT_EQ(msg.RemoveAttribute(STUN_ATTR_USERNAME), nullptr); in TEST_F()
1840 copy->RemoveAttribute(STUN_ATTR_NONCE); in TEST_F()
1850 msg.RemoveAttribute(STUN_ATTR_NONCE); in TEST_F()
Dstun.h188 std::unique_ptr<StunAttribute> RemoveAttribute(int type);
Dstun.cc116 std::unique_ptr<StunAttribute> StunMessage::RemoveAttribute(int type) { in RemoveAttribute() function in cricket::StunMessage
/external/pdfium/fxjs/xfa/
Dcjx_packet.cpp75 pElement->RemoveAttribute(name); in removeAttribute()
Dcjx_object.h124 void RemoveAttribute(WideStringView wsAttr);
Dcjx_object.cpp318 void CJX_Object::RemoveAttribute(WideStringView wsAttr) { in RemoveAttribute() function in CJX_Object
/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h1079 void RemoveAttribute( const char * name );
1081 …void RemoveAttribute( const std::string& name ) { RemoveAttribute (name.c_str ()); } ///< STL std:… in RemoveAttribute() function
Dtinyxml.cpp437 void TiXmlElement::RemoveAttribute( const char * name ) in RemoveAttribute() function in TiXmlElement
/external/webrtc/p2p/base/
Dport_unittest.cc2365 modified_response->RemoveAttribute(STUN_ATTR_FINGERPRINT); in TEST_F()
3059 ASSERT_TRUE(modified_request1->RemoveAttribute(STUN_ATTR_GOOG_MISC_INFO) != in TEST_F()
3061 ASSERT_TRUE(modified_request1->RemoveAttribute(STUN_ATTR_MESSAGE_INTEGRITY) != in TEST_F()
3142 ASSERT_TRUE(modified_response->RemoveAttribute(STUN_ATTR_GOOG_MISC_INFO) != in TEST_F()
3144 ASSERT_TRUE(modified_response->RemoveAttribute(STUN_ATTR_MESSAGE_INTEGRITY) != in TEST_F()
3146 ASSERT_TRUE(modified_response->RemoveAttribute(STUN_ATTR_FINGERPRINT) != in TEST_F()
/external/llvm-project/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp2153 static void RemoveAttribute(Function *F, Attribute::AttrKind A) { in RemoveAttribute() function
2297 RemoveAttribute(F, Attribute::Preallocated); in RemovePreallocated()
2449 RemoveAttribute(F, Attribute::InAlloca); in OptimizeFunctions()
2496 RemoveAttribute(F, Attribute::Nest); in OptimizeFunctions()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp2133 static void RemoveAttribute(Function *F, Attribute::AttrKind A) { in RemoveAttribute() function
2323 RemoveAttribute(F, Attribute::InAlloca); in OptimizeFunctions()
2359 RemoveAttribute(F, Attribute::Nest); in OptimizeFunctions()
/external/llvm/bindings/go/llvm/
Dir.go1085 func (v Value) RemoveAttribute(a Attribute) { func