From 75259fc55665267421385f3cb2a1f0c476b558a4 Mon Sep 17 00:00:00 2001 From: ski Date: Tue, 26 Nov 2013 18:17:10 +0400 Subject: [PATCH] 0024399: ICC warnings 3280 "declaration hides..." Renamed local variables to avoid ICC compiler warnings about repeated names --- .../AppParCurves_ResolConstraint.gxx | 18 ++--- src/BRepAdaptor/BRepAdaptor_CompCurve.cxx | 26 +++---- src/BRepBlend/BRepBlend_AppFunc.cxx | 10 +-- src/BRepBlend/BRepBlend_AppFuncRst.cxx | 10 +-- src/BRepBlend/BRepBlend_AppFuncRstRst.cxx | 10 +-- src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx | 16 ++--- .../BRepBlend_SurfRstLineBuilder.cxx | 4 +- src/BRepTest/BRepTest_FilletCommands.cxx | 62 ++++++++--------- src/Blend/Blend_Walking_3.gxx | 24 +++---- src/ChFi2d/ChFi2d_AnaFilletAlgo.cxx | 18 ++--- src/Draw/Draw_VariableCommands.cxx | 67 +++++++++---------- src/Draw/Draw_Viewer.cxx | 4 +- src/GeomFill/GeomFill_Fixed.cxx | 6 +- src/GeomFill/GeomFill_LocFunction.cxx | 54 +++++++-------- src/GeomFill/GeomFill_PlanFunc.cxx | 12 ++-- src/GeomFill/GeomFill_SweepFunction.cxx | 6 +- src/GeomLib/GeomLib_LogSample.cxx | 12 ++-- src/IFSelect/IFSelect_SignatureList.cxx | 4 +- src/IntImpParGen/IntImpParGen_Intersector.gxx | 4 +- src/PCollection/PCollection_HAsciiString.cxx | 6 +- src/QABugs/QABugs_17.cxx | 4 +- src/StdSelect/StdSelect_BRepHilighter.cxx | 22 +++--- src/gp/gp_Quaternion.lxx | 20 +++--- src/math/math_FunctionSetRoot.cxx | 56 ++++++++-------- 24 files changed, 237 insertions(+), 238 deletions(-) diff --git a/src/AppParCurves/AppParCurves_ResolConstraint.gxx b/src/AppParCurves/AppParCurves_ResolConstraint.gxx index a2e4a5ffcd..2df363e5e8 100755 --- a/src/AppParCurves/AppParCurves_ResolConstraint.gxx +++ b/src/AppParCurves/AppParCurves_ResolConstraint.gxx @@ -489,31 +489,31 @@ const { // Boucle de calcul du nombre de points de passage afin de dimensionner // les matrices. - Standard_Integer IncPass, IncTan, IncCurv, CCol; + Standard_Integer aIncPass, aIncTan, aIncCurv, aCCol; Standard_Integer i; AppParCurves_Constraint Cons; - IncPass = 0; - IncTan = 0; - IncCurv = 0; + aIncPass = 0; + aIncTan = 0; + aIncCurv = 0; for (i = TheConstraints->Lower(); i <= TheConstraints->Upper(); i++) { Cons = (TheConstraints->Value(i)).Constraint(); if (Cons >= 1) { - IncPass++; // IncPass = nbre de points de passage. + aIncPass++; // IncPass = nbre de points de passage. } if (Cons >= 2) { - IncTan++; // IncTan= nbre de points de tangence. + aIncTan++; // IncTan= nbre de points de tangence. } if (Cons == 3) { - IncCurv++; // IncCurv = nbre de pts de courbure. + aIncCurv++; // IncCurv = nbre de pts de courbure. } } Standard_Integer nb3d = ToolLine::NbP3d(SSP); Standard_Integer nb2d = ToolLine::NbP2d(SSP); - CCol = nb3d* 3 + nb2d* 2; + aCCol = nb3d* 3 + nb2d* 2; - return CCol*IncPass + IncTan*(CCol-1) + 3*IncCurv; + return aCCol*aIncPass + aIncTan*(aCCol-1) + 3*aIncCurv; } diff --git a/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx b/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx index 9111b08697..543aa3507f 100755 --- a/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx +++ b/src/BRepAdaptor/BRepAdaptor_CompCurve.cxx @@ -432,7 +432,7 @@ const TopoDS_Wire& BRepAdaptor_CompCurve::Wire() const void BRepAdaptor_CompCurve::Prepare(Standard_Real& W, Standard_Real& Delta, - Standard_Integer& CurIndex) const + Standard_Integer& theCurIndex) const { Standard_Real f,l, Wtest, Eps; Standard_Integer ii; @@ -450,26 +450,26 @@ const TopoDS_Wire& BRepAdaptor_CompCurve::Wire() const // Find the index Standard_Boolean Trouve = Standard_False; - if (myKnots->Value(CurIndex) > Wtest) { - for (ii=CurIndex-1; ii>0 && !Trouve; ii--) + if (myKnots->Value(theCurIndex) > Wtest) { + for (ii=theCurIndex-1; ii>0 && !Trouve; ii--) if (myKnots->Value(ii)<= Wtest) { - CurIndex = ii; + theCurIndex = ii; Trouve = Standard_True; } - if (!Trouve) CurIndex = 1; // Out of limits... + if (!Trouve) theCurIndex = 1; // Out of limits... } - else if (myKnots->Value(CurIndex+1) <= Wtest) { - for (ii=CurIndex+1; ii<=myCurves->Length() && !Trouve; ii++) + else if (myKnots->Value(theCurIndex+1) <= Wtest) { + for (ii=theCurIndex+1; ii<=myCurves->Length() && !Trouve; ii++) if (myKnots->Value(ii+1)> Wtest) { - CurIndex = ii; + theCurIndex = ii; Trouve = Standard_True; } - if (!Trouve) CurIndex = myCurves->Length(); // Out of limits... + if (!Trouve) theCurIndex = myCurves->Length(); // Out of limits... } // Invert ? - const TopoDS_Edge& E = myCurves->Value(CurIndex).Edge(); + const TopoDS_Edge& E = myCurves->Value(theCurIndex).Edge(); TopAbs_Orientation Or = E.Orientation(); Standard_Boolean Reverse; Reverse = (Forward && (Or == TopAbs_REVERSED)) || @@ -477,15 +477,15 @@ const TopoDS_Wire& BRepAdaptor_CompCurve::Wire() const // Calculate the local parameter BRep_Tool::Range(E, f, l); - Delta = myKnots->Value(CurIndex+1) - myKnots->Value(CurIndex); + Delta = myKnots->Value(theCurIndex+1) - myKnots->Value(theCurIndex); if (Delta > PTol*1.e-9) Delta = (l-f)/Delta; if (Reverse) { Delta *= -1; - W = l + (W-myKnots->Value(CurIndex)) * Delta; + W = l + (W-myKnots->Value(theCurIndex)) * Delta; } else { - W = f + (W-myKnots->Value(CurIndex)) * Delta; + W = f + (W-myKnots->Value(theCurIndex)) * Delta; } } diff --git a/src/BRepBlend/BRepBlend_AppFunc.cxx b/src/BRepBlend/BRepBlend_AppFunc.cxx index 7eee111c51..4f2f5e7808 100755 --- a/src/BRepBlend/BRepBlend_AppFunc.cxx +++ b/src/BRepBlend/BRepBlend_AppFunc.cxx @@ -31,18 +31,18 @@ BRepBlend_AppFunc::BRepBlend_AppFunc(Handle(BRepBlend_Line)& Line, void BRepBlend_AppFunc::Point(const Blend_AppFunction& Func, const Standard_Real Param, - const math_Vector& Sol, + const math_Vector& theSol, Blend_Point& Pnt)const { Pnt.SetValue(Func.Pnt1(), Func.Pnt2(), Param, - Sol(1), Sol(2), Sol(3), Sol(4)); + theSol(1), theSol(2), theSol(3), theSol(4)); } -void BRepBlend_AppFunc::Vec(math_Vector& Sol, +void BRepBlend_AppFunc::Vec(math_Vector& theSol, const Blend_Point& Pnt)const { - Pnt.ParametersOnS1(Sol(1),Sol(2)); - Pnt.ParametersOnS2(Sol(3),Sol(4)); + Pnt.ParametersOnS1(theSol(1),theSol(2)); + Pnt.ParametersOnS2(theSol(3),theSol(4)); } diff --git a/src/BRepBlend/BRepBlend_AppFuncRst.cxx b/src/BRepBlend/BRepBlend_AppFuncRst.cxx index a9452894f4..eac44ec541 100755 --- a/src/BRepBlend/BRepBlend_AppFuncRst.cxx +++ b/src/BRepBlend/BRepBlend_AppFuncRst.cxx @@ -32,18 +32,18 @@ BRepBlend_AppFuncRst::BRepBlend_AppFuncRst (Handle(BRepBlend_Line)& Line, void BRepBlend_AppFuncRst::Point(const Blend_AppFunction& Func, const Standard_Real Param, - const math_Vector& Sol, + const math_Vector& theSol, Blend_Point& Pnt)const { Pnt.SetValue(Func.Pnt1(), Func.Pnt2(), Param, - Sol(1), Sol(2), Sol(3)); + theSol(1), theSol(2), theSol(3)); } -void BRepBlend_AppFuncRst::Vec(math_Vector& Sol, +void BRepBlend_AppFuncRst::Vec(math_Vector& theSol, const Blend_Point& Pnt)const { - Pnt.ParametersOnS(Sol(1),Sol(2)); - Sol(3) = Pnt.ParameterOnC(); + Pnt.ParametersOnS(theSol(1),theSol(2)); + theSol(3) = Pnt.ParameterOnC(); } diff --git a/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx b/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx index 83616d1abc..c07036c9ea 100755 --- a/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx +++ b/src/BRepBlend/BRepBlend_AppFuncRstRst.cxx @@ -32,18 +32,18 @@ BRepBlend_AppFuncRstRst::BRepBlend_AppFuncRstRst (Handle(BRepBlend_Line)& Line, void BRepBlend_AppFuncRstRst::Point(const Blend_AppFunction& Func, const Standard_Real Param, - const math_Vector& Sol, + const math_Vector& theSol, Blend_Point& Pnt)const { Pnt.SetValue(Func.Pnt1(), Func.Pnt2(), Param, - Sol(1), Sol(2)); + theSol(1), theSol(2)); } -void BRepBlend_AppFuncRstRst::Vec(math_Vector& Sol, +void BRepBlend_AppFuncRstRst::Vec(math_Vector& theSol, const Blend_Point& Pnt)const { - Sol(1) = Pnt.ParameterOnC1(); - Sol(2) = Pnt.ParameterOnC2(); + theSol(1) = Pnt.ParameterOnC1(); + theSol(2) = Pnt.ParameterOnC2(); } diff --git a/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx b/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx index 714e771195..1f2160e370 100755 --- a/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx +++ b/src/BRepBlend/BRepBlend_SurfRstEvolRad.cxx @@ -887,7 +887,7 @@ TColStd_Array1OfReal& DWeigths) gp_Vec d1urst,d1vrst; gp_Pnt Center,bid; - Standard_Real norm,ndotns,grosterme,dray; + Standard_Real norm,ndotns,grosterme,aDray; math_Vector sol(1,3),valsol(1,3),secmember(1,3); math_Matrix gradsol(1,3,1,3); @@ -899,9 +899,9 @@ TColStd_Array1OfReal& DWeigths) tguide->D2(prm,ptgui,d1gui,d2gui); - tevol->D1(prm,ray,dray); + tevol->D1(prm,ray,aDray); ray=sg1*ray; - dray=sg1*dray; + aDray=sg1*aDray; normtg = d1gui.Magnitude(); nplan = d1gui.Normalized(); dnplan.SetLinearForm(1./normtg,d2gui, @@ -944,7 +944,7 @@ TColStd_Array1OfReal& DWeigths) resul.SetLinearForm(ray,temp,gp_Vec(ptrst,pts)); //secmember(3) = -2.*ray*(dnw.Dot(resul)); // jag 950105 il manquait ray - secmember(3) = -2.*ray*(dnw.Dot(resul)) - 2.*dray*(temp.Dot(resul)) + 2.*ray*dray; + secmember(3) = -2.*ray*(dnw.Dot(resul)) - 2.*aDray*(temp.Dot(resul)) + 2.*ray*aDray; math_Gauss Resol(gradsol); if (Resol.IsDone()) { @@ -985,7 +985,7 @@ TColStd_Array1OfReal& DWeigths) ns.SetLinearForm(ndotns/norm,nplan, -1./norm,ns); dn2w.SetLinearForm(ray, dnw, -1., tgrst, tgs); - dn2w.SetLinearForm(dray,ns,dn2w); + dn2w.SetLinearForm(aDray,ns,dn2w); norm = resul.Magnitude(); dn2w.Divide(norm); ns2 = -resul.Normalized(); @@ -1029,7 +1029,7 @@ TColStd_Array1OfReal& DWeigths) // Case of the circle Center.SetXYZ(pts.XYZ()+ray*ns.XYZ()); if (!istgt) { - tgct.SetLinearForm(ray,dnw,dray,ns,tgs); + tgct.SetLinearForm(ray,dnw,aDray,ns,tgs); } if (ray > 0.) { @@ -1044,9 +1044,9 @@ TColStd_Array1OfReal& DWeigths) } if (!istgt) { if (ray < 0.) { // to avoid Abs(dray) some lines below - rayprim = -dray; + rayprim = -aDray; } - else rayprim = dray; + else rayprim = aDray; return GeomFill::GetCircle(myTConv, ns, ns2, diff --git a/src/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx b/src/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx index e72b0e10d1..f30811589b 100755 --- a/src/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx +++ b/src/BRepBlend/BRepBlend_SurfRstLineBuilder.cxx @@ -154,7 +154,7 @@ static void Drawsect(const Standard_Real param, //======================================================================= Standard_Integer BRepBlend_SurfRstLineBuilder:: - ArcToRecadre(const math_Vector& sol, + ArcToRecadre(const math_Vector& theSol, const Standard_Integer PrevIndex, gp_Pnt2d& lastpt2d, gp_Pnt2d& pt2d, @@ -167,7 +167,7 @@ Standard_Integer BRepBlend_SurfRstLineBuilder:: Standard_Real uprev = 0.,vprev = 0., prm = 0., dist = 0.; if(byinter) previousP.ParametersOnS(uprev,vprev); - pt2d.SetCoord(sol(1),sol(2)); + pt2d.SetCoord(theSol(1),theSol(2)); lastpt2d.SetCoord(uprev,vprev); domain1->Init(); diff --git a/src/BRepTest/BRepTest_FilletCommands.cxx b/src/BRepTest/BRepTest_FilletCommands.cxx index 8b092d8811..1154b79389 100755 --- a/src/BRepTest/BRepTest_FilletCommands.cxx +++ b/src/BRepTest/BRepTest_FilletCommands.cxx @@ -488,9 +488,9 @@ static Standard_Integer blend1(Draw_Interpretor& di, Standard_Integer narg, cons if(edge.ShapeType()!=TopAbs_EDGE) return 1; E.Append(edge); } - FilletSurf_Builder Rakk(V,E,Rad); - if (simul) Rakk.Simulate(); - else Rakk.Perform(); + FilletSurf_Builder aRakk(V,E,Rad); + if (simul) aRakk.Simulate(); + else aRakk.Perform(); //if (Rakk.IsDone()==FilletSurf_IsNotOk) // { FilletSurf_ErrorTypeStatus err=Rakk.StatusError(); @@ -504,20 +504,20 @@ static Standard_Integer blend1(Draw_Interpretor& di, Standard_Integer narg, cons // } // else { // if (Rakk.IsDone()==FilletSurf_IsPartial) cout <<"resultat partiel"<D0(Param, M, V.ChangeValue(1)); - V(2).SetXYZ(M.Column(1)); - V(3).SetXYZ(M.Column(2)); - V(4).SetXYZ(M.Column(3)); + B = myLaw->D0(Param, aM, V.ChangeValue(1)); + V(2).SetXYZ(aM.Column(1)); + V(3).SetXYZ(aM.Column(2)); + V(4).SetXYZ(aM.Column(3)); return B; } @@ -57,19 +57,19 @@ GeomFill_LocFunction::GeomFill_LocFunction(const Handle(GeomFill_LocationLaw)& L { TColgp_Array1OfPnt2d T1(1,1); TColgp_Array1OfVec2d T2(1,1); - gp_Mat M, DM; + gp_Mat aM, aDM; Standard_Boolean B; - B = myLaw->D1(Param, M, V.ChangeValue(1), - DM, DV.ChangeValue(1), + B = myLaw->D1(Param, aM, V.ChangeValue(1), + aDM, DV.ChangeValue(1), T1, T2); - V(2).SetXYZ(M.Column(1)); - V(3).SetXYZ(M.Column(2)); - V(4).SetXYZ(M.Column(3)); + V(2).SetXYZ(aM.Column(1)); + V(3).SetXYZ(aM.Column(2)); + V(4).SetXYZ(aM.Column(3)); - DV(2).SetXYZ(DM.Column(1)); - DV(3).SetXYZ(DM.Column(2)); - DV(4).SetXYZ(DM.Column(3)); + DV(2).SetXYZ(aDM.Column(1)); + DV(3).SetXYZ(aDM.Column(2)); + DV(4).SetXYZ(aDM.Column(3)); return B; } @@ -81,24 +81,24 @@ GeomFill_LocFunction::GeomFill_LocFunction(const Handle(GeomFill_LocationLaw)& L { TColgp_Array1OfPnt2d T1(1,1); TColgp_Array1OfVec2d T2(1,1), T3(1,1); - gp_Mat M, DM, D2M; + gp_Mat aM, aDM, aD2M; Standard_Boolean B; - B = myLaw->D2(Param, M, V.ChangeValue(1), - DM, DV.ChangeValue(1), - D2M, D2V.ChangeValue(1), + B = myLaw->D2(Param, aM, V.ChangeValue(1), + aDM, DV.ChangeValue(1), + aD2M, D2V.ChangeValue(1), T1, T2, T3); - V(2).SetXYZ(M.Column(1)); - V(3).SetXYZ(M.Column(2)); - V(4).SetXYZ(M.Column(3)); + V(2).SetXYZ(aM.Column(1)); + V(3).SetXYZ(aM.Column(2)); + V(4).SetXYZ(aM.Column(3)); - DV(2).SetXYZ(DM.Column(1)); - DV(3).SetXYZ(DM.Column(2)); - DV(4).SetXYZ(DM.Column(3)); + DV(2).SetXYZ(aDM.Column(1)); + DV(3).SetXYZ(aDM.Column(2)); + DV(4).SetXYZ(aDM.Column(3)); - D2V(2).SetXYZ(D2M.Column(1)); - D2V(3).SetXYZ(D2M.Column(2)); - D2V(4).SetXYZ(D2M.Column(3)); + D2V(2).SetXYZ(aD2M.Column(1)); + D2V(3).SetXYZ(aD2M.Column(2)); + D2V(4).SetXYZ(aD2M.Column(3)); return B; } diff --git a/src/GeomFill/GeomFill_PlanFunc.cxx b/src/GeomFill/GeomFill_PlanFunc.cxx index 01de3eb585..bbc8cc4e34 100755 --- a/src/GeomFill/GeomFill_PlanFunc.cxx +++ b/src/GeomFill/GeomFill_PlanFunc.cxx @@ -23,13 +23,13 @@ #include -GeomFill_PlanFunc::GeomFill_PlanFunc(const gp_Pnt& P, - const gp_Vec& V, - const Handle(Adaptor3d_HCurve)& C) : - myCurve(C) +GeomFill_PlanFunc::GeomFill_PlanFunc(const gp_Pnt& theP, + const gp_Vec& theV, + const Handle(Adaptor3d_HCurve)& theC) : + myCurve(theC) { - myPnt = P.XYZ(); - myVec = V.XYZ(); + myPnt = theP.XYZ(); + myVec = theV.XYZ(); } diff --git a/src/GeomFill/GeomFill_SweepFunction.cxx b/src/GeomFill/GeomFill_SweepFunction.cxx index fb52a028a0..f299574d47 100755 --- a/src/GeomFill/GeomFill_SweepFunction.cxx +++ b/src/GeomFill/GeomFill_SweepFunction.cxx @@ -356,11 +356,11 @@ void GeomFill_SweepFunction::Resolution(const Standard_Integer Index, { gp_Pnt Bary; gp_Vec Translate; - gp_Mat M; + gp_Mat aM; Bary = mySec->BarycentreOfSurf(); - myLoc->GetAverageLaw(M, Translate); - Bary.ChangeCoord() *= M; + myLoc->GetAverageLaw(aM, Translate); + Bary.ChangeCoord() *= aM; Bary.ChangeCoord() += Translate.XYZ(); return Bary; diff --git a/src/GeomLib/GeomLib_LogSample.cxx b/src/GeomLib/GeomLib_LogSample.cxx index 78707239f8..2063158f04 100755 --- a/src/GeomLib/GeomLib_LogSample.cxx +++ b/src/GeomLib/GeomLib_LogSample.cxx @@ -36,14 +36,14 @@ GeomLib_LogSample::GeomLib_LogSample(const Standard_Real A, Standard_Real GeomLib_LogSample::GetParameter(const Standard_Integer Index) const { - Standard_Integer n = NbPoints(); + Standard_Integer aN = NbPoints(); - if ((Index >= n) || (Index <= 1)) { - Standard_Real a, b; - Bounds(a, b); - if (Index == 1) return a; - else if (Index == n) return b; + if ((Index >= aN) || (Index <= 1)) { + Standard_Real aA, aB; + Bounds(aA, aB); + if (Index == 1) return aA; + else if (Index == aN) return aB; else Standard_OutOfRange::Raise("GeomLib_LogSample::GetParameter"); } diff --git a/src/IFSelect/IFSelect_SignatureList.cxx b/src/IFSelect/IFSelect_SignatureList.cxx index 6830eb9d84..615f003846 100755 --- a/src/IFSelect/IFSelect_SignatureList.cxx +++ b/src/IFSelect/IFSelect_SignatureList.cxx @@ -79,13 +79,13 @@ IFSelect_SignatureList::IFSelect_SignatureList void IFSelect_SignatureList::Init (const Standard_CString name, - const Handle(Dico_DictionaryOfInteger)& count, + const Handle(Dico_DictionaryOfInteger)& theCount, const Handle(Dico_DictionaryOfTransient)& list, const Standard_Integer nbnuls) { thelastval.Clear(); thename = new TCollection_HAsciiString (name); - thedicount = count; + thedicount = theCount; thediclist = list; thenbnuls = nbnuls; if (thediclist.IsNull()) thelistat = Standard_False; diff --git a/src/IntImpParGen/IntImpParGen_Intersector.gxx b/src/IntImpParGen/IntImpParGen_Intersector.gxx index 3806b9a4de..9947940327 100755 --- a/src/IntImpParGen/IntImpParGen_Intersector.gxx +++ b/src/IntImpParGen/IntImpParGen_Intersector.gxx @@ -64,7 +64,7 @@ void IntImpParGen_Intersector::And_Domaine_Objet1_Intersections(const ImpTool& T NbResultats=0; for(Standard_Integer i=1; i<=Nb_Bornes_Intersection; i+=2) { - Standard_Boolean reverse=Standard_False; + Standard_Boolean aReverse=Standard_False; Standard_Real param1=Inter1.Value(i); Standard_Real param2=Inter1.Value(i+1); @@ -76,7 +76,7 @@ void IntImpParGen_Intersector::And_Domaine_Objet1_Intersections(const ImpTool& T Standard_Real t=param1; param1=param2; param2=t; indice_1=i+1; indice_2=i; - reverse=Standard_True; + aReverse=Standard_True; } gp_Pnt2d Pt1=TheImpTool.Value(param1); diff --git a/src/PCollection/PCollection_HAsciiString.cxx b/src/PCollection/PCollection_HAsciiString.cxx index 33f044ad8d..b72b7fddbc 100755 --- a/src/PCollection/PCollection_HAsciiString.cxx +++ b/src/PCollection/PCollection_HAsciiString.cxx @@ -482,10 +482,10 @@ Standard_Integer PCollection_HAsciiString::Location { if (ToIndex > Length() || FromIndex <= 0 || FromIndex > ToIndex ) Standard_OutOfRange::Raise(); - for(Standard_Integer i = FromIndex-1, count = 0; i <= ToIndex-1; i++) + for(Standard_Integer i = FromIndex-1, aCount = 0; i <= ToIndex-1; i++) if(Data(i) == C) { - count++; - if ( count == N ) return (i+1); + aCount++; + if ( aCount == N ) return (i+1); } return 0 ; } diff --git a/src/QABugs/QABugs_17.cxx b/src/QABugs/QABugs_17.cxx index c0df0217ce..3d0eaee1ea 100755 --- a/src/QABugs/QABugs_17.cxx +++ b/src/QABugs/QABugs_17.cxx @@ -1182,13 +1182,13 @@ static Standard_Integer OCC884 (Draw_Interpretor& di, Standard_Integer argc, con di << "Info: No. of self-intersection points : " << num << "\n"; char str[80]; - Standard_CString name = str; + Standard_CString aName = str; for (i = 1; i <= num; ++i) { gp_Pnt pt = points3d(i); di << "Info: Intersecting pt : (" << pt.X() << ", " << pt.Y() << ", " << pt.Z() << ")\n"; Sprintf(str,"p_%d",i); - DrawTrSurf::Set(name,pt); + DrawTrSurf::Set(aName,pt); } Handle(ShapeFix_Wire) sfw = new ShapeFix_Wire; diff --git a/src/StdSelect/StdSelect_BRepHilighter.cxx b/src/StdSelect/StdSelect_BRepHilighter.cxx index 3c6393e594..b048647b8b 100755 --- a/src/StdSelect/StdSelect_BRepHilighter.cxx +++ b/src/StdSelect/StdSelect_BRepHilighter.cxx @@ -136,12 +136,12 @@ Update() switch(mytype){ case StdSelect_TOR_MULTIPLE:{ - TColStd_MapIteratorOfMapOfInteger it; + TColStd_MapIteratorOfMapOfInteger aIt; if(!myselector->More()) { - for(it.Initialize(myold);it.More();it.Next()) - {myhimap.FindFromIndex(it.Key())->UnHighlight(); - myhimap.FindFromIndex(it.Key())->SetVisible(Standard_False); + for(aIt.Initialize(myold);aIt.More();aIt.Next()) + {myhimap.FindFromIndex(aIt.Key())->UnHighlight(); + myhimap.FindFromIndex(aIt.Key())->SetVisible(Standard_False); } myold.Clear(); mynew.Clear(); @@ -168,17 +168,17 @@ Update() } } } - for(it.Initialize(myold);it.More();it.Next()){ - myhimap.FindFromIndex(it.Key())->UnHighlight(); - myhimap.FindFromIndex(it.Key())->SetVisible(Standard_False); + for(aIt.Initialize(myold);aIt.More();aIt.Next()){ + myhimap.FindFromIndex(aIt.Key())->UnHighlight(); + myhimap.FindFromIndex(aIt.Key())->SetVisible(Standard_False); } myold = mynew; mynew.Clear(); - for(it.Initialize(myold);it.More();it.Next()){ - myhimap.FindFromIndex(it.Key())->SetVisible(Standard_True); - myhimap.FindFromIndex(it.Key())->SetDisplayPriority(10); - myhimap.FindFromIndex(it.Key())->Color(mycolor); + for(aIt.Initialize(myold);aIt.More();aIt.Next()){ + myhimap.FindFromIndex(aIt.Key())->SetVisible(Standard_True); + myhimap.FindFromIndex(aIt.Key())->SetDisplayPriority(10); + myhimap.FindFromIndex(aIt.Key())->Color(mycolor); } } break; diff --git a/src/gp/gp_Quaternion.lxx b/src/gp/gp_Quaternion.lxx index 24a350f941..7e486a7adb 100644 --- a/src/gp/gp_Quaternion.lxx +++ b/src/gp/gp_Quaternion.lxx @@ -30,9 +30,9 @@ inline gp_Quaternion::gp_Quaternion() //purpose : //======================================================================= -inline gp_Quaternion::gp_Quaternion (const Standard_Real x, const Standard_Real y, - const Standard_Real z, const Standard_Real w) -: x(x), y(y), z(z), w(w) +inline gp_Quaternion::gp_Quaternion (const Standard_Real theX, const Standard_Real theY, + const Standard_Real theZ, const Standard_Real theW) +: x(theX), y(theY), z(theZ), w(theW) { } @@ -42,7 +42,7 @@ inline gp_Quaternion::gp_Quaternion (const Standard_Real x, const Standard_Real //======================================================================= inline gp_Quaternion::gp_Quaternion (const gp_Quaternion& theToCopy) -: x(theToCopy.x), y(theToCopy.y), z(theToCopy.z), w(theToCopy.w) +: x(theToCopy.x), y(theToCopy.y), z(theToCopy.z), w(theToCopy.w) { } @@ -91,13 +91,13 @@ inline gp_Quaternion::gp_Quaternion (const gp_Mat& theMat) //purpose : //======================================================================= -inline void gp_Quaternion::Set (Standard_Real x, Standard_Real y, - Standard_Real z, Standard_Real w) +inline void gp_Quaternion::Set (Standard_Real theX, Standard_Real theY, + Standard_Real theZ, Standard_Real theW) { - this->x = x; - this->y = y; - this->z = z; - this->w = w; + this->x = theX; + this->y = theY; + this->z = theZ; + this->w = theW; } //======================================================================= diff --git a/src/math/math_FunctionSetRoot.cxx b/src/math/math_FunctionSetRoot.cxx index e06513dbbd..9aef4aaf21 100755 --- a/src/math/math_FunctionSetRoot.cxx +++ b/src/math/math_FunctionSetRoot.cxx @@ -705,16 +705,16 @@ void math_FunctionSetRoot::SetTolerance(const math_Vector& Tolerance) void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, const math_Vector& StartingPoint, - const math_Vector& InfBound, - const math_Vector& SupBound, + const math_Vector& theInfBound, + const math_Vector& theSupBound, Standard_Boolean theStopOnDivergent) { Standard_Integer Ninc = F.NbVariables(), Neq = F.NbEquations(); if ((Neq <= 0) || (StartingPoint.Length()!= Ninc) || - (InfBound.Length() != Ninc) || - (SupBound.Length() != Ninc)) { Standard_DimensionError:: Raise(); } + (theInfBound.Length() != Ninc) || + (theSupBound.Length() != Ninc)) { Standard_DimensionError:: Raise(); } Standard_Integer i; Standard_Boolean ChangeDirection = Standard_False, Sort = Standard_False, isNewSol = Standard_False; @@ -724,11 +724,11 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, Standard_Real F2, PreviousMinimum, Dy, OldF; Standard_Real Ambda, Ambda2, Gnr1, Oldgr; math_Vector InvLengthMax(1, Ninc); // Pour bloquer les pas a 1/4 du domaine - math_IntegerVector Constraints(1, Ninc); // Pour savoir sur quels bord on se trouve + math_IntegerVector aConstraints(1, Ninc); // Pour savoir sur quels bord on se trouve for (i = 1; i <= Ninc ; i++) { // modified by NIZHNY-MKK Mon Oct 3 18:03:50 2005 // InvLengthMax(i) = 1. / Max(Abs(SupBound(i) - InfBound(i))/4, 1.e-9); - InvLengthMax(i) = 1. / Max((SupBound(i) - InfBound(i))/4, 1.e-9); + InvLengthMax(i) = 1. / Max((theSupBound(i) - theInfBound(i))/4, 1.e-9); } MyDirFunction F_Dir(Temp1, Temp2, Temp3, Temp4, F); @@ -742,7 +742,7 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, myIsDivergent = Standard_False; for (i = 1; i <= Ninc; i++) { - myIsDivergent |= (Sol(i) < InfBound(i)) | (SupBound(i) < Sol(i)); + myIsDivergent |= (Sol(i) < theInfBound(i)) | (theSupBound(i) < Sol(i)); } if (theStopOnDivergent & myIsDivergent) { @@ -751,8 +751,8 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // Verification de la validite des inconnues par rapport aux bornes. // Recentrage sur les bornes si pas valide. for ( i = 1; i <= Ninc; i++) { - if (Sol(i) <= InfBound(i)) Sol(i) = InfBound(i); - else if (Sol(i) > SupBound(i)) Sol(i) = SupBound(i); + if (Sol(i) <= theInfBound(i)) Sol(i) = theInfBound(i); + else if (Sol(i) > theSupBound(i)) Sol(i) = theSupBound(i); } // Calcul de la premiere valeur de F et de son gradient @@ -817,15 +817,15 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // for (i = 1; i <= Ninc; i++) { - myIsDivergent |= (Sol(i) < InfBound(i)) | (SupBound(i) < Sol(i)); + myIsDivergent |= (Sol(i) < theInfBound(i)) | (theSupBound(i) < Sol(i)); } if (theStopOnDivergent & myIsDivergent) { return; } // - Sort = Bounds(InfBound, SupBound, Tol, Sol, SolSave, - Constraints, Delta, isNewSol); + Sort = Bounds(theInfBound, theSupBound, Tol, Sol, SolSave, + aConstraints, Delta, isNewSol); DHSave = GH; @@ -883,15 +883,15 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // for (i = 1; i <= Ninc; i++) { - myIsDivergent |= (Sol(i) < InfBound(i)) | (SupBound(i) < Sol(i)); + myIsDivergent |= (Sol(i) < theInfBound(i)) | (theSupBound(i) < Sol(i)); } if (theStopOnDivergent & myIsDivergent) { return; } // - Stop = Bounds(InfBound, SupBound, Tol, Sol, SolSave, - Constraints, Delta, isNewSol); + Stop = Bounds(theInfBound, theSupBound, Tol, Sol, SolSave, + aConstraints, Delta, isNewSol); FSR_DEBUG(" Augmentation de lambda"); Ambda *= 1.7; } @@ -921,15 +921,15 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // for (i = 1; i <= Ninc; i++) { - myIsDivergent |= (Sol(i) < InfBound(i)) | (SupBound(i) < Sol(i)); + myIsDivergent |= (Sol(i) < theInfBound(i)) | (theSupBound(i) < Sol(i)); } if (theStopOnDivergent & myIsDivergent) { return; } // - Sort = Bounds(InfBound, SupBound, Tol, Sol, SolSave, - Constraints, Delta, isNewSol); + Sort = Bounds(theInfBound, theSupBound, Tol, Sol, SolSave, + aConstraints, Delta, isNewSol); } Sort = Standard_False; // On a rejete le point sur la frontiere } @@ -982,7 +982,7 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // On essaye de progresser sur le bord SolSave = Sol; OldF = F2; - SearchDirection(DF, GH, FF, Constraints, Sol, + SearchDirection(DF, GH, FF, aConstraints, Sol, ChangeDirection, InvLengthMax, DH, Dy); FSR_DEBUG(" Conditional Direction = " << ChangeDirection); if (Dy<-Eps) { //Pour eviter des calculs inutiles et des /0... @@ -1003,15 +1003,15 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // for (i = 1; i <= Ninc; i++) { - myIsDivergent |= (Sol(i) < InfBound(i)) | (SupBound(i) < Sol(i)); + myIsDivergent |= (Sol(i) < theInfBound(i)) | (theSupBound(i) < Sol(i)); } if (theStopOnDivergent & myIsDivergent) { return; } // - Sortbis = Bounds(InfBound, SupBound, Tol, Sol, SolSave, - Constraints, Delta, isNewSol); + Sortbis = Bounds(theInfBound, theSupBound, Tol, Sol, SolSave, + aConstraints, Delta, isNewSol); DHSave = GH; if (isNewSol) { @@ -1046,15 +1046,15 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // for (i = 1; i <= Ninc; i++) { - myIsDivergent |= (Sol(i) < InfBound(i)) | (SupBound(i) < Sol(i)); + myIsDivergent |= (Sol(i) < theInfBound(i)) | (theSupBound(i) < Sol(i)); } if (theStopOnDivergent & myIsDivergent) { return; } // - Sortbis = Bounds(InfBound, SupBound, Tol, Sol, SolSave, - Constraints, Delta, isNewSol); + Sortbis = Bounds(theInfBound, theSupBound, Tol, Sol, SolSave, + aConstraints, Delta, isNewSol); } DHSave = GH; if (isNewSol) { @@ -1089,15 +1089,15 @@ void math_FunctionSetRoot::Perform(math_FunctionSetWithDerivatives& F, // for (i = 1; i <= Ninc; i++) { - myIsDivergent |= (Sol(i) < InfBound(i)) | (SupBound(i) < Sol(i)); + myIsDivergent |= (Sol(i) < theInfBound(i)) | (theSupBound(i) < Sol(i)); } if (theStopOnDivergent & myIsDivergent) { return; } // - Sort = Bounds(InfBound, SupBound, Tol, Sol, SolSave, - Constraints, Delta, isNewSol); + Sort = Bounds(theInfBound, theSupBound, Tol, Sol, SolSave, + aConstraints, Delta, isNewSol); if (isNewSol) { // F_Dir.Value(Sol, FF, DF, GH, F2, Gnr1); if(!F_Dir.Value(Sol, FF, DF, GH, F2, Gnr1)) {