/aoo41x/main/idlc/source/ |
H A D | aststack.cxx | 33 : m_stack((AstScope**)rtl_allocateZeroMemory(sizeof(AstScope*) * STACKSIZE_INCREMENT)) in AstStack() 55 AstScope* AstStack::top() in top() 62 AstScope* AstStack::bottom() in bottom() 69 AstScope* AstStack::nextToTop() in nextToTop() 71 AstScope *tmp, *retval; in nextToTop() 83 AstScope* AstStack::topNonNull() in topNonNull() 93 AstStack* AstStack::push(AstScope* pScope) in push() 95 AstScope **tmp; in push() 105 tmp = (AstScope**)rtl_allocateZeroMemory(sizeof(AstScope*) * newSize); in push() 122 AstScope *pScope; in pop()
|
H A D | astscope.cxx | 45 AstScope::AstScope(NodeType nodeType) in AstScope() function in AstScope 51 AstScope::~AstScope() in ~AstScope() 56 AstDeclaration* AstScope::addDeclaration(AstDeclaration* pDecl) in addDeclaration() 105 sal_uInt16 AstScope::getNodeCount(NodeType nodeType) in getNodeCount() 122 AstDeclaration* AstScope::lookupByName(const OString& scopedName) in lookupByName() 125 AstScope* pScope = NULL; in lookupByName() 217 AstDeclaration* AstScope::lookupByNameLocal(const OString& name) const in lookupByNameLocal() 233 AstDeclaration* AstScope::lookupInInherited(const OString& scopedName) const in lookupInInherited() 266 AstDeclaration* AstScope::lookupPrimitiveType(ExprType type) in lookupPrimitiveType() 269 AstScope* pScope = NULL; in lookupPrimitiveType() [all …]
|
H A D | parser.y | 585 AstScope* pScope = idlc()->scopes()->topNonNull(); 623 AstScope* pScope = idlc()->scopes()->topNonNull(); 1055 AstScope* pScope = idlc()->scopes()->topNonNull(); 1338 AstScope* pScope = idlc()->scopes()->topNonNull(); 2008 AstScope * scope = idlc()->scopes()->top(); 2042 AstScope* pScope = idlc()->scopes()->topNonNull(); 2229 AstScope * scope = idlc()->scopes()->top(); 2569 AstScope* pScope = idlc()->scopes()->bottom(); 2619 AstScope* pScope = idlc()->scopes()->bottom(); 2656 AstScope* pScope = idlc()->scopes()->topNonNull(); [all …]
|
H A D | aststruct.cxx | 38 AstStruct* pBaseType, AstScope* pScope) in AstStruct() 40 , AstScope(NT_struct) in AstStruct() 54 AstScope* pScope) in AstStruct() 56 , AstScope(type) in AstStruct()
|
H A D | astenum.cxx | 33 AstEnum::AstEnum(const ::rtl::OString& name, AstScope* pScope) in AstEnum() 35 , AstScope(NT_enum) in AstEnum() 120 return AstScope::addDeclaration(pDecl); in addDeclaration()
|
H A D | astunion.cxx | 35 AstUnion::AstUnion(const ::rtl::OString& name, AstType* pDiscType, AstScope* pScope) in AstUnion() 109 return AstScope::addDeclaration(pDecl); in addDeclaration() 372 …nBranch(AstUnionLabel* pLabel, AstType const * pType, const ::rtl::OString& name, AstScope* pScope) in AstUnionBranch()
|
H A D | astarray.cxx | 30 AstArray::AstArray(const OString& name, AstType* pType, const ExprList& rDimExpr, AstScope* pScope) in AstArray() 40 AstArray::AstArray(AstType* pType, const ExprList& rDimExpr, AstScope* pScope) in AstArray()
|
H A D | fehelper.cxx | 81 AstScope* pScope = idlc()->scopes()->bottom(); in compose() 114 AstScope* pScope = idlc()->scopes()->topNonNull(); in initializeInherits()
|
H A D | astconstant.cxx | 37 AstScope* pScope) in AstConstant() 47 AstScope* pScope) in AstConstant()
|
/aoo41x/main/idlc/inc/idlc/ |
H A D | aststack.hxx | 28 class AstScope; 37 AstScope* top(); 38 AstScope* bottom(); 39 AstScope* nextToTop(); 40 AstScope* topNonNull(); 41 AstStack* push(AstScope* pScope); 46 AstScope** m_stack;
|
H A D | astmodule.hxx | 30 , public AstScope 33 AstModule(const ::rtl::OString& name, AstScope* pScope) in AstModule() 35 , AstScope(NT_module) in AstModule() 37 AstModule(NodeType type, const ::rtl::OString& name, AstScope* pScope) in AstModule() 39 , AstScope(type) in AstModule()
|
H A D | astservice.hxx | 30 , public AstScope 33 AstService(const ::rtl::OString& name, AstScope* pScope) in AstService() 35 , AstScope(NT_service) in AstService() 38 AstService(const NodeType type, const ::rtl::OString& name, AstScope* pScope) in AstService() 40 , AstScope(type) in AstService()
|
H A D | astattribute.hxx | 34 class AstAttribute: public AstDeclaration, public AstScope { 38 AstScope * scope): in AstAttribute() 40 AstScope(NT_attribute), m_flags(flags), m_pType(type) in AstAttribute() 43 …pe nodeType, sal_uInt32 flags, AstType const * pType, const ::rtl::OString& name, AstScope* pScope) in AstAttribute() 44 : AstDeclaration(nodeType, name, pScope), AstScope(nodeType) in AstAttribute()
|
H A D | astdeclaration.hxx | 29 class AstScope; 71 AstDeclaration(NodeType type, const ::rtl::OString& name, AstScope* pScope); 84 AstScope* getScope() in getScope() 86 void setScope(AstScope* pSc) in setScope() 131 AstScope* m_pScope;
|
H A D | astmember.hxx | 30 class AstScope; 36 AstType const * pType, rtl::OString const & name, AstScope * pScope): in AstMember() 46 AstScope * pScope): in AstMember()
|
H A D | aststruct.hxx | 34 , public AstScope 40 AstStruct* pBaseType, AstScope* pScope); 45 AstScope* pScope);
|
H A D | astoperation.hxx | 37 , public AstScope 40 AstOperation(sal_uInt32 flags, AstType* pReturnType, const ::rtl::OString& name, AstScope* pScope) in AstOperation() 42 , AstScope(NT_operation) in AstOperation()
|
H A D | astscope.hxx | 32 class AstScope class 35 AstScope(NodeType nodeType); 36 virtual ~AstScope();
|
H A D | astexpression.hxx | 114 AstScope* getScope() in getScope() 116 void setScope(AstScope* pScope) in setScope() 170 AstScope* m_pScope; // scope defined in
|
H A D | idlctypes.hxx | 76 class AstScope; 77 AstDeclaration* SAL_CALL scopeAsDecl(AstScope* pScope); 78 AstScope* SAL_CALL declAsScope(AstDeclaration* pDecl);
|
H A D | aststructinstance.hxx | 31 class AstScope; 37 AstScope * scope);
|
H A D | astenum.hxx | 31 , public AstScope 34 AstEnum(const ::rtl::OString& name, AstScope* pScope);
|
H A D | astarray.hxx | 32 AstArray(const ::rtl::OString& name, AstType* pType, const ExprList& rDimExpr, AstScope* pScope); 33 AstArray(AstType* pType, const ExprList& rDimExpr, AstScope* pScope);
|
H A D | astconstant.hxx | 35 AstExpression* pExpr, const ::rtl::OString& name, AstScope* pScope); 37 const ::rtl::OString& name, AstScope* pScope);
|
H A D | astinterface.hxx | 34 , public AstScope 55 AstScope* pScope);
|