OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QueryDoubleAttribute
(Results
1 - 3
of
3
) sorted by null
/external/tinyxml/
tinyxml.h
890
///
QueryDoubleAttribute
examines the attribute - see QueryIntAttribute().
891
int
QueryDoubleAttribute
( const char* name, double* _value ) const;
895
int result =
QueryDoubleAttribute
( name, &d );
[
all
...]
xmltest.cpp
448
result = ele->
QueryDoubleAttribute
( "attr0", &dVal );
451
result = ele->
QueryDoubleAttribute
( "attr1", &dVal );
/external/tinyxml2/
tinyxml2.h
890
double DoubleAttribute( const char* name ) const { double d=0;
QueryDoubleAttribute
( name, &d ); return d; }
[
all
...]
Completed in 33 milliseconds