Home
last modified time | relevance | path

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

/dports/science/gnudatalanguage/gdl-1.0.1/src/
H A DGDLParser.hpp72 bool searchForPro; // true -> procedure subName, false -> function subName member in GDLParser
87 antlr::LLkParser(selector,2), subName(sName), searchForPro( searchPro), in GDLParser()
H A DGDLLexer.hpp60 const std::string &pro="", bool searchForPro=true) in GDLLexer() argument
70 parserPtr= new GDLParser( *selector, pro, searchForPro, compileOptIn); in GDLLexer()
H A Ddinterpreter.cpp339 bool GDLInterpreter::SearchCompilePro(const string& pro, bool searchForPro) in SearchCompilePro() argument
360 return CompileFile( proFile, pro, searchForPro); // this might trigger recursion in SearchCompilePro()
602 bool GDLInterpreter::CompileFile(const string& f, const string& untilPro, bool searchForPro) in CompileFile() argument
609 GDLLexer lexer(in, f, GDLParser::NONE, untilPro, searchForPro); in CompileFile()
H A Dgdlc.g201 bool searchForPro; // true -> procedure subName, false -> function subName
216 antlr::LLkParser(selector,2), subName(sName), searchForPro( searchPro),
505 if( subName == name && searchForPro == true) subReached=true;
521 if( subName == name && searchForPro == false) subReached=true;
1992 const std::string &pro="", bool searchForPro=true)
2002 parserPtr= new GDLParser( *selector, pro, searchForPro, compileOptIn);
H A DGDLInterpreter.hpp116 static bool SearchCompilePro(const std::string& pro, bool searchForPro);
180 bool searchForPro=true);
H A Dgdlc.i.g168 // procedure (searchForPro == true) or function (searchForPro == false)
169 static bool SearchCompilePro(const std::string& pro, bool searchForPro);
230 // procedure (searchForPro == true) or function (searchForPro == false)
233 bool searchForPro=true);
H A DGDLParser.cpp1075 if( subName == name && searchForPro == true) subReached=true; in procedure_def()
1192 if( subName == name && searchForPro == false) subReached=true; in function_def()