OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QueryIntAttribute
(Results
1 - 3
of
3
) sorted by null
/external/tinyxml/
tinyxml.h
882
/**
QueryIntAttribute
examines the attribute - it is an alternative to the
889
int
QueryIntAttribute
( const char* name, int* _value ) const;
890
/// QueryDoubleAttribute examines the attribute - see
QueryIntAttribute
().
892
/// QueryFloatAttribute examines the attribute - see
QueryIntAttribute
().
911
int
QueryIntAttribute
( const std::string& name, int* _value ) const { return
QueryIntAttribute
( name.c_str(), _value );
[
all
...]
xmltest.cpp
453
result = ele->
QueryIntAttribute
( "attr1", &iVal );
456
result = ele->
QueryIntAttribute
( "attr2", &iVal );
458
result = ele->
QueryIntAttribute
( "bar", &iVal );
/external/tinyxml2/
tinyxml2.h
779
use
QueryIntAttribute
() if you need error checking.
791
/**
QueryIntAttribute
interprets the attribute as an integer, and returns the value
796
/// See
QueryIntAttribute
798
/// See
QueryIntAttribute
800
/// See
QueryIntAttribute
802
/// See
QueryIntAttribute
882
checking, see
QueryIntAttribute
()
884
int IntAttribute( const char* name ) const { int i=0;
QueryIntAttribute
( name, &i ); return i; }
894
/** Given an attribute name,
QueryIntAttribute
() returns
904
QueryIntAttribute
( "foo", &value ); // if "foo" isn't found, value will still be 10
[
all
...]
Completed in 211 milliseconds