reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
818 if (Ops.second == "") 821 size_t start = Ops.first.find_first_of('$'); 824 Ops.first = Ops.first.slice(start + 1, std::string::npos); 824 Ops.first = Ops.first.slice(start + 1, std::string::npos); 825 size_t end = Ops.first.find_last_of(" \t"); 826 Ops.first = Ops.first.slice(0, end); 826 Ops.first = Ops.first.slice(0, end); 828 start = Ops.second.find_first_of('$'); 831 Ops.second = Ops.second.slice(start + 1, std::string::npos); 831 Ops.second = Ops.second.slice(start + 1, std::string::npos); 832 end = Ops.second.find_last_of(" \t"); 833 Ops.first = Ops.first.slice(0, end); 833 Ops.first = Ops.first.slice(0, end); 834 return Ops;