Lines Matching refs:oneway
106 bool oneway = false; in ParseInterface() local
119 oneway = true; in ParseInterface()
146 return ParseInterfaceEnd(token, interfaceFullName, hasProperties, oneway, ret); in ParseInterface()
183 …rseInterfaceEnd(Token& token, String& interfaceFullName, bool hasProperties, bool oneway, bool ret) in ParseInterfaceEnd() argument
213 interface->SetOneway(oneway); in ParseInterfaceEnd()
231 bool Parser::ParseMethodProperties(bool& oneway, bool& cacheable, int& cacheTime) in ParseMethodProperties() argument
236 oneway = false; in ParseMethodProperties()
249 oneway = true; in ParseMethodProperties()
277 void Parser::SetMethodAttr(ASTMethod* method, ASTType *returnType, bool oneway, bool cacheable, int… in SetMethodAttr() argument
280 method->SetOneway(oneway); in SetMethodAttr()
376 bool oneway = false; in ParseMethod() local
380 …if ((token == Token::BRACKETS_LEFT) && (ParseMethodProperties(oneway, cacheable, cacheTime) == fal… in ParseMethod()
395 SetMethodAttr(method, type, oneway, cacheable, cacheTime); in ParseMethod()