Home
last modified time | relevance | path

Searched refs:object (Results 126 – 150 of 1568) sorted by relevance

12345678910>>...63

/plugin/findologicxmlexport/vendor/jms/serializer/src/Twig/
H A DSerializerRuntimeHelper.php26 * @param mixed $object
28 …public function serialize($object, string $type = 'json', ?SerializationContext $context = null): … argument
30 return $this->serializer->serialize($object, $type, $context);
H A DSerializerExtension.php61 …public function serialize(object $object, string $type = 'json', ?SerializationContext $context = … argument
63 return $this->serializer->serialize($object, $type, $context);
/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);
44 return $reflectionProperty->getValue($object) instanceof $this->propertyType;
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Matcher/
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/findologicxmlexport/vendor/jms/serializer/src/Construction/
H A DDoctrineObjectConstructor.php51 …ce $visitor, ClassMetadata $metadata, $data, array $type, DeserializationContext $context): ?object
93 $object = $objectManager->find($metadata->name, $identifierList);
95 if (null === $object) {
108 $objectManager->initializeObject($object);
110 return $object;
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DEvent.php59 ->object($result)
61 ->object(SUT::getEvent($eventId))
162 ->object(SUT::getEvent($eventId))
185 ->object($result)
201 ->object($result)
216 ->object($result)
248 ->object($receivedBucket)
250 ->object($receivedBucket->getSource())
/plugin/webdav/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php63 $object = $this->parser->parse();
65 if (!$object instanceof VObject\Component\VCard) {
72 return $object;
/plugin/icalevents/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php64 $object = $this->parser->parse();
66 if (!$object instanceof VObject\Component\VCard) {
74 return $object;
/plugin/odt/ODT/styles/
H A DODTUnknownStyle.php219 $object = new ODTUnknownStyle();
220 if (!isset($object)) {
223 $object->setStyleContent($style);
225 return $object;
/plugin/davcard/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php65 $object = $this->parser->parse();
67 if (!$object instanceof VObject\Component\VCard) {
75 return $object;
/plugin/webdavclient/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php65 $object = $this->parser->parse();
67 if (!$object instanceof VObject\Component\VCard) {
75 return $object;
/plugin/davcal/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php65 $object = $this->parser->parse();
67 if (!$object instanceof VObject\Component\VCard) {
75 return $object;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Ddefined_for_constants.test5 {{ constant('ARRAY_AS_PROPS', object) is defined ? 'ok' : 'ko' }}
7 {{ constant('FOOBAR', object) is not defined ? 'ok' : 'ko' }}
9 return ['expect' => DATE_W3C, 'object' => new \ArrayObject(['hi'])]
/plugin/sequencediagram/bower_components/lodash/fp/
H A D_mapping.js267 object = exports.aliasToReal,
270 for (var key in object) {
271 var value = object[key];
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md4703 _.eq(object, object);
7565 1. `object` *(Object)*: The object to query.
7600 1. `object` *(Object)*: The object to query.
7638 1. `object` *(Object)*: The object to query.
7741 1. `object` *(Object)*: The object to query.
8004 1. `object` *(Object)*: The source object.
8035 1. `object` *(Object)*: The source object.
8063 1. `object` *(Object)*: The source object.
8092 1. `object` *(Object)*: The source object.
10365 console.log(_.identity(object) === object);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DTemplateTest.php88 public function testGetAttributeWithSandbox($object, $item, $allowed) argument
96 $template->getAttribute($object, $item, [], 'any');
259 public function testGetAttribute($defined, $value, $object, $item, $arguments, $type) argument
263 $this->assertEquals($value, $template->getAttribute($object, $item, $arguments, $type));
274 $this->assertEquals($value, $template->getAttribute($object, $item, $arguments, $type));
284 $this->assertEquals($value, $template->getAttribute($object, $item, $arguments, $type));
291 public function testGetAttributeDefined($defined, $value, $object, $item, $arguments, $type) argument
295 … $this->assertEquals($defined, $template->getAttribute($object, $item, $arguments, $type, true));
301 … public function testGetAttributeDefinedStrict($defined, $value, $object, $item, $arguments, $type) argument
312 $object = new Twig_TemplateMagicMethodExceptionObject();
[all …]
/plugin/s5/ui/default/
H A Dslides.js20 function hasClass(object, className) { argument
21 if (!object.className) return false;
25 function hasValue(object, value) { argument
26 if (!object) return false;
31 if (!object) return;
32object.className = object.className.replace(new RegExp('(^|\\s)'+className+'(\\s|$)'), RegExp.$1+R…
35 function addClass(object,className) { argument
36 if (!object || hasClass(object, className)) return;
37 if (object.className) {
38 object.className += ' '+className;
[all …]
/plugin/s5/ui/dokuwiki/
H A Dslides.js20 function hasClass(object, className) { argument
21 if (!object.className) return false;
25 function hasValue(object, value) { argument
26 if (!object) return false;
31 if (!object) return;
32object.className = object.className.replace(new RegExp('(^|\\s)'+className+'(\\s|$)'), RegExp.$1+R…
35 function addClass(object,className) { argument
36 if (!object || hasClass(object, className)) return;
37 if (object.className) {
38 object.className += ' '+className;
[all …]
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
H A Dfabric.min.js1object,index,nonSplicing){var objects=this.getObjects();if(nonSplicing){objects[index]=object}else… argument
2object.extend,capitalize=fabric.util.string.capitalize,clone=fabric.util.object.clone,toFixed=fabr…
4object){var coords=fabric.util.object.clone(this.coords),markup,commonAttributes;this.colorStops.s… argument
5object,pointer){var activeGroup=this.getActiveGroup(),x=pointer.x,y=pointer.y,isObjectInGroup=acti… argument
6object.extend(fabric.Canvas.prototype,{_shouldGroup:function(e,target){var activeObject=this.getAc… argument
8object.extend(fabric.Object.prototype,{sendToBack:function(){if(this.group){fabric.StaticCanvas.pr… argument
9object,callback){if(typeof object.path==="string"){fabric.loadSVGFromURL(object.path,function(elem… argument
11object.extend;fabric.Image.filters.GradientTransparency=fabric.util.createClass(fabric.Image.filte… argument
13object.extend(this.styles[loc.lineIndex][loc.charIndex],styles)},_render:function(ctx){this.callSu… argument
15object.extend(fabric.IText.prototype,{_setSVGTextLineText:function(lineIndex,textSpans,height,text… argument
H A Dfabric.js5276 object.rx !== object.ry) {
5278 var scaleFactor = object.ry/object.rx;
5572 if (object && (object.fill === this.color || object.stroke === this.color)) {
5576 if (object.width && object.height) {
11291 object = this._removeDefaultValues(object);
13776 var points = [object.x1, object.y1, object.x2, object.y2];
15991 fabric.util.object.extend(path, object);
16642 object.set('left', -object.get('left'));
16643 object.setAngle(-object.getAngle());
16647 object.set('top', -object.get('top'));
[all …]
/plugin/sqlraw/
H A Dsorttable.min.js44object,block,context){for(var key in object){if(typeof this.prototype[key]=="undefined"){block.cal… argument
45 resolve.forEach(object,block,context);}};
/plugin/quickstats/scripts/
H A Dsorttable.js457 Function.prototype.forEach = function(object, block, context) {
458 for (var key in object) {
460 block.call(context, object[key], key, object);
473 var forEach = function(object, block, context) { argument
474 if (object) {
476 if (object instanceof Function) {
479 } else if (object.forEach instanceof Function) {
481 object.forEach(block, context);
483 } else if (typeof object == "string") {
486 } else if (typeof object.length == "number") {
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DOptionalContentWriter.php33 $this->writer->object();
39 $this->writer->object();
45 $this->writer->object();
56 $this->writer->object();
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/
H A Ddhtmlxgantt_tooltip.js1082 function isCustomType(object){ argument
1089 function copy(object) { argument
1092 if (object && typeof object == "object") {
1096 result = new Date(object);
1105 result = new String(object);
1108 result = new Number(object);
1114 if(isCustomType(object)){
1120 for (i in object) {
1127 return result || object;
1150 function bind(functor, object){ argument
[all …]
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DHTML.SafeObject.txt

12345678910>>...63