Home
last modified time | relevance | path

Searched refs:property (Results 126 – 150 of 1146) sorted by relevance

12345678910>>...46

/plugin/findologicxmlexport/vendor/jms/serializer/src/Naming/
H A DIdenticalPropertyNamingStrategy.php11 public function translateName(PropertyMetadata $property): string argument
13 return $property->name;
/plugin/nspages/fileHelper/
H A DpagePreparer.php79 function ($object, $property) {
80 return is_numeric($property) ? $object[$property] : $object[$property];
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.parse.properties.php24 $property =& CSSPropertyDeclaration::create($code, $value, $pipeline);
25 if (!is_null($property)) {
26 $property_collection->add_property($property);
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Filter/
H A DSetNullFilter.php17 public function apply($object, $property, $objectCopier) argument
19 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
H A DReplaceFilter.php30 public function apply($object, $property, $objectCopier) argument
32 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/
H A DSetNullFilter.php13 * Sets the object property to null.
17 public function apply($object, $property, $objectCopier) argument
19 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
H A DReplaceFilter.php18 * @param callable $callable Will be called to get the new value for each property to replace
26 * Replaces the object property by the result of the callback called with the object property.
30 public function apply($object, $property, $objectCopier) argument
32 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DCalAddressTest.php13 $property = $vobj->add('ATTENDEE', $input);
17 $property->getNormalizedValue()
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DCalAddressTest.php13 $property = $vobj->add('ATTENDEE', $input);
17 $property->getNormalizedValue()
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DCalAddressTest.php13 $property = $vobj->add('ATTENDEE', $input);
17 $property->getNormalizedValue()
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Property/ICalendar/
H A DCalAddressTest.php13 $property = $vobj->add('ATTENDEE', $input);
17 $property->getNormalizedValue()
/plugin/findologicxmlexport/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/
H A DReader.php78 function getPropertyAnnotations(\ReflectionProperty $property); argument
88 function getPropertyAnnotation(\ReflectionProperty $property, $annotationName); argument
/plugin/fbcomments/
H A Daction.php31 'property' => 'fb:app_id',
36 'property' => 'fb:admins',
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DPropertyTypeMatcher.php34 public function matches($object, $property) argument
37 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DPropertyTypeMatcher.php9 * Matches a property by its type.
34 public function matches($object, $property) argument
37 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
/plugin/projects/plugins/file/
H A Dplot_dependency.php40 public function data_property($property) { argument
41 return $this->data[$property];
46 public function property($name) { function in PlotDefinition
122 $x_column = $this->property('x_column');
/plugin/findologicxmlexport/vendor/doctrine/annotations/docs/en/
H A Dcustom.rst60 - ``PROPERTY`` Allowed in the property docblock
62 - ``ALL`` Allowed in the class, property and method docblock
192 - An annotation property marked with ``@Enum`` is a field that accept a fixed set of scalar values.
197 Declaring an enumerated property:
295 from a class, property or method docblock:
329 Access all annotations of a property
334 public function getPropertyAnnotations(\ReflectionProperty $property);
336 Access one annotation of a property
341 public function getPropertyAnnotation(\ReflectionProperty $property, $annotationName);
/plugin/bugzillaint/
H A Dscript.js113 for ( var property in warnings ) {
114 if ( extras.indexOf( property ) == -1 ) {
115 extras.unshift( property );
291 bug.warnings.severity = { color:'red', property:'severity' }; property in bug.warnings.severity
293 bug.warnings.severity = { color:'orange', property:'severity' }; property in bug.warnings.severity
305 bug.warnings.priority = { color:'red', property:'priority' }; property in bug.warnings.priority
307 bug.warnings.priority = { color:'orange', property:'priority' }; property in bug.warnings.priority
319 bug.warnings.deadline = { color:'red', property:'deadline' }; property in bug.warnings.deadline
321 bug.warnings.deadline = { color:'orange', property:'deadline' }; property in bug.warnings.deadline
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Xml/Property/
H A DEmailAddressSetTest.php26 $property = new EmailAddressSet(['foo@example.org']);
29 '{DAV:}root' => $property
H A DSupportedCalendarDataTest.php23 $property = new SupportedCalendarData();
25 $xml = $this->write(['{DAV:}root' => $property]);
H A DSupportedCollationSetTest.php22 $property = new SupportedCollationSet();
25 $xml = $this->write(['{DAV:}root' => $property]);
/plugin/odt/helper/
H A Dstylefactory.php289 * @param string $property The property name
294 public function adjustValueForODT ($property, $value, $emValue = 0) { argument
295 return ODTUtility::adjustValueForODT ($property, $value, $emValue);
/plugin/combo/ComboStrap/TagAttribute/
H A DStyleAttribute.php44 * @param array $array of property as key and value
45 * @return string a html inline style property
50 foreach ($array as $property => $value) {
52 $inline .= ";$property:$value";
54 $inline = "$property:$value";
108 throw new ExceptionNotEquals("The expected style does not have the $key property");
111 throw new ExceptionNotEquals("The style $key property does not have the same value ($value vs $expectedValue)");
116 throw new ExceptionNotEquals("The expected styles has an extra property ($key=$value)");
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
H A DDoctrineCollectionFilter.php18 public function apply($object, $property, $objectCopier) argument
20 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
H A DDoctrineCollectionFilter.php14 * Copies the object property doctrine collection.
18 public function apply($object, $property, $objectCopier) argument
20 $reflectionProperty = ReflectionHelper::getProperty($object, $property);

12345678910>>...46