Home
last modified time | relevance | path

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

/phasta/phSolver/common/
H A DCinput.cc14 if (input_map->find(str) != input_map->end()) { in GetValue()
15 if ( (*input_map)[str] == "NODEFAULT" ) { in GetValue()
26 return ValType( (*input_map)[str] ); in GetValue()
50 input_map = new map<string,string>; in Input()
54 build_map(input_map, input_text); in Input()
71 if ( input_map->find(defkey) == input_map->end() ) { in Input()
72 (*input_map)[defkey] = defval; in Input()
93 delete input_map; in ~Input()
100 return *input_map; in InputMap()
106 map<string,string>::const_iterator iter = input_map->begin(); in EchoInputMap()
[all …]
H A DInput.h36 map<string,string> *input_map; variable