| /AOO41X/main/rsc/source/res/ |
| H A D | rscarray.cxx | 156 static RscInstNode * Create( RscInstNode * pNode ) in Create() argument 161 if( pNode ) in Create() 163 pRetNode = new RscInstNode( pNode->GetId() ); in Create() 164 pRetNode->aInst = pNode->aInst.pClass->Create( NULL, pNode->aInst ); in Create() 165 if( (pTmpNode = Create( pNode->Left() )) != NULL ) in Create() 167 if( (pTmpNode = Create( pNode->Right() )) != NULL ) in Create() 193 pClassData->pNode = NULL; in Create() 200 pClassData->pNode = ::Create( pDfltClassData->pNode ); in Create() 212 static void Destroy( RscInstNode * pNode ) in Destroy() argument 214 if( pNode ) in Destroy() [all …]
|
| /AOO41X/main/editeng/source/editeng/ |
| H A D | impedit5.cxx | 54 ContentNode* pNode = aEditDoc.SaveGetObject( nPara ); in GetStyleSheet() local 55 return pNode ? pNode->GetContentAttribs().GetStyleSheet() : NULL; in GetStyleSheet() 77 ContentNode* pNode = aEditDoc.SaveGetObject( nPara ); in SetStyleSheet() local 78 SfxStyleSheet* pCurStyle = pNode->GetStyleSheet(); in SetStyleSheet() 92 new EditUndoSetStyleSheet( this, aEditDoc.GetPos( pNode ), in SetStyleSheet() 95 pNode->GetContentAttribs().GetItems() ) ); in SetStyleSheet() 99 pNode->SetStyleSheet( pStyle, aStatus.UseCharAttribs() ); in SetStyleSheet() 102 ParaAttribsChanged( pNode ); in SetStyleSheet() 115 ContentNode* pNode = aEditDoc.GetObject( nNode ); in UpdateParagraphsWithStyleSheet() local 116 if ( pNode->GetStyleSheet() == pStyle ) in UpdateParagraphsWithStyleSheet() [all …]
|
| H A D | impedit4.cxx | 279 ContentNode* pNode = aEditDoc.GetObject( nNode ); in WriteText() local 280 DBG_ASSERT( pNode, "Node nicht gefunden: Search&Replace" ); in WriteText() 283 sal_uInt16 nEndPos = pNode->Len(); in WriteText() 291 XubString aTmpStr = aEditDoc.GetParaAsString( pNode, nStartPos, nEndPos ); in WriteText() 310 void lcl_FindValidAttribs( ItemList& rLst, ContentNode* pNode, sal_uInt16 nIndex, sal_uInt16 nScrip… in lcl_FindValidAttribs() argument 313 EditCharAttrib* pAttr = GetAttrib( pNode->GetCharAttribs().GetAttribs(), nAttr ); in lcl_FindValidAttribs() 323 pAttr = GetAttrib( pNode->GetCharAttribs().GetAttribs(), nAttr ); in lcl_FindValidAttribs() 581 ContentNode* pNode = aEditDoc.SaveGetObject( nNode ); in WriteRTF() local 582 DBG_ASSERT( pNode, "Node nicht gefunden: Search&Replace" ); in WriteRTF() 588 if ( pNode->GetStyleSheet() ) in WriteRTF() [all …]
|
| H A D | editdoc.cxx | 585 if ( !pNode ) in DbgIsBuggy() 587 if ( rDoc.GetPos( pNode ) >= rDoc.Count() ) in DbgIsBuggy() 589 if ( nIndex > pNode->Len() ) in DbgIsBuggy() 692 pNode = rPaM.pNode; in operator =() 1246 void EditDoc::RemoveItemsFromPool( ContentNode* pNode ) in RemoveItemsFromPool() argument 1248 for ( sal_uInt16 nAttr = 0; nAttr < pNode->GetCharAttribs().Count(); nAttr++ ) in RemoveItemsFromPool() 1250 EditCharAttrib* pAttr = pNode->GetCharAttribs().GetAttribs()[nAttr]; in RemoveItemsFromPool() 1337 ContentNode* pNode = GetObject( nNode ); in CreateDefFont() local 1338 pNode->GetCharAttribs().GetDefFont() = aDefFont; in CreateDefFont() 1340 pNode->CreateDefFont(); in CreateDefFont() [all …]
|
| H A D | impedit3.cxx | 555 ContentNode* pNode = pParaPortion->GetNode(); in CheckAutoPageSize() local 559 pParaPortion->MarkSelectionInvalid( 0, pNode->Len() ); in CheckAutoPageSize() 635 ContentNode* const pNode = pParaPortion->GetNode(); in CreateLines() local 640 …sal_Bool bHyphenatePara = ((const SfxBoolItem&)pNode->GetContentAttribs().GetItem( EE_PARA_HYPHENA… in CreateLines() 643 …sal_Int32 nSpaceBeforeAndMinLabelWidth = GetSpaceBeforeAndMinLabelWidth( pNode, &nSpaceBefore, &nM… in CreateLines() 644 const SvxLRSpaceItem& rLRItem = GetLRSpaceItem( pNode ); in CreateLines() 645 …const SvxLineSpacingItem& rLSItem = (const SvxLineSpacingItem&) pNode->GetContentAttribs().GetItem… in CreateLines() 646 …const sal_Bool bScriptSpace = ((const SvxScriptSpaceItem&) pNode->GetContentAttribs().GetItem( EE_… in CreateLines() 659 ( pNode->Search( CH_FEATURE, nInvalidStart ) > nInvalidEnd ) ) in CreateLines() 731 …if ( nLine && ( !pParaPortion->IsSimpleInvalid() || ( nInvalidEnd < pNode->Len() ) || ( nInvalidDi… in CreateLines() [all …]
|
| H A D | impedit2.cxx | 313 ContentNode* pNode = aEditDoc.GetObject( nNode ); in GetSelected() local 316 xub_StrLen nEndPos = pNode->Len(); in GetSelected() 322 aText += aEditDoc.GetParaAsString( pNode, nStartPos, nEndPos ); in GetSelected() 822 void ImpEditEngine::ParaAttribsChanged( ContentNode* pNode ) in ParaAttribsChanged() argument 824 DBG_ASSERT( pNode, "ParaAttribsChanged: Welcher?" ); in ParaAttribsChanged() 829 ParaPortion* pPortion = FindParaPortion( pNode ); in ParaAttribsChanged() 831 pPortion->MarkSelectionInvalid( 0, pNode->Len() ); in ParaAttribsChanged() 833 sal_uInt16 nPara = aEditDoc.GetPos( pNode ); in ParaAttribsChanged() 1291 ContentNode* pNode = aCurPaM.GetNode(); in CursorLeft() local 1292 pNode = GetPrevVisNode( pNode ); in CursorLeft() [all …]
|
| H A D | editdoc.hxx | 300 ContentNode* pNode; member in EditPaM 304 EditPaM() { pNode = NULL; nIndex = 0; } in EditPaM() 305 EditPaM( ContentNode* p, sal_uInt16 n ) { pNode = p; nIndex = n; } in EditPaM() 307 ContentNode* GetNode() const { return pNode; } in GetNode() 308 void SetNode( ContentNode* p) { pNode = p; } in SetNode() 315 sal_Bool IsParaEnd() const { return nIndex == pNode->Len(); } in IsParaEnd() 554 ContentNode* pNode; member in ParaPortion 573 ParaPortion( ContentNode* pNode ); 600 ContentNode* GetNode() const { return pNode; } in GetNode() 746 …XubString GetParaAsString( ContentNode* pNode, sal_uInt16 nStartPos = 0, sal_uInt16 nEndPos … [all …]
|
| /AOO41X/main/starmath/source/ |
| H A D | mathmlexport.cxx | 772 void SmXMLExport::ExportLine(const SmNode *pNode, int nLevel) in ExportLine() argument 774 ExportExpression(pNode, nLevel); in ExportLine() 777 void SmXMLExport::ExportBinaryHorizontal(const SmNode *pNode, int nLevel) in ExportBinaryHorizontal() argument 779 ExportExpression(pNode, nLevel); in ExportBinaryHorizontal() 782 void SmXMLExport::ExportUnaryHorizontal(const SmNode *pNode, int nLevel) in ExportUnaryHorizontal() argument 784 ExportExpression(pNode, nLevel); in ExportUnaryHorizontal() 787 void SmXMLExport::ExportExpression(const SmNode *pNode, int nLevel) in ExportExpression() argument 790 sal_uLong nSize = pNode->GetNumSubNodes(); in ExportExpression() 793 if (nSize > 1 || (pNode && pNode->GetType() == NEXPRESSION)) in ExportExpression() 799 if (const SmNode *pTemp = pNode->GetSubNode(i)) in ExportExpression() [all …]
|
| H A D | node.cxx | 177 SmNode *pNode = GetNumSubNodes() > 0 ? in GetLeftMost() local 180 return pNode ? pNode->GetLeftMost() : this; in GetLeftMost() 189 SmNode *pNode; in SetPhantom() local 192 if (NULL != (pNode = GetSubNode(i))) in SetPhantom() 193 pNode->SetPhantom(bIsPhantom); in SetPhantom() 202 SmNode *pNode; in SetColor() local 205 if (NULL != (pNode = GetSubNode(i))) in SetColor() 206 pNode->SetColor(rColor); in SetColor() 220 SmNode *pNode; in SetAttribut() local 223 if (NULL != (pNode = GetSubNode(i))) in SetAttribut() [all …]
|
| H A D | mathtype.cxx | 2113 sal_uInt8 MathType::HandleNodes(SmNode *pNode,int nLevel) in HandleNodes() argument 2116 switch(pNode->GetType()) in HandleNodes() 2119 HandleAttributes(pNode,nLevel); in HandleNodes() 2122 HandleText(pNode,nLevel); in HandleNodes() 2125 HandleVerticalBrace(pNode,nLevel); in HandleNodes() 2128 HandleBrace(pNode,nLevel); in HandleNodes() 2131 HandleOperator(pNode,nLevel); in HandleNodes() 2134 HandleFractions(pNode,nLevel); in HandleNodes() 2137 HandleRoot(pNode,nLevel); in HandleNodes() 2141 SmTextNode *pText=(SmTextNode *)pNode; in HandleNodes() [all …]
|
| H A D | mathmlexport.hxx | 91 void ExportNodes(const SmNode *pNode, int nLevel); 92 void ExportTable(const SmNode *pNode, int nLevel); 93 void ExportLine(const SmNode *pNode, int nLevel); 94 void ExportExpression(const SmNode *pNode, int nLevel); 95 void ExportText(const SmNode *pNode, int nLevel); 96 void ExportMath(const SmNode *pNode, int nLevel); 97 void ExportPolygon(const SmNode *pNode, int nLevel); 98 void ExportBinaryHorizontal(const SmNode *pNode, int nLevel); 99 void ExportUnaryHorizontal(const SmNode *pNode, int nLevel); 100 void ExportBrace(const SmNode *pNode, int nLevel); [all …]
|
| H A D | mathtype.hxx | 113 sal_uInt8 HandleNodes(SmNode *pNode,int nLevel=0); 117 void HandleTable(SmNode *pNode,int nLevel); 118 void HandleRoot(SmNode *pNode,int nLevel); 119 void HandleSubSupScript(SmNode *pNode,int nLevel); 120 sal_uInt8 HandleCScript(SmNode *pNode,SmNode *pContent,int nLevel, 122 void HandleFractions(SmNode *pNode,int nLevel); 123 void HandleBrace(SmNode *pNode,int nLevel); 124 void HandleVerticalBrace(SmNode *pNode,int nLevel); 125 void HandleOperator(SmNode *pNode,int nLevel); 126 sal_Bool HandleLim(SmNode *pNode,int nLevel); [all …]
|
| /AOO41X/main/oox/source/ppt/ |
| H A D | timenodelistcontext.cxx | 122 const TimeNodePtr & pNode ) in MediaNodeContext() argument 123 : TimeNodeContext( rParent, aElement, xAttribs, pNode ) in MediaNodeContext() 190 const TimeNodePtr & pNode ) in SetTimeNodeContext() argument 191 : TimeNodeContext( rParent, aElement, xAttribs, pNode ) in SetTimeNodeContext() 257 const TimeNodePtr & pNode ) in CmdTimeNodeContext() argument 258 : TimeNodeContext( rParent, aElement, xAttribs, pNode ) in CmdTimeNodeContext() 385 const TimeNodePtr & pNode ) in SequenceTimeNodeContext() argument 386 : TimeNodeContext( rParent, aElement, xAttribs, pNode ) in SequenceTimeNodeContext() 446 const TimeNodePtr & pNode ) in ParallelExclTimeNodeContext() argument 447 : TimeNodeContext( rParent, aElement, xAttribs, pNode ) in ParallelExclTimeNodeContext() [all …]
|
| /AOO41X/main/vcl/source/gdi/ |
| H A D | octree.cxx | 64 OctreeNode* pNode = pActNode; in ~ImpNodeCache() local 66 pActNode = pNode->pNextInCache; in ~ImpNodeCache() 67 delete pNode; in ~ImpNodeCache() 222 PNODE pNode; in ImplReduce() local 230 pNode = pReduce[ i ]; in ImplReduce() 231 pReduce[ i ] = pNode->pNext; in ImplReduce() 235 if ( pNode->pChild[ i ] ) in ImplReduce() 237 PNODE pChild = pNode->pChild[ i ]; in ImplReduce() 242 pNode->nCount += pChild->nCount; in ImplReduce() 244 pNodeCache->ImplReleaseNode( pNode->pChild[ i ] ); in ImplReduce() [all …]
|
| /AOO41X/main/xmlsecurity/source/xmlsec/ |
| H A D | xmldocumentwrapper_xmlsecimpl.cxx | 199 const xmlNodePtr pNode) const in sendStartElement() 236 xmlNsPtr pNsDef = pNode->nsDef; in sendStartElement() 261 xmlAttrPtr pAttr = pNode->properties; in sendStartElement() 286 rtl::OString sNodeName = getNodeQName(pNode); in sendStartElement() 303 const xmlNodePtr pNode) const in sendEndElement() 337 rtl::OString sNodeName = getNodeQName(pNode); in sendEndElement() 350 const xmlNodePtr pNode) const in sendNode() 388 xmlElementType type = pNode->type; in sendNode() 394 … xHandler->characters(rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->content)) ))); in sendNode() 397 … xHandler2->characters(rtl::OUString(RTL_UTF8_USTRINGPARAM ( ((sal_Char*)(pNode->content)) ))); in sendNode() [all …]
|
| /AOO41X/main/unoxml/source/dom/ |
| H A D | document.cxx | 128 xmlNodePtr const pNode = lcl_getDocumentRootPtr(m_aDocPtr); in GetDocumentElement() local 130 dynamic_cast<CElement*>(GetCNode(pNode).get())); in GetDocumentElement() 135 CDocument::RemoveCNode(xmlNodePtr const pNode, CNode const*const pCNode) in RemoveCNode() argument 137 nodemap_t::iterator const i = m_NodeMap.find(pNode); in RemoveCNode() 159 CDocument::GetCNode(xmlNodePtr const pNode, bool const bCreate) in GetCNode() argument 161 if (0 == pNode) { in GetCNode() 165 nodemap_t::const_iterator const i = m_NodeMap.find(pNode); in GetCNode() 183 switch (pNode->type) in GetCNode() 188 new CElement(*this, m_Mutex, pNode)); in GetCNode() 193 new CText(*this, m_Mutex, pNode)); in GetCNode() [all …]
|
| H A D | attributesmap.cxx | 49 xmlNodePtr pNode = m_pElement->GetNodePtr(); in getLength() local 50 if (pNode != NULL) in getLength() 52 xmlAttrPtr cur = pNode->properties; in getLength() 71 xmlNodePtr pNode = m_pElement->GetNodePtr(); in getNamedItem() local 72 if (pNode != NULL) in getNamedItem() 76 xmlAttrPtr cur = pNode->properties; in getNamedItem() 103 xmlNodePtr pNode = m_pElement->GetNodePtr(); in getNamedItemNS() local 104 if (pNode != NULL) in getNamedItemNS() 111 xmlNsPtr const pNs = xmlSearchNsByHref(pNode->doc, pNode, xNs); in getNamedItemNS() 112 xmlAttrPtr cur = pNode->properties; in getNamedItemNS() [all …]
|
| H A D | elementlist.cxx | 74 void CElementList::buildlist(xmlNodePtr pNode, sal_Bool start) in buildlist() argument 87 while (pNode != NULL ) in buildlist() 89 if (pNode->type == XML_ELEMENT_NODE && in buildlist() 90 (strcmp((char*)pNode->name, (char*)m_pName.get()) == 0)) in buildlist() 93 m_nodevector.push_back(pNode); in buildlist() 95 if (pNode->ns != NULL && (0 == in buildlist() 96 strcmp((char*)pNode->ns->href, (char*)m_pURI.get()))) in buildlist() 98 m_nodevector.push_back(pNode); in buildlist() 102 if (pNode->children != NULL) buildlist(pNode->children, sal_False); in buildlist() 104 if (!start) pNode = pNode->next; in buildlist()
|
| /AOO41X/main/svtools/source/edit/ |
| H A D | texteng.cxx | 454 TextNode* pNode = new TextNode( String() ); in ImpInitDoc() local 455 mpDoc->GetNodes().Insert( pNode, 0 ); in ImpInitDoc() 457 TEParaPortion* pIniPortion = new TEParaPortion( pNode ); in ImpInitDoc() 481 TextNode* pNode = mpDoc->GetNodes().GetObject( nNode ); in GetText() local 484 sal_uInt16 nEndPos = pNode->GetText().Len(); in GetText() 490 aText += pNode->GetText().Copy( nStartPos, nEndPos-nStartPos ); in GetText() 550 TextNode* pNode = mpDoc->GetNodes().GetObject( nNode ); in CursorMoved() local 551 if ( pNode && pNode->GetCharAttribs().HasEmptyAttribs() && pNode->GetText().Len() ) in CursorMoved() 552 pNode->GetCharAttribs().DeleteEmptyAttribs(); in CursorMoved() 561 TextNode* pNode = mpDoc->GetNodes().GetObject( rPaM.GetPara() ); in ImpRemoveChars() local [all …]
|
| H A D | textdoc.cxx | 554 TextNode* pNode = maTextNodes.GetObject( nNode ); in GetText() local 555 String aTmp( pNode->GetText() ); in GetText() 567 TextNode* pNode = ( nPara < maTextNodes.Count() ) ? maTextNodes.GetObject( nPara ) : 0; in GetText() local 568 if ( pNode ) in GetText() 569 aText = pNode->GetText(); in GetText() 591 TextNode* pNode = maTextNodes.GetObject( nNode ); in GetTextLen() local 594 sal_uLong nE = pNode->GetText().Len(); in GetTextLen() 615 TextNode* pNode = maTextNodes.GetObject( rPaM.GetPara() ); in InsertText() local 616 pNode->InsertText( rPaM.GetIndex(), c ); in InsertText() 627 TextNode* pNode = maTextNodes.GetObject( rPaM.GetPara() ); in InsertText() local [all …]
|
| /AOO41X/main/sw/source/core/txtnode/ |
| H A D | txtedt.cxx | 204 SwTxtNode *pNode = rTxtFrm.GetTxtNode(); in lcl_CalculateRepaintRect() local 206 SwNodeIndex aNdIdx( *pNode ); in lcl_CalculateRepaintRect() 207 SwPosition aPos( aNdIdx, SwIndex( pNode, nChgEnd ) ); in lcl_CalculateRepaintRect() 236 aPos = SwPosition( aNdIdx, SwIndex( pNode, nChgStart ) ); in lcl_CalculateRepaintRect() 1160 SwTxtNode *pNode = GetTxtNode(); in _AutoSpell() local 1161 if( pNode != pActNode || !nActPos ) in _AutoSpell() 1167 const XubString aOldTxt( pNode->GetTxt() ); in _AutoSpell() 1169 lcl_MaskRedlinesAndHiddenText( *pNode, pNode->m_Text, in _AutoSpell() 1170 0, pNode->GetTxt().Len() ) > 0; in _AutoSpell() 1174 ( pNode->GetTxt().GetBuffer() != aOldTxt.GetBuffer() ); in _AutoSpell() [all …]
|
| /AOO41X/main/oox/source/drawingml/diagram/ |
| H A D | layoutnodecontext.cxx | 44 const LayoutAtomPtr & pNode ) in IfContext() argument 45 : LayoutNodeContext( rParent, xAttribs, pNode ) in IfContext() 47 ConditionAtomPtr pAtom( boost::dynamic_pointer_cast< ConditionAtom >(pNode) ); in IfContext() 61 …extHandler& rParent, const Reference< XFastAttributeList >& xAttribs, const LayoutAtomPtr & pNode ) in AlgorithmContext() argument 65 , mpNode( pNode ) in AlgorithmContext() 83 …extHandler& rParent, const Reference< XFastAttributeList >& xAttribs, const LayoutAtomPtr & pNode ) in ChooseContext() argument 86 , mpNode( pNode ) in ChooseContext() 144 …extHandler& rParent, const Reference< XFastAttributeList >& xAttribs, const LayoutAtomPtr & pNode ) in ForEachContext() argument 145 : LayoutNodeContext( rParent, xAttribs, pNode ) in ForEachContext() 147 ForEachAtomPtr pAtom( boost::dynamic_pointer_cast< ForEachAtom >(pNode) ); in ForEachContext() [all …]
|
| /AOO41X/main/sw/source/core/doc/ |
| H A D | docfmt.cxx | 193 SwCntntNode* pNode = (SwCntntNode*) rpNd->GetCntntNode(); in lcl_RstAttr() local 194 if( pNode && pNode->HasSwAttrSet() ) in lcl_RstAttr() 196 const sal_Bool bLocked = pNode->IsModifyLocked(); in lcl_RstAttr() 197 pNode->LockModify(); in lcl_RstAttr() 199 SwDoc* pDoc = pNode->GetDoc(); in lcl_RstAttr() 207 const SfxItemSet* pAttrSetOfNode = pNode->GetpSwAttrSet(); in lcl_RstAttr() 263 pNode->ResetAttr( aClearWhichIds ); in lcl_RstAttr() 267 pNode->UnlockModify(); in lcl_RstAttr() 271 SwRegHistory aRegH( pNode, *pNode, pPara->pHistory ); in lcl_RstAttr() 286 pNode->ResetAttr( pItem->Which() ); in lcl_RstAttr() [all …]
|
| /AOO41X/main/dbaccess/source/ui/querydesign/ |
| H A D | QueryDesignView.cxx | 156 const ::connectivity::OSQLParseNode *pNode); 159 const ::connectivity::OSQLParseNode* pNode, 605 const ::connectivity::OSQLParseNode *pNode, in InsertJoinConnection() 611 if (pNode->count() == 3 && // Ausdruck is geklammert in InsertJoinConnection() 612 SQL_ISPUNCTUATION(pNode->getChild(0),"(") && in InsertJoinConnection() 613 SQL_ISPUNCTUATION(pNode->getChild(2),")")) in InsertJoinConnection() 615 … eErrorCode = InsertJoinConnection(_pView,pNode->getChild(1), _eJoinType,pLeftTable,pRightTable); in InsertJoinConnection() 617 … else if (SQL_ISRULEOR2(pNode,search_condition,boolean_term) && // AND/OR-Verknuepfung: in InsertJoinConnection() 618 pNode->count() == 3) in InsertJoinConnection() 621 if (!SQL_ISTOKEN(pNode->getChild(1),AND)) in InsertJoinConnection() [all …]
|
| /AOO41X/main/sw/source/core/SwNumberTree/ |
| H A D | SwNumberTree.cxx | 149 void SwNumberTreeNode::ValidateHierarchical(const SwNumberTreeNode * pNode) const in ValidateHierarchical() 152 GetIterator(pNode); in ValidateHierarchical() 281 void SwNumberTreeNode::ValidateContinuous(const SwNumberTreeNode * pNode) const in ValidateContinuous() 336 while (aIt != mChildren.end() && *aIt != pNode); in ValidateContinuous() 345 void SwNumberTreeNode::Validate(const SwNumberTreeNode * pNode) const in Validate() 347 if (! IsValid(pNode)) in Validate() 350 ValidateContinuous(pNode); in Validate() 352 ValidateHierarchical(pNode); in Validate() 375 SwNumberTreeNode * pNode = GetLastDescendant(); in ValidateTree() local 377 if (pNode && pNode->mpParent) in ValidateTree() [all …]
|