Home
last modified time | relevance | path

Searched refs:AMax (Results 1 – 25 of 197) sorted by relevance

12345678

/dports/editors/cudatext/CudaText-1.151.0/atflatcontrols/atflatcontrols/
H A Datflatcontrols_separator.pas34 … function GetItemInt(out AValue: integer; const ADefault, AMin, AMax: integer): boolean; overload; in GetItemInt()
94 function TATStringSeparator.GetItemInt(out AValue: integer; const ADefault, AMin, AMax: integer): b… in TATStringSeparator.GetItemInt()
104 if AValue>AMax then
105 AValue:= AMax;
/dports/editors/lazarus/lazarus/components/tachart/
H A Dtatransformations.pas47 procedure UpdateBounds(var AMin, AMax: Double); virtual;
95 procedure UpdateBounds(var AMin, AMax: Double);
137 procedure UpdateBounds(var AMin, AMax: Double); override;
467 procedure TAxisTransform.UpdateBounds(var AMin, AMax: Double);
471 if not IsInfinite(AMax) then
472 AMax := AxisToGraph(AMax);
570 t.UpdateBounds(AMin, AMax);
741 procedure TAutoScaleAxisTransform.UpdateBounds(var AMin, AMax: Double);
744 if IsInfinite(AMin) or IsInfinite(AMax) then exit;
747 UpdateMinMax(AMax, FMin, FMax);
[all …]
H A Dtachartaxis.pas162 procedure UpdateBounds(var AMin, AMax: Double);
255 AAxisIsVertical: Boolean; AMin, AMax: PDouble);
317 AAxisList[AIndex].UpdateBounds(AMin, AMax);
362 vp := ParentAxis.MakeValuesInRangeParams(AMin, AMax);
472 if IsNan(AMin) or (AMin = AMax) then exit;
474 minorMarks := Minors[j].GetMarkValues(AMin, AMax);
663 AMin, AMax: Double): TValuesInRangeParams; in TChartAxis.MakeValuesInRangeParams()
666 Result.FMax := AMax;
1000 AMax := Max;
1251 AAxisIsVertical: Boolean; AMin, AMax: PDouble);
[all …]
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/tachart/
H A Dtatransformations.pas47 procedure UpdateBounds(var AMin, AMax: Double); virtual;
95 procedure UpdateBounds(var AMin, AMax: Double);
137 procedure UpdateBounds(var AMin, AMax: Double); override;
467 procedure TAxisTransform.UpdateBounds(var AMin, AMax: Double);
471 if not IsInfinite(AMax) then
472 AMax := AxisToGraph(AMax);
570 t.UpdateBounds(AMin, AMax);
741 procedure TAutoScaleAxisTransform.UpdateBounds(var AMin, AMax: Double);
744 if IsInfinite(AMin) or IsInfinite(AMax) then exit;
747 UpdateMinMax(AMax, FMin, FMax);
[all …]
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/components/tachart/
H A Dtatransformations.pas47 procedure UpdateBounds(var AMin, AMax: Double); virtual;
95 procedure UpdateBounds(var AMin, AMax: Double);
137 procedure UpdateBounds(var AMin, AMax: Double); override;
467 procedure TAxisTransform.UpdateBounds(var AMin, AMax: Double);
471 if not IsInfinite(AMax) then
472 AMax := AxisToGraph(AMax);
570 t.UpdateBounds(AMin, AMax);
741 procedure TAutoScaleAxisTransform.UpdateBounds(var AMin, AMax: Double);
744 if IsInfinite(AMin) or IsInfinite(AMax) then exit;
747 UpdateMinMax(AMax, FMin, FMax);
[all …]
/dports/editors/lazarus-qt5/lazarus/components/tachart/
H A Dtatransformations.pas47 procedure UpdateBounds(var AMin, AMax: Double); virtual;
95 procedure UpdateBounds(var AMin, AMax: Double);
137 procedure UpdateBounds(var AMin, AMax: Double); override;
467 procedure TAxisTransform.UpdateBounds(var AMin, AMax: Double);
471 if not IsInfinite(AMax) then
472 AMax := AxisToGraph(AMax);
570 t.UpdateBounds(AMin, AMax);
741 procedure TAutoScaleAxisTransform.UpdateBounds(var AMin, AMax: Double);
744 if IsInfinite(AMin) or IsInfinite(AMax) then exit;
747 UpdateMinMax(AMax, FMin, FMax);
[all …]
H A Dtachartaxis.pas162 procedure UpdateBounds(var AMin, AMax: Double);
255 AAxisIsVertical: Boolean; AMin, AMax: PDouble);
317 AAxisList[AIndex].UpdateBounds(AMin, AMax);
362 vp := ParentAxis.MakeValuesInRangeParams(AMin, AMax);
472 if IsNan(AMin) or (AMin = AMax) then exit;
474 minorMarks := Minors[j].GetMarkValues(AMin, AMax);
663 AMin, AMax: Double): TValuesInRangeParams; in TChartAxis.MakeValuesInRangeParams()
666 Result.FMax := AMax;
1000 AMax := Max;
1251 AAxisIsVertical: Boolean; AMin, AMax: PDouble);
[all …]
/dports/editors/cudatext/CudaText-1.151.0/atsynedit/atsynedit/
H A Datstringproc_separator.pas29 function GetItemInt(out AValue: integer; const ADefault, AMin, AMax: integer): boolean; in GetItemInt()
87 function TATStringSeparator.GetItemInt(out AValue: integer; const ADefault, AMin, AMax: integer): b… in TATStringSeparator.GetItemInt()
97 if AValue>AMax then
98 AValue:= AMax;
/dports/editors/lazarus/lazarus/lcl/include/
H A Dscrollbar.inc93 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax, APageSize: Integer);
97 if AMax < AMin then
100 if APosition > AMax then APosition := AMax;
102 if (FMin <> AMin) or (FMax <> AMax) or (APageSize <> FPageSize) then
105 FMax := AMax;
111 ScrollInfo.nMax := AMax;
132 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax: Integer);
134 SetParams(APosition, AMin, AMax, FPageSize);
H A Dtrackbar.inc139 AMax : new maximum
144 procedure TCustomTrackBar.SetParams(APosition, AMin, AMax: Integer);
147 FixParams(APosition, AMin, AMax);
149 if (FPosition = APosition) and (FMin = AMin) and (FMax = AMax) then
153 FMax := AMax;
343 procedure TCustomTrackBar.FixParams(var APosition, AMin, AMax: Integer);
345 if AMin > AMax then AMin := AMax;
347 if APosition > AMax then APosition := AMax;
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/include/
H A Dscrollbar.inc93 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax, APageSize: Integer);
97 if AMax < AMin then
100 if APosition > AMax then APosition := AMax;
102 if (FMin <> AMin) or (FMax <> AMax) or (APageSize <> FPageSize) then
105 FMax := AMax;
111 ScrollInfo.nMax := AMax;
130 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax: Integer);
132 SetParams(APosition, AMin, AMax, FPageSize);
H A Dtrackbar.inc154 AMax : new maximum
159 procedure TCustomTrackBar.SetParams(APosition, AMin, AMax: Integer);
162 FixParams(APosition, AMin, AMax);
164 if (FPosition = APosition) and (FMin = AMin) and (FMax = AMax) then
168 FMax := AMax;
362 procedure TCustomTrackBar.FixParams(var APosition, AMin, AMax: Integer);
364 if AMin > AMax then AMin := AMax;
366 if APosition > AMax then APosition := AMax;
/dports/editors/lazarus-qt5/lazarus/lcl/include/
H A Dscrollbar.inc93 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax, APageSize: Integer);
97 if AMax < AMin then
100 if APosition > AMax then APosition := AMax;
102 if (FMin <> AMin) or (FMax <> AMax) or (APageSize <> FPageSize) then
105 FMax := AMax;
111 ScrollInfo.nMax := AMax;
132 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax: Integer);
134 SetParams(APosition, AMin, AMax, FPageSize);
H A Dtrackbar.inc139 AMax : new maximum
144 procedure TCustomTrackBar.SetParams(APosition, AMin, AMax: Integer);
147 FixParams(APosition, AMin, AMax);
149 if (FPosition = APosition) and (FMin = AMin) and (FMax = AMax) then
153 FMax := AMax;
343 procedure TCustomTrackBar.FixParams(var APosition, AMin, AMax: Integer);
345 if AMin > AMax then AMin := AMax;
347 if APosition > AMax then APosition := AMax;
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/include/
H A Dscrollbar.inc93 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax, APageSize: Integer);
97 if AMax < AMin then
100 if APosition > AMax then APosition := AMax;
102 if (FMin <> AMin) or (FMax <> AMax) or (APageSize <> FPageSize) then
105 FMax := AMax;
111 ScrollInfo.nMax := AMax;
130 procedure TCustomScrollBar.SetParams(APosition, AMin, AMax: Integer);
132 SetParams(APosition, AMin, AMax, FPageSize);
H A Dtrackbar.inc154 AMax : new maximum
159 procedure TCustomTrackBar.SetParams(APosition, AMin, AMax: Integer);
162 FixParams(APosition, AMin, AMax);
164 if (FPosition = APosition) and (FMin = AMin) and (FMax = AMax) then
168 FMax := AMax;
362 procedure TCustomTrackBar.FixParams(var APosition, AMin, AMax: Integer);
364 if AMin > AMax then AMin := AMax;
366 if APosition > AMax then APosition := AMax;
/dports/misc/lifelines/lifelines-3.1.1/src/stdlib/
H A Darray.c69 AMax(array) = size; in create_array_objval()
97 if (i>=AMax(array)) { in set_array_obj()
146 int newsize = AMax(array); in enlarge_array()
151 if (newsize<AMax(array)) return; in enlarge_array()
157 AMax(array) = newsize; in enlarge_array()
/dports/editors/lazarus-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/gtk/
H A Dgtkwsspin.pp129 AMin, AMax: gFloat;
138 AMax := ACustomFloatSpinEdit.MaxValue;
143 AMax := MaxSingle;
148 or (AnAdjustment^.upper <> AMax) then
151 AnAdjustment^.upper := AMax;
/dports/editors/lazarus-qt5-devel/lazarus-6df7e8756882f7d7f28f662011ee72f21746c580/lcl/interfaces/gtk/
H A Dgtkwsspin.pp129 AMin, AMax: gFloat;
138 AMax := ACustomFloatSpinEdit.MaxValue;
143 AMax := MaxSingle;
148 or (AnAdjustment^.upper <> AMax) then
151 AnAdjustment^.upper := AMax;
/dports/editors/lazarus/lazarus/lcl/interfaces/gtk/
H A Dgtkwsspin.pp129 AMin, AMax: gFloat;
138 AMax := ACustomFloatSpinEdit.MaxValue;
143 AMax := MaxSingle;
148 or (AnAdjustment^.upper <> AMax) then
151 AnAdjustment^.upper := AMax;
/dports/editors/lazarus-qt5/lazarus/lcl/interfaces/gtk/
H A Dgtkwsspin.pp129 AMin, AMax: gFloat;
138 AMax := ACustomFloatSpinEdit.MaxValue;
143 AMax := MaxSingle;
148 or (AnAdjustment^.upper <> AMax) then
151 AnAdjustment^.upper := AMax;
/dports/math/glm/glm-0.9.9.8/test/gtc/
H A Dgtc_random.cpp20 glm::u8vec2 AMax(std::numeric_limits<glm::u8>::min()); in test_linearRand() local
26 AMax = glm::max(AMax, A); in test_linearRand()
36 Error += glm::all(glm::equal(AMax, glm::u8vec2(Max))) ? 0 : 1; in test_linearRand()
106 glm::i8vec2 AMax(std::numeric_limits<glm::i8>::min()); in test_linearRand() local
112 AMax = glm::max(AMax, A); in test_linearRand()
122 Error += glm::all(glm::equal(AMax, glm::i8vec2(Max))) ? 0 : 1; in test_linearRand()
/dports/emulators/mess/mame-mame0226/3rdparty/glm/test/gtc/
H A Dgtc_random.cpp18 glm::u8vec2 AMax(std::numeric_limits<glm::u8>::min()); in test_linearRand() local
24 AMax = glm::max(AMax, A); in test_linearRand()
34 Error += glm::all(glm::equal(AMax, glm::u8vec2(Max))) ? 0 : 1; in test_linearRand()
104 glm::i8vec2 AMax(std::numeric_limits<glm::i8>::min()); in test_linearRand() local
110 AMax = glm::max(AMax, A); in test_linearRand()
120 Error += glm::all(glm::equal(AMax, glm::i8vec2(Max))) ? 0 : 1; in test_linearRand()
/dports/games/warzone2100/warzone2100/3rdparty/glm/test/gtc/
H A Dgtc_random.cpp20 glm::u8vec2 AMax(std::numeric_limits<glm::u8>::min()); in test_linearRand() local
26 AMax = glm::max(AMax, A); in test_linearRand()
36 Error += glm::all(glm::equal(AMax, glm::u8vec2(Max))) ? 0 : 1; in test_linearRand()
106 glm::i8vec2 AMax(std::numeric_limits<glm::i8>::min()); in test_linearRand() local
112 AMax = glm::max(AMax, A); in test_linearRand()
122 Error += glm::all(glm::equal(AMax, glm::i8vec2(Max))) ? 0 : 1; in test_linearRand()
/dports/graphics/nanort/nanort-b1feea8/examples/common/glm/test/gtc/
H A Dgtc_random.cpp18 glm::u8vec2 AMax(std::numeric_limits<glm::u8>::min()); in test_linearRand() local
24 AMax = glm::max(AMax, A); in test_linearRand()
34 Error += glm::all(glm::equal(AMax, glm::u8vec2(Max))) ? 0 : 1; in test_linearRand()
104 glm::i8vec2 AMax(std::numeric_limits<glm::i8>::min()); in test_linearRand() local
110 AMax = glm::max(AMax, A); in test_linearRand()
120 Error += glm::all(glm::equal(AMax, glm::i8vec2(Max))) ? 0 : 1; in test_linearRand()

12345678