Home
last modified time | relevance | path

Searched refs:obj (Results 26 – 50 of 405) sorted by relevance

12345678910>>...17

/plugin/jplayer/vendor/happyworm/jplayer/lib/
H A Dpopcorn.ie8.js194 var obj = this,
197 if ( !obj || !fn ) {
205 for ( key in obj ) {
207 fn.call( context, obj[ key ], key, obj );
210 return obj;
362 return function (obj) { argument
363 if (typeof obj !== 'object' && (typeof obj !== 'function' || obj === null)) {
369 for (prop in obj) {
409 d.value = obj.value;
432 if (typeof obj !== "object" || obj === null)
[all …]
H A Dpopcorn.js60 return Object.keys ? Object.keys( obj ) : (function( obj ) { argument
70 })( obj );
411 fn.call( context, obj[ key ], key, obj );
413 return obj;
418 fn.call( context, obj[ key ], key, obj );
421 return obj;
1209 return obj[ key ] && obj[ key ] === value;
1477 return obj;
1513 return obj;
1552 return obj.data.history[ obj.data.history.length - 1 ];
[all …]
/plugin/judge/helper/
H A Djdatetime.class.php99 $obj->setTimezone(new DateTimeZone($timezone));
102 return $obj->format($format);
115 $intactValues[$k] = $obj->format($v);
121 … list($year, $month, $day) = array($obj->format('Y'), $obj->format('n'), $obj->format('j'));
143 $v = self::getDayNames($obj->format('l'));
208 … $v .= $obj->format('H').':'.$obj->format('i').':'.$obj->format('s').$obj->format('P');
212 …$v .= ' '.$jyear.' '.$obj->format('H').':'.$obj->format('i').':'.$obj->format('s').' '.$obj->forma…
216 $v = $obj->format('e');
219 $v = $obj->format('T');
357 $obj = new DateTime($date);
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DICSExportPluginTest.php69 $this->assertEquals(1,count($obj->VERSION));
70 $this->assertEquals(1,count($obj->CALSCALE));
71 $this->assertEquals(1,count($obj->PRODID));
73 $this->assertEquals(1,count($obj->VTIMEZONE));
74 $this->assertEquals(1,count($obj->VEVENT));
120 $this->assertEquals(1,count($obj->VERSION));
121 $this->assertEquals(1,count($obj->CALSCALE));
122 $this->assertEquals(1,count($obj->PRODID));
125 $this->assertEquals(1,count($obj->VEVENT));
229 $this->assertEquals(1,count($obj->PRODID));
[all …]
/plugin/photogallery/phpThumb/demo/
H A Djavascript_api.js115 var x = obj.layers;
212 var x, obj;
226 var y, obj;
240 var x, obj;
251 var y, obj;
264 obj.top = y;
265 obj.left = x;
268 obj.pixelTop = y;
269 obj.pixelLeft = x;
271 obj.top = y + 'px';
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Framework/
H A DAssertTest.php202 $obj = new \stdClass;
203 $reference = &$obj;
204 $array = ['a' => $obj];
212 $obj = new \stdClass;
213 $reference = &$obj;
214 $array = ['a' => $obj];
1939 $obj = new ClassWithNonPublicAttributes;
2645 $obj = new stdClass;
2646 $obj->foo = 'bar';
2661 $obj = new stdClass;
[all …]
/plugin/bez/mdl/
H A DTask_commentFactory.php89 public function delete(Entity $obj) { argument
91 if ($obj->task->thread_id != '' && $obj->task->type != 'preventive' && $obj->task->thread->state == 'closed') {
98 parent::delete($obj);
99 $obj->task->update_last_activity();
101 if ($this->count(array('task_id' => $obj->task_id, 'author' => $obj->author)) == 0) {
102 $obj->task->remove_participant_flags($obj
[all...]
H A DThread_commentFactory.php90 public function delete(Entity $obj) { argument
92 if ($obj->task_count > 0) {
99 parent::delete($obj);
100 $obj->thread->update_last_activity();
102 if ($this->count(array('thread_id' => $obj->thread_id, 'author' => $obj->author)) == 0) {
103 $obj->thread->remove_participant_flags($obj->author, array('commentator'));
/plugin/amcharts/assets/amcharts/plugins/responsive/
H A Dresponsive.js1011 var isNullOrUndefined = function( obj ) { argument
1012 return ( obj === null ) || ( obj === undefined );
1015 var isArray = function( obj ) { argument
1016 …return ( !isNullOrUndefined( obj ) && Object.prototype.toString.call( obj ) === '[object Array]' );
1019 var isObject = function( obj ) { argument
1020 …return ( obj !== null && typeof obj === 'object' ); //the null check is necessary - recall that ty…
1031 var cloneWithoutPrototypes = function( obj ) { argument
1032 if ( !isObject( obj ) ) {
1033 return obj;
1036 if ( isArray( obj ) ) {
[all …]
/plugin/linkmanager/
H A Dscript.js17 treeattach: function(obj){ argument
18 if(!obj) return;
41 selectorattach: function(obj){ argument
42 if(!obj) return;
76 attachoptions: function(obj){ argument
77 if(!obj) return;
96 obj.appendChild(kobox);
97 obj.appendChild(kolbl);
98 obj.appendChild(kobr);
141 var obj = $('linkpage__content');
[all …]
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_drag_timeline.js395 function isArray(obj){ argument
400 return (obj && obj.length !== undefined && obj.pop && obj.push);
406 return obj && typeof obj === "object"
412 return obj && typeof obj === "object"
418 return obj && typeof obj === "object"
422 function isDate(obj) { argument
423 if (obj && typeof obj === "object") {
424 return !!(obj.getFullYear && obj.getMonth && obj.getDate);
431 return isDate(obj) && !isNaN(obj.getTime());
536 for (key in obj) {
[all …]
H A Ddhtmlxgantt_click_drag.js615 function isArray(obj){ argument
620 return (obj && obj.length !== undefined && obj.pop && obj.push);
626 return obj && typeof obj === "object"
632 return obj && typeof obj === "object"
638 return obj && typeof obj === "object"
642 function isDate(obj) { argument
643 if (obj && typeof obj === "object") {
644 return !!(obj.getFullYear && obj.getMonth && obj.getDate);
651 return isDate(obj) && !isNaN(obj.getTime());
756 for (key in obj) {
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/Subscriber/
H A DDoctrineProxySubscriberTest.php33 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => get_class($obj), 'p…
36 self::assertEquals(['name' => get_parent_class($obj), 'params' => []], $event->getType());
37 self::assertTrue($obj->__isInitialized());
42 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => 'FakedName', 'param…
46 self::assertFalse($obj->__isInitialized());
64 self::assertFalse($obj->__isInitialized());
71 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => 'FakedName', 'param…
75 self::assertFalse($obj->__isInitialized());
90 self::assertFalse($obj->__isInitialized());
93 …$event = $this->createEvent($obj = new SimpleObjectProxy('a', 'b'), ['name' => 'FakeName', 'params…
[all …]
/plugin/scrape/HTMLPurifier/
H A DPrinter.php
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/
H A Dattribute.test4 {{ attribute(obj, method) }}
6 {{ attribute(obj, "bar", ["a", "b"]) }}
7 {{ attribute(obj, "bar", arguments) }}
8 {{ attribute(obj, method) is defined ? 'ok' : 'ko' }}
9 {{ attribute(obj, nonmethod) is defined ? 'ok' : 'ko' }}
11 return ['obj' => new TwigTestFoo(), 'method' => 'foo', 'array' => ['foo' => 'bar'], 'item' => 'foo'…
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Image/
H A DWmf.php118 $obj = $this->_GetGDIObject($idx);
119 switch ($obj['type']) {
122 if ($obj['style'] == 1) {
125 $wmfdata .= $this->mpdf->SetFColor($this->colorConverter->convert('rgb(' . $obj['r'] . ',' . $obj['g'] . ',' . $obj['b'] . ')', $this->mpdf->PDFAXwarnings), true) . "\n";
132 switch ($obj['style']) {
152 $wmfdata .= $this->mpdf->SetDColor($this->colorConverter->convert('rgb(' . $obj['r'] . ',' . $obj['g'] . ',' . $obj['
265 _AddGDIObject($obj) global() argument
[all...]
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
H A DCalendar.php109 $obj = $this->caldavBackend->getCalendarObject($this->calendarInfo['id'], $name);
111 if (!$obj) throw new DAV\Exception\NotFound('Calendar object not found');
113 $obj['acl'] = $this->getChildACL();
115 return new CalendarObject($this->caldavBackend, $this->calendarInfo, $obj);
128 foreach ($objs as $obj) {
129 $obj['acl'] = $this->getChildACL();
130 $children[] = new CalendarObject($this->caldavBackend, $this->calendarInfo, $obj);
149 foreach ($objs as $obj) {
150 $obj['acl'] = $this->getChildACL();
165 $obj = $this->caldavBackend->getCalendarObject($this->calendarInfo['id'], $name);
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DCalendar.php107 $obj = $this->caldavBackend->getCalendarObject($this->calendarInfo['id'], $name);
109 if (!$obj) throw new DAV\Exception\NotFound('Calendar object not found');
111 $obj['acl'] = $this->getChildACL();
113 return new CalendarObject($this->caldavBackend, $this->calendarInfo, $obj);
126 foreach ($objs as $obj) {
127 $obj['acl'] = $this->getChildACL();
128 $children[] = new CalendarObject($this->caldavBackend, $this->calendarInfo, $obj);
147 foreach ($objs as $obj) {
148 $obj['acl'] = $this->getChildACL();
163 $obj = $this->caldavBackend->getCalendarObject($this->calendarInfo['id'], $name);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Sandbox/
H A DSecurityPolicy.php89 public function checkMethodAllowed($obj, $method) argument
91 if ($obj instanceof \Twig_TemplateInterface || $obj instanceof Markup) {
98 if ($obj instanceof $class) {
106 $class = \get_class($obj);
111 public function checkPropertyAllowed($obj, $property) argument
115 if ($obj instanceof $class) {
123 $class = \get_class($obj);
/plugin/openid/Auth/Yadis/
H A DManager.php122 $obj = $this->newObject($data);
124 if (!$obj) {
129 $obj->$k = $data[$k];
132 return $obj;
171 * @param object $obj
174 function toSession($obj) argument
177 foreach ($obj as $k => $v) {
196 * @param object $obj
199 function prepareForSave($obj) argument
220 foreach ($obj as $k => $v) {
[all …]
/plugin/projects/lib/
H A Dtools.php5 function wiki_debug($name, $obj = "", $hsc = false) { argument
6 if (is_scalar($obj)) {
8 $obj = htmlspecialchars($obj);
9 echo "<p>" . "$name = $obj", "</p>";
12 $obj = print_r($obj, true);
14 $obj = htmlspecialchars($obj);
15 echo "<pre> $name = ", $obj, "</pre>";
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DAddressBook.php67 $obj = $this->carddavBackend->getCard($this->addressBookInfo['id'], $name);
68 if (!$obj) throw new DAV\Exception\NotFound('Card not found');
69 return new Card($this->carddavBackend, $this->addressBookInfo, $obj);
82 foreach ($objs as $obj) {
83 $obj['acl'] = $this->getChildACL();
84 $children[] = new Card($this->carddavBackend, $this->addressBookInfo, $obj);
103 foreach ($objs as $obj) {
104 $obj['acl'] = $this->getChildACL();
105 $children[] = new Card($this->carddavBackend, $this->addressBookInfo, $obj);
/plugin/issuetracker/
H A DxsEditor.js2 function resizeBoxId(obj,size) {
3 var arows = document.getElementById(obj).rows;
4 document.getElementById(obj).rows = arows + size;
6 function doHLine(tag1,obj) argument
7 { textarea = document.getElementById(obj);
31 function doLink(tag1,tag2,obj) argument
33 textarea = document.getElementById(obj);
62 function doAddTags(tag1,tag2,obj) argument
63 { textarea = document.getElementById(obj);
88 function doList(tag1,tag2,obj) argument
[all …]
/plugin/xcom/
H A Dscript.js215 var r = obj[i][j];
233 function xcom_hash(obj) { argument
235 for(var i in obj) {
241 function xcom_onedim(obj) { argument
243 for(var i in obj) {
692 var t = typeof (obj);
695 if (t == "string") obj = '"'+obj+'"';
696 return String(obj);
700 var n, v, json = [], arr = (obj && obj.constructor == Array);
701 for (n in obj) {
[all …]
/plugin/davcal/vendor/sabre/dav/lib/CardDAV/
H A DAddressBook.php65 $obj = $this->carddavBackend->getCard($this->addressBookInfo['id'], $name);
66 if (!$obj) throw new DAV\Exception\NotFound('Card not found');
67 return new Card($this->carddavBackend, $this->addressBookInfo, $obj);
80 foreach ($objs as $obj) {
81 $obj['acl'] = $this->getChildACL();
82 $children[] = new Card($this->carddavBackend, $this->addressBookInfo, $obj);
101 foreach ($objs as $obj) {
102 $obj['acl'] = $this->getChildACL();
103 $children[] = new Card($this->carddavBackend, $this->addressBookInfo, $obj);

12345678910>>...17