Home
last modified time | relevance | path

Searched refs:pScope (Results 1 – 25 of 42) sorted by relevance

12

/trunk/main/idlc/source/
H A Dparser.y518 if ( pScope )
1016 if ( pScope && $2 )
1060 if ( pScope && pScope->getScopeNodeType() == NT_operation)
1374 if ( pScope )
1555 if ( pScope && (type = pScope->lookupByName(*$1)) ) {
1602 if ( pScope )
2576 if ( pScope )
2659 if ( pScope )
2924 if ( pScope && pScope->getScopeNodeType() == NT_enum)
2950 if ( $3 && pScope && pScope->getScopeNodeType() == NT_enum)
[all …]
H A Dastscope.cxx125 AstScope* pScope = NULL; in lookupByName() local
136 pScope = pDecl->getScope(); in lookupByName()
138 if ( !pScope ) in lookupByName()
165 pScope = pDecl->getScope(); in lookupByName()
166 if ( pScope ) in lookupByName()
187 pScope = declAsScope(pDecl); in lookupByName()
188 if( pScope ) in lookupByName()
204 if ( pScope ) in lookupByName()
269 AstScope* pScope = NULL; in lookupPrimitiveType() local
275 pScope = pDecl->getScope(); in lookupPrimitiveType()
[all …]
H A Didlc.cxx50 if (pScope == NULL) return NULL; in scopeAsDecl()
52 switch( pScope->getScopeNodeType() ) in scopeAsDecl()
56 return (AstService*)(pScope); in scopeAsDecl()
59 return (AstModule*)(pScope); in scopeAsDecl()
61 return (AstConstants*)(pScope); in scopeAsDecl()
63 return (AstInterface*)(pScope); in scopeAsDecl()
65 return (AstOperation*)(pScope); in scopeAsDecl()
67 return (AstException*)(pScope); in scopeAsDecl()
69 return (AstUnion*)(pScope); in scopeAsDecl()
71 return (AstStruct*)(pScope); in scopeAsDecl()
[all …]
H A Dastdeclaration.cxx50 AstDeclaration::AstDeclaration(NodeType type, const OString& name, AstScope* pScope) in AstDeclaration() argument
52 , m_pScope(pScope) in AstDeclaration()
170 AstScope* pScope = declAsScope(this); in dump() local
173 if ( pScope ) in dump()
175 DeclList::const_iterator iter = pScope->getIteratorBegin(); in dump()
176 DeclList::const_iterator end = pScope->getIteratorEnd(); in dump()
H A Dfehelper.cxx81 AstScope* pScope = idlc()->scopes()->bottom(); in compose() local
82 if ( pScope ) in compose()
84 AstDeclaration* pDecl2 = pScope->addDeclaration(pArray); in compose()
114 AstScope* pScope = idlc()->scopes()->topNonNull(); in initializeInherits() local
115 AstDeclaration* pDecl = pScope->lookupByName(*pInherits); in initializeInherits()
H A Dastarray.cxx30 AstArray::AstArray(const OString& name, AstType* pType, const ExprList& rDimExpr, AstScope* pScope) in AstArray() argument
31 : AstType(NT_array, name, pScope) in AstArray()
40 AstArray::AstArray(AstType* pType, const ExprList& rDimExpr, AstScope* pScope) in AstArray() argument
41 : AstType(NT_array, OString("arrary_"), pScope) in AstArray()
H A Daststack.cxx93 AstStack* AstStack::push(AstScope* pScope) in push() argument
115 m_stack[m_top++] = pScope; in push()
122 AstScope *pScope; in pop() local
126 pScope = m_stack[--m_top]; in pop()
H A Dastconstant.cxx37 AstScope* pScope) in AstConstant() argument
38 : AstDeclaration(nodeType, name, pScope) in AstConstant()
47 AstScope* pScope) in AstConstant() argument
48 : AstDeclaration(NT_const, name, pScope) in AstConstant()
H A Daststruct.cxx38 AstStruct* pBaseType, AstScope* pScope) in AstStruct() argument
39 : AstType(NT_struct, name, pScope) in AstStruct()
54 AstScope* pScope) in AstStruct() argument
55 : AstType(type, name, pScope) in AstStruct()
H A Dastunion.cxx35 AstUnion::AstUnion(const ::rtl::OString& name, AstType* pDiscType, AstScope* pScope) in AstUnion() argument
36 : AstStruct(NT_union, name, NULL, pScope) in AstUnion()
372 …nBranch(AstUnionLabel* pLabel, AstType const * pType, const ::rtl::OString& name, AstScope* pScope) in AstUnionBranch() argument
373 : AstMember(NT_union_branch, pType, name, pScope) in AstUnionBranch()
/trunk/main/autodoc/source/parser/cpp/
H A Dicprivow.cxx39 : pScope(0) in Owner_Namespace()
46 pScope = &io_rScope; in SetAnotherNamespace()
59 csv_assert(pScope != 0); in do_Add_Class()
67 csv_assert(pScope != 0); in do_Add_Enum()
75 csv_assert(pScope != 0); in do_Add_Typedef()
84 csv_assert(pScope != 0); in do_Add_Operation()
94 csv_assert(pScope != 0); in do_Add_Variable()
106 return pScope->CeId(); in inq_CeId()
113 : pScope(0) in Owner_Class()
120 pScope = &io_rScope; in SetAnotherClass()
[all …]
/trunk/main/idlc/inc/idlc/
H A Dastmodule.hxx33 AstModule(const ::rtl::OString& name, AstScope* pScope) in AstModule() argument
34 : AstDeclaration(NT_module, name, pScope) in AstModule()
37 AstModule(NodeType type, const ::rtl::OString& name, AstScope* pScope) in AstModule() argument
38 : AstDeclaration(type, name, pScope) in AstModule()
H A Dastmember.hxx36 AstType const * pType, rtl::OString const & name, AstScope * pScope): in AstMember() argument
37 AstDeclaration(NT_member, name, pScope), m_pType(pType) {} in AstMember()
46 AstScope * pScope): in AstMember() argument
47 AstDeclaration(type, name, pScope), m_pType(pType) {} in AstMember()
H A Dastservice.hxx33 AstService(const ::rtl::OString& name, AstScope* pScope) in AstService() argument
34 : AstDeclaration(NT_service, name, pScope) in AstService()
38 AstService(const NodeType type, const ::rtl::OString& name, AstScope* pScope) in AstService() argument
39 : AstDeclaration(type, name, pScope) in AstService()
H A Dastconstants.hxx31 AstConstants(const ::rtl::OString& name, AstScope* pScope) in AstConstants() argument
32 : AstModule(NT_constants, name, pScope) in AstConstants()
H A Dastexception.hxx31 AstException(const ::rtl::OString& name, AstException* pBaseType, AstScope* pScope) in AstException() argument
32 : AstStruct(NT_exception, name, pBaseType, pScope) in AstException()
H A Dasttype.hxx31 AstType(const NodeType type, const ::rtl::OString& name, AstScope* pScope) in AstType() argument
32 : AstDeclaration(type, name, pScope) in AstType()
H A Dastneeds.hxx31 AstNeeds(AstService* pRealService, const ::rtl::OString& name, AstScope* pScope) in AstNeeds() argument
32 : AstDeclaration(NT_needs, name, pScope) in AstNeeds()
H A Dastobserves.hxx31 AstObserves(AstInterface* pRealInterface, const ::rtl::OString& name, AstScope* pScope) in AstObserves() argument
32 : AstDeclaration(NT_observes, name, pScope) in AstObserves()
H A Dastbasetype.hxx33 AstBaseType(const ExprType type, const ::rtl::OString& name, AstScope* pScope) in AstBaseType() argument
34 : AstType(NT_predefined, name, pScope) in AstBaseType()
H A Dastinterfacemember.hxx32 const ::rtl::OString& name, AstScope* pScope) in AstInterfaceMember() argument
33 : AstDeclaration(NT_interface_member, name, pScope) in AstInterfaceMember()
H A Dastservicemember.hxx32 const ::rtl::OString& name, AstScope* pScope) in AstServiceMember() argument
33 : AstDeclaration(NT_service_member, name, pScope) in AstServiceMember()
H A Dastsequence.hxx31 AstSequence(AstType* pMemberType, AstScope* pScope) in AstSequence() argument
32 : AstType(NT_sequence, ::rtl::OString("[]")+pMemberType->getScopedName(), pScope) in AstSequence()
H A Dastarray.hxx32 AstArray(const ::rtl::OString& name, AstType* pType, const ExprList& rDimExpr, AstScope* pScope);
33 AstArray(AstType* pType, const ExprList& rDimExpr, AstScope* pScope);
H A Dastconstant.hxx35 AstExpression* pExpr, const ::rtl::OString& name, AstScope* pScope);
37 const ::rtl::OString& name, AstScope* pScope);

Completed in 66 milliseconds

12