Home
last modified time | relevance | path

Searched refs:propName (Results 1 – 25 of 52) sorted by relevance

123

/plugin/webdavclient/vendor/sabre/vobject/lib/
DComponent.php542 foreach($rules as $propName => $rule) {
546 if (isset($propertyCounters[$propName])) {
549 … 'message' => $propName . ' MUST NOT appear in a ' . $this->name . ' component',
555 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName]!==1) {
557 if ($options & self::REPAIR && isset($defaults[$propName])) {
558 $this->add($propName, $defaults[$propName]);
562 … 'message' => $propName . ' MUST appear exactly once in a ' . $this->name . ' component',
568 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName] < 1) {
571 … 'message' => $propName . ' MUST appear at least once in a ' . $this->name . ' component',
579 if (isset($propertyCounters[$propName]) && $propertyCounters[$propName] > 1) {
[all …]
/plugin/davcard/vendor/sabre/vobject/lib/
DComponent.php542 foreach($rules as $propName => $rule) {
546 if (isset($propertyCounters[$propName])) {
549 … 'message' => $propName . ' MUST NOT appear in a ' . $this->name . ' component',
555 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName]!==1) {
557 if ($options & self::REPAIR && isset($defaults[$propName])) {
558 $this->add($propName, $defaults[$propName]);
562 … 'message' => $propName . ' MUST appear exactly once in a ' . $this->name . ' component',
568 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName] < 1) {
571 … 'message' => $propName . ' MUST appear at least once in a ' . $this->name . ' component',
579 if (isset($propertyCounters[$propName]) && $propertyCounters[$propName] > 1) {
[all …]
/plugin/davcal/vendor/sabre/vobject/lib/
H A DComponent.php542 foreach($rules as $propName => $rule) {
546 if (isset($propertyCounters[$propName])) {
549 … 'message' => $propName . ' MUST NOT appear in a ' . $this->name . ' component',
555 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName]!==1) {
557 if ($options & self::REPAIR && isset($defaults[$propName])) {
558 $this->add($propName, $defaults[$propName]);
562 … 'message' => $propName . ' MUST appear exactly once in a ' . $this->name . ' component',
568 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName] < 1) {
571 … 'message' => $propName . ' MUST appear at least once in a ' . $this->name . ' component',
579 if (isset($propertyCounters[$propName]) && $propertyCounters[$propName] > 1) {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
DComponent.php591 foreach ($rules as $propName => $rule) {
594 if (isset($propertyCounters[$propName])) {
597 … 'message' => $propName.' MUST NOT appear in a '.$this->name.' component',
603 … if (!isset($propertyCounters[$propName]) || 1 !== $propertyCounters[$propName]) {
605 if ($options & self::REPAIR && isset($defaults[$propName])) {
606 $this->add($propName, $defaults[$propName]);
611 … 'message' => $propName.' MUST appear exactly once in a '.$this->name.' component',
617 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName] < 1) {
620 … 'message' => $propName.' MUST appear at least once in a '.$this->name.' component',
628 if (isset($propertyCounters[$propName]) && $propertyCounters[$propName] > 1) {
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
DComponent.php626 foreach ($rules as $propName => $rule) {
630 if (isset($propertyCounters[$propName])) {
633 … 'message' => $propName . ' MUST NOT appear in a ' . $this->name . ' component',
639 … if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName] !== 1) {
641 if ($options & self::REPAIR && isset($defaults[$propName])) {
642 $this->add($propName, $defaults[$propName]);
647 … 'message' => $propName . ' MUST appear exactly once in a ' . $this->name . ' component',
653 if (!isset($propertyCounters[$propName]) || $propertyCounters[$propName] < 1) {
656 … 'message' => $propName . ' MUST appear at least once in a ' . $this->name . ' component',
664 if (isset($propertyCounters[$propName]) && $propertyCounters[$propName] > 1) {
[all …]
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Classes/
DDuplicatePropertySniff.php76 $propName = $tokens[$next]['content'];
77 if (isset($properties[$propName]) === true) {
80 $propName,
81 $tokens[$properties[$propName]]['line'],
86 $properties[$propName] = $next;
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Subscriptions/
H A DPluginTest.php39 $propName = '{http://calendarserver.org/ns/}subscribed-strip-alarms';
40 $propFind = new PropFind('foo', [$propName]);
41 $propFind->set($propName,null,200);
46 $this->assertFalse(is_null($propFind->get($propName)));
/plugin/asciidocjs/node_modules/babel-runtime/helpers/
Djsx.js26 for (var propName in defaultProps) {
27 if (props[propName] === void 0) {
28 props[propName] = defaultProps[propName];
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/
DPrincipal.php174 foreach ($requestedProperties as $propName) {
176 if (isset($this->principalProperties[$propName])) {
177 $newProperties[$propName] = $this->principalProperties[$propName];
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/
H A DPrincipal.php172 foreach ($requestedProperties as $propName) {
174 if (isset($this->principalProperties[$propName])) {
175 $newProperties[$propName] = $this->principalProperties[$propName];
/plugin/webdav/vendor/sabre/dav/lib/DAV/Browser/
DHtmlOutputHelper.php109 $propName = $this->namespaceMap[$ns] . ':' . $localName;
111 $propName = $element;
113 return "<span title=\"" . $this->h($element) . "\">" . $this->h($propName) . "</span>";
/plugin/davcal/vendor/sabre/dav/lib/DAV/Browser/
H A DHtmlOutputHelper.php109 $propName = $this->namespaceMap[$ns] . ':' . $localName;
111 $propName = $element;
113 return "<span title=\"" . $this->h($element) . "\">" . $this->h($propName) . "</span>";
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/PropertyStorage/Backend/
H A DMock.php58 foreach($properties as $propName=>$propValue) {
61 unset($this->data[$path][$propName]);
63 $this->data[$path][$propName] = $propValue;
/plugin/asciidocjs/node_modules/acorn/src/
Dutil.js7 export function has(obj, propName) { argument
8 return Object.prototype.hasOwnProperty.call(obj, propName)
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dutil.js7 export function has(obj, propName) { argument
8 return Object.prototype.hasOwnProperty.call(obj, propName)
/plugin/davcard/vendor/sabre/vobject/lib/Component/
DVAlarm.php35 $propName = 'DUE';
37 $propName = 'DTSTART';
40 $effectiveTrigger = clone $parentComponent->$propName->getDateTime();
/plugin/webdavclient/vendor/sabre/vobject/lib/Component/
DVAlarm.php35 $propName = 'DUE';
37 $propName = 'DTSTART';
40 $effectiveTrigger = clone $parentComponent->$propName->getDateTime();
/plugin/davcal/vendor/sabre/vobject/lib/Component/
H A DVAlarm.php35 $propName = 'DUE';
37 $propName = 'DTSTART';
40 $effectiveTrigger = clone $parentComponent->$propName->getDateTime();
/plugin/icalevents/vendor/sabre/vobject/lib/Component/
DVAlarm.php39 $propName = 'DUE';
41 $propName = 'DTSTART';
44 $effectiveTrigger = $parentComponent->$propName->getDateTime();
/plugin/webdav/vendor/sabre/vobject/lib/Component/
DVAlarm.php38 $propName = 'DUE';
40 $propName = 'DTSTART';
43 $effectiveTrigger = $parentComponent->$propName->getDateTime();
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/
DCalendar.php89 foreach ($this->calendarInfo as $propName => $propValue) {
91 if (!is_null($propValue) && $propName[0] === '{')
92 $response[$propName] = $this->calendarInfo[$propName];
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DCalendar.php87 foreach ($this->calendarInfo as $propName => $propValue) {
89 if ($propName[0] === '{')
90 $response[$propName] = $this->calendarInfo[$propName];
/plugin/webdav/vendor/sabre/dav/lib/DAVACL/Xml/Request/
DExpandPropertyReport.php88 $propName = '{' . $namespace . '}' . $elem['attributes']['name'];
95 $result[$propName] = $value;
/plugin/davcal/vendor/sabre/dav/lib/DAVACL/Xml/Request/
H A DExpandPropertyReport.php88 $propName = '{' . $namespace . '}' . $elem['attributes']['name'];
95 $result[$propName] = $value;
/plugin/jspwiki_import/importer/
Dgwt.js442 function __gwt_isKnownPropertyValue(wnd, propName, propValue) { argument
443 return propValue in wnd["values$" + propName];
451 function __gwt_onBadProperty(moduleName, propName, allowedValues, badValue) { argument
453 __gwt_onPropertyError(moduleName, propName, allowedValues, badValue);
458 msg += "property \"" + propName + "\" was set to the unexpected value \""
461 msg += "property \"" + propName + "\" was not specified";

123