Lines Matching refs:oneway
106 bool oneway = false;
119 oneway = true;
146 return ParseInterfaceEnd(token, interfaceFullName, hasProperties, oneway, ret);
183 bool Parser::ParseInterfaceEnd(Token& token, String& interfaceFullName, bool hasProperties, bool oneway, bool ret)
213 interface->SetOneway(oneway);
231 bool Parser::ParseMethodProperties(bool& oneway, bool& cacheable, int& cacheTime)
236 oneway = false;
249 oneway = true;
277 void Parser::SetMethodAttr(ASTMethod* method, ASTType *returnType, bool oneway, bool cacheable, int cacheTime)
280 method->SetOneway(oneway);
310 LogError(token, String("void return type expected in oneway interface."));
338 LogError(token, String("void return type expected in oneway method."));
376 bool oneway = false;
380 if ((token == Token::BRACKETS_LEFT) && (ParseMethodProperties(oneway, cacheable, cacheTime) == false)) {
395 SetMethodAttr(method, type, oneway, cacheable, cacheTime);
404 LogError(token, String("out parameter type not expected in oneway method."));