Home
last modified time | relevance | path

Searched refs:object (Results 101 – 125 of 1568) sorted by relevance

12345678910>>...63

/plugin/findologicxmlexport/vendor/phpspec/prophecy/src/Prophecy/Prediction/
H A DCallbackPrediction.php52 * @param ObjectProphecy $object
55 public function check(array $calls, ObjectProphecy $object, MethodProphecy $method) argument
60 $callback = Closure::bind($callback, $object);
63 call_user_func($callback, $calls, $object, $method);
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DSplObjectStorageComparator.php43 foreach ($actual as $object) {
44 if (!$expected->contains($object)) {
56 foreach ($expected as $object) {
57 if (!$actual->contains($object)) {
H A DMockObjectComparator.php34 * @param object $object
37 protected function toArray($object) argument
39 $array = parent::toArray($object);
H A DExceptionComparator.php34 * @param object $object
37 protected function toArray($object) argument
39 $array = parent::toArray($object);
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DXcallable.php64 ->object($reflection = $result->getReflection())
82 ->object($reflection = $result->getReflection())
100 ->object($reflection = $result->getReflection())
122 ->object($reflection = $result->getReflection())
144 ->object($reflection = $result->getReflection())
162 ->object($result->getValidCallback())
167 ->object($reflection = $result->getReflection())
185 ->object($reflection = $result->getReflection())
207 ->object($reflection = $result->getReflection())
/plugin/stlviewer/stlviewer/
H A DOrbitControls.js26 this.object = object;
109 this.position0 = this.object.position.clone();
144 var te = this.object.matrix.elements;
157 var te = this.object.matrix.elements;
173 if ( scope.object.fov !== undefined ) {
176 var position = scope.object.position;
190 scope.panLeft( deltaX * (scope.object.right - scope.object.left) / element.clientWidth );
191 scope.panUp( deltaY * (scope.object.top - scope.object.bottom) / element.clientHeight );
228 var position = this.object.position;
269 this.object.lookAt( this.target );
[all …]
/plugin/findologicxmlexport/vendor/sebastian/recursion-context/src/
H A DContext.php119 * @param object $object
123 private function addObject($object) argument
125 if (!$this->objects->contains($object)) {
126 $this->objects->attach($object);
129 return spl_object_hash($object);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/
H A DObjectAccessControl.php61 public $object; variable in Google\\Service\\Storage\\ObjectAccessControl
202 public function setObject($object) argument
204 $this->object = $object;
211 return $this->object;
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest-fp.js279 object = {};
524 })(object);
538 })(0)(object);
726 var object = { 'a': 1 }, class in AnonymousFunction161ab7b43800
807 var object = { 'a': 1 }, class in AnonymousFunction161ab7b44300
818 object = { 'a': 1 }, class in AnonymousFunction161ab7b44400
950 var object = { 'a': 1 }, class in AnonymousFunction161ab7b45300
1571 Foo.mixin = object.mixin;
1577 object.mixin(source);
1702 var object = { 'a': 1 }; class in AnonymousFunction161ab7b49f00
[all …]
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DListener.php62 ->object($result)
85 ->object($result)
120 ->object($result)
137 ->object($result)
151 ->object($result)
167 ->object($result)
210 ->object($receivedBucket)
212 ->object($receivedBucket->getSource())
H A DBucket.php58 ->object($result)
81 ->object($receivedBucket)
105 ->object($bucket->getSource())
111 ->object($result)
113 ->object($bucket->getSource())
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
H A DGroup.php57 ->object($result)
158 ->object($result)
178 ->object($result)
201 ->object($result)
226 ->object($result)
257 ->object($result)
376 ->object($result)
406 ->object($result)
553 ->object($result)
555 ->object($result['bar'])
[all …]
/plugin/authgoogle/google/contrib/
H A DGoogle_StorageService.php428 * @param string $object Name of the object.
445 * @param string $object Name of the object.
466 * @param string $object Name of the object.
487 * @param string $object Name of the object.
508 * @param string $object Name of the object.
530 * @param string $object Name of the object.
620 * @param string $object Name of the object.
1404 public $object; variable in Google_ObjectAccessControl
1461 public function setObject( $object) { argument
1462 $this->object = $object;
[all …]
/plugin/webdav/vendor/sabre/xml/lib/
H A DService.php248 * @param object $object
252 function writeValueObject($object, $contextUri = null) { argument
254 if (!isset($this->valueObjectMap[get_class($object)])) {
255 …throw new \InvalidArgumentException('"' . get_class($object) . '" is not a registered value object…
258 $this->valueObjectMap[get_class($object)],
259 $object,
/plugin/icalevents/vendor/sabre/xml/lib/
H A DService.php247 * @param object $object
251 function writeValueObject($object, $contextUri = null) { argument
253 if (!isset($this->valueObjectMap[get_class($object)])) {
254 …throw new \InvalidArgumentException('"' . get_class($object) . '" is not a registered value object…
257 $this->valueObjectMap[get_class($object)],
258 $object,
/plugin/findologicxmlexport/vendor/hoa/ustring/Test/Unit/
H A DUstring.php81 ->object($result)
93 ->object($result)
105 ->object($result)
117 ->object($result)
129 ->object($result)
141 ->object($result)
153 ->object($result)
165 ->object($result)
402 ->object($result)
414 ->object($result)
[all …]
/plugin/strata/sql/
H A Dsetup-pgsql.sql4 object TEXT NOT NULL, field
9 CREATE INDEX idx_spo ON data(lower(subject), lower(predicate), lower(object));
12 CREATE INDEX idx_pso ON data(lower(predicate), lower(subject), lower(object));
H A Dsetup-mysql.sql4 object TEXT NOT NULL, field
9 CREATE INDEX idx_spo ON data(subject(32), predicate(32), object(32)); -- Prefix length is arbitrary
12 CREATE INDEX idx_pso ON data(predicate(32), subject(32), object(32)); -- Prefix length is arbitrary
H A Dsetup-sqlite.sql4 object TEXT NOT NULL COLLATE NOCASE, field
9 CREATE INDEX idx_spo ON data(subject, predicate, object);
12 CREATE INDEX idx_pso ON data(predicate, subject, object);
/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);
22 $reflectionProperty->setValue($object, null);
/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);
22 $reflectionProperty->setValue($object, null);
/plugin/davcard/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php131 foreach($objects as $object) {
133 if (is_string($object)) {
134 $this->objects[] = Reader::read($object);
135 } elseif ($object instanceof Component) {
136 $this->objects[] = $object;
183 foreach($this->objects as $key=>$object) {
185 foreach($object->getBaseComponents() as $component) {
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
/plugin/webdavclient/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php131 foreach($objects as $object) {
133 if (is_string($object)) {
134 $this->objects[] = Reader::read($object);
135 } elseif ($object instanceof Component) {
136 $this->objects[] = $object;
183 foreach($this->objects as $key=>$object) {
185 foreach($object->getBaseComponents() as $component) {
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
/plugin/davcal/vendor/sabre/vobject/lib/
H A DFreeBusyGenerator.php131 foreach($objects as $object) {
133 if (is_string($object)) {
134 $this->objects[] = Reader::read($object);
135 } elseif ($object instanceof Component) {
136 $this->objects[] = $object;
183 foreach($this->objects as $key=>$object) {
185 foreach($object->getBaseComponents() as $component) {
209 … $iterator = new EventIterator($object, (string)$component->uid, $this->timeZone);
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DJsonSerializationTest.php135 $object = new ObjectWithEmptyArrayAndHash();
137 self::assertEquals('{}', $this->serialize($object));
220 … $object = $this->deserialize($content, 'JMS\Serializer\Tests\Fixtures\ObjectWithObjectProperty');
221 self::assertEquals('bar', $object->getFoo());
222 self::assertInstanceOf('JMS\Serializer\Tests\Fixtures\Author', $object->getAuthor());
229 self::assertEquals('bar', $object->getFoo());
230 self::assertInstanceOf('JMS\Serializer\Tests\Fixtures\Author', $object->getAuthor());
231 self::assertEquals('baz', $object->getAuthor()->getName());
311 $object = new ObjectWithInlineArray(['a' => 'b', 'c' => 'd']);
312 $serialized = $this->serialize($object);
[all …]

12345678910>>...63