Home
last modified time | relevance | path

Searched refs:object (Results 101 – 125 of 1568) sorted by last modified time

12345678910>>...63

/plugin/dw2pdf/vendor/setasign/fpdi/src/Tcpdf/
H A DFpdi.php47 * The currently used object number.
168 $object = $parser->getIndirectObject($objectNumber);
172 $object = PdfIndirectObject::create($objectNumber, 0, new PdfNull());
178 $this->writePdfType($object);
215 * Begin a new object and return the object number.
218 * @return int object number
227 * Writes a PdfType object to the resulting buffer.
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
H A DDoctrineEmptyCollectionFilter.php15 * Sets the object property to an empty doctrine collection.
17 * @param object $object
21 public function apply($object, $property, $objectCopier) argument
23 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
26 $reflectionProperty->setValue($object, new ArrayCollection());
H A DDoctrineCollectionFilter.php14 * Copies the object property doctrine collection.
18 public function apply($object, $property, $objectCopier) argument
20 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
23 $oldCollection = $reflectionProperty->getValue($object);
31 $reflectionProperty->setValue($object, $newCollection);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/
H A DKeepFilter.php8 * Keeps the value of the object property.
12 public function apply($object, $property, $objectCopier) argument
H A DSetNullFilter.php13 * Sets the object property to null.
17 public function apply($object, $property, $objectCopier) argument
19 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
22 $reflectionProperty->setValue($object, null);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
H A DMatcher.php8 * @param object $object
13 public function matches($object, $property); argument
H A DPropertyMatcher.php35 public function matches($object, $property) argument
37 return ($object instanceof $this->class) && $property == $this->property;
H A DPropertyNameMatcher.php28 public function matches($object, $property) argument
H A DPropertyTypeMatcher.php12 * of given type in copied context (eg. array elements), not just on object properties.
34 public function matches($object, $property) argument
37 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
44 return $reflectionProperty->getValue($object) instanceof $this->propertyType;
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md403 - line-breaking - zero-width object at end of line (e.g. index entry) causing a space left untrimmed at end of line
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/CrossReference/
H A DCrossReference.php134 * Get the offset by an object number.
152 * Get an indirect object by its object number.
174 /** @var PdfIndirectObject $object */
175 $object = $parser->readValue(null, PdfIndirectObject::class);
184 if ($object->objectNumber !== $objectNumber) {
186 \sprintf('Wrong object found, got %s while %s was expected.', $object->objectNumber, $objectNumber),
191 return $object;
243 'Invalid object typ
[all...]
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DPdfParser.php212 * Get an indirect object by its object number.
228 $object = $xref->getIndirectObject($objectNumber);
231 $this->objects[$objectNumber] = $object;
234 return $object;
352 * Ensures that the token will evaluate to an expected object type (or not).
/plugin/dw2pdf/vendor/mpdf/qrcode/
H A DLICENSE38 object code and/or source code for the Application, including any data
65 The object code form of an Application may incorporate material from
66 a header file that is part of the Library. You may convey such object
72 a) Give prominent notice with each copy of the object code that the
76 b) Accompany the object code with a copy of the GNU GPL and this license
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/
H A DPdfReader.php149 $object = $this->parser->getIndirectObject($reference->value);
150 $type = PdfDictionary::get($object->value, 'Type');
153 return $readPages(PdfDictionary::get($object->value, 'Kids'));
156 return $object;
217 $object = $this->parser->getIndirectObject($reference->value);
218 $type = PdfDictionary::get($object->value, 'Type');
221 $readPages(PdfDictionary::get($object->value, 'Kids'), PdfDictionary::get($object->value, 'Count'));
223 $this->pages[] = $object;
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/
H A DDoctrineProxyMatcher.php18 public function matches($object, $property) argument
20 return $object instanceof Proxy;
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/
H A DReflectionHelper.php14 * Retrieves all properties (including private ones), from object and all its ancestors.
48 * Retrieves property by name from object and all its ancestors.
50 * @param object|string $object
58 public static function getProperty($object, $name) argument
60 $reflection = is_object($object) ? new ReflectionObject($object) : new ReflectionClass($object);
73 is_object($object) ? get_class($object)
[all...]
/plugin/combo/ComboStrap/
H A DCallStack.php85 * When you create a callstack object, the pointer
189 public function getCallWriter(): object
336 * This function returns a {@link Call call} object
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/
H A DOverload.php24 * @param Ast\Node $object
28 protected function getMethodByClass(Ast\Node $object, string $prefix = 'visit'): ?callable { argument
29 $method = $prefix.substr(str_replace('\\', '', get_class($object)), 9);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerMoreAction.php65 public function equals(object $other) : bool
H A DLexerPopModeAction.php65 public function equals(object $other) : bool
H A DLexerPushModeAction.php72 public function equals(object $other) : bool
H A DLexerSkipAction.php65 public function equals(object $other) : bool
H A DLexerTypeAction.php77 public function equals(object $other) : bool
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerATNConfig.php58 public function equals(object $other) : bool
H A DLexerActionExecutor.php199 public function equals(object $other) : bool

12345678910>>...63