/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/ |
H A D | ProfileTest.php | 28 $this->assertTrue($profile->isRoot()); 31 $this->assertFalse($profile->isRoot()); 63 $profile = new Profile(); 73 $profile = new Profile(); 75 $profile->leave(); 84 $profile->addProfile($profile1); 85 $profile->leave(); 89 $profiles = $profile->getProfiles(); 105 $profile = new Profile(); 107 $profile->leave(); [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/ |
H A D | BaseDumper.php | 23 public function dump(Profile $profile) argument 25 return $this->dumpProfile($profile); 36 if ($profile->isRoot()) { 37 $this->root = $profile->getDuration(); 38 $start = $profile->getName(); 40 if ($profile->isTemplate()) { 41 $start = $this->formatTemplate($profile, $prefix); 43 $start = $this->formatNonTemplate($profile, $prefix); 50 if ($profile->getDuration() * 1000 < 1) { 56 $nCount = \count($profile->getProfiles()); [all …]
|
H A D | HtmlDumper.php | 30 public function dump(Profile $profile) argument 32 return '<pre>'.parent::dump($profile).'</pre>'; 35 protected function formatTemplate(Profile $profile, $prefix) argument 37 …le="background-color: %s">%s</span>', $prefix, self::$colors['template'], $profile->getTemplate()); 40 protected function formatNonTemplate(Profile $profile, $prefix) argument 42 …ix, $profile->getTemplate(), $profile->getType(), isset(self::$colors[$profile->getType()]) ? self… 45 protected function formatTime(Profile $profile, $percent) argument 47 …">%.2fms/%.0f%%</span>', $percent > 20 ? self::$colors['big'] : 'auto', $profile->getDuration() * …
|
H A D | BlackfireDumper.php | 23 public function dump(Profile $profile) argument 26 $this->dumpProfile('main()', $profile, $data); 27 $this->dumpChildren('main()', $profile, $data); 45 private function dumpChildren($parent, Profile $profile, &$data) argument 47 foreach ($profile as $p) { 58 private function dumpProfile($edge, Profile $profile, &$data) argument 63 $data[$edge]['mu'] += $profile->getMemoryUsage(); 64 $data[$edge]['pmu'] += $profile->getPeakMemoryUsage(); 68 'wt' => floor($profile->getDuration() * 1000000), 69 'mu' => $profile->getMemoryUsage(), [all …]
|
H A D | TextDumper.php | 23 protected function formatTemplate(Profile $profile, $prefix) argument 25 return sprintf('%s└ %s', $prefix, $profile->getTemplate()); 28 protected function formatNonTemplate(Profile $profile, $prefix) argument 30 …return sprintf('%s└ %s::%s(%s)', $prefix, $profile->getTemplate(), $profile->getType(), $profile->… 33 protected function formatTime(Profile $profile, $percent) argument 35 return sprintf('%.2fms/%.0f%%', $profile->getDuration() * 1000, $percent);
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/Dumper/ |
H A D | AbstractTest.php | 18 $profile = new Profile('main'); 38 $p = new \ReflectionProperty($profile, 'profiles'); 40 $p->setValue($profile, $subProfiles); 42 return $profile; 82 $profile = new Profile($templateName, $type, $name); 84 $p = new \ReflectionProperty($profile, 'profiles'); 86 $p->setValue($profile, $subProfiles); 90 $starts->setValue($profile, [ 95 $ends = new \ReflectionProperty($profile, 'ends'); 97 $ends->setValue($profile, [ [all …]
|
/plugin/combo/resources/theme/default/components/css/ |
H A D | profile-update.css | 2 .form-profile-update { 10 .form-profile-update .form-control-row { 14 .form-profile-update .logo { 20 .form-profile-update label::first-letter { 23 .form-profile-update label { 27 .form-profile-update h1 { 35 .form-profile-update .form-floating:focus-within { 39 .form-profile-update-header { 44 .form-profile-update button { 48 .form-profile [all...] |
H A D | profile-delete.css | 2 .form-profile-delete { 8 .form-profile-delete h1 { 17 .form-profile-delete .checkbox { 21 .form-profile-delete .form-floating:focus-within { 25 .form-profile-delete input[type="text"] { 32 .form-profile-delete input[type="password"] { 36 .form-profile-delete .rememberMe {
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/ |
H A D | ProfilerExtension.php | 21 public function __construct(Profile $profile) argument 23 $this->actives[] = $profile; 26 public function enter(Profile $profile) argument 28 $this->actives[0]->addProfile($profile); 29 array_unshift($this->actives, $profile); 32 public function leave(Profile $profile) argument 34 $profile->leave();
|
/plugin/galleryv1.5/inc/ |
H A D | magazinelayout.class.php | 639 $profile = ''; 662 if ($profile == 'LLL') { 674 if ($profile == 'LLLP') { 676 } elseif ($profile == 'LPPP') { 687 if ($profile == 'LLLLL') { 690 } elseif ($profile == 'LLLLP') { 693 } elseif ($profile == 'LLLPP') { 696 } elseif ($profile == 'LLPPP') { 710 if ($profile == 'LLLLLL') { 737 if ($profile == 'LLLLLLL') { [all …]
|
/plugin/freesync/ |
H A D | admin.php | 104 while($profile = each($profiles)) { 105 ptln('<option value="'.$profile['value'].'"'. 106 (($profile['value'] == $this->fshlp->getProfileName())?'selected="selected"':''). 107 '>'.$profile['value'].'</option>'); 122 $profile = $this->fshlp->getProfile(); 127 …class="edit" name="fn[save_profile][xmlrpcurl]" id="xmlrpcurl" value="'.$profile['xmlrpcurl'].'"/>… 129 …class="edit" name="fn[save_profile][namespace]" id="namespace" value="'.$profile['namespace'].'"/>… 131 …pe="text" class="edit" name="fn[save_profile][user]" id="user" value="'.$profile['user'].'"/></td>… 133 …pe="text" class="edit" name="fn[save_profile][pass]" id="pass" value="'.$profile['pass'].'"/></td>… 136 …pe="checkbox" class="edit" name="fn[save_profile][pages]" id="pages" '.($profile['pages']?'checked… [all …]
|
H A D | helper.php | 56 function saveProfile($oldname, $profile) { argument 61 $profile = array_merge($this->_profile, $profile); 63 if(preg_match('/^http:\/\/([a-zA-Z0-9][a-zA-Z0-9_.]+)\//', $profile['xmlrpcurl'], $match)) { 64 $profile['name'] = $match[1]; 65 $pfFN = $this->_profilePath.'/'.$profile['name'].".ini"; 67 foreach($profile as $key => $val) { 75 $this->loadProfile($profile['name']); 77 elseif(empty($profile['xmlrpcurl']) && file_exists($oldpfFN)) 86 while($profile = readdir($dh)) { 87 if(preg_match("/^(.*).ini$/", $profile, $match))
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/ |
H A D | GooglePrivacyDlpV2DataProfilePubSubMessage.php | 46 public function setProfile(GooglePrivacyDlpV2TableDataProfile $profile) argument 48 $this->profile = $profile; 55 return $this->profile;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Classroom/ |
H A D | Teacher.php | 50 public function setProfile(UserProfile $profile) argument 52 $this->profile = $profile; 59 return $this->profile;
|
H A D | Student.php | 52 public function setProfile(UserProfile $profile) argument 54 $this->profile = $profile; 61 return $this->profile;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Transcoder/ |
H A D | Vp9CodecSettings.php | 50 public $profile; variable in Google\\Service\\Transcoder\\Vp9CodecSettings 155 public function setProfile($profile) argument 157 $this->profile = $profile; 164 return $this->profile;
|
H A D | H265CodecSettings.php | 71 public $profile; variable in Google\\Service\\Transcoder\\H265CodecSettings 266 public function setProfile($profile) argument 268 $this->profile = $profile; 275 return $this->profile;
|
H A D | H264CodecSettings.php | 75 public $profile; variable in Google\\Service\\Transcoder\\H264CodecSettings 284 public function setProfile($profile) argument 286 $this->profile = $profile; 293 return $this->profile;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Analytics/ |
H A D | AccountTreeResponse.php | 64 public function setProfile(Profile $profile) argument 66 $this->profile = $profile; 73 return $this->profile;
|
H A D | AccountTicket.php | 86 public function setProfile(Profile $profile) argument 88 $this->profile = $profile; 95 return $this->profile;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/ |
H A D | SslPolicy.php | 62 public $profile; variable in Google\\Service\\Compute\\SslPolicy 199 public function setProfile($profile) argument 201 $this->profile = $profile; 208 return $this->profile;
|
/plugin/authphpbb3/ |
H A D | action.php | 125 $profile = '<a href="%s" class="interwiki iw_user" rel="nofollow" target="_blank">%s</a>'; 142 $profile = sprintf($profile, $data['phpbb_profile'], $data['name']); 144 $profile = sprintf($profile, '#', $event->data['name']); 150 'userlink' => $profile,
|
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/ |
H A D | Profile.php | 81 public function addProfile(self $profile) argument 83 $this->profiles[] = $profile; 96 foreach ($this->profiles as $profile) { 97 $duration += $profile->getDuration();
|
/plugin/profiles/ |
H A D | README.md | 1 dokuwiki-profile 4 Dokuwiki profile plugin
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessBusinessInformation/ |
H A D | Location.php | 219 public function setProfile(Profile $profile) argument 221 $this->profile = $profile; 228 return $this->profile;
|