Home
last modified time | relevance | path

Searched refs:object (Results 26 – 50 of 1568) sorted by relevance

12345678910>>...63

/plugin/davcard/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php40 while($object=$objects->getNext()) {
41 $return .= $object->serialize();
79 while($object=$objects->getNext()) {
80 $return .= $object->serialize();
127 while($object=$objects->getNext()) {
139 $return .= $object->serialize();
166 while($object=$objects->getNext()) {
167 $return .= $object->serialize();
261 while($object=$objects->getNext()) {
276 $return .= $object->serialize();
[all …]
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php40 while($object=$objects->getNext()) {
41 $return .= $object->serialize();
79 while($object=$objects->getNext()) {
80 $return .= $object->serialize();
127 while($object=$objects->getNext()) {
139 $return .= $object->serialize();
166 while($object=$objects->getNext()) {
167 $return .= $object->serialize();
261 while($object=$objects->getNext()) {
276 $return .= $object->serialize();
[all …]
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php40 while($object=$objects->getNext()) {
41 $return .= $object->serialize();
79 while($object=$objects->getNext()) {
80 $return .= $object->serialize();
127 while($object=$objects->getNext()) {
139 $return .= $object->serialize();
166 while($object=$objects->getNext()) {
167 $return .= $object->serialize();
261 while($object=$objects->getNext()) {
276 $return .= $object->serialize();
[all …]
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js2723 object = Object(object);
3215 object = parent(object, path);
3216 var func = object == null ? object : object[toKey(last(path))];
3365 object = Object(object);
4762 object || (object = {});
4849 object = Object(object);
5698 object = object.buffer;
6015 object = Object(object);
6131 object = object[key];
12787 object = Object(object);
[all …]
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js2723 object = Object(object);
3215 object = parent(object, path);
3216 var func = object == null ? object : object[toKey(last(path))];
3365 object = Object(object);
4762 object || (object = {});
4849 object = Object(object);
5698 object = object.buffer;
6015 object = Object(object);
6131 object = object[key];
12787 object = Object(object);
[all …]
/plugin/gtime/gtlib/asn1/x509/
H A DX509AlgorithmIdentifier.php52 * @param ASN1Sequence $object X509AlgorithmIdentifier encoded as ASN1Sequence
55 public function decode($object) { argument
57 if (!$object instanceof ASN1Sequence) {
61 if ($object->getObjectCount() < 1) {
65 if ($object->getObjectCount() > 2) {
69 if ($object->getObjectCount() == 2 && !($object->getObjectAt(1) instanceof ASN1Null)) {
73 $algorithm = $object->getObjectAt(0);
H A DX509Extension.php55 * @param ASN1Sequence $object X509Extension encoded as ASN1Sequence
58 public function decode($object) { argument
60 if (!$object instanceof ASN1Sequence) {
64 $size = $object->getObjectCount();
70 $id = $object->getObjectAt(0);
80 $value = $object->getObjectAt(1);
91 $critical = $object->getObjectAt(1);
99 $value = $object->getObjectAt(2);
/plugin/gtime/gtlib/asn1/gt/
H A DGTCertTokenResponse.php53 * @param ASN1Sequence $object GTCertTokenResponse encoded as ASN1Sequence
56 public function decode($object) { argument
58 if (!$object instanceof ASN1Sequence) {
62 if ($object->getObjectCount() < 1 || $object->getObjectCount() > 2) {
67 $status->decode($object->getObjectAt(0));
75 if ($object->getObjectCount() != 2) {
79 $tag = $object->getObjectAt(1);
92 if ($object->getObjectCount() == 2) {
H A DGTTimeSignature.php64 * @param ASN1Sequence $object GTTImeSignature encoded as ASN1Sequence
67 public function decode($object) { argument
69 if (is_array($object)) {
70 $object = ASN1DER::decode($object);
73 if (!$object instanceof ASN1Sequence) {
77 $size = $object->getObjectCount();
83 $location = $object->getObjectAt(0);
84 $history = $object->getObjectAt(1);
98 $publishedData->decode($object->getObjectAt(2));
102 for ($i = 3; $i < $object->getObjectCount(); $i++) {
[all …]
H A DGTVerificationRequest.php56 * @param ASN1Sequence $object GTVerificationRequest encoded as ASN1Sequence
59 public function decode($object) { argument
61 if (!$object instanceof ASN1Sequence) {
65 $size = $object->getObjectCount();
71 $version = $object->getObjectAt(0);
84 $content->decode($object->getObjectAt(1));
88 $data = $object->getObjectAt(2);
/plugin/gtime/gtlib/asn1/cms/
H A DCMSSignerIdentifier.php59 * @param ASN1Sequence $object CMSSignerIdentifier encoded as ASN1Sequence
62 public function decode($object) { argument
64 if ($object instanceof ASN1Sequence) {
67 $issuerAndSerialNumber->decode($object);
71 } else if ($object instanceof ASN1Tag) {
73 if ($object->getTagValue() != 0) {
74 throw new GTException("Unexpected TAG value: " . $object->getTagValue());
77 $subjectKeyIdentifier = $object->getObjectAs(ASN1_TAG_OCTET_STRING);
82 throw new GTException("Unexpected ASN1 type: " . get_class($object));
H A DCMSEncapsulatedContentInfo.php56 * @param ASN1Sequence $object CMSEncapsulatedContentInfo encoded as an ASN1Sequence
59 public function decode($object) { argument
61 if (!$object instanceof ASN1Sequence) {
65 if ($object->getObjectCount() < 1 || $object->getObjectCount() > 2) {
66 throw new GTException("Invalid sequence size: {$object->getObjectCount()}");
69 $contentType = $object->getObjectAt(0);
77 if ($object->getObjectCount() == 2) {
79 $tag = $object->getObjectAt(1);
H A DCMSContentInfo.php58 * @param ASN1Sequence $object CMSContentInfo encoded as an ASN1Sequence
61 public function decode($object) { argument
63 if (!$object instanceof ASN1Sequence) {
67 if ($object->getObjectCount() != 2) {
68 throw new GTException("Bad sequence size: {$object->getObjectCount()}");
71 $contentType = $object->getObjectAt(0);
79 $tag = $object->getObjectAt(1);
/plugin/gtime/gtlib/asn1/
H A DASN1Sequence.php43 * @param ASN1Object $object
46 public function add($object) { argument
47 array_push($this->objects, $object);
87 foreach ($this->objects as $object) {
88 $this->append($bytes, $object->encodeDER());
107 $object = ASN1DER::decodeType($bytes);
110 $object->decodeDER($this->readBytes($bytes, $length));
112 array_push($this->objects, $object);
H A DASN1Set.php42 * @param ASN1Object $object the object to add
45 public function add($object) { argument
46 array_push($this->objects, $object);
86 foreach ($this->objects as $object) {
87 $this->append($bytes, $object->encodeDER());
106 $object = ASN1DER::decodeType($bytes);
109 $object->decodeDER($this->readBytes($bytes, $length));
111 array_push($this->objects, $object);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DClassMetadata.php201 public function merge(MergeableInterface $object): void argument
203 if (!$object instanceof ClassMetadata) {
206 parent::merge($object);
211 $this->xmlRootName = $object->xmlRootName;
212 $this->xmlRootNamespace = $object->xmlRootNamespace;
215 if ($object->accessorOrder) {
216 $this->accessorOrder = $object->accessorOrder;
217 $this->customOrder = $object->customOrder;
223 $object->name,
232 if (null !== $object->discriminatorDisabled) {
[all …]
/plugin/jcapture/src/com/hammurapi/jcapture/
H A DButtonManager.java37 DefineTag object; in maxIdentifier() local
39 object = iter.next(); in maxIdentifier()
41 identifier = object.getIdentifier(); in maxIdentifier()
63 MovieTag object; in findDefinitions() local
65 object = iter.next(); in findDefinitions()
66 if (object instanceof DefineTag) { in findDefinitions()
67 list.add((DefineTag)object); in findDefinitions()
73 MovieTag object; in findButtons() local
76 object = iter.next(); in findButtons()
77 if (object instanceof Place2) { in findButtons()
[all …]
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/Reflection/
H A DReflectionHelper.php50 * @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) : $object,
/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/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/regression/
H A Dissue_1143.test4 {{ object.region is not null ? object.regionChoices[object.region] }}
19 $object = new House();
20 $object->region = 1;
21 return ['object' => $object]
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DObjectEvent.php14 private $object; variable in JMS\\Serializer\\EventDispatcher\\ObjectEvent
17 * @param mixed $object
19 public function __construct(Context $context, $object, array $type) argument
23 $this->object = $object;
31 return $this->object;
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DMockBuilder.php106 $object = $this->generator->getMock(
120 $this->testCase->registerMockObject($object);
122 return $object;
143 $this->testCase->registerMockObject($object);
145 return $object;
155 $object = $this->generator->getMockForTrait(
166 $this->testCase->registerMockObject($object);
168 return $object;
372 * @param object $object
378 public function setProxyTarget($object) argument
[all …]
/plugin/combo/vendor/salesforce/handlebars-php/tests/Handlebars/
H A DHandlebarsTest.php239 $object = new stdClass;
240 $object->{'@first'} = 'apple';
241 $object->{'@last'} = 'banana';
242 $object->{'@index'} = 'carrot';
243 $object->{'@unknown'} = 'zucchini';
244 $data = ['data' => [$object]];
268 $object = new stdClass();
269 $object->$keyPropertyName = $itemValue;
270 $object->$firstPropertyName = $itemValue;
271 $object
[all...]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/Backend/
H A DMock.php128 foreach($objects as $uri => &$object) {
129 $object['calendarid'] = $calendarId;
130 $object['uri'] = $uri;
131 $object['lastmodified'] = null;
154 $object = $this->calendarData[$calendarId][$objectUri];
155 $object['calendarid'] = $calendarId;
156 $object['uri'] = $objectUri;
157 $object['lastmodified'] = null;
158 return $object;
/plugin/gtime/gtlib/asn1/cmp/
H A DPKIStatusInfo.php107 * @param ASN1Sequence $object PKIStatusInfo encoded as an ASN1Sequence
110 public function decode($object) { argument
112 if (!$object instanceof ASN1Sequence) {
116 $this->status = (int) $object->getObjectAt(0)->getValue();
118 for ($i = 1; $i < $object->getObjectCount(); $i++) {
120 $item = $object->getObjectAt($i);

12345678910>>...63