Home
last modified time | relevance | path

Searched refs:class (Results 226 – 250 of 1789) sorted by relevance

12345678910>>...72

/plugin/aichat/vendor/vanderlee/php-sentence/tests/
H A Dbootstrap.php3 spl_autoload_register(function ($class) {
5 if (stripos($class, $prefix) === 0) {
7 dirname(__DIR__).'\\src\\'.str_ireplace($prefix, '', $class).'.php');
/plugin/tag/syntax/
H A Dcount.php14 class syntax_plugin_tag_count extends DokuWiki_Syntax_Plugin {
104 $class = "inline"; // valid: inline, ul, pagelist
107 $renderer->doc .= '<table class="'.$class.'">';
109 $renderer->doc .= '<th class="'.$col.'">'.$this->getLang('tag').'</th>';
110 $renderer->doc .= '<th class="'.$col.'">'.$this->getLang('count').'</th>';
116 $renderer->doc .= '<td class="'.$class.'" colspan="2">'.$this->getLang('empty_output').'</td>';
123 $renderer->doc .= '<td class="'.$class
[all...]
/plugin/targetlink/
H A Dsyntax.php136 $class = 'wikilink1';
138 $class = 'wikilink2';
142 $class = 'media';
160 $link['class'] = $class;
214 $class = 'urlextern';
216 $class = 'media';
226 $link['class'] = $class;
261 $class = preg_replace('/[^_\-a-z0-9]+/i', '_', $wikiName);
262 $link['class'] = "interwiki iw_$class";
/plugin/diagramsnet/lib/img/lib/active_directory/
H A Dcluster_server.svg1class="B"/><circle cx="109.235" cy="148.52" r="92.472" fill="url(#L)" paint-order="normal"/><path …
H A Dvista_terminal.svg1class="B"/><path d="M111.72 150.14c-9.818 0-18.728 2.163-25.344 5.805s-11.135 8.948-11.135 15.17 4…
H A Dprinter.svg1class="B"/><path d="M132.57 75.426l83.824 43.21-105.758 53.736-84.314-37.992z" fill="url(#C)" clas…
H A Dkey.svg1class="B"/><path d="M50.473 86.584c3.396-.086 6.3.264 8.957.988 5.334 1.45 9.927 4.467 15.793 8.96…
/plugin/combo/vendor/symfony/process/
H A DCHANGELOG.md44 * added the `ProcessSignaledException` class to properly catch signaled process errors
51 `mustRun()`, and `restart()` methods of the `Process` class
53 `PhpProcess` class
56 methods of the `Process` class have been removed
58 * removed the `ProcessBuilder` class, use the `Process` class instead
59 * removed the `getEnhanceWindowsCompatibility()` and `setEnhanceWindowsCompatibility()` methods of the `Process` class
60 * passing a not existing working directory to the constructor of the `Symfony\Component\Process\Process` class is not
66 * deprecated the ProcessBuilder class
72 * added command line arrays in the `Process` class
[all...]
/plugin/findologicxmlexport/vendor/phpunit/php-token-stream/src/Token/
H A DStream.php353 $class = [];
396 $class[] = $token->getName();
399 $this->classes[$class[count($class) - 1]] = $tmp;
420 if (empty($class) &&
430 } elseif (!empty($class)) {
431 $this->classes[$class[count($class) - 1]]['methods'][$name] = $tmp;
434 $class[count($class) - 1] . '::' . $name,
455 array_pop($class);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/
H A DClassMirrorException.php18 private $class; variable in Prophecy\\Exception\\Doubler\\ClassMirrorException
20 public function __construct($message, ReflectionClass $class) argument
24 $this->class = $class;
/plugin/pdb/classes/
H A D_RCSB.php45 function ExplorerLink($pdbid,$class="pdb_plugin_acc"){ argument
48 $class = urlencode($class);
49 return sprintf($this->LinkFormat,$pdbid,$class,strtoupper($pdbid));
/plugin/pubchem/classes/
H A D_RCSB.php10 class rcsb{
20 $this->LinkFormat = '<a href="https://www.rcsb.org/pdb/explore.do?structureId=%s"><span class="%s">%s</span></a>';
45 function ExplorerLink($pdbid,$class="pdb_plugin_acc"){ argument
48 $class = urlencode($class);
49 return sprintf($this->LinkFormat,$pdbid,$class,strtoupper($pdbid));
/plugin/findologicxmlexport/vendor/jms/metadata/src/Cache/
H A DPsrCacheAdapter.php36 public function load(string $class): ?ClassMetadata argument
38 $this->lastItem = $this->pool->getItem(strtr($this->prefix . $class, '\\', '.'));
60 public function evict(string $class): void argument
62 $this->pool->deleteItem(strtr($this->prefix . $class, '\\', '.'));
/plugin/pubmed/classes/
H A D_RCSB.php10 class rcsb{
20 $this->LinkFormat = '<a href="http://www.rcsb.org/pdb/explore.do?structureId=%s"><span class="%s">%s</span></a>';
45 function ExplorerLink($pdbid,$class="pdb_plugin_acc"){ argument
48 $class = urlencode($class);
49 return sprintf($this->LinkFormat,$pdbid,$class,strtoupper($pdbid));
/plugin/findologicxmlexport/vendor/twig/twig/src/RuntimeLoader/
H A DFactoryRuntimeLoader.php31 public function load($class) argument
33 if (isset($this->map[$class])) {
34 $runtimeFactory = $this->map[$class];
H A DContainerRuntimeLoader.php33 public function load($class) argument
35 if ($this->container->has($class)) {
36 return $this->container->get($class);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DClassHasStaticAttribute.php29 $class = new ReflectionClass($other);
31 if ($class->hasProperty($this->attributeName)) {
32 $attribute = $class->getProperty($this->attributeName);
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DIndexedReader.php47 public function getClassAnnotations(\ReflectionClass $class) argument
50 foreach ($this->delegate->getClassAnnotations($class) as $annot) {
60 public function getClassAnnotation(\ReflectionClass $class, $annotation) argument
62 return $this->delegate->getClassAnnotation($class, $annotation);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassCodeGenerator.php40 public function generate($classname, Node\ClassNode $class) argument
47 $classname, $class->getParentClass(), implode(', ',
48 array_map(function ($interface) {return '\\'.$interface;}, $class->getInterfaces())
52 foreach ($class->getProperties() as $name => $visibility) {
57 foreach ($class->getMethods() as $method) {
/plugin/webcomponent/syntax/
H A Dblockquote.php177 $class = "m-3";
179 $class = $parameters["class"];
181 if ($class != "") {
182 $class = " " . $class;
184 $renderer->doc .= '<div class="card' . $class . '">' . DOKU_LF
/plugin/diagramsnet/lib/img/lib/allied_telesis/security/
H A DRouter_UTM.svg1class="J K L"><path d="M54.344 54.008l37.123-19.833.03 8.966-37.124 19.832z"/><use xlink:href="#B"…
/plugin/diagramsnet/lib/img/lib/allied_telesis/computer_and_terminals/
H A DIP_TV.svg1class="Q"><path d="M75.644 35.017l4.896-2.6.035 47.946-4.898 2.6z"/><path d="M24.188 4.1l4.897-2.6…
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DCss.php17 class Css extends Overload {
100 * Output the class selector to the buffer
111 * Output the class selector to the buffer
113 * @param Ast\Selector\Simple\ClassName $class
116 public function visitSelectorSimpleClassName(Ast\Selector\Simple\ClassName $class): bool { argument
117 $this->_buffer .= '.'.$class->className;
169 Ast\Selector\Simple\PseudoClass $class
171 $this->_buffer .= ':'.$class->name;
172 if ($class->parameter) {
174 $this->visit($class
168 visitSelectorSimplePseudoClass(Ast\\Selector\\Simple\\PseudoClass $class) global() argument
191 visitEnterSelectorSimplePseudoClass(Ast\\Selector\\Simple\\PseudoClass $class) global() argument
[all...]
/plugin/data-au/syntax/
H A Dentry.php71 $class = array_shift($lines);
72 $class = str_replace('dataentry', '', $class);
73 $class = trim($class, '- ');
112 'dataau' => $dataau, 'cols' => $columns, 'classes' => $class,
217 $class = $dataau['classes'];
225 $id, $title, $class
232 $title, $class, $revision, $id
309 $class = 'edit_content_only';
315 $class = 'edit_all_content';
322 $renderer->form->addElement("<table class=\"$class\">");
/plugin/findologicxmlexport/vendor/twig/twig/src/
H A DTemplate.php355 $class = get_class($this);
356 if (false !== $pos = strrpos($class, '___', -1)) {
357 $class = substr($class, 0, $pos);
589 $class = \get_class($object);
592 if (!isset(self::$cache[$class])) {
595 $ref = new \ReflectionClass($class);
636 self::$cache[$class] = $cache;
640 if (isset(self::$cache[$class][$item])) {
641 $method = self::$cache[$class][$item];
643 $method = self::$cache[$class][$lcItem];
[all …]

12345678910>>...72