Home
last modified time | relevance | path

Searched refs:Value (Results 26 – 50 of 254) sorted by last modified time

1234567891011

/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DXpath.php572 ($parameter instanceof Ast\Value\Number || $parameter instanceof Ast\Value\Literal)
582 ($parameter instanceof Ast\Value\Number || $parameter instanceof Ast\Value\Literal)
632 Ast\Value\Position $position
676 Ast\Value\Language $language
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DText.php42 return new PhpCss\Ast\Value\Literal($string);
H A DAttribute.php58 $attribute->literal = new Ast\Value\Literal($token->content);
H A DPseudoClass.php47 $class = new Ast\Value\Language($parameterToken->content);
73 $name, new Ast\Value\Number((int)$parameter->content)
204 private function createPseudoClassPosition($string): Ast\Value\Position {
207 $position = new Ast\Value\Position(1, 0);
209 $position = new Ast\Value\Position(2, 1);
211 $position = new Ast\Value\Position(2, 0);
213 $position = new Ast\Value\Position(0, (int)$string);
218 $position = new Ast\Value\Position(
/plugin/combo/lang/en/
H A Dlang.php47 // Forms Add/Modify Value
54 $lang['Value'] = 'Value';
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Value/
H A DLanguage.php2 namespace PhpCss\Ast\Value {
H A DNumber.php2 namespace PhpCss\Ast\Value {
/plugin/structodt/
H A Daction.php11 use dokuwiki\plugin\struct\meta\Value; alias
217 /** @var Value $row */
H A Dhelper.php16 use dokuwiki\plugin\struct\meta\Value; alias
228 * @return Value[][]
249 * @return Value[]|null
271 * @param Value[] $row
275 /** @var Value $value */
/plugin/statistics/inc/pchart/
H A DCSVImporter.php72 foreach($Values as $key => $Value) {
73 $data->SetSeriesName($Value, "Serie".$ID);
77 foreach($DataColumns as $key => $Value)
78 $data->SetSeriesName($Values [$Value], "Serie".$Value);
92 foreach($Values as $key => $Value) {
93 $data->AddPoint(intval($Value), "Serie".$ID);
101 foreach($DataColumns as $key => $Value)
102 $data->AddPoint($Values [$Value], "Serie".$Value,
[all...]
H A DConversionHelpers.php31 static public function ToTime($Value) { argument
32 $Hour = floor($Value / 3600);
33 $Minute = floor(($Value - $Hour * 3600) / 60);
34 $Second = floor($Value - $Hour * 3600 - $Minute * 60);
52 static public function ToMetric($Value) { argument
53 $Go = floor($Value / 1000000000);
54 $Mo = floor(($Value - $Go * 1000000000) / 1000000);
55 $Ko = floor(($Value - $Go * 1000000000 - $Mo * 1000000) / 1000);
56 $o = floor($Value - $Go * 1000000000 - $Mo * 1000000 - $Ko * 1000);
73 * @param float $Value
76 ToCurrency($Value) global() argument
[all...]
H A DPieChart.php66 foreach($Data as $Key => $Value) {
67 $Value2 = $Value [$DataDescription->getPosition()];
103 foreach($Data as $Key => $Value) {
104 $Value2 = $Value [$DataDescription->getPosition()];
187 foreach($iValues as $Key => $Value) {
192 $this->processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, 0, $Decimals, $Radius, $XPos, $YPos, $shadowProperties);
195 for($iAngle = $Angle; $iAngle <= $Angle + $Value * $SpliceRatio; $iAngle = $iAngle + .5) {
212 foreach($TopPlots as $Key => $Value) {
219 foreach($PolyPlots as $Key => $Value) {
241 foreach($TopPlots as $Key => $Value) {
261 processLabelsPositionAndSize($DrawLabels, $Angle, $Value, $SpliceRatio, $SplicePercent, $SpliceDistance, $Decimals, $Radius, $XPos, $YPos, ShadowProperties $shadowProperties) global() argument
610 processPieSlices(& $Angle, $SpliceRatio, $Value, $Radius, $XPos, $YPos, $XOffset, $YOffset, Color $color, array& $plotArray, ShadowProperties $shadowProperties) global() argument
[all...]
H A DpCache.php108 foreach($Values as $Serie => $Value)
109 $tKey = $tKey.$Serie.$Value;
H A DpChart.php380 $Value = $this->VMin + ($i - 1) * (($this->VMax - $this->VMin) / $Divisions);
381 $Value = round($Value * pow(10, $Decimals)) / pow(10, $Decimals);
382 $Value = $this->convertValueForDisplay(
383 $Value,
388 $Position = imageftbbox($this->FontSize, 0, $this->FontName, $Value);
398 $Value,
412 $Value,
464 $Value = $Values[$Data->getDataDescription()->getPosition()];
465 $Value
1089 drawTitle($XPos, $YPos, $Value, Color $color, $XPos2 = 1, $YPos2 = 1, ShadowProperties $shadowProperties = null) global() argument
1202 drawTreshold($Value, Color $color, $ShowLabel = FALSE, $ShowOnRight = FALSE, $TickWidth = 4, $FreeText = NULL) global() argument
3124 addToImageMap($X1, $Y1, $X2, $Y2, $SerieName, $Value, $CallerFunction) global() argument
3190 ToDate($Value) global() argument
3197 isRealInt($Value) global() argument
[all...]
H A DpData.php65 * @param $Value If this is an associative array the key values
70 public function addPoints(array $Value, $Serie = "Series1", $Description = "") { argument
78 foreach($Value as $Val) {
94 foreach($this->dataDescription->values as $Value)
95 if($Value == $SerieName) {
120 foreach($this->dataDescription->values as $key => $Value) {
121 if($Value == $SerieName)
246 $Value = $this->Data[$Key] [$colName];
248 $yIn [$index] = $Value;
249 if(!is_numeric($Value)) {
[all...]
/plugin/barcodes/
H A DREADME.md35 | `value` | required | required | required | Value to be represen…
/plugin/structgantt/meta/
H A DGantt.php8 use dokuwiki\plugin\struct\meta\Value; alias
130 /** @var Value[] $row */
245 * @param Value[] $row
299 * @param Value[] $row
/plugin/statdisplay/pchart/
H A DCSVImporter.php74 foreach ( $Values as $key => $Value ) {
75 $data->SetSeriesName ( $Value, "Serie" . $ID );
79 foreach ( $DataColumns as $key => $Value )
80 $data->SetSeriesName ( $Values [$Value], "Serie" . $Value );
94 foreach ( $Values as $key => $Value ) {
95 $data->AddPoint ( intval ( $Value ), "Serie" . $ID );
103 foreach ( $DataColumns as $key => $Value )
104 $data->AddPoint ( $Values [$Value], "Serie" . $Value, $SerieName );
H A DPieChart.php67 foreach ( $Data as $Key => $Value ) {
100 foreach ( $Data as $Key => $Value ) {
179 foreach ( $iValues as $Key => $Value ) {
204 foreach ( $TopPlots as $Key => $Value ) {
211 foreach ( $PolyPlots as $Key => $Value ) {
227 foreach ( $TopPlots as $Key => $Value ) {
248 $TAngle = $Angle + ($Value * $SpliceRatio / 2);
372 foreach ( $iValues as $Key => $Value ) {
397 foreach ( $PolyPlots as $Key => $Value ) {
483 foreach ( $iValues as $Key => $Value ) {
[all …]
H A DpData.php69 public function addPoints(array $Value, $Serie = "Series1", $Description = "") { argument
77 foreach ( $Value as $Val ) {
94 foreach ( $this->dataDescription->values as $Value )
95 if ($Value == $SerieName) {
120 foreach ( $this->dataDescription->values as $key => $Value ) {
121 if ($Value == $SerieName)
242 $Value = $this->Data[$Key] [$colName];
244 $yIn [$index] = $Value;
245 if (! is_numeric ( $Value )) {
H A DConversionHelpers.php31 static public function ToTime($Value) { argument
32 $Hour = floor ( $Value / 3600 );
33 $Minute = floor ( ($Value - $Hour * 3600) / 60 );
34 $Second = floor ( $Value - $Hour * 3600 - $Minute * 60 );
52 static public function ToMetric($Value) { argument
53 $Go = floor ( $Value / 1000000000 );
54 $Mo = floor ( ($Value - $Go * 1000000000) / 1000000 );
55 $Ko = floor ( ($Value - $Go * 1000000000 - $Mo * 1000000) / 1000 );
73 static public function ToCurrency($Value) { argument
74 $Go = floor ( $Value / 1000000000 );
[all …]
H A DpChart.php377 $Value = $this->convertValueForDisplay($Value,
390 $Value,
402 $Value,
449 $Value = $this->convertValueForDisplay($Value,
677 $Value = $this->convertValueForDisplay($Value,
689 $Value,
742 $Value = $this->convertValueForDisplay($Value,
1040 $Value,
2804 $DataDescription->description[$Value] = $Value;
2812 $DataDescription->description[$Value] = $Value;
[all …]
H A DpCache.php111 foreach ( $Values as $Serie => $Value )
112 $tKey = $tKey . $Serie . $Value;
/plugin/structnotification/action/
H A Dnotification.php11 use dokuwiki\plugin\struct\meta\Value; alias
58 /* @var Value $value */
112 /* @var Value[] $row */
154 /* @var Value $value */
228 /* @var Value $value */
/plugin/ckgedit/ckeditor/
H A DCHANGES.md1691 * [#8893](https://dev.ckeditor.com/ticket/8893): Value of the [`pasteFromWordCleanupFile`](https://…

1234567891011