Lines Matching refs:xAttribs
68 …startElement(const OUString& aName, const Reference< XAttributeList > & xAttribs) throw( SAXExcept…
79 …OUString getAttribute( const Reference< XAttributeList > & xAttribs, const sal_Char* pName ) throw…
81 …ElementConfigPtr importAtomConfig( const Reference< XAttributeList > & xAttribs, bool bIsContainer…
82 …ElementConfigPtr importElementConfig( const Reference< XAttributeList > & xAttribs ) throw( SAXExc…
83 …ElementConfigPtr importSwitchConfig( const Reference< XAttributeList > & xAttribs ) throw( SAXExce…
84 …ElementConfigPtr importCaseConfig( const Reference< XAttributeList > & xAttribs ) throw( SAXExcept…
85 …ElementConfigPtr importValueElementConfig( const Reference< XAttributeList > & xAttribs ) throw( S…
139 OUString ConfigHandler::getAttribute( const Reference< XAttributeList > & xAttribs, const sal_Char*… in getAttribute() argument
143 const sal_Int16 nAttrCount = xAttribs.is() ? xAttribs->getLength() : 0; in getAttribute()
147 if( xAttribs->getNameByIndex( i ) == aName ) in getAttribute()
148 return xAttribs->getValueByIndex( i ); in getAttribute()
166 …startElement(const OUString& aName, const Reference< XAttributeList > & xAttribs) throw( SAXExcept… in startElement() argument
177 pElement = importAtomConfig( xAttribs, true ); in startElement()
181 pElement = importAtomConfig( xAttribs, false ); in startElement()
185 pElement = importElementConfig( xAttribs ); in startElement()
189 pElement = importValueElementConfig( xAttribs ); in startElement()
193 pElement = importSwitchConfig( xAttribs ); in startElement()
197 pElement = importCaseConfig( xAttribs ); in startElement()
244 ElementConfigPtr ConfigHandler::importAtomConfig( const Reference< XAttributeList > & xAttribs, boo… in importAtomConfig() argument
249 ElementConfigPtr aPtr( new AtomConfig( getAttribute(xAttribs,"name"), bIsContainer ) ); in importAtomConfig()
250 gAtomConfigMap[ (UINT16)toInt(getAttribute(xAttribs,"id"))] = aPtr; in importAtomConfig()
254 ElementConfigPtr ConfigHandler::importElementConfig( const Reference< XAttributeList > & xAttribs )… in importElementConfig() argument
256 ElementConfigType nType = parseType( getAttribute( xAttribs, "type" ) ); in importElementConfig()
257 …ElementConfigPtr pElementConfig( new ElementConfigContainer( getAttribute( xAttribs, "name" ), nTy… in importElementConfig()
262 …gHandler::importValueElementConfig( const Reference< XAttributeList > & xAttribs ) throw (SAXExcep… in importValueElementConfig() argument
264 … pElementConfig( new ElementValueConfig( getAttribute( xAttribs, "name" ), getAttribute( xAttribs,… in importValueElementConfig()
269 ElementConfigPtr ConfigHandler::importSwitchConfig( const Reference< XAttributeList > & xAttribs ) … in importSwitchConfig() argument
271 ElementConfigType nType = parseType( getAttribute( xAttribs, "type" ) ); in importSwitchConfig()
277 ElementConfigPtr ConfigHandler::importCaseConfig( const Reference< XAttributeList > & xAttribs ) th… in importCaseConfig() argument
279 ElementConfigPtr pElementConfig( new CaseElementConfig( getAttribute( xAttribs, "value" ) ) ); in importCaseConfig()