Home
last modified time | relevance | path

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

12345678910>>...16

/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/VCard/
DDateAndOrTimeTest.php16 $prop = $vcard->createProperty('BDAY', $input);
18 $this->assertEquals([$output], $prop->getJsonValue());
89 $prop = $vcard->createProperty('BDAY');
90 $prop->setParts([
94 $this->assertEquals('20140402T183700Z', $prop->getValue());
102 $prop = $vcard->createProperty('BDAY');
103 $prop->setParts([
107 $this->assertEquals('20140402T183700Z', $prop->getValue());
118 $prop = $vcard->createProperty('BDAY');
119 $prop->setParts([
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/VCard/
DDateAndOrTimeTest.php17 $prop = $vcard->createProperty('BDAY', $input);
19 $this->assertEquals(array($output), $prop->getJsonValue());
90 $prop = $vcard->createProperty('BDAY');
91 $prop->setParts(array(
95 $this->assertEquals('20140402T183700Z', $prop->getValue());
106 $prop = $vcard->createProperty('BDAY');
107 $prop->setParts(array(
118 $prop = $vcard->createProperty('BDAY');
119 $prop->setParts(array(
123 $this->assertEquals('20140402T183700Z', $prop->getValue());
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/VCard/
DDateAndOrTimeTest.php17 $prop = $vcard->createProperty('BDAY', $input);
19 $this->assertEquals(array($output), $prop->getJsonValue());
90 $prop = $vcard->createProperty('BDAY');
91 $prop->setParts(array(
95 $this->assertEquals('20140402T183700Z', $prop->getValue());
106 $prop = $vcard->createProperty('BDAY');
107 $prop->setParts(array(
118 $prop = $vcard->createProperty('BDAY');
119 $prop->setParts(array(
123 $this->assertEquals('20140402T183700Z', $prop->getValue());
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/VCard/
H A DDateAndOrTimeTest.php17 $prop = $vcard->createProperty('BDAY', $input);
19 $this->assertEquals(array($output), $prop->getJsonValue());
90 $prop = $vcard->createProperty('BDAY');
91 $prop->setParts(array(
95 $this->assertEquals('20140402T183700Z', $prop->getValue());
106 $prop = $vcard->createProperty('BDAY');
107 $prop->setParts(array(
118 $prop = $vcard->createProperty('BDAY');
119 $prop->setParts(array(
123 $this->assertEquals('20140402T183700Z', $prop->getValue());
[all …]
/plugin/pycode/
Dscript.js155 if (jQuery("#pycode__src-url").prop("disabled") == true) {
156 jQuery("#pycode__src-url").prop("disabled", false);
166 if (jQuery('#pycode__src-url').prop("disabled") == true) {
167 jQuery('#pycode__src-url').prop("disabled", false);
176 if (jQuery("#pycode__opt-lns").prop("checked") == true) {
177 jQuery(".pycode__embed-lns input:text").prop("disabled", false);
192 if (jQuery("#pycode__opt-def").prop("checked") == true) {
194 .prop("disabled", false)
203 if (jQuery("#pycode__opt-cls").prop("checked") == true) {
213 if (jQuery("#pycode__opt-cls").prop("checked") == true) {
[all …]
/plugin/twcheckliste/
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");
60 var tmpElement = jQuery(document.createElement("input")).prop({
74 var tmpElement = jQuery(document.createElement("input")).prop({
89 var tmpElement = jQuery(document.createElement("input")).prop({
[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);
53 …$this->assertEquals(array('mailto:user1.sabredav@sabredav.org','/principals/user1/'),$prop->getHre…
56 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}calendar-user-type'];
[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);
63 …$this->assertEquals(array('mailto:user1.sabredav@sabredav.org','/principals/user1/'),$prop->getHre…
66 $prop = $props[0][200]['{urn:ietf:params:xml:ns:caldav}calendar-user-type'];
[all …]
/plugin/virtualkeyboard/vk/extensions/
Dhelpers.js21 function isUndefined (prop /* :Object */) /* :Boolean */ { argument
22 return (typeof prop == 'undefined');
31 function isFunction (prop /* :Object */) /* :Boolean */ { argument
32 return (typeof prop == 'function');
41 function isString (prop /* :Object */) /* :Boolean */ { argument
42 return (typeof prop == 'string');
51 function isNumber (prop /* :Object */) /* :Boolean */ { argument
52 return (typeof prop == 'number');
61 function isNumeric (prop /* :Object */) /* :Boolean */ { argument
62 return isNumber(prop)&&!isNaN(prop)&&isFinite(prop);
[all …]
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dexpression.js30 pp.checkPropClash = function(prop, propHash) { argument
31 if (this.options.ecmaVersion >= 6 && (prop.computed || prop.method || prop.shorthand))
33 let {key} = prop, name
39 let {kind} = prop
474 let prop = this.startNode(), isGenerator, startPos, startLoc
476 prop.method = false
477 prop.shorthand = false
485 this.parsePropertyName(prop)
486 … this.parsePropertyValue(prop, isPattern, isGenerator, startPos, startLoc, refDestructuringErrors)
487 this.checkPropClash(prop, propHash)
[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));
/plugin/asciidocjs/node_modules/acorn/src/
Dexpression.js30 pp.checkPropClash = function(prop, propHash) { argument
31 if (this.options.ecmaVersion >= 6 && (prop.computed || prop.method || prop.shorthand))
33 let {key} = prop, name
39 let {kind} = prop
525 let prop = this.startNode(), isGenerator, isAsync, startPos, startLoc
527 prop.method = false
528 prop.shorthand = false
536 this.parsePropertyName(prop)
537 if (!isPattern && this.options.ecmaVersion >= 8 && !isGenerator && !prop.computed &&
538 prop.key.type === "Identifier" && prop.key.name === "async" && this.type !== tt.parenL &&
[all …]
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/
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/
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[1], $this->mpdf->borderstyles) || $prop[1] === 'none' || $prop[1] === 'hidden')…
566 $w = $prop[0];
567 $s = $prop[1];
[all …]
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dexpression.js361 let prop = this.startNode(), isGenerator, isAsync, start
364 prop.method = false
365 prop.shorthand = false
368 this.parsePropertyName(prop)
369 if (!prop.computed &&
370prop.key.type === "Identifier" && prop.key.name === "async" && this.tok.type !== tt.parenL &&
372 this.parsePropertyName(prop)
377 …if (isDummy(prop.key)) { if (isDummy(this.parseMaybeAssign())) this.next(); this.eat(tt.comma); co…
379 prop.kind = "init"
380 prop.value = this.parseMaybeAssign()
[all …]
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/fixtures/f003/
DFoo.php8 private $prop; variable in DeepCopy\\f003\\Foo
17 return $this->prop;
20 public function setProp($prop) argument
22 $this->prop = $prop;
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dexpression.js340 let prop = this.startNode(), isGenerator, start
343 prop.method = false
344 prop.shorthand = false
347 this.parsePropertyName(prop)
348 …if (isDummy(prop.key)) { if (isDummy(this.parseMaybeAssign())) this.next(); this.eat(tt.comma); co…
350 prop.kind = "init"
351 prop.value = this.parseMaybeAssign()
353 prop.kind = "init"
354 prop.method = true
355 prop.value = this.parseMethod(isGenerator)
[all …]
/plugin/batchedit/
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('disabled', !this.checked);
[all …]
/plugin/farmsync/script/
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/webdav/_test/
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/
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/icalevents/vendor/sabre/vobject/lib/Parser/
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/
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/davcard/vendor/sabre/vobject/lib/Parser/
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/webdav/vendor/sabre/vobject/lib/Parser/
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;

12345678910>>...16