Home
last modified time | relevance | path

Searched refs:exp (Results 1 – 25 of 130) sorted by relevance

123456

/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/beans/
H A D_XPropertyContainer.java112 exp = false; in _addProperty()
124 exp = true; in _addProperty()
138 if (! exp){ in _addProperty()
146 exp = false; in _addProperty()
173 if (! exp){ in _addProperty()
181 exp = false; in _addProperty()
209 if (! exp){ in _addProperty()
251 exp=false; in _removeProperty()
269 if (! exp){ in _removeProperty()
277 exp = false; in _removeProperty()
[all …]
H A D_XPropertyAccess.java147 exp = false; in _setPropertyValues()
160 exp = true; in _setPropertyValues()
164 exp = true; in _setPropertyValues()
169 exp = true; in _setPropertyValues()
173 exp = true; in _setPropertyValues()
176 if (! exp){ in _setPropertyValues()
184 exp = false; in _setPropertyValues()
201 exp = true; in _setPropertyValues()
205 exp = true; in _setPropertyValues()
209 exp = true; in _setPropertyValues()
[all …]
/trunk/main/solenv/inc/
H A D_tg_def.mk98 @-$(RM) $(MISC)/$(SHL1TARGET).exp
102 @-$(RM) $(MISC)/$(SHL1TARGET).exp
382 @-$(RM) $(MISC)/$(SHL2TARGET).exp
386 @-$(RM) $(MISC)/$(SHL2TARGET).exp
666 @-$(RM) $(MISC)/$(SHL3TARGET).exp
670 @-$(RM) $(MISC)/$(SHL3TARGET).exp
950 @-$(RM) $(MISC)/$(SHL4TARGET).exp
954 @-$(RM) $(MISC)/$(SHL4TARGET).exp
1234 @-$(RM) $(MISC)/$(SHL5TARGET).exp
1238 @-$(RM) $(MISC)/$(SHL5TARGET).exp
[all …]
H A Dtg_def.mk103 @-$(RM) $(MISC)/$(SHL$(TNR)TARGET).exp
104 $(COMMAND_ECHO)dlltool --output-def $(MISC)/$(SHL$(TNR)TARGET).exp --export-all-symbols \
106 $(COMMAND_ECHO)tail --lines +3 $(MISC)/$(SHL$(TNR)TARGET).exp | sed '/^;/d' >>$@.tmpfile
107 @-$(RM) $(MISC)/$(SHL$(TNR)TARGET).exp
110 @-$(RMHACK$(TNR)) $(MISC)/$(SHL$(TNR)TARGET).exp
111 @$(LIBMGR) -EXTRACT:/ /OUT:$(MISC)/$(SHL$(TNR)TARGET).exp $(SLB)/$(DEFLIB$(TNR)NAME).lib
112 …PORT_ALL_SWITCH) -F $(MISC)/$(SHL$(TNR)TARGET).flt $(MISC)/$(SHL$(TNR)TARGET).exp >>$@.tmpfile
113 $(COMMAND_ECHO)$(RMHACK$(TNR)) $(MISC)/$(SHL$(TNR)TARGET).exp
H A Dtg_wntx64.mk141 @-$(EXPORT1_PROTECT) $(RMHACK1) $(MISC_X64)/$(SHL1TARGET_X64).exp
142 …@$(EXPORT1_PROTECT) $(LIBMGR_X64) -EXTRACT:/ /OUT:$(MISC_X64)/$(SHL1TARGET_X64).exp $(SLB_X64)/$(D…
143 …MP2) -E 20 -F $(MISC_X64)/$(SHL1TARGET_X64).flt $(MISC_X64)/$(SHL1TARGET_X64).exp >>$@.tmpfile
144 $(EXPORT1_PROTECT) $(RMHACK1) $(MISC_X64)/$(SHL1TARGET_X64).exp
178 @-$(EXPORT2_PROTECT) $(RMHACK1) $(MISC_X64)/$(SHL2TARGET_X64).exp
179 …@$(EXPORT2_PROTECT) $(LIBMGR_X64) -EXTRACT:/ /OUT:$(MISC_X64)/$(SHL2TARGET_X64).exp $(SLB_X64)/$(D…
180 …MP2) -E 20 -F $(MISC_X64)/$(SHL2TARGET_X64).flt $(MISC_X64)/$(SHL2TARGET_X64).exp >>$@.tmpfile
181 $(EXPORT2_PROTECT) $(RMHACK1) $(MISC_X64)/$(SHL2TARGET_X64).exp
296 $(LB_X64)/$(SHL1IMPLIB_X64).exp \
440 $(LB_X64)/$(SHL2IMPLIB_X64).exp \
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/i18n/
H A D_XCharacterClassification.java112 String exp = ""; in _toUpper() local
116 exp = toCheck.toUpperCase( in _toUpper()
118 res &= get.equals(exp); in _toUpper()
141 String exp = ""; in _toLower() local
145 exp = toCheck.toLowerCase( in _toLower()
147 res &= get.equals(exp); in _toLower()
169 String exp = ""; in _toTitle() local
173 exp = new String( in _toTitle()
175 res &= get.equals(exp); in _toTitle()
253 int[] exp = new int[]{97,226,228,230}; in _getStringType() local
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/text/
H A D_XTextRange.java75 String exp=""; in _getStart() local
83 exp = the_text.getString(); in _getStart()
84 } else exp = oObj.getText().getString(); in _getStart()
86 log.println("Start: "+exp); in _getStart()
89 exp.startsWith("Start")); in _getStart()
113 String exp=""; in _getEnd() local
120 exp = the_text.getString(); in _getEnd()
121 } else exp = oObj.getText().getString(); in _getEnd()
123 log.println("End: "+exp); in _getEnd()
126 exp.endsWith("End")); in _getEnd()
/trunk/main/sc/source/core/tool/
H A Dinterpr6.cxx127 double fFactor = exp(fLnFactor); // Do we need more accuracy than exp(ln()) has? in GetLowRegIGamma()
140 double fFactor = exp(fLnFactor); //Do I need more accuracy than exp(ln()) has?; in GetUpRegIGamma()
164 return pow( fXr, fAlpha-1.0) * exp(-fXr) / fLambda / GetGamma(fAlpha); in GetGammaDistPDF()
168 return exp( (fAlpha-1.0) * log(fXr) - fXr - log(fLambda) - GetLogGamma(fAlpha)); in GetGammaDistPDF()
175 return pow( fXr, fAlpha-1.0) * exp(-fXr) / fLambda / GetGamma(fAlpha); in GetGammaDistPDF()
179 return pow( fXr, fAlpha-1.0) * exp(-fXr) / fLambda / exp( GetLogGamma(fAlpha)); in GetGammaDistPDF()
H A Dinterpr3.cxx206 return 0.39894228040143268 * exp(-(x * x) / 2.0); in phi()
591 fGamma /= exp(fZgHelp); in lcl_GetGammaHelper()
773 fValue = exp(log(fValue)-fX/2); in GetChiSqDistPDF()
775 fValue *= exp(-fX/2); in GetChiSqDistPDF()
963 return exp( fAm1LogX + fBm1LogY - fLogBeta); in GetBetaDistPDF()
1556 PushDouble(lambda * exp(-lambda*x)); in ScExpDist()
1563 PushDouble(1.0 - exp(-lambda*x)); in ScExpDist()
1641 exp(-pow(x/beta,alpha))); in ScWeibull()
1643 PushDouble(1.0 - exp(-pow(x/beta,alpha))); in ScWeibull()
2014 PushDouble(exp(mue+sigma*gaussinv(y))); in ScLogNormInv()
[all …]
H A Dinterpr5.cxx2480 pResMat->PutDouble(_bRKP ? exp(fIntercept) : fIntercept, 1, 0); //order (column,row) in CalulateRGPRKP()
2481 pResMat->PutDouble(_bRKP ? exp(fSlope) : fSlope, 0, 0); in CalulateRGPRKP()
2593 pResMat->PutDouble(_bRKP ? exp(fIntercept) : fIntercept, K, 0 ); in CalulateRGPRKP()
2595 pResMat->PutDouble(_bRKP ? exp(pSlopes->GetDouble(i)) in CalulateRGPRKP()
2752 pResMat->PutDouble(_bRKP ? exp(fIntercept) : fIntercept, K, 0 ); in CalulateRGPRKP()
2754 pResMat->PutDouble(_bRKP ? exp(pSlopes->GetDouble(i)) in CalulateRGPRKP()
3038 pResMat->PutDouble(_bGrowth ? exp(fHelp) : fHelp, i); in CalculateTrendGrowth()
3046 pResMat->PutDouble(_bGrowth ? exp(fHelp) : fHelp, i); in CalculateTrendGrowth()
3107 pResMat->PutDouble(exp(pResMat->GetDouble(i)), i); in CalculateTrendGrowth()
3166 pResMat->PutDouble(exp(pResMat->GetDouble(i)), i); in CalculateTrendGrowth()
/trunk/main/wizards/com/sun/star/wizards/web/data/
H A DCGDocument.java307 CGExporter exp = (CGExporter) getSettings().cp_Exporters.getElement(cp_Exporter); in createDOM() local
319 d.cp_DisplayFileFormat ? getTargetTypeName(exp) : PropertyNames.EMPTY_STRING, in createDOM()
325 d.cp_DisplayFormatIcon ? getIcon(exp) : PropertyNames.EMPTY_STRING, in createDOM()
382 private String getTargetTypeName(CGExporter exp) in getTargetTypeName() argument
384 return (exp.targetTypeName.equals(PropertyNames.EMPTY_STRING)) in getTargetTypeName()
386 : exp.targetTypeName; in getTargetTypeName()
420 Object exp = getSettings().getExporters(appType)[exporter_[0]]; in setExporter() local
421 cp_Exporter = (String) getSettings().cp_Exporters.getKey(exp); in setExporter()
/trunk/main/basic/source/comp/
H A Dscanner.cxx287 short exp = 0; in NextSym() local
313 if (++exp > 1) in NextSym()
330 if( comma && !exp ) ncdig++; in NextSym()
332 if (!exp) ndig++; in NextSym()
337 if( comma > 1 || exp > 1 ) in NextSym()
346 if( !comma && !exp ) in NextSym()
/trunk/main/shell/source/unix/exec/
H A Dshellexec.cxx171 exp; in execute() local
176 >>= exp) in execute()
177 || !exp.is()) in execute()
189 aProgramURL = exp->expandMacros( in execute()
/trunk/main/basic/source/sbx/
H A Dsbxscan.cxx114 short exp = 0; // >0: Exponentteil in ImpScan() local
147 if( ++exp > 1 ) in ImpScan()
164 if( comma && !exp ) ncdig++; in ImpScan()
166 if( !exp ) ndig++; in ImpScan()
170 if( comma > 1 || exp > 1 ) in ImpScan()
173 if( !comma && !exp ) in ImpScan()
/trunk/main/wizards/com/sun/star/wizards/web/
H A DProcess.java822 Exporter exp = (Exporter) exporters.get(export); in getExporter() local
823 if (exp == null) in getExporter()
825 exp = createExporter(export); in getExporter()
826 exporters.put(export, exp); in getExporter()
828 return exp; in getExporter()
/trunk/main/cppuhelper/source/
H A Dmacro_expander.cxx109 virtual OUString SAL_CALL expandMacros( OUString const & exp )
156 OUString Bootstrap_MacroExpander::expandMacros( OUString const & exp ) in expandMacros() argument
159 return cppuhelper::detail::expandMacros( exp ); in expandMacros()
/trunk/main/connectivity/qa/complex/connectivity/dbase/
H A DDBaseNumericFunctions.java130 exp(xRowRes); in testFunctions()
301 …private void exp(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unkn… in exp() method in DBaseNumericFunctions
304 assure("EXP(2) failed!", (float) row.getDouble(1) == (float) java.lang.Math.exp(2)); in exp()
305 assure("EXP(-2) failed!", (float) row.getDouble(2) == (float) java.lang.Math.exp(-2)); in exp()
/trunk/main/chart2/source/tools/
H A DExponentialRegressionCurveCalculator.cxx111 fResult = exp(m_fLogIntercept + x * m_fLogSlope); in getCurveValue()
147 double fIntercept = exp(m_fLogIntercept); in ImplGetRepresentation()
148 double fSlope = exp(m_fLogSlope); in ImplGetRepresentation()
/trunk/main/reportdesign/source/ui/dlg/
H A DCondition.cxx615 for ( ConditionalExpressions::const_iterator exp = m_aConditionalExpressions.begin(); in impl_setCondition() local
616 exp != m_aConditionalExpressions.end(); in impl_setCondition()
617 ++exp in impl_setCondition()
620 if ( exp->second->matchExpression( sExpression, sUnprefixedFieldContent, sLHS, sRHS ) ) in impl_setCondition()
623 eOperation = exp->first; in impl_setCondition()
/trunk/main/binaryurp/source/
H A Dbridge.cxx599 sal_Int32 exp = 0; in handleRequestChangeReply() local
603 exp = 1; in handleRequestChangeReply()
606 exp = -1; in handleRequestChangeReply()
610 exp = 0; in handleRequestChangeReply()
617 if (n != exp) { in handleRequestChangeReply()
626 switch (exp) { in handleRequestChangeReply()
/trunk/main/soltools/mkdepend/
H A Dparse.c37 int zero_value(register char *exp, register struct filepointer *filep,
389 int zero_value(exp, filep, file_red, symbols) in zero_value() argument
390 register char *exp; in zero_value()
396 if (cppsetup(exp, filep, file_red))
/trunk/main/toolkit/src2xml/source/
H A Dexpression_test.py27 def run (exp): argument
28 tokens = exp.split()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/utils/
H A DFrameworkJarChecker.java63 catch(Exception exp) { in mountDependencies()
113 catch(Exception exp) { in unmountDependencies()
/trunk/main/reportbuilder/java/com/sun/star/report/pentaho/
H A DPentahoReportJob.java242 final FormulaExpression exp = (FormulaExpression) group.getGroupingExpression(); in collectGroupExpressions() local
243 if (exp == null) in collectGroupExpressions()
250 final String expression = exp.getFormulaExpression(); in collectGroupExpressions()
/trunk/main/udkapi/com/sun/star/util/
H A DXMacroExpander.idl49 @param exp
56 string expandMacros( [in] string exp )

Completed in 146 milliseconds

123456