Home
last modified time | relevance | path

Searched refs:LoadFile (Results 1 – 9 of 9) sorted by relevance

/external/tinyxml/
Dxmltest.cpp138 bool loadOkay = doc.LoadFile(); in main()
498 doc.LoadFile(); in main()
765 doc.LoadFile( name ); in main()
786 bool loadOkay = doc.LoadFile(); in main()
840 doc.LoadFile( "test5.xml" ); in main()
853 bool result = doc.LoadFile( "test6.xml" ); in main()
876 doc.LoadFile( "test7.xml" ); in main()
Dtinyxml.h1243 bool LoadFile( TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING );
1247 bool LoadFile( const char * filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING );
1252 …bool LoadFile( const std::string& filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ) //…
1255 return ( f.buffer && LoadFile( f.buffer, encoding ));
Dreadme.txt143 <b> You may force TinyXml to Legacy Mode by using LoadFile( TIXML_ENCODING_LEGACY ) or
144 LoadFile( filename, TIXML_ENCODING_LEGACY ). You may force it to use legacy mode all
226 - the Parse() and LoadFile() methods
375 doc.LoadFile();
Dtinyxml.cpp935 bool TiXmlDocument::LoadFile( TiXmlEncoding encoding ) in LoadFile() function in TiXmlDocument
940 if ( buf.buffer && LoadFile( buf.buffer, encoding ) ) in LoadFile()
958 bool TiXmlDocument::LoadFile( const char* filename, TiXmlEncoding encoding ) in LoadFile() function in TiXmlDocument
Dchanges.txt66 When "LoadFile" is called with a filename, the value will correctly get set.
/external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
DCDPlayer.h47 int LoadFile (const FSRef *ref, int startFrame, int endFrame); /* pass -1 to do nothing */
DSDL_syscdrom.c136 LoadFile (file, startFrame, stopFrame); in CompletionProc()
366 if (LoadFile (ref, startFrame, stopFrame) < 0) in SDL_SYS_CDPlay()
DCDPlayer.c384 int LoadFile (const FSRef *ref, int startFrame, int stopFrame) in LoadFile() function
/external/srec/tools/grxmlcompile/
Dgrxmlcompile.cpp214 bool bLoadedOK = node.LoadFile( filename.c_str() ); in main()