Home
last modified time | relevance | path

Searched refs:className (Results 26 – 50 of 555) sorted by relevance

12345678910>>...23

/plugin/highlightjs/highlight/languages/
H A Dbash.js20 className: 'shebang',
27 className: 'test_condition',
38 className: 'test_condition',
48 className: 'variable',
53 className: 'variable',
59 className: 'string',
66 className: 'string',
75 className: 'comment',
H A Dsmalltalk.js17 className: 'class',
22 className: 'symbol',
28 className: 'comment',
33 className: 'method',
37 className: 'char',
41 className: 'localvars',
46 className: 'array',
H A Dphp.js17 className: 'comment',
22 className: 'phpdoc',
28 className: 'string',
34 className: 'string',
41 className: 'variable',
45 className: 'preprocessor',
50 className: 'preprocessor',
H A Djava.js14 className: 'class',
22 className: 'inheritance',
29 className: 'title',
33 className: 'params',
43 className: 'javadoc',
49 className: 'javadoctag',
54 className: 'annotation',
H A Davrasm.js55 className: 'comment',
61 className: 'string',
72 className: 'label',
76 className: 'preprocessor',
80 className: 'preprocessor',
84 className: 'localvars',
H A Dsql.js22 className: 'comment',
26 className: 'string',
32 className: 'squote',
36 className: 'string',
42 className: 'dquote',
46 className: 'string',
H A Dprofile.js17 className: 'summary',
23 className: 'header',
30 className: 'function',
36 className: 'title',
40 className: 'builtin',
46 className: 'filename',
H A Dini.js14 className: 'comment',
18 className: 'title',
22 className: 'setting',
27 className: 'value',
36 className: 'number',
/plugin/wysiwyg/fckeditor/editor/css/behaviors/
H A Dshowtableborders.htc14 if ( !oClassRegex.test( this.className ) )
15 this.className += ' FCK__ShowTableBorders' ;
19 if ( oClassRegex.test( this.className ) )
21 this.className = this.className.replace( oClassRegex, '' ) ;
22 if ( this.className.length == 0 )
23 this.removeAttribute( 'className', 0 ) ;
30 if ( event.propertyName == 'border' || event.propertyName == 'className' )
/plugin/fckg/fckeditor/editor/css/behaviors/
H A Dshowtableborders.htc14 if ( !oClassRegex.test( this.className ) )
15 this.className += ' FCK__ShowTableBorders' ;
19 if ( oClassRegex.test( this.className ) )
21 this.className = this.className.replace( oClassRegex, '' ) ;
22 if ( this.className.length == 0 )
23 this.removeAttribute( 'className', 0 ) ;
30 if ( event.propertyName == 'border' || event.propertyName == 'className' )
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
H A Dfckjustifycommands.js71 var className = classes[i] ;
72 if ( className && className.length > 0 )
73 names.push( className ) ;
115 var className = block.className.replace( FCKJustifyCommand._GetClassNameRegex(), '' ) ;
120 if ( className.length > 0 )
121 className += ' ' ;
122 block.className = className + cssClassName ;
124 else if ( className.length == 0 )
/plugin/widearea/widearea/
H A Dwidearea.js74 wideAreaWrapper.className = 'widearea-wrapper';
75 wideAreaIcons.className = 'widearea-icons';
87 … currentTextArea.className = (currentTextArea.className + " widearea").replace(/^\s+|\s+$/g, "");
225 …currentTextArea.className = ('widearea-fullscreen ' + targetTextarea.className).replace(/^\s+|\s…
226 …targetTextarea.className = ('widearea-fullscreened ' + targetTextarea.className).replace(/^\s+|\s…
229 controlPanel.className = 'widearea-controlPanel';
234 closeIcon.className = 'widearea-icon close';
304 if(/dark/gi.test(overlayLayer.className)) {
305 overlayLayer.className = overlayLayer.className.replace('dark', 'light');
307 overlayLayer.className = overlayLayer.className.replace('light', 'dark');
[all …]
/plugin/swiftmail/Swift/
H A DCacheFactory.php24 protected static $className = "Swift_Cache_Memory"; variable in Swift_CacheFactory
34 self::$className = $name;
42 $className = self::$className;
43 Swift_ClassLoader::load($className);
44 $instance = new $className();
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckspecialcombo.js42 this._PanelBox.className = 'SC_Panel' ;
61 this.className += ' SC_ItemOver' ;
66 this.className = this.originalClass ;
71 this.className = this.originalClass ;
236 oField.className = 'SC_Field' ;
245 oField.className = 'TB_Button_Off' ;
293 this.className = 'TB_Button_On_Over';
296 this.className = 'TB_Button_On_Over';
310 this.className = 'TB_Button_Off';
313 this.className = 'TB_Button_Off';
[all …]
/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/aimg/
H A Dscript.js153 newLinkNode.className = "fn-view-image-link";
394 if (elm.className)
574 elm.className = elm.className.replace((active ? (/-inactive/) : (/-active/)),
723 if ((/fn-area/).test(node.className))
823 newArea.className = 'fn-area';
831 newNote.className = 'fn-note';
836 newTitle.className = 'fn-note-title';
840 newContent.className = 'fn-note-content';
844 newAuthor.className = 'fn-note-author';
848 newUserid.className = 'fn-note-userid';
[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/tindexmenu/
H A Dnojsindex-full.js46 if(sublists.length && listitem.className=='open'){
48 listitem.className='closed';
54 if(sublists.length && listitem.className=='closed'){
56 listitem.className='open';
69 ul.className = 'idx';
74 listitem.className='open';
80 if (listitem.className!='open') {
82 listitem.className='open';
H A Dnojsindex.js1className=="open"){sublists[0].style.display="none";listitem.className="closed";e.preventDefault()…
/plugin/freechat/phpfreechat/lib/pear/PHPUnit/GUI/
H A DSetupDecorator.php128 foreach ($files as $className => $aFile) {
131 if (class_exists($className)) {
132 $suites[] =& new PHPUnit_TestSuite($className);
134 trigger_error("$className could not be found in $dir$aFile!");
184 $className = str_replace(DIRECTORY_SEPARATOR, '_', $tmp);
185 $className = basename($className, '.php');
187 $files[$className] = $filename;
/plugin/editsections2/
H A Dscript.js91 parent.className &&
147 if (!cursor.className) {
151 if (stopClassRegExp.test(cursor.className)) {
157 !/\b(?:editbutton_section)\b/.test(cursor.className)
159 cursor.className += ' section_highlight';
190 parent.className &&
191 /\b(?:editbutton_section)\b/.test(parent.className)
286 !cursor.className
292 /\b(?:secedit)\b/.test(cursor.className) &&
302 if (/\b(?:level\d)\b/.test(cursor.className)) {
[all …]
/plugin/virtualkeyboard/vk/
H A Dvirtualkeyboard.js384 …s1.className = s2.className = s1.className.replace (new RegExp("\\s*\\b"+cssClasses['buttonDown']+…
387 s1.className = s2.className = s1.className+" "+cssClasses['buttonDown'];
662 … cp.className = cp.className.replace (new RegExp("\\s*\\b"+cssClasses['buttonDown']+"\\b","g"),'');
667 … el.className = el.className.replace(new RegExp("\\s*\\b"+cssClasses['buttonDown']+"\\b","g"),"");
693 …nodes.desk.className = nodes.desk.className.replace(new RegExp("\\s*\\b"+cssClasses['capslock']+"\…
720 … el.className = el.className.replace(new RegExp("\\s*\\b"+cssClasses['buttonDown']+"\\b","g"),"");
749 … cp.className = cp.className.replace (new RegExp("\\s*\\b"+cssClasses['buttonDown']+"\\b","g"),'');
780 …nodes.desk.className = nodes.desk.className.replace(new RegExp("\\s*\\b"+cssClasses['capslock']+"\…
812 s1.className = s2.className = cn;
814 el.className = cn;
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityNotAllowedMethodError.php21 private $className; variable in Twig\\Sandbox\\SecurityNotAllowedMethodError
24 …public function __construct($message, $className, $methodName, $lineno = -1, $filename = null, \Ex… argument
27 $this->className = $className;
33 return $this->className;
H A DSecurityNotAllowedPropertyError.php21 private $className; variable in Twig\\Sandbox\\SecurityNotAllowedPropertyError
24 …public function __construct($message, $className, $propertyName, $lineno = -1, $filename = null, \… argument
27 $this->className = $className;
33 return $this->className;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ToolResults/
H A DTestCaseReference.php25 public $className; variable in Google\\Service\\ToolResults\\TestCaseReference
38 public function setClassName($className) argument
40 $this->className = $className;
47 return $this->className;

12345678910>>...23