Home
last modified time | relevance | path

Searched refs:className (Results 226 – 250 of 555) sorted by path

12345678910>>...23

/plugin/fckg/fckeditor/editor/dialog/fck_image/
H A Dfck_image.js225 GetE('txtAttClasses').value = oImage.className || '' ;
362 e.className = 'mediacenter';
365 e.className = 'mediaright';
368 e.className = 'medialeft';
372 e.className = 'baseline';
376 e.className = 'media';
380 e.className = GetE('txtAttClasses').value ;
456 lockButton.className = bLockRatio ? 'BtnLocked' : 'BtnUnlocked' ;
/plugin/fckg/fckeditor/editor/js/
H A Dfckeditorcode_gecko.js48className.length>0){C.Class=A.className;A.className='';};var D=A.getAttribute('style');if (D&&D.le…
82className=B.className.replace(/(^| )FCK__ShowBlocks/g,'');else B.className+=' FCK__ShowBlocks';if …
84className='FCK_Panel';this._CreatePanelBody(this._Panel.Document,this._Panel.MainNode);FCK.Toolbar…
91className.match(FCKIndentCommand._ClassNameRegex);var H=0;if (G!=null){G=G[1];H=FCKIndentCommand._…
100 …B=A.createElement('IMG');B.src=this.Path?this.Path:FCK_SPACER_PATH;}};B.className='TB_Button_Image…
101className='TB_Button_Padding';B.src=FCK_SPACER_PATH;return B;};FCKToolbarButtonUI.prototype.Create…
103className='SC_Panel';this._PanelBox.style.width=this.PanelWidth+'px';this._PanelBox.innerHTML='<ta…
109className+='Menu';this._UIButton.Create(A);var B=FCK.ToolbarSet.CurrentInstance.Commands.GetComman…
112className='TB_Toolbar';e.style.styleFloat=e.style.cssFloat=(FCKLang.Dir=='ltr'?'left':'right');e.d…
116className=this.IsDisabled?'MN_Item_Disabled':'MN_Item';if (!this.IsDisabled){FCKTools.AddEventList…
[all …]
H A Dfckeditorcode_ie.js52className.length>0){C.Class=A.className;A.className='';};var D=A.style.cssText;if (D.length>0){C.I…
86className=B.className.replace(/(^| )FCK__ShowBlocks/g,'');else B.className+=' FCK__ShowBlocks';if …
88className='FCK_Panel';this._CreatePanelBody(this._Panel.Document,this._Panel.MainNode);FCK.Toolbar…
95className.match(FCKIndentCommand._ClassNameRegex);var H=0;if (G!=null){G=G[1];H=FCKIndentCommand._…
102className='TB_Button_Padding';B.src=FCK_SPACER_PATH;return B;};FCKToolbarButtonUI.prototype.Create…
104className='SC_Panel';this._PanelBox.style.width=this.PanelWidth+'px';this._PanelBox.innerHTML='<ta…
110className+='Menu';this._UIButton.Create(A);var B=FCK.ToolbarSet.CurrentInstance.Commands.GetComman…
113className='TB_Toolbar';e.style.styleFloat=e.style.cssFloat=(FCKLang.Dir=='ltr'?'left':'right');e.d…
114 …function(A){var B=FCKTools.GetElementDocument(A).createElement('div');B.className='TB_Break';B.sty…
117className=this.IsDisabled?'MN_Item_Disabled':'MN_Item';if (!this.IsDisabled){FCKTools.AddEventList…
[all …]
/plugin/fckg/fckeditor/editor/skins/default/
H A Dfck_dialog_ie6.js34 switch ( child.className )
/plugin/fckg/fckeditor/editor/skins/silver/
H A Dfck_dialog_ie6.js34 switch ( child.className )
/plugin/fckg/scripts/
H A Dvki_kb.js1047 … && (ex.className.indexOf("keyboardInput") > -1) || (ex.className.indexOf("wiki__text") > -1))
1073 if (self.VKI_isIE) this.className += " hover";
1077 if (self.VKI_isIE) this.className = this.className.replace(/ ?(hover|pressed) ?/g, "");
1085 if (self.VKI_isIE) this.className = this.className.replace(/ ?pressed ?/g, "");
1124 li[x].className = "selected";
1126 } else li[x].className = "";
1168 … self.VKI_keyboard.className = self.VKI_keyboard.className.replace(/ ?keyboardInputSize\d ?/, "");
1303 this.className += " dead";
1340 var className = [];
1346 td.className = className.join(" ");
[all …]
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DDocParser.php933 $pos = strpos($className, '\\');
934 $alias = (false === $pos) ? $className : substr($className, 0, $pos);
941 … if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) {
942 $className = $ns.'\\'.$className;
951 $className = (false !== $pos)
960 … if (class_exists($ns.'\\'.$className) || interface_exists($ns.'\\'.$className)) {
961 $className = $ns.'\\'.$className;
969 $identifier = $className . '::' . $const;
1000 $className = $this->lexer->token['value'];
1008 $className .= '\\' . $this->lexer->token['value'];
[all …]
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/Exception/
H A DInvalidArgumentException.php17 public static function fromNonExistingClass(string $className) : self argument
19 if (interface_exists($className)) {
20 …w self(sprintf('The provided type "%s" is an interface, and can not be instantiated', $className));
23 if (PHP_VERSION_ID >= 50400 && trait_exists($className)) {
24 …rn new self(sprintf('The provided type "%s" is a trait, and can not be instantiated', $className));
27 return new self(sprintf('The provided class "%s" does not exist', $className));
/plugin/findologicxmlexport/vendor/doctrine/instantiator/src/Doctrine/Instantiator/
H A DInstantiator.php47 public function instantiate($className) argument
49 if (isset(self::$cachedCloneables[$className])) {
50 return clone self::$cachedCloneables[$className];
53 if (isset(self::$cachedInstantiators[$className])) {
59 return $this->buildAndCacheFromFactory($className);
69 $factory = self::$cachedInstantiators[$className] = $this->buildFactory($className);
98 strlen($className),
99 $className
110 * @param string $className
117 if (! class_exists($className)) {
[all …]
H A DInstantiatorInterface.php13 * @param string $className
19 public function instantiate($className); argument
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
H A DAbstractLexer.php282 $className = get_class($this);
283 $reflClass = new \ReflectionClass($className);
288 return $className . '::' . $name;
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DLlk.php101 * @param string $className Parser classname.
104 public static function save(Parser $parser, $className) argument
230 'class ' . $className . ' extends \Hoa\Compiler\Llk\Parser' . "\n" .
/plugin/findologicxmlexport/vendor/hoa/stream/Wrapper/
H A DWrapper.php55 * @param string $className Class name which implements the protocol.
62 public static function register($protocol, $className, $flags = 0) argument
72 if (false === class_exists($className)) {
77 [$className, $protocol]
81 return stream_wrapper_register($protocol, $className, $flags);
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMetadataFactory.php69 public function getMetadataForClass(string $className) argument
71 if (isset($this->loadedMetadata[$className])) {
72 return $this->filterNullMetadata($this->loadedMetadata[$className]);
76 foreach ($this->getClassHierarchy($className) as $class) {
124 $metadata = new NullMetadata($className);
127 return $this->filterNullMetadata($this->loadedMetadata[$className] = $metadata);
H A DMetadataFactoryInterface.php28 public function getMetadataForClass(string $className); argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DAbstractDoctrineTypeDriver.php127 protected function tryLoadingDoctrineMetadata(string $className): ?DoctrineClassMetadata argument
129 if (!$manager = $this->registry->getManagerForClass($className)) {
133 if ($manager->getMetadataFactory()->isTransient($className)) {
137 return $manager->getClassMetadata($className);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DStaticPropertyMetadata.php20 … public function __construct(string $className, string $fieldName, $fieldValue, array $groups = []) argument
22 $this->class = $className;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
H A DDoctrineProxySubscriberTest.php54 public function getMetadataForClass($className) argument
/plugin/findologicxmlexport/vendor/phpdocumentor/type-resolver/src/
H A DTypeResolver.php249 $className = $this->keywords[strtolower($type)];
251 return new $className();
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/
H A DThrowablePatch.php60 $className = $node->getParentClass();
61 if ($className !== 'stdClass') {
65 $className
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Doubler/Generator/
H A DClassMirror.php221 if (null !== $className = $this->getParameterClassName($parameter)) {
222 return $className;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Exception/Doubler/
H A DMethodNotExtendableException.php9 private $className; variable in Prophecy\\Exception\\Doubler\\MethodNotExtendableException
13 * @param string $className
16 public function __construct($message, $className, $methodName) argument
21 $this->className = $className;
38 return $this->className;
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DFile.php584 foreach ($classes as $className => $class) {
585 $this->classes[$className] = [
586 'className' => $className,
598 $this->startLines[$class['startLine']] = &$this->classes[$className];
599 $this->endLines[$class['endLine']] = &$this->classes[$className];
602 …$this->classes[$className]['methods'][$methodName] = $this->newMethod($methodName, $method, $link);
604 … $this->startLines[$method['startLine']] = &$this->classes[$className]['methods'][$methodName];
605 … $this->endLines[$method['endLine']] = &$this->classes[$className]['methods'][$methodName];
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/
H A DClover.php65 foreach ($classes as $className => $class) {
107 $xmlClass->setAttribute('name', $className);
H A DCrap4j.php81 foreach ($classes as $className => $class) {
100 $methodNode->appendChild($document->createElement('className', $className));

12345678910>>...23