/external/tinyxml2/ |
D | tinyxml2.h | 1209 void SetAttribute( const char* value ); 1211 void SetAttribute( int value ); 1213 void SetAttribute( unsigned value ); 1215 void SetAttribute(int64_t value); 1217 void SetAttribute( bool value ); 1219 void SetAttribute( double value ); 1221 void SetAttribute( float value ); 1429 void SetAttribute( const char* name, const char* value ) { in SetAttribute() function 1431 a->SetAttribute( value ); in SetAttribute() 1434 void SetAttribute( const char* name, int value ) { in SetAttribute() function [all …]
|
D | xmltest.cpp | 474 sub[i]->SetAttribute( "attrib", i ); in main() 499 element->FirstChildElement()->SetAttribute( "attrib", true ); in main() 631 ele->SetAttribute( "str", "strValue" ); in main() 632 ele->SetAttribute( "int", 1 ); in main() 633 ele->SetAttribute( "double", -1.0 ); in main() 812 element->SetAttribute("attrib", int(-100)); in main() 828 element->SetAttribute("attrib", unsigned(100)); in main() 852 element->SetAttribute("attrib", BIG); in main() 868 element->SetAttribute("attrib", true); in main() 884 element->SetAttribute("attrib", true); in main() [all …]
|
D | tinyxml2.cpp | 1444 void XMLAttribute::SetAttribute( const char* v ) in SetAttribute() function in tinyxml2::XMLAttribute 1450 void XMLAttribute::SetAttribute( int v ) in SetAttribute() function in tinyxml2::XMLAttribute 1458 void XMLAttribute::SetAttribute( unsigned v ) in SetAttribute() function in tinyxml2::XMLAttribute 1466 void XMLAttribute::SetAttribute(int64_t v) in SetAttribute() function in tinyxml2::XMLAttribute 1475 void XMLAttribute::SetAttribute( bool v ) in SetAttribute() function in tinyxml2::XMLAttribute 1482 void XMLAttribute::SetAttribute( double v ) in SetAttribute() function in tinyxml2::XMLAttribute 1489 void XMLAttribute::SetAttribute( float v ) in SetAttribute() function in tinyxml2::XMLAttribute 1934 …element->SetAttribute( a->Name(), a->Value() ); // fixme: this will always allocate memory. In… in ShallowClone()
|
/external/tinyxml/ |
D | xmltest.cpp | 172 itemElement->SetAttribute( "priority", 2 ); in main() 178 itemElement->SetAttribute( "distance", "here" ); in main() 195 item.SetAttribute( "priority", "1" ); in main() 196 item.SetAttribute( "distance", "far" ); in main() 201 meeting1.SetAttribute( "where", "School" ); in main() 204 meeting2.SetAttribute( "where", "Lunch" ); in main() 207 attendee1.SetAttribute( "name", "Marple" ); in main() 208 attendee1.SetAttribute( "position", "teacher" ); in main() 211 attendee2.SetAttribute( "name", "Voel" ); in main() 212 attendee2.SetAttribute( "position", "counselor" ); in main()
|
D | tinyxml.h | 905 void SetAttribute( const char* name, const char * _value ); 915 void SetAttribute( const std::string& name, const std::string& _value ) in SetAttribute() function 920 SetAttribute (n.buffer, v.buffer ); in SetAttribute() 923 void SetAttribute( const std::string& name, int _value ) in SetAttribute() function 927 SetAttribute (n.buffer, _value); in SetAttribute() 934 void SetAttribute( const char * name, int value );
|
D | tinyxml.cpp | 721 void TiXmlElement::SetAttribute( const char * name, int val ) in SetAttribute() function in TiXmlElement 729 SetAttribute( name, buf ); in SetAttribute() 741 SetAttribute( name, buf ); in SetDoubleAttribute() 745 void TiXmlElement::SetAttribute( const char * name, const char * _value ) in SetAttribute() function in TiXmlElement 860 target->SetAttribute( attribute->Name(), attribute->Value() ); in CopyTo()
|
/external/tensorflow/tensorflow/contrib/tensorrt/custom_plugin_examples/ |
D | inc_op_plugin.cc | 45 SetAttribute("inc", buffer + consumed_data, sizeof(float)); in IncOpPlugin() 48 bool IncOpPlugin::SetAttribute(const string& key, const void* ptr, in SetAttribute() function in tensorflow::tensorrt::IncOpPlugin
|
D | inc_op_plugin.h | 41 bool SetAttribute(const string& key, const void* ptr,
|
/external/ImageMagick/PerlMagick/t/ |
D | subroutines.pl | 439 $status=$image->SetAttribute(size=>"$size"); 444 $status=$image->SetAttribute(depth=>Image::Magick->new()->QuantumDepth); 806 $status=$image->SetAttribute(size=>"$size"); 811 $status=$image->SetAttribute(depth=>$readdepth); 838 $status=$image->SetAttribute(depth=>$readdepth); 842 $status=$image->SetAttribute(size=>"$size");
|
/external/tensorflow/tensorflow/compiler/tf2tensorrt/plugin/ |
D | trt_plugin.h | 46 virtual bool SetAttribute(const string& key, const void* ptr,
|
D | trt_plugin_factory_test.cc | 45 bool SetAttribute(const string& key, const void* ptr, in SetAttribute() function in tensorflow::tensorrt::test::StubPlugin
|
/external/pdfium/fxjs/xfa/ |
D | cjx_object.h | 77 bool SetAttribute(XFA_Attribute eAttr, 80 bool SetAttribute(const WideStringView& wsAttr,
|
D | cjx_model.cpp | 58 pNewNode->JSObject()->SetAttribute(XFA_Attribute::Name, name.AsStringView(), in createNode()
|
D | cjx_object.cpp | 219 bool CJX_Object::SetAttribute(XFA_Attribute eAttr, in SetAttribute() function in CJX_Object 253 bool CJX_Object::SetAttribute(const WideStringView& wsAttr, in SetAttribute() function in CJX_Object 258 return SetAttribute(attr, wsValue, bNotify); in SetAttribute() 739 SetAttribute(XFA_Attribute::ContentType, wsContentType.AsStringView(), in SetContent() 819 pChildValue->JSObject()->SetAttribute(XFA_Attribute::ContentType, in TryContent() 1219 SetAttribute(eAttribute, wsValue.AsStringView(), true); in Script_Attribute_String() 1690 SetAttribute(XFA_Attribute::Checksum, pValue->ToWideString().AsStringView(), in Script_Form_Checksum()
|
/external/pdfium/core/fxcrt/xml/ |
D | cxml_element.h | 54 void SetAttribute(const ByteString& space,
|
D | cxml_element.cpp | 138 void CXML_Element::SetAttribute(const ByteString& space, in SetAttribute() function in CXML_Element
|
D | cxml_parser.cpp | 410 pElement->SetAttribute(attr_space, attr_name, attr_value); in ParseElementInternal()
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_textparser.h | 99 void SetAttribute(const WideString& wsAttr, const WideString& wsValue) { in SetAttribute() function
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 740 void TiXmlElement::SetAttribute( const char * name, int val ) in SetAttribute() function in TiXmlElement 750 void TiXmlElement::SetAttribute( const std::string& name, int val ) in SetAttribute() function in TiXmlElement 780 void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) in SetAttribute() function in TiXmlElement 790 void TiXmlElement::SetAttribute( const std::string& _name, const std::string& _value ) in SetAttribute() function in TiXmlElement 865 target->SetAttribute( attribute->Name(), attribute->Value() ); in CopyTo()
|
D | tinyxml.h | 1050 void SetAttribute( const char* name, const char * _value ); 1060 void SetAttribute( const std::string& name, const std::string& _value ); 1062 void SetAttribute( const std::string& name, int _value ); 1070 void SetAttribute( const char * name, int value );
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | FunctionAttrs.cpp | 1068 std::function<void(Function &)> SetAttribute; member 1083 SetAttribute(SetAttr), AKind(AK), in InferenceDescriptor() 1164 ID.SetAttribute(*F); in run()
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
D | ST.stg | 147 (<st>).SetAttribute("<attrName>",<expr>);
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_simple_parser.cpp | 713 pNode->JSObject()->SetAttribute(XFA_Attribute::Checksum, in ParseAsXDPPacket_Form() 893 pXFAChild->JSObject()->SetAttribute(XFA_Attribute::Name, in NormalLoader() 913 pXFAChild->JSObject()->SetAttribute(attr, it.second.AsStringView(), in NormalLoader()
|
D | cxfa_nodehelper.cpp | 354 pNewNode->JSObject()->SetAttribute(XFA_Attribute::Name, in ResolveNodes_CreateNode()
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
D | ST.stg | 165 (<st>).SetAttribute("<attrName>",<expr>);
|