Home
last modified time | relevance | path

Searched refs:tok_low (Results 1 – 3 of 3) sorted by last modified time

/dports/devel/codeblocks/codeblocks-20.03/src/plugins/contrib/FortranProject/
H A Dparserthreadf.h100 bool IsEnd(wxString tok_low, wxString nex_low);
104 …void CheckParseOneDeclaration(wxString& token, wxString& tok_low, wxString& next, wxString& next_l…
114 void CheckParseCallProcedure(wxString& token, wxString& tok_low, wxString& next);
H A Dparserthreadf.cpp123 if (tok_low.Matches(_T("use"))) in Parse()
157 tok_low = token.Lower(); in Parse()
1048 if ( tok_low.IsSameAs(_T("integer")) || tok_low.IsSameAs(_T("real")) in CheckParseOneDeclaration()
1049 || tok_low.IsSameAs(_T("doubleprecision")) || tok_low.IsSameAs(_T("character")) in CheckParseOneDeclaration()
1050 || tok_low.IsSameAs(_T("complex")) || tok_low.IsSameAs(_T("logical")) in CheckParseOneDeclaration()
1202 if ( tok_low.IsSameAs(_T("integer")) || tok_low.IsSameAs(_T("real")) in ParseDeclarationsFirstPart()
1203 || tok_low.IsSameAs(_T("doubleprecision")) || tok_low.IsSameAs(_T("character")) in ParseDeclarationsFirstPart()
1204 || tok_low.IsSameAs(_T("complex")) || tok_low.IsSameAs(_T("logical")) in ParseDeclarationsFirstPart()
1235 else if (tok_low.IsSameAs(_T("type")) || tok_low.IsSameAs(_T("class"))) in ParseDeclarationsFirstPart()
2003 wxString tok_low; in GoThroughBody() local
[all …]
H A Dchangecase.cpp258 wxString tok_low = tok.Lower(); in EditorChangeCase() local
261 if (kwset.count(tok_low) == 1) in EditorChangeCase()
276 tokCase = tok_low.Upper(); in EditorChangeCase()
278 tokCase = tok_low.Mid(0,1).Upper() + tok_low.Mid(1); in EditorChangeCase()
280 tokCase = tok_low; in EditorChangeCase()