Home
last modified time | relevance | path

Searched refs:bResult (Results 51 – 75 of 291) sorted by relevance

12345678910>>...12

/aoo41x/main/sw/source/core/unocore/
H A DXMLRangeHelper.cxx246 bool bResult = true; in lcl_getCellRangeAddressFromXMLString() local
270 bResult = lcl_getCellAddressFromXMLString( rXMLString, nStartPos, nEndPos, in lcl_getCellRangeAddressFromXMLString()
277 bResult = lcl_getCellAddressFromXMLString( rXMLString, nStartPos, nDelimiterPos - 1, in lcl_getCellRangeAddressFromXMLString()
281 if( bResult ) in lcl_getCellRangeAddressFromXMLString()
283 bResult = lcl_getCellAddressFromXMLString( rXMLString, nDelimiterPos + 1, nEndPos, in lcl_getCellRangeAddressFromXMLString()
287 if( bResult && in lcl_getCellRangeAddressFromXMLString()
290 bResult = false; in lcl_getCellRangeAddressFromXMLString()
293 return bResult; in lcl_getCellRangeAddressFromXMLString()
/aoo41x/main/accessibility/workben/org/openoffice/accessibility/awb/view/text/
H A DTextEditDialog.java62 boolean bResult = false; in UpdateText()
103 bResult = xText.setText( sIns ); in UpdateText()
105 bResult = xText.insertText( sIns, nFront ); in UpdateText()
107 bResult = xText.deleteText( nFront, sOld.length()-nBack ); in UpdateText()
109 bResult = xText.replaceText(nFront, sOld.length()-nBack,sIns); in UpdateText()
116 return bResult; in UpdateText()
/aoo41x/main/qadevOOo/tests/java/ifc/view/
H A D_XControlAccess.java73 boolean bResult = true; in _getControl()
106 bResult &= oControl != null; in _getControl()
109 bResult = false; in _getControl()
112 bResult = false; in _getControl()
115 bResult = false; in _getControl()
117 tRes.tested("getControl()", bResult); in _getControl()
/aoo41x/main/sc/source/ui/Accessibility/
H A DAccessibleText.cxx618 bResult = sal_True; in IsValid()
620 return bResult; in IsValid()
667 bResult = sal_True; in GetSelection()
673 return bResult; in GetSelection()
682 bResult = sal_True; in SetSelection()
688 return bResult; in SetSelection()
697 bResult = sal_True; in Copy()
703 return bResult; in Copy()
712 bResult = sal_True; in Cut()
718 return bResult; in Cut()
[all …]
/aoo41x/main/qadevOOo/tests/java/ifc/text/
H A D_XTextRangeCompare.java115 boolean bResult = false; in _compareRegionEnds()
142 if (n == 1){bResult = true;} in _compareRegionEnds()
143 tRes.tested( "compareRegionEnds()", bResult ); in _compareRegionEnds()
156 boolean bResult = false; in _compareRegionStarts()
180 if (n == 1){bResult = true;} in _compareRegionStarts()
181 tRes.tested( "compareRegionStarts()", bResult ); in _compareRegionStarts()
/aoo41x/main/chart2/source/model/template/
H A DChartTypeTemplate.cxx334 sal_Bool bResult = sal_False; in matchesTemplate() local
337 return bResult; in matchesTemplate()
347 bResult = (aCooSysSeq.getLength() > 0); in matchesTemplate()
348 if( bResult ) in matchesTemplate()
353 … for( sal_Int32 nCooSysIdx=0; bResult && (nCooSysIdx < aCooSysSeq.getLength()); ++nCooSysIdx ) in matchesTemplate()
356 bResult = bResult && (aCooSysSeq[nCooSysIdx]->getDimension() == nDimensionToMatch); in matchesTemplate()
360 for( sal_Int32 nCTIdx=0; bResult && (nCTIdx < aChartTypeSeq.getLength()); ++nCTIdx ) in matchesTemplate()
363bResult = bResult && aChartTypeSeq[nCTIdx]->getChartType().equals( aChartTypeToMatch ); in matchesTemplate()
367 bResult = bResult && in matchesTemplate()
381 return bResult; in matchesTemplate()
H A DStockChartTypeTemplate.cxx425 sal_Bool bResult = sal_False; in matchesTemplate() local
428 return bResult; in matchesTemplate()
477 bResult = true; in matchesTemplate()
485 bResult = bResult && ( bHasJapaneseStyle == bJapaneseProp ); in matchesTemplate()
490 bResult = bResult && ( bHasOpenValue == bShowFirstProp ); in matchesTemplate()
499 return bResult; in matchesTemplate()
H A DColumnLineChartTypeTemplate.cxx294 sal_Bool bResult = sal_False; in matchesTemplate() local
297 return bResult; in matchesTemplate()
342 bResult = (xColumnChartCooSys->getDimension() == getDimension()); in matchesTemplate()
343 if( bResult ) in matchesTemplate()
347 bResult = ( DiagramHelper::getStackModeFromChartType( in matchesTemplate()
352 if( bResult && bAdaptProperties ) in matchesTemplate()
369 return bResult; in matchesTemplate()
H A DBarChartTypeTemplate.cxx179 sal_Bool bResult = ChartTypeTemplate::matchesTemplate( xDiagram, bAdaptProperties ); in matchesTemplate() local
182 if( bResult ) in matchesTemplate()
188 bResult = sal_Bool( bVertical ); in matchesTemplate()
190 bResult = sal_Bool( !bVertical ); in matchesTemplate()
195 bResult && in matchesTemplate()
211 return bResult; in matchesTemplate()
/aoo41x/main/svx/source/form/
H A Dfmshell.cxx294 sal_Bool bResult = sal_True; in PrepareClose() local
334 bResult = rController->commitCurrentRecord( ); in PrepareClose()
340 return bResult; in PrepareClose()
367 sal_Bool bResult = sal_False; in HasUIFeature() local
384 bResult = m_bDesignMode && m_pFormView && m_bHasForms; in HasUIFeature()
388 bResult = m_bDesignMode && m_pFormView && m_bHasForms; in HasUIFeature()
392 bResult = m_bDesignMode; // OJ #101593# && m_pFormView && m_bHasForms; in HasUIFeature()
396 bResult = !GetImpl()->IsReadonlyDoc() && m_pImpl->IsActiveControl( true ); in HasUIFeature()
400 bResult = GetImpl()->isEnhancedForm(); in HasUIFeature()
407 bResult = sal_True; in HasUIFeature()
[all …]
/aoo41x/main/qadevOOo/tests/java/ifc/sheet/
H A D_XDataPilotTable.java76 boolean bResult = true; in _getOutputRange()
78 bResult &= OutputRange.Sheet == objRange.Sheet; in _getOutputRange()
79 bResult &= OutputRange.Row == objRange.StartRow; in _getOutputRange()
80 bResult &= OutputRange.Column == objRange.StartColumn; in _getOutputRange()
81 tRes.tested("getOutputRange()", bResult); in _getOutputRange()
H A D_XFunctionDescriptions.java54 boolean bResult = true; in _getById()
108 bResult &= FName.equals(objFName); in _getById()
109 bResult &= FId.equals(objFId); in _getById()
117 bResult = false; in _getById()
123 tRes.tested("getById()", bResult); in _getById()
/aoo41x/main/sc/qa/complex/dataPilot/
H A D_XDataPilotTable.java105 boolean bResult = true; in _getOutputRange()
107 bResult &= OutputRange.Sheet == objRange.Sheet; in _getOutputRange()
108 bResult &= OutputRange.Row == objRange.StartRow; in _getOutputRange()
109 bResult &= OutputRange.Column == objRange.StartColumn; in _getOutputRange()
110 return bResult; in _getOutputRange()
/aoo41x/main/qadevOOo/tests/java/ifc/form/
H A D_DataAwareControlModel.java74 boolean bResult = true; in _BoundField()
87 bResult &= gValue != null; in _BoundField()
90 bResult = false; in _BoundField()
93 bResult = false; in _BoundField()
95 tRes.tested("BoundField", bResult); in _BoundField()
/aoo41x/main/sd/source/core/
H A Dstlsheet.cxx207 sal_Bool bResult = sal_False; in SetParent() local
219 bResult = sal_True; in SetParent()
227 bResult = sal_True; in SetParent()
234 bResult = sal_True; in SetParent()
237 return bResult; in SetParent()
353 sal_Bool bResult = sal_False; in IsUsed() local
373 if (bResult) in IsUsed()
378 if( !bResult ) in IsUsed()
388 while( nCount-- && !bResult ) in IsUsed()
392 bResult = xStyle->isInUse(); in IsUsed()
[all …]
/aoo41x/main/writerfilter/source/doctok/
H A DWW8PieceTableImpl.cxx255 bool bResult = false; in isComplex() local
260 bResult = aIt->isComplex(); in isComplex()
262 return bResult; in isComplex()
267 bool bResult = false; in isComplex() local
272 bResult = aIt->isComplex(); in isComplex()
274 return bResult; in isComplex()
/aoo41x/main/swext/mediawiki/src/com/sun/star/wiki/
H A DWikiArticle.java210 boolean bResult = false; in setArticle()
237 bResult = true; in setArticle()
245 return bResult; in setArticle()
284 boolean bResult = true; in NotExist()
286 bResult = m_bNoArticle; in NotExist()
288 return bResult; in NotExist()
/aoo41x/main/chart2/source/controller/main/
H A DChartTransferable.cxx89 sal_Bool bResult = sal_False; in GetData() local
95 bResult = SetObject( m_pMarkedObjModel, CHARTTRANSFER_OBJECTTYPE_DRAWMODEL, rFlavor ); in GetData()
100 bResult = SetGDIMetaFile( aGraphic.GetGDIMetaFile(), rFlavor ); in GetData()
105 bResult = SetBitmapEx( aGraphic.GetBitmapEx(), rFlavor ); in GetData()
109 return bResult; in GetData()
/aoo41x/main/connectivity/source/drivers/dbase/
H A Ddindexnode.cxx157 sal_Bool bResult = sal_False; in Find() local
163 bResult = aPage.Is() && aPage->Find(rKey); in Find()
169 bResult = sal_False; in Find()
173 bResult = rKey == ((*this)[i]).GetKey(); in Find()
175 rIndex.m_nCurNode = bResult ? i : i - 1; in Find()
177 return bResult; in Find()
188 sal_Bool bResult = sal_True; in Insert() local
205 bResult = Insert(rIndex.m_nCurNode + 1, rNode); in Insert()
213 bResult = Insert(nPos, rNode); in Insert()
217 if (!bResult) in Insert()
/aoo41x/main/sw/source/ui/wrtsh/
H A Ddelete.cxx63 sal_Bool bResult = sal_False; in TryRemoveIndent() local
74 bResult = sal_True; in TryRemoveIndent()
81 bResult = sal_True; in TryRemoveIndent()
86 bResult = sal_True; in TryRemoveIndent()
89 if (bResult) in TryRemoveIndent()
95 return bResult; in TryRemoveIndent()
/aoo41x/main/comphelper/source/container/
H A Dembeddedobjectcontainer.cxx702 sal_Bool bResult = sal_False; in TryToCopyGraphReplacement() local
712 return bResult; in TryToCopyGraphReplacement()
1383 sal_Bool bResult = sal_False; in StoreAsChildren() local
1477 bResult = sal_False; in StoreAsChildren()
1481 if ( !_bOasisFormat && bResult ) in StoreAsChildren()
1493 bResult = sal_False; in StoreAsChildren()
1496 return bResult; in StoreAsChildren()
1501 sal_Bool bResult = sal_True; in StoreChildren() local
1598 if ( bResult && _bOasisFormat ) in StoreChildren()
1613 bResult = sal_False; in StoreChildren()
[all …]
/aoo41x/main/framework/source/layoutmanager/
H A Dlayoutmanager.cxx1703 bResult = true; in requestElement()
1731 return bResult; in requestElement()
1812 bNotify = bResult; in showElement()
1868 return bResult; in showElement()
1980 bool bResult( false ); in dockAllWindows() local
1991 return bResult; in dockAllWindows()
1997 bool bResult( false ); in floatWindow() local
2012 return bResult; in floatWindow()
2018 bool bResult( false ); in lockWindow() local
2033 return bResult; in lockWindow()
[all …]
/aoo41x/main/qadevOOo/tests/java/ifc/drawing/
H A D_Text.java40 boolean bResult = false; in _NumberingRules()
54 bResult = true; in _NumberingRules()
59 bResult = false; in _NumberingRules()
62 tRes.tested( "NumberingRules", bResult); in _NumberingRules()
/aoo41x/main/setup_native/source/win32/customactions/regactivex/
H A Dregactivex.cxx308 BOOL bResult = FALSE; in MakeInstallForAllUsers() local
312 bResult = UnicodeEquals( pVal , L"1" ); in MakeInstallForAllUsers()
316 return bResult; in MakeInstallForAllUsers()
322 BOOL bResult = FALSE; in MakeInstallFor64Bit() local
326 bResult = TRUE; in MakeInstallFor64Bit()
330 return bResult; in MakeInstallFor64Bit()
/aoo41x/main/framework/source/fwe/classes/
H A Daddonsoptions.cxx1330 return bResult; in ReadStatusBarItem()
1373 bResult = sal_True; in ReadMenuItem()
1389 bResult = sal_True; in ReadMenuItem()
1401 bResult = sal_True; in ReadMenuItem()
1404 return bResult; in ReadMenuItem()
1441 bResult = sal_True; in ReadPopupMenu()
1445 return bResult; in ReadPopupMenu()
1496 bResult = sal_True; in ReadToolBarItem()
1523 return bResult; in ReadToolBarItem()
1799 bResult = sal_True; in CreateImageFromSequence()
[all …]

Completed in 212 milliseconds

12345678910>>...12