Home
last modified time | relevance | path

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

/phasta/phSolver/common/
H A DCinput.cc116 string textline; in get_input_lines() local
117 while ( getline( infile, textline, '\n' ) ) { in get_input_lines()
119 if ( textline[0] != '#' ) { in get_input_lines()
120 text->push_back( textline ); in get_input_lines()
133 string textline; in build_map() local
139 textline = textlineALL.substr(0,pos); in build_map()
141 textline = textlineALL; in build_map()
143 pos = textline.find_first_of( ':', 0); in build_map()
147 string keywd = textline.substr(0,pos); in build_map()
151 string keyval = textline.substr( pos+1, textline.length() - pos); in build_map()