Searched defs:_value (Results 1 - 4 of 4) sorted by relevance

/external/bluetooth/glib/tests/
H A Dhash-test.c224 const char *_value = (const char *) value; local
230 g_assert (_value != NULL);
231 g_assert (*_value != 0);
236 g_assert (strcmp (_value, val) == 0);
248 const char *_value = (const char *) value; local
254 g_assert (_value != NULL);
255 g_assert (*_value != 0);
260 g_assert (strcmp (_value, val) == 0);
/external/tinyxml/
H A Dtinyxml.cpp322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const
327 if ( strcmp( node->Value(), _value ) == 0 )
334 TiXmlNode* TiXmlNode::FirstChild( const char * _value )
339 if ( strcmp( node->Value(), _value ) == 0 )
346 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const
351 if ( strcmp( node->Value(), _value ) == 0 )
357 TiXmlNode* TiXmlNode::LastChild( const char * _value )
362 if ( strcmp( node->Value(), _value ) == 0 )
420 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const
425 if ( strcmp( node->Value(), _value )
611 TiXmlElement(const char * _value) argument
[all...]
H A Dtinyxml.h280 inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding ) argument
296 return GetEntity( p, _value, length, encoding );
297 *_value = *p;
302 //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),
305 _value[i] = p[i];
468 void SetValue(const char * _value) { value = _value;} argument
472 void SetValue( const std::string& _value )
474 StringToBuffer buf( _value );
497 const TiXmlNode* FirstChild( const std::string& _value ) cons
527 IterateChildren( const std::string& _value, const TiXmlNode* previous ) const argument
528 IterateChildren( const std::string& _value, TiXmlNode* previous ) argument
578 NextSibling( const std::string& _value) argument
605 NextSiblingElement( const std::string& _value) argument
1489 Child( const std::string& _value, int index ) const argument
1490 ChildElement( const std::string& _value, int index ) const argument
[all...]
/external/webkit/WebCore/inspector/front-end/
H A DResourcesPanel.js937 const label = this.formatValue(this._value(resource));
944 _value: function(resource)

Completed in 55 milliseconds