Home
last modified time | relevance | path

Searched refs:property (Results 51 – 75 of 1146) sorted by last modified time

12345678910>>...46

/plugin/dev/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/dev/skel/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/structtasks/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/orphanswanted/
H A DCOPYING216 patents or other property right claims or to contest validity of any
/plugin/button/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/bibtex4dw/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/copycode/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/tag/
H A DCOPYING219 patents or other property right claims or to contest validity of any
/plugin/bureaucracy/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/htmlok/
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/gitbacked/
H A DCHANGELOG.md155 - The release name complies with the date property of plugin.info.txt
H A DLICENSE216 patents or other property right claims or to contest validity of any
/plugin/dw2pdf/vendor/myclabs/deep-copy/
H A DREADME.md20 1. [Property name](#property-name)
21 1. [Specific property](#specific-property)
151 The `PropertyNameMatcher` will match a property by its name:
156 // Will apply a filter to any property of any objects named "id"
161 #### Specific property
163 The `PropertyMatcher` will match a specific property of a specific class:
168 // Will apply a filter to the property "id" of any objects of the class "MyClass"
216 If you want a property to remain untouched (for example, an association to an object):
290 1. If you want to replace the value of a property
[all...]
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php70 * If enabled, will not throw an exception when coming across an uncloneable property.
207 foreach (ReflectionHelper::getProperties($reflectedObject) as $property) {
208 $this->copyObjectProperty($newObject, $property);
214 private function copyObjectProperty($object, ReflectionProperty $property) argument
217 if ($property->isStatic()) {
228 if ($matcher->matches($object, $property->getName())) {
231 $property->getName(),
237 // If a filter matches, we stop processing this property
242 $property->setAccessible(true);
245 if (method_exists($property, 'isInitialize
[all...]
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
H A DDoctrineProxyFilter.php18 public function apply($object, $property, $objectCopier) argument
H A DDoctrineEmptyCollectionFilter.php15 * Sets the object property to an empty doctrine collection.
18 * @param string $property
21 public function apply($object, $property, $objectCopier) argument
23 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/
H A DFilter.php6 * Filter to apply to a property while copying an object
14 * @param string $property
17 public function apply($object, $property, $objectCopier); argument
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);
H A DKeepFilter.php8 * Keeps the value of the object property.
12 public function apply($object, $property, $objectCopier) argument
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DCssManager.php283 $property = $tmp[0];
290 $property = trim($property);
293 if ($property && ($value || $value === '0')) {
295 if ((strtoupper($property) === 'BACKGROUND-IMAGE' || strtoupper($property) === 'BACKGROUND') && false !== stripos($value, '-webkit-gradient')) {
298 $classproperties[strtoupper($property)] = $value;
1557 // Cascade everything from last level that is not an actual property, or defined by current tag/attributes
1974 // INLINE STYLE e.g. style="CSS:property"
2215 // INLINE STYLE e.g. style="CSS:property"
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DTag.php117 protected function getAlign($property) argument
119 $property = strtolower($property);
120 return array_key_exists($property, self::ALIGN) ? self::ALIGN[$property] : '';
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DLICENSE.txt216 patents or other property right claims or to contest validity of any
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DMatcher.php9 * @param string $property
13 public function matches($object, $property); argument
H A DPropertyMatcher.php18 private $property; variable in DeepCopy\\Matcher\\PropertyMatcher
22 * @param string $property Property name
24 public function __construct($class, $property) argument
27 $this->property = $property;
31 * Matches a specific property of a specific class.
35 public function matches($object, $property) argument
37 return ($object instanceof $this->class) && $property == $this->property;
H A DPropertyNameMatcher.php13 private $property; variable in DeepCopy\\Matcher\\PropertyNameMatcher
16 * @param string $property Property name
18 public function __construct($property) argument
20 $this->property = $property;
24 * Matches a property by its name.
28 public function matches($object, $property) argument
30 return $property == $this->property;

12345678910>>...46