Home
last modified time | relevance | path

Searched refs:AstModule (Results 1 – 6 of 6) sorted by relevance

/AOO41X/main/idlc/source/
H A Didlc.cxx59 return (AstModule*)(pScope); in scopeAsDecl()
92 return (AstModule*)(pDecl); in declAsScope()
110 static void SAL_CALL predefineXInterface(AstModule* pRoot) in predefineXInterface()
113 AstModule* pParentScope = pRoot; in predefineXInterface()
114 AstModule* pModule = new AstModule(OString("com"), pParentScope); in predefineXInterface()
118 pModule = new AstModule(OString("sun"), pParentScope); in predefineXInterface()
122 pModule = new AstModule(OString("star"), pParentScope); in predefineXInterface()
126 pModule = new AstModule(OString("uno"), pParentScope); in predefineXInterface()
158 static void SAL_CALL initializePredefinedTypes(AstModule* pRoot) in initializePredefinedTypes()
242 m_pRoot = new AstModule(NT_root, OString(), NULL); in init()
[all …]
H A Dparser.y515 AstModule* pModule = NULL;
520 pModule = new AstModule(*$3, pScope);
535 pModule = (AstModule*)pExists;
H A Dastdump.cxx45 sal_Bool AstModule::dump(RegistryKey& rKey) in dump()
/AOO41X/main/idlc/inc/idlc/
H A Dastmodule.hxx29 class AstModule : public AstDeclaration class
33 AstModule(const ::rtl::OString& name, AstScope* pScope) in AstModule() function in AstModule
37 AstModule(NodeType type, const ::rtl::OString& name, AstScope* pScope) in AstModule() function in AstModule
41 virtual ~AstModule() {} in ~AstModule()
H A Didlc.hxx39 class AstModule;
56 AstModule* getRoot() in getRoot()
122 AstModule* m_pRoot;
H A Dastconstants.hxx28 class AstConstants : public AstModule
32 : AstModule(NT_constants, name, pScope) in AstConstants()