Lines Matching defs:ret
97 std::string ret(str.Utf8());
98 ret[0] = std::toupper(ret[0]);
99 return ret;
1317 varbinder::Variable *ret = nullptr;
1320 ret = node->AsClassProperty()->Id()->Variable();
1322 ret = node->AsVariableDeclarator()->Id()->AsIdentifier()->Variable();
1327 return ret;
1336 const ir::AstNode *ret = nullptr;
1342 ret = membExpr->PropVar()->Declaration()->Node();
1349 ret = id->Variable()->Declaration()->Node();
1354 if (ret != nullptr) {
1355 if (ret->IsIdentifier() && ret->Parent()->IsVariableDeclarator() &&
1356 ret == ret->Parent()->AsVariableDeclarator()->Id()) {
1357 ret = ret->Parent();
1361 return ret;