Lines Matching refs:new

207             AstDeclaration * inst = new AstStructInstance(
520 pModule = new AstModule(*$3, pScope);
594 pForward = new AstInterface(*$1, NULL, pScope);
633 pInterface = new AstInterface(
737 $$ = new FeInheritanceHeader(NT_interface, $1, $2, 0);
803 AstAttribute * attr = new AstAttribute(
967 $$.documentation = new rtl::OUString(
990 $$.documentation = new rtl::OUString(
1024 pOp = new AstOperation($1, pType, *$4, pScope);
1171 pParam = new AstParameter(
1246 $$ = new DeclList;
1348 pConstant = new AstConstant($3, $9, *$5, pScope);
1376 pConstants = new AstConstants(*$3, pScope);
1412 $$ = new AstExpression(EC_or, $1, $3);
1420 $$ = new AstExpression(EC_xor, $1, $3);
1428 $$ = new AstExpression(EC_and, $1, $3);
1436 $$ = new AstExpression(EC_left, $1, $3);
1440 $$ = new AstExpression(EC_right, $1, $3);
1448 $$ = new AstExpression(EC_add, $1, $3);
1452 $$ = new AstExpression(EC_minus, $1, $3);
1460 $$ = new AstExpression(EC_mul, $1, $3);
1464 $$ = new AstExpression(EC_div, $1, $3);
1468 $$ = new AstExpression(EC_mod, $1, $3);
1476 $$ = new AstExpression(EC_u_plus, $2, NULL);
1480 $$ = new AstExpression(EC_u_minus, $2, NULL);
1495 $$ = new AstExpression($1);
1507 $$ = new AstExpression($1);
1511 $$ = new AstExpression($1);
1515 $$ = new AstExpression($1);
1519 $$ = new AstExpression((sal_Int32)1, ET_boolean);
1523 $$ = new AstExpression((sal_Int32)0, ET_boolean);
1589 $$ = new FeInheritanceHeader(NT_exception, $3, $5, 0);
1606 pExcept = new AstException(*$1->getName(), pBase, pScope);
1684 pAttr = new AstAttribute(NT_property, $1, pType, pDecl->getName(), pScope);
1744 pIMember = new AstInterfaceMember(
1787 pSMember = new AstServiceMember(
1830 pObserves = new AstObserves((AstInterface*)pDecl, *iter, pScope);
1872 pNeeds = new AstNeeds((AstService*)pDecl, *iter, pScope);
1942 pService = new AstService(*$3, pScope);
2009 AstOperation * ctor = new AstOperation(OP_NONE, 0, *$1, scope);
2050 pService = new AstService(NT_singleton, *$3, pScope);
2165 pTypeDef = new AstTypeDef(pType, pDecl->getName(), pScope);
2185 FeDeclList* pList = new FeDeclList();
2207 FeDeclList* pList = new FeDeclList();
2237 $$ = new FeDeclarator(*$1, FeDeclarator::FD_simple, NULL);
2245 $$ = new FeDeclarator($1->getLocalName(), FeDeclarator::FD_complex, $1);
2258 $$ = new AstArray(*$1, NULL, *$3, idlc()->scopes()->bottom());
2272 ExprList* pList = new ExprList();
2288 ExprList* pList = new ExprList();
2333 StringList* pNames = new StringList();
2356 StringList* pNames = new StringList();
2382 OString* pName = new OString("::");
2430 $$ = new DeclList;
2575 pArray = new AstArray((AstType*)$1, *$3, idlc()->scopes()->bottom());
2628 pSeq = new AstSequence(pType, pScope);
2662 pStruct = new AstStruct(
2719 $$ = new FeInheritanceHeader(NT_struct, $3, $6, $5);
2733 $$ = new std::vector< rtl::OString >;
2797 pMember = new AstMember(pType, pDecl->getName(), pScope);
2861 pEnum = new AstEnum(*$3, pScope);
2929 AstExpression* pExpr = new AstExpression(pEnum->getEnumValueCount());
2930 pEnumVal = new AstConstant(ET_long , NT_enum_val,
2958 pEnumVal = new AstConstant(ET_long , NT_enum_val,
3016 pUnion = new AstUnion(*$3, pType, pScope);
3161 pBranch = new AstUnionBranch(pLabel, pMember->getType(),
3179 LabelList* pLabels = new LabelList();
3195 LabelList* pLabels = new LabelList();
3214 $$ = new AstUnionLabel(UL_default, NULL);
3227 $$ = new AstUnionLabel(UL_label, $3);
3259 $$ = new AstMember(pType, $3->getName(), pScope);
3274 | IDL_GET { $$ = new OString("get"); }
3275 | IDL_SET { $$ = new OString("set"); }
3276 | IDL_PUBLISHED { $$ = new OString("published"); }