Lines Matching refs:line
676 string line; in read_line() local
691 line.append( szBuffer ); in read_line()
694 rLine = line; in read_line()
705 string line; in get_script_string() local
708 while ( read_line( fp, line ) ) in get_script_string()
710 line = trim_string( line ); in get_script_string()
713 string::size_type iEqualSign = line.find( '=', 0 ); in get_script_string()
717 string keyname = line.substr( 0, iEqualSign ); in get_script_string()
720 string value = line.substr( iEqualSign + 1, string::npos ); in get_script_string()
754 string line; in get_profile_string() local
757 while ( read_line( fp, line ) ) in get_profile_string()
759 line = trim_string( line ); in get_profile_string()
761 if ( line.length() && line[0] == '[' ) in get_profile_string()
763 line.erase( 0, 1 ); in get_profile_string()
764 string::size_type end = line.find( ']', 0 ); in get_profile_string()
767 section = trim_string( line.substr( 0, end ) ); in get_profile_string()
772 string::size_type iEqualSign = line.find( '=', 0 ); in get_profile_string()
776 string keyname = line.substr( 0, iEqualSign ); in get_profile_string()
779 string value = line.substr( iEqualSign + 1, string::npos ); in get_profile_string()