Lines Matching refs:cacheable
231 bool Parser::ParseMethodProperties(bool& oneway, bool& cacheable, int& cacheTime)
237 cacheable = false;
251 } else if (token == Token::CACHEABLE && cacheable == false) {
253 LogError(Token::CACHEABLE, "cacheable time format is incorrect.");
256 cacheable = true;
277 void Parser::SetMethodAttr(ASTMethod* method, ASTType *returnType, bool oneway, bool cacheable, int cacheTime)
282 if (cacheable == true) {
377 bool cacheable = false;
380 if ((token == Token::BRACKETS_LEFT) && (ParseMethodProperties(oneway, cacheable, cacheTime) == false)) {
395 SetMethodAttr(method, type, oneway, cacheable, cacheTime);