HomeSort by relevance Sort by last modified time
    Searched refs:TIXMLASSERT (Results 1 - 2 of 2) sorted by null

  /external/tinyxml2/
tinyxml2.h 49 #define TIXMLASSERT( x ) if ( !(x)) { __debugbreak(); } //if ( !(x)) WinDebugBreak()
52 #define TIXMLASSERT( x ) if ( !(x)) { __android_log_assert( "assert", "grinliz", "ASSERT in '%s' at %d.", __FILE__, __LINE__ ); }
55 #define TIXMLASSERT assert
58 #define TIXMLASSERT( x ) {}
195 TIXMLASSERT( size >= count );
200 T& operator[](int i) { TIXMLASSERT( i>= 0 && i < size ); return mem[i]; }
201 const T& operator[](int i) const { TIXMLASSERT( i>= 0 && i < size ); return mem[i]; }
    [all...]
tinyxml2.cpp 111 TIXMLASSERT( endTag && *endTag );
205 TIXMLASSERT( q <= p );
484 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLUnknown ) ); // use same memory pool
485 TIXMLASSERT( sizeof( XMLComment ) == sizeof( XMLDeclaration ) ); // use same memory pool
584 TIXMLASSERT( child->parent == this );
602 TIXMLASSERT( node->parent == this );
610 TIXMLASSERT( firstChild );
611 TIXMLASSERT( lastChild->next == 0 );
619 TIXMLASSERT( firstChild == 0 );
633 TIXMLASSERT( lastChild );
    [all...]

Completed in 30 milliseconds