Home
last modified time | relevance | path

Searched refs:prop (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php90 $prop->setParts([
103 $prop->setParts([
119 $prop->setParts([
131 $prop->setParts([
144 $prop->setValue(
157 $prop->setValue(
170 $prop->setValue(
185 $dt = $prop->getDateTime();
230 $prop = $vcard->BDAY;
265 'node' => $prop,
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php91 $prop->setParts(array(
107 $prop->setParts(array(
119 $prop->setParts(array(
132 $prop->setValue(
145 $prop->setValue(
160 $dt = $prop->getDateTime();
184 $dt = $prop->getDateTime();
205 $prop = $vcard->BDAY;
207 $dt = $prop->getDateTime();
240 'node' => $prop,
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php91 $prop->setParts(array(
107 $prop->setParts(array(
119 $prop->setParts(array(
132 $prop->setValue(
145 $prop->setValue(
160 $dt = $prop->getDateTime();
184 $dt = $prop->getDateTime();
205 $prop = $vcard->BDAY;
207 $dt = $prop->getDateTime();
240 'node' => $prop,
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php91 $prop->setParts(array(
107 $prop->setParts(array(
119 $prop->setParts(array(
132 $prop->setValue(
145 $prop->setValue(
160 $dt = $prop->getDateTime();
184 $dt = $prop->getDateTime();
205 $prop = $vcard->BDAY;
207 $dt = $prop->getDateTime();
240 'node' => $prop,
[all …]
/plugin/pycode/
H A Dscript.js156 jQuery("#pycode__src-url").prop("disabled", false);
194 .prop("disabled", false)
215 .prop("disabled", false)
236 .prop("disabled", false)
255 jQuery("#pycode__title").prop("disabled", false);
274 .prop("disabled", false)
302 jQuery(obj+" input:checkbox").prop("checked", false);
303 jQuery(obj+" input:radio").prop("disabled", true);
304 jQuery(obj+" input:text").prop("disabled", true);
374 if (jQuery("#pycode__opt-lns").prop("checked") == true) {
[all …]
/plugin/twcheckliste/
H A Dscript.js10 if (this.prop('checked') == true){
11 this.prop('checked', false);
13 this.prop('checked', true);
34 var tmpElement = jQuery(document.createElement("input")).prop({
46 if (jQuery(this).prop("checked") == true) {
47 jQuery("." + jQuery(this).prop("id")).prop("checked", "true");
49 jQuery("." + jQuery(this).prop("id")).removeAttr("checked");
138 if (jQuery(this).prop("checked") == true) {
139 jQuery("." + jQuery(this).prop("id")).prop("checked", "true");
148 if (jQuery(this).prop("checked") == true) {
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Schedule/
H A DPluginPropertiesTest.php41 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}schedule-outbox-URL'];
42 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
43 $this->assertEquals('calendars/user1/outbox/',$prop->getHref());
46 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}schedule-inbox-URL'];
47 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
48 $this->assertEquals('calendars/user1/inbox/',$prop->getHref());
51 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'];
52 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
56 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}calendar-user-type'];
57 $this->assertEquals('INDIVIDUAL',$prop);
[all …]
H A DPluginPropertiesWithSharedCalendarTest.php51 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}schedule-outbox-URL'];
52 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
53 $this->assertEquals('calendars/user1/outbox/',$prop->getHref());
56 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}schedule-inbox-URL'];
57 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
58 $this->assertEquals('calendars/user1/inbox/',$prop->getHref());
61 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}calendar-user-address-set'];
62 $this->assertTrue($prop instanceof DAV\Xml\Property\Href);
66 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}calendar-user-type'];
67 $this->assertEquals('INDIVIDUAL',$prop);
[all …]
/plugin/virtualkeyboard/vk/extensions/
H A Dhelpers.js32 return (typeof prop == 'function');
42 return (typeof prop == 'string');
52 return (typeof prop == 'number');
62 return isNumber(prop)&&!isNaN(prop)&&isFinite(prop);
72 return (prop instanceof Array);
82 return (prop instanceof RegExp);
102 return isNumeric(prop)||isString(prop);
113 if (isRegExp(prop) && new RegExp("").toString() == prop.toString()) return true;
114 if (isString(prop) || isNumber(prop)) return !prop;
115 if (Boolean(prop)&&false != prop) {
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/Xml/Property/
H A DSupportedPrivilegeSetTest.php13 $prop = new SupportedPrivilegeSet([
16 $this->assertInstanceOf('Sabre\DAVACL\Xml\Property\SupportedPrivilegeSet', $prop);
26 $prop = new SupportedPrivilegeSet([
30 $xml = (new DAV\Server())->xml->write('{DAV:}supported-privilege-set', $prop);
48 $prop = new SupportedPrivilegeSet([
62 $xml = (new DAV\Server())->xml->write('{DAV:}supported-privilege-set', $prop);
89 $prop = new SupportedPrivilegeSet([
117 $this->assertEquals($expected, $prop->toHtml($html));
H A DAclRestrictionsTest.php12 $prop = new AclRestrictions();
13 $this->assertInstanceOf('Sabre\DAVACL\Xml\Property\AclRestrictions', $prop);
19 $prop = new AclRestrictions();
20 $xml = (new DAV\Server())->xml->write('{DAV:}root', $prop);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
H A DDocumentTest.php30 $prop = $vcal->createProperty('X-PROP', '1234256', ['X-PARAM' => '3']);
31 $this->assertInstanceOf('Sabre\VObject\Property', $prop);
33 $event->add($prop);
52 $prop = $vcal->create('CALSCALE');
53 $this->assertInstanceOf('Sabre\VObject\Property\Text', $prop);
73 $prop = $vcal->createProperty('X-PROP', '1234256', ['X-PARAM' => '3']);
75 $event->add($prop);
77 $this->assertEquals($event, $prop->parent);
81 $this->assertNull($prop->parent);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DCssManager.php544 $prop = preg_split('/\s+/', trim($bd));
549 $prop_count = count($prop);
553 if (in_array($prop[0], $this->mpdf->borderstyles) || $prop[0] === 'none' || $prop[0] === 'hidden') {
554 $s = $prop[0];
556 elseif (is_array($this->colorConverter->convert($prop[0], $this->mpdf->PDFAXwarnings))) {
557 $c = $prop[0];
560 $w = $prop[0];
565 if (in_array($prop[
603 fixCSS($prop) global() argument
1442 setBorderDominance($prop, $val) global() argument
[all...]
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/fixtures/f003/
H A DFoo.php8 private $prop; variable in DeepCopy\\f003\\Foo
17 return $this->prop;
20 public function setProp($prop) argument
22 $this->prop = $prop;
/plugin/farmsync/script/
H A Dform.js16 var checked = jQuery('input[name="farmsync[struct]"]').prop('checked');
17 jQuery('div.structsync input[type=checkbox]').prop('checked', checked);
26 if ($this.prop('checked')) {
28 jQuery('div.structsync input[type=checkbox]').prop('checked', 'checked');
31 jQuery('div.structsync input[type=checkbox]').prop('checked', '');
/plugin/batchedit/
H A Dinterface.js62 jQuery('.be-file input').prop('checked', this.checked);
66 jQuery('.be-match input[id^=' + escapeId(this.id) + ']').prop('checked', this.checked);
74 jQuery('#' + pageId).prop('checked', pageMatches.reduce(function(checked, input) {
125 $searchInputs.prop('placeholder', getLang('hnt_' + searchMode + 'search'));
126 $replaceInputs.prop('placeholder', getLang('hnt_' + replaceMode + 'replace'));
130 updatePlaceholders(this.value, $advancedRegexp.prop('checked'));
186 if (!$multiline.prop('checked')) {
232 $contextChars.prop('disabled', !this.checked);
233 $contextLines.prop('disabled', !this.checked);
250 $searchMax.prop('disable
[all...]
/plugin/webdav/_test/
H A Dwebdav.test.php71 '/d:multistatus/d:response/d:propstat/d:prop/d:creationdate',
72 '/d:multistatus/d:response/d:propstat/d:prop/d:getlastmodified',
73 '/d:multistatus/d:response/d:propstat/d:prop/d:getcontentlength',
74 '/d:multistatus/d:response/d:propstat/d:prop/d:displayname',
75 '/d:multistatus/d:response/d:propstat/d:prop/dw:id',
76 '/d:multistatus/d:response/d:propstat/d:prop/dw:title',
77 '/d:multistatus/d:response/d:propstat/d:prop/dw:description',
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Subscriptions/
H A DSubscription.php155 foreach ($properties as $prop) {
157 switch ($prop) {
159 $r[$prop] = new Href($this->subscriptionInfo['source']);
162 if (array_key_exists($prop, $this->subscriptionInfo)) {
163 $r[$prop] = $this->subscriptionInfo[$prop];
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/fixtures/f002/
H A DA.php15 public function setProp1($prop) argument
17 $this->prop1 = $prop;
27 public function setProp2($prop) argument
29 $this->prop2 = $prop;
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
H A DJson.php72 foreach ($this->input[1] as $prop) {
73 $this->root->add($this->parseProperty($prop));
156 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
157 $prop->setJsonValue($value);
170 if ($defaultPropertyClass !== get_class($prop)) {
171 $prop['VALUE'] = $valueType;
174 return $prop;
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
H A DJson.php72 foreach($this->input[1] as $prop) {
73 $this->root->add($this->parseProperty($prop));
154 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
155 $prop->setJsonValue($value);
168 if ($defaultPropertyClass !== get_class($prop)) {
169 $prop["VALUE"] = $valueType;
172 return $prop;
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DJson.php72 foreach ($this->input[1] as $prop) {
73 $this->root->add($this->parseProperty($prop));
156 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
157 $prop->setJsonValue($value);
170 if ($defaultPropertyClass !== get_class($prop)) {
171 $prop["VALUE"] = $valueType;
174 return $prop;
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
H A DJson.php72 foreach($this->input[1] as $prop) {
73 $this->root->add($this->parseProperty($prop));
154 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
155 $prop->setJsonValue($value);
168 if ($defaultPropertyClass !== get_class($prop)) {
169 $prop["VALUE"] = $valueType;
172 return $prop;
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DJson.php72 foreach($this->input[1] as $prop) {
73 $this->root->add($this->parseProperty($prop));
154 $prop = $this->root->createProperty($propertyName, null, $parameters, $valueType);
155 $prop->setJsonValue($value);
168 if ($defaultPropertyClass !== get_class($prop)) {
169 $prop["VALUE"] = $valueType;
172 return $prop;
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Subscriptions/
H A DSubscription.php153 foreach ($properties as $prop) {
155 switch ($prop) {
157 $r[$prop] = new Href($this->subscriptionInfo['source'], false);
160 if (array_key_exists($prop, $this->subscriptionInfo)) {
161 $r[$prop] = $this->subscriptionInfo[$prop];

12345678910>>...12