Home
last modified time | relevance | path

Searched refs:object (Results 76 – 100 of 1568) sorted by relevance

12345678910>>...63

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Invocation/
H A DStatic.php166 $object = new ReflectionObject($original);
170 if ($object->isInternal() &&
171 isset(self::$uncloneableExtensions[$object->getExtensionName()])) {
184 if ($cloneable === null && method_exists($object, 'isCloneable')) {
185 $cloneable = $object->isCloneable();
188 if ($cloneable === null && $object->hasMethod('__clone')) {
189 $method = $object->getMethod('__clone');
/plugin/gtime/gtlib/asn1/cms/
H A DCMSSignerInfo.php65 * @param ASN1Sequence $object CMSSignerInfo encoded as ASN1Sequence
68 public function decode($object) { argument
70 if (!$object instanceof ASN1Sequence) {
74 $size = $object->getObjectCount();
80 $version = $object->getObjectAt(0);
93 $sid->decode($object->getObjectAt(1));
98 $digestAlgorithm->decode($object->getObjectAt(2));
102 for ($i = 3; $i < $object->getObjectCount(); $i++) {
104 $item = $object->getObjectAt($i);
/plugin/stlviewer/stlviewer/
H A DTrackballControls.js13 this.object = object;
69 this.position0 = this.object.position.clone();
70 this.up0 = this.object.up.clone();
172 _this.object.up.applyQuaternion( quaternion );
245 _this.object.position.add( pan );
312 _this.object.lookAt( _this.target );
318 lastPosition.copy( _this.object.position );
330 _this.object.position.copy( _this.position0 );
331 _this.object.up.copy( _this.up0 );
335 _this.object.lookAt( _this.target );
[all …]
/plugin/imapmarkers/
H A Dscript.js33 function append_html_to_jquery_object(html, object) { argument
34 object[0].insertAdjacentHTML(
161 _g.a_imap_div.forEach((object, index) => {
237 _g.a_imap_div.forEach((object, index) => {
239 …og("[" + index + "] Z-INDEX THIS TAG=" + object.prop("tagName") + " ID=" + object.attr("id") + " N…
241 object.find("img").css("z-index", "0");
296 _g.a_imap_div.forEach((object, index) => {
402 if (object['id'] == id) {
403 object['reference'].css(object['css']);
424 if (object['id'] == id) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/
H A DStartBackfillJobResponse.php28 public function setObject(StreamObject $object) argument
30 $this->object = $object;
37 return $this->object;
H A DStopBackfillJobResponse.php28 public function setObject(StreamObject $object) argument
30 $this->object = $object;
37 return $this->object;
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/
H A DCallTimesPrediction.php49 * @param ObjectProphecy $object
54 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
60 $methodCalls = $object->findProphecyMethodCalls(
72 get_class($object->reveal()),
86 get_class($object->reveal()),
99 get_class($object->reveal()),
H A DCallPrediction.php45 * @param ObjectProphecy $object
50 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
56 $methodCalls = $object->findProphecyMethodCalls(
68 get_class($object->reveal()),
81 get_class($object->reveal()),
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DJsonDeserializationVisitor.php145 public function startVisitingObject(ClassMetadata $metadata, object $object, array $type): void argument
147 $this->setCurrentObject($object);
190 public function endVisitingObject(ClassMetadata $metadata, $data, array $type): object
206 public function setCurrentObject(object $object): void argument
209 $this->currentObject = $object;
212 public function getCurrentObject(): ?object
217 public function revertCurrentObject(): ?object
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/Resource/
H A DProjectsLocationsStreamsObjects.php93 * @param string $object Required. The name of the stream object resource to
99 public function startBackfillJob($object, StartBackfillJobRequest $postBody, $optParams = []) argument
101 $params = ['object' => $object, 'postBody' => $postBody];
109 * @param string $object Required. The name of the stream object resource to
115 public function stopBackfillJob($object, StopBackfillJobRequest $postBody, $optParams = []) argument
117 $params = ['object' => $object, 'postBody' => $postBody];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DItemStructuredData.php46 public function setObject(StructuredDataObject $object) argument
48 $this->object = $object;
55 return $this->object;
/plugin/findologicxmlexport/vendor/jms/serializer/src/Accessor/
H A DAccessorStrategyInterface.php19 …public function getValue(object $object, PropertyMetadata $metadata, SerializationContext $context… argument
24 …public function setValue(object $object, $value, PropertyMetadata $metadata, DeserializationContex… argument
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/
H A DDoctrineEmptyCollectionFilter.php17 * @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.php18 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/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/sequencediagram/bower_components/lodash/test/
H A Dtest.js1301 assert.strictEqual(object.capped(), object);
2495 object[chr] || (object[chr] = 0);
2752 object.foo.b.c.d = object;
2753 object.bar.b = object.foo.b;
3132 assert.deepEqual(argsList, isDeep ? [[object], [1, 'a', object]] : [[object]]);
4687 object.foo.b.c.d = object;
8882 return object.a ? object.a() : undefined;
15215 _.merge(object, object);
16165 assert.strictEqual(object.over(object), 1);
17036 object.a = object.b = 0;
[all …]
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Filter/
H A DReplaceFilter.php30 public function apply($object, $property, $objectCopier) argument
32 $reflectionProperty = ReflectionHelper::getProperty($object, $property);
35 $value = call_user_func($this->callback, $reflectionProperty->getValue($object));
37 $reflectionProperty->setValue($object, $value);
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/Filter/
H A DReplaceFilter.php26 * 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);
35 $value = call_user_func($this->callback, $reflectionProperty->getValue($object));
37 $reflectionProperty->setValue($object, $value);
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Ddefault.test28 {{ object.foo |default('default') is same as('default') ? 'ko' : 'ok' }}
29 {{ object.undefinedMethod |default('default') is same as('default') ? 'ok' : 'ko' }}
30 {{ object.getFoo() |default('default') is same as('default') ? 'ko' : 'ok' }}
31 {{ object.getFoo('a') |default('default') is same as('default') ? 'ko' : 'ok' }}
32 {{ object.undefinedMethod() |default('default') is same as('default') ? 'ok' : 'ko' }}
33 {{ object.undefinedMethod('a') |default('default') is same as('default') ? 'ok' : 'ko' }}
38 {{ object.self.foo |default('default') is same as('default') ? 'ko' : 'ok' }}
39 {{ object.self.undefinedMethod |default('default') is same as('default') ? 'ok' : 'ko' }}
40 {{ object.undefinedMethod.self |default('default') is same as('default') ? 'ok' : 'ko' }}
54 'object' => new TwigTestFoo(),
[all …]
/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/google_maps/syntax/
H A Dvideo.php64 $obj = '<object width="425" height="350" type="application/x-shockwave-flash"';
66 … .= '<param name="movie" value="http://video.google.com/googleplayer.swf?docId='.$id.'"></object>';
70 … $obj = '<object width="255" height="210" type="application/x-shockwave-flash"';
72 … .= '<param name="movie" value="http://video.google.com/googleplayer.swf?docId='.$id.'"></object>';
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
H A Dphp_json_objects.asciidoc15 object.
34 <1> This empty JSON object is what causes problems.
38 the empty object is explicitly an object, not an array. To define this query in
57 <1> We use the generic PHP stdClass object to represent an empty object. The
60 By using an explicit stdClass object, we can force the `json_encode` parser to
61 correctly output an empty object, instead of an empty array. This verbose
63 version of an empty object.
106 <2> This array encodes the `{"time" : {"order" : "desc"}}` object
[all...]
/plugin/gtime/gtlib/asn1/tsp/
H A DTSPAccuracy.php57 * @param ASN1Sequence $object TSPAccuracy encoded as ASN1Sequence
60 public function decode($object) { argument
62 if (!$object instanceof ASN1Sequence) {
66 if ($object->getObjectCount() < 1 || $object->getObjectCount() > 3) {
70 for ($i = 0; $i < $object->getObjectCount(); $i++) {
72 $item = $object->getObjectAt($i);
/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Promise/
H A DCallbackPromise.php51 * @param ObjectProphecy $object
56 public function execute(array $args, ObjectProphecy $object, MethodProphecy $method) argument
61 $callback = Closure::bind($callback, $object);
64 return call_user_func($callback, $args, $object, $method);

12345678910>>...63