Lines Matching refs:find

150     for( pos = 0; (pos = temp.find( '&', pos )) != string::npos; pos += 4 )  in xml_encode()
153 for( pos = 0; (pos = temp.find( '<', pos )) != string::npos; pos += 4 ) in xml_encode()
156 for( pos = 0; (pos = temp.find( '>', pos )) != string::npos; pos += 4 ) in xml_encode()
198 xml_encode(rSettings.find( "CONTACT" )->second).c_str(), in write_report()
199 xml_encode(rSettings.find( "EMAIL" )->second).c_str(), in write_report()
200 xml_encode(rSettings.find( "TITLE" )->second).c_str(), in write_report()
257 fprintf( fp, "%s\n", rSettings.find( "DESCRIPTION" )->second.c_str() ); in write_description()
494 if ( 0 == strcasecmp( rSettings.find( "CONTACT" )->second.c_str(), "true" ) && in send_crash_report()
495 !trim_string(rSettings.find( "EMAIL" )->second).length() ) in send_crash_report()
502 const char *pProxyServer = rSettings.find( "SERVER" )->second.c_str(); in send_crash_report()
503 …unsigned short uProxyPort = (unsigned short)strtoul( rSettings.find( "PORT" )->second.c_str(), &en… in send_crash_report()
505 bool bUseProxy = !strcasecmp( "true", rSettings.find( "USEPROXY" )->second.c_str() ); in send_crash_report()
563 aRet.append( rSettings.find( "TITLE" )->second.c_str() ); in crash_get_details()
713 string::size_type iEqualSign = line.find( '=', 0 ); in get_script_string()
727 string::size_type iQuotes = value.find( '"', 0 ); in get_script_string()
764 string::size_type end = line.find( ']', 0 ); in get_profile_string()
772 string::size_type iEqualSign = line.find( '=', 0 ); in get_profile_string()
923 fprintf( fp, "UseProxy=%s\n", rSettings.find( "USEPROXY" )->second.c_str() );
924 fprintf( fp, "ProxyServer=%s\n", rSettings.find( "SERVER" )->second.c_str() );
925 fprintf( fp, "ProxyPort=%s\n", rSettings.find( "PORT" )->second.c_str() );
926 fprintf( fp, "ReturnAddress=%s\n", rSettings.find( "EMAIL" )->second.c_str() );
927 fprintf( fp, "AllowContact=%s\n", rSettings.find( "CONTACT" )->second.c_str() );
959 if ( !(rSettings.find( "CONTACT" )->second).length() ) in read_settings_from_environment()
962 else if ( !(rSettings.find( "CONTACT" )->second).length() ) in read_settings_from_environment()
999 string::size_type iSpace = productkey.find( ' ', 0 ); in setup_version()