Home
last modified time | relevance | path

Searched refs:Value (Results 176 – 200 of 254) sorted by path

1234567891011

/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
H A Dtables.md118 | Item | Value |
/plugin/ol3/
H A Dscript.js8Value:Mc((function(t,e){return U_(t)}))}),vS=Gc(fS,{AllowedValues:Fc((function(t,e){return Uc({},m…
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/pdfjs/pdfjs/build/
H A Dpdf.js.map1 …* v[1] + m[8] * v[2]\n ];\n };\n\n // This calculation uses Singular Value Decomposition.\n …
H A Dpdf.worker.js.map1Value Decomposition.\n // The SVD can be represented with formula A = USV. We are interested in t…
/plugin/projects/pchart/pchart/
H A Dpcache.php112 foreach($Values as $Serie => $Value)
113 $tKey = $tKey.$Serie.$Value;
H A Dpchart.php548 $Value = $this->ToTime($Value);
550 $Value = $this->ToDate($Value);
552 $Value = $this->ToMetric($Value);
598 $Value = $this->ToTime($Value);
600 $Value = $this->ToDate($Value);
741 $Value = $this->ToTime($Value);
743 $Value = $this->ToDate($Value);
745 $Value = $this->ToMetric($Value);
850 $Value = $this->ToTime($Value);
852 $Value = $this->ToDate($Value);
[all …]
H A Dpdata.php78 foreach($Values as $Value) {
79 $Value = trim($Value);
87 $Value = trim($Values[$column]);
88 $this->SetSerieName($Value,"Serie".$Value);
96 foreach($Values as $Value) {
97 $Value = trim($Value);
106 $Value = trim($Values[$column]);
115 if (is_array($Value) && count($Value) == 1)
116 $Value = $Value[0];
122 if ( count($Value) == 1 )
[all …]
/plugin/socialshareprivacy2/JC/
H A DREADME.md71 Define lifetime of the cookie. Value can be a `Number` which will be interpreted as days from time …
/plugin/socialshareprivacy2/SSP/
H A DREADME.md379 <th>Default Value</th>
520 <th>Default Value</th>
623 <th>Default Value</th>
670 <th>Default Value</th>
710 <th>Default Value</th>
741 <th>Default Value</th>
786 <th>Default Value</th>
832 <th>Default Value</th>
890 <th>Default Value</th>
911 <th>Default Value</th>
[all …]
/plugin/sqlcomp/
H A Dsyntax.php321 foreach($row as $key => $Value){
324 …$td .= str_replace(array("%number%","%text%","%type%"),array($j,$Value,$row["type"]),$this->aMessa…
/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 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 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 DpCache.php111 foreach ( $Values as $Serie => $Value )
112 $tKey = $tKey . $Serie . $Value;
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 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 )) {
/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/strata/
H A Dmanual.txt158 == Field-Value pairs ==
/plugin/struct/action/
H A Daggregationeditor.php20 use dokuwiki\plugin\struct\meta\Value;
178 $field = new Value($column, '');
17 use dokuwiki\plugin\struct\meta\Value; global() alias

1234567891011