Home
last modified time | relevance | path

Searched refs:class (Results 151 – 175 of 1789) sorted by relevance

12345678910>>...72

/plugin/diagramsnet/lib/img/lib/active_directory/
H A Dhome_page.svg1class="B C"/><path d="M-6.7 63.04v136.8H154.04V63.04z" fill="#00a0fc" paint-order="normal" class="…
H A Ddocuments.svg1class="B"/><path d="M35.296 8.5L96.96 43.002v97.662l-61.665-33.19z" fill="#48a0fc" fill-opacity=".…
H A Dworkstation_client.svg1class="B"/><path d="M69.277 85.028l18.4 9.17.4.208 30.032 15.51-15.55 9.422L52.868 94z" fill="url(…
H A Dpda.svg1class="B"/><path d="M134.076 98.8c1.508.44 3.962 2.425 5.77 4.76 1.4 1.82 2.224 3.687 2.598 4.938l…
/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DSnapshot.php267 $class = new ReflectionClass($className);
269 if (!$class->isUserDefined()) {
285 $class = new ReflectionClass($interfaceName);
287 if (!$class->isUserDefined()) {
340 $class = new ReflectionClass($className);
343 foreach ($class->getProperties() as $attribute) {
413 $class = new ReflectionClass($variable);
416 if ($class->isInternal()) {
419 } while ($class = $class->getParentClass());
/plugin/togglewrap/
H A Dsyntax.php33 list ($class,$opts) = explode('&', $opts, 2);
34 if (!$label) $label = $class;
36 return array($class, $label, $pos, $opts);
41 list($class, $label, $pos, $opts) = $data;
42 …glewrap_'.$pos.'" type="checkbox" class="togglewrap" value="'.strtolower($class).'" '.(in_array('c…
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/
H A DAutoloader.php34 * @param string $class a class name
38 public static function autoload($class) argument
40 if (0 !== strpos($class, 'Twig_Extensions')) {
44 if (file_exists($file = __DIR__.'/../../'.str_replace('_', '/', $class).'.php')) {
/plugin/diagramsnet/lib/img/lib/allied_telesis/wireless/
H A DAccess_Point_Outdoor.svg1class="S T U W"/><linearGradient id="A" gradientUnits="userSpaceOnUse" x1="9.355" y1="153.508" x2=…
/plugin/highlightjs/highlight/styles/
H A Ddark.css7 pre code[class]:after {
8 content: 'highlight: ' attr(class);
37 .class .title,
44 .ruby .class .parent,
49 .smalltalk .class,
82 .class .title,
86 .smalltalk .class,
H A Dbrown_paper.css7 pre code[class]:after {
8 content: 'highlight: ' attr(class);
40 .class .title,
47 .ruby .class .parent,
52 .smalltalk .class,
85 .class .title,
89 .smalltalk .class,
/plugin/approve/action/
H A Drevisions.php9 class action_plugin_approve_revisions extends DokuWiki_Action_Plugin {
49 && $element->attr('class') == 'li') {
58 $class = 'plugin__approve_draft';
60 $class = 'plugin__approve_approved';
62 $class = 'plugin__approve_old_approved';
64 $class = 'plugin__approve_ready';
66 $class = 'plugin__approve_draft';
70 $parent_div->addClass($class);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/Doctrine/
H A DObjectConstructorTest.php64 $class = new ClassMetadata(Author::class);
83 $class = new ClassMetadata(Author::class);
96 $class = new ClassMetadata(Author::class);
111 $class = new ClassMetadata(Author::class);
126 $class = new ClassMetadata(Author::class);
144 $class = new ClassMetadata(Author::class);
159 $class = new ClassMetadata(Author::class);
162 $constructor->construct($this->visitor, $class, ['id' => 5], $type, $this->context);
173 $class = new ClassMetadata(Author::class);
176 $constructor->construct($this->visitor, $class, ['id' => 5], $type, $this->context);
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/
H A Dautoload.php8 * @param mixed $class
14 * @param string $class
17 function mmdb_autoload($class) argument
30 $path = str_replace($prefix, $dir, $class);
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DPropertyMatcher.php13 private $class; variable in DeepCopy\\Matcher\\PropertyMatcher
21 * @param string $class Class name
24 public function __construct($class, $property) argument
26 $this->class = $class;
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DPropertyMatcher.php8 class PropertyMatcher implements Matcher
13 private $class; variable in DeepCopy\\Matcher\\PropertyMatcher
21 * @param string $class Class name
24 public function __construct($class, $property) argument
26 $this->class = $class;
31 * Matches a specific property of a specific class.
37 return ($object instanceof $this->class) && $property == $this->property;
/plugin/cssperpage/
H A Dsyntax.php43 $class=$matches[1];
44 $match = $class . ';' . 'openDIV';
61 list($class,$rest) = explode(';',$match);
66 $class ='opencss';
69 … $renderer->doc .= "\n<div id='css_per_page' class = '" . $class ."'>\n";
/plugin/smtp/
H A Dloader.php9 * @param string $class The fully-qualified class name.
12 spl_autoload_register(function($class) {
22 if (strncmp($prefix, $class, $len) !== 0) {
28 $relative_class = substr($class, $len);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/
H A DDoubler.php85 * @param ReflectionClass $class
93 public function double(ReflectionClass $class = null, array $interfaces, array $args = null) argument
105 $classname = $this->createDoubleClass($class, $interfaces);
126 * @param ReflectionClass $class
131 protected function createDoubleClass(ReflectionClass $class = null, array $interfaces) argument
133 $name = $this->namer->name($class, $interfaces);
134 $node = $this->mirror->reflect($class, $interfaces);
H A DNameGenerator.php29 * @param ReflectionClass $class
34 public function name(ReflectionClass $class = null, array $interfaces) argument
38 if (null !== $class) {
39 $parts[] = $class->getName();
/plugin/highlightjs/highlight/
H A Dreadme.eng.txt95 used as class names in `<code>` element.
106 class class header "class SomeName(...):"
129 class class header "class SomeName(...):"
131 parent name of a parent class
179 class .some_name in selectors
237 class class' body from "= class" till "end;"
247 class class header from "class" till "{"
248 title class name inside a header
312 class name of a class
379 class class header from "class" till "{"
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php210 $class = new ReflectionClass($test);
212 if (!$class->isAbstract()) {
355 $class = new ReflectionClass($className);
357 if (!$class->isAbstract()) {
359 $method = $class->getMethod(
367 $this->addTestSuite($class);
835 * @param ReflectionClass $class
852 $class->getName()
860 $test = self::createTest($class, $name);
905 * @param string $class
[all …]
/plugin/diagramsnet/lib/img/lib/allied_telesis/switch/
H A DIndustrial_Ethernet_IE200_POE.svg1class="P"><path d="M64.83 73.2l-3.645 1.935c.188-.1.305-.33.305-.666l3.645-1.935c0 .335-.118.568-.…
/plugin/fedauth/classes/adm/
H A Dfa_manage.adm.class.php193 $class = array();
194 if (!$pro->isEnabled()) $class[] = 'disabled';
195 if ($even = !$even) $class[] = 'even';
196 $class = count($class) ? ' class="'.join('', $class).'"' : '';
204 $out .= ' <fieldset'.$class.'>'
220 function _html_button($provid, $btn, $disabled=false, $indent=0, $class='') { argument
223 …. '<input type="submit" class="button '.$class.'" '.$disabled.' name="fa['.$btn.']['.$provid.']" t…
/plugin/issuelinks/services/
H A DAbstractService.php14 $class = static::class;
15 if (empty(self::$instance[$class]) || $forcereload) {
16 self::$instance[$class] = new $class();
18 return self::$instance[$class];
/plugin/authfacebook/lib/
H A Dautoload.php43 * @param string $class The fully-qualified class name.
47 spl_autoload_register(function ($class) {
64 if (strncmp($prefix, $class, $len) !== 0) {
70 $relativeClass = substr($class, $len);

12345678910>>...72