| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/ |
| D | Util.php | 26 public static function percent($a, $b, $asString = false, $fixedWidth = false) function in SebastianBergmann\\CodeCoverage\\Util 33 $percent = ($a / $b) * 100; 35 $percent = 100; 40 return sprintf('%6.2F%%', $percent); 43 return sprintf('%01.2F%%', $percent); 45 return $percent;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/OSConfig/ |
| D | FixedOrPercent.php | 29 public $percent; variable in Google\\Service\\OSConfig\\FixedOrPercent 48 public function setPercent($percent) argument 50 $this->percent = $percent; 57 return $this->percent;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Monitoring/ |
| D | Trigger.php | 26 public $percent; variable in Google\\Service\\Monitoring\\Trigger 42 public function setPercent($percent) argument 44 $this->percent = $percent; 48 return $this->percent;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
| D | FixedOrPercent.php | 33 public $percent; variable in Google\\Service\\Compute\\FixedOrPercent 66 public function setPercent($percent) argument 68 $this->percent = $percent; 75 return $this->percent;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/ |
| D | GoogleCloudRunV2TrafficTarget.php | 25 public $percent; variable in Google\\Service\\CloudRun\\GoogleCloudRunV2TrafficTarget 42 public function setPercent($percent) argument 44 $this->percent = $percent; 51 return $this->percent;
|
| D | GoogleCloudRunOpV2TrafficTarget.php | 25 public $percent; variable in Google\\Service\\CloudRun\\GoogleCloudRunOpV2TrafficTarget 42 public function setPercent($percent) argument 44 $this->percent = $percent; 51 return $this->percent;
|
| D | GoogleCloudRunOpV2TrafficTargetStatus.php | 25 public $percent; variable in Google\\Service\\CloudRun\\GoogleCloudRunOpV2TrafficTargetStatus 46 public function setPercent($percent) argument 48 $this->percent = $percent; 55 return $this->percent;
|
| D | GoogleCloudRunV2TrafficTargetStatus.php | 25 public $percent; variable in Google\\Service\\CloudRun\\GoogleCloudRunV2TrafficTargetStatus 46 public function setPercent($percent) argument 48 $this->percent = $percent; 55 return $this->percent;
|
| D | TrafficTarget.php | 33 public $percent; variable in Google\\Service\\CloudRun\\TrafficTarget 78 public function setPercent($percent) argument 80 $this->percent = $percent; 87 return $this->percent;
|
| /plugin/jplayer/vendor/happyworm/jplayer/lib/circle-player/js/ |
| D | circle.player.js | 112 var percent = 0; 120 percent = 100 * bufferTime / self.audio.duration; 125 …percent = 0; // Cleans up the inital conditions on all browsers, since seekPercent defaults to 100… 127 …self._progress(percent); // Problem here at initial condition. Due to the Opera clause above of bu… 174 _timeupdate: function(percent) { argument 175 var degs = percent * 3.6+"deg"; 177 var spriteOffset = (Math.floor((Math.round(percent))*this.spriteRatio)-1)*-this.spritePitch; 179 if (percent <= 50) { 187 } else if (percent <= 100) { 198 _progress: function(percent) { argument [all …]
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Xml/ |
| D | Totals.php | 97 'percent', 107 'percent', 117 'percent', 127 'percent', 137 'percent',
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/ |
| D | Renderer.php | 243 protected function getCoverageBar($percent) argument 245 $level = $this->getColorLevel($percent); 253 $template->setVar(['level' => $level, 'percent' => sprintf('%.2F', $percent)]); 259 * @param int $percent 263 protected function getColorLevel($percent) argument 265 if ($percent <= $this->lowUpperBound) { 267 } elseif ($percent > $this->lowUpperBound && 268 $percent < $this->highLowerBound) {
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/ |
| D | File.php | 153 $linesExecutedPercentAsString = Util::percent( 172 'linesExecutedPercent' => Util::percent( 180 'testedMethodsPercent' => Util::percent( 185 'testedMethodsPercentAsString' => Util::percent( 190 'testedClassesPercent' => Util::percent( 195 'testedClassesPercentAsString' => Util::percent( 261 'linesExecutedPercent' => Util::percent( 266 'linesExecutedPercentAsString' => Util::percent( 273 'testedMethodsPercent' => Util::percent( 278 'testedMethodsPercentAsString' => Util::percent(
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/ |
| D | UtilTest.php | 20 $this->assertEquals(100, Util::percent(100, 0)); 21 $this->assertEquals(100, Util::percent(100, 100)); 24 Util::percent(100, 100, true)
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/ |
| D | coverage_bar.html.dist | 2 …}}" role="progressbar" aria-valuenow="{{percent}}" aria-valuemin="0" aria-valuemax="100" style="wi… 3 <span class="sr-only">{{percent}}% covered ({{level}})</span>
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/ |
| D | AbstractNode.php | 144 return Util::percent( 160 return Util::percent( 176 return Util::percent( 192 return Util::percent( 208 return Util::percent(
|
| /plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/ |
| D | HtmlDumper.php | 45 protected function formatTime(Profile $profile, $percent) argument 47 …lor: %s">%.2fms/%.0f%%</span>', $percent > 20 ? self::$colors['big'] : 'auto', $profile->getDurati…
|
| D | BaseDumper.php | 32 abstract protected function formatTime(Profile $profile, $percent); argument 48 $percent = $this->root ? $profile->getDuration() / $this->root * 100 : 0; 53 $str = sprintf("%s %s\n", $start, $this->formatTime($profile, $percent));
|
| D | TextDumper.php | 33 protected function formatTime(Profile $profile, $percent) argument 35 return sprintf('%.2fms/%.0f%%', $profile->getDuration() * 1000, $percent);
|
| /plugin/vote/ |
| D | syntax.php | 230 $percent = 0; 232 $percent = round( ( $absolute * 100 ) / $total ); 239 if ( $percent ) { 240 $ret .= '<div class="vote_full" style="width:'.( $percent * 2 ).'px"> </div>'; 244 '<td class="rightalign">'.$percent.'%</td>'.
|
| /plugin/approve/syntax/ |
| H A D | table.php | 238 $percent = 0; 240 $percent = $all_approved_ready * 100 / $all; 242 … $renderer->doc .= $all_approved_ready . ' / ' . $all . sprintf(" (%.0f%%)", $percent); 251 $percent = 0; 253 $percent = $all_approved * 100 / $all; 255 $renderer->doc .= $all_approved . ' / ' . $all . sprintf(" (%.0f%%)", $percent);
|
| /plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/ |
| D | Text.php | 93 Util::percent( 104 Util::percent( 115 Util::percent( 223 $coverage = Util::percent( 241 return Util::percent(
|
| /plugin/poll/ |
| D | syntax.php | 132 $percent = round(($absolute*100)/$total); 134 … if ($percent) $ret .= '<div class="poll_full" style="width:'.($percent*2).'px"> </div>'; 135 $ret .= '</div></td><td class="rightalign">'.$percent.'%</td>'.
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/ |
| D | Percentiles.php | 69 public function addPercent(float $percent): self argument 71 return $this->addParam('percents', $percent);
|
| /plugin/datatables/assets/datatables.net-buttons/css/ |
| D | mixins.scss | 2 @function dtb-tint( $color, $percent ) { parameter 3 @return mix(white, $color, $percent); 6 @function dtb-shade( $color, $percent ) { parameter 7 @return mix(black, $color, $percent);
|