Home
last modified time | relevance | path

Searched refs:this (Results 1101 – 1125 of 27090) sorted by relevance

1...<<41424344454647484950>>...1084

/plugin/authgooglesheets/vendor/google/apiclient-services/src/Testing/
H A DAndroidModel.php89 $this->brand = $brand;
96 return $this->brand;
110 return $this->codename;
117 $this->form = $form;
124 return $this->form;
145 $this->id = $id;
152 return $this->id;
187 $this->name = $name;
194 return $this->name;
271 $this->tags = $tags;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/
H A DName.php93 return $this->displayName;
114 $this->familyName = $familyName;
121 return $this->familyName;
128 $this->givenName = $givenName;
135 return $this->givenName;
149 return $this->honorificPrefix;
163 return $this->honorificSuffix;
170 $this->metadata = $metadata;
177 return $this->metadata;
191 return $this->middleName;
[all …]
/plugin/webdav/vendor/sabre/xml/lib/
H A DReader.php36 if (! $this->localName) {
40 return '{' . $this->namespaceURI . '}' . $this->localName;
68 while ($this->nodeType !== self::ELEMENT && @$this->read()) {
134 if ($this->nodeType === self::ELEMENT && $this->isEmptyElement) {
136 $this->next();
141 $this->pushContext();
151 if (!@$this->read()) {
216 while ($this->read() && $this->depth != $previousDepth) {
237 $name = $this->getClark();
241 if ($this->hasAttributes) {
[all …]
/plugin/icalevents/vendor/sabre/xml/lib/
H A DReader.php36 if (! $this->localName) {
40 return '{' . $this->namespaceURI . '}' . $this->localName;
68 while ($this->nodeType !== self::ELEMENT && @$this->read()) {
134 if ($this->nodeType === self::ELEMENT && $this->isEmptyElement) {
136 $this->next();
141 $this->pushContext();
151 if (!@$this->read()) {
216 while ($this->read() && $this->depth != $previousDepth) {
237 $name = $this->getClark();
241 if ($this->hasAttributes) {
[all …]
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/xml/
H A DXMLRPCClient.php57 $this->HTTPClient($host, $port);
58 $this->setRequestMethod("POST");
63 $this->xmlDoc = new XMLDocument();
64 $this->xmlDoc->setXML($this->xml);
68 $this->setRequestBody($this->xmlDoc->getXMLString());
83 $this->setRequestBody($this->xmlDoc->getXMLString());
95 $this->setRequestBody($this->xmlDoc->getXMLString());
106 $this->xmlDoc = &$XMLDocument;
107 $this->xml = &$this->xmlDoc->getXML();
108 $this->params = &$this->xml->getBranches("methodCall", "params");
[all …]
/plugin/findologicxmlexport/vendor/hoa/math/Combinatorics/Combination/
H A DCartesianProduct.php109 $this->_sets[] = $s;
112 $this->_max = count($this->_sets) - 1;
113 $this->_break = empty($this->_sets);
125 return $this->_current;
135 $this->_current = [];
151 return $this->_key;
177 ++$this->_key;
178 $this->_current();
190 $this->_break = empty($this->_sets);
191 $this->_key = 0;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessBusinessInformation/
H A DLocation.php109 $this->labels = $labels;
116 return $this->labels;
137 $this->latlng = $latlng;
144 return $this->latlng;
158 return $this->metadata;
179 $this->name = $name;
186 return $this->name;
200 return $this->openInfo;
228 return $this->profile;
333 $this->title = $title;
[all …]
/plugin/translator/
H A Dhelper.php97 if ( !is_null($this->checkedOK) ) { return $this->checkedOK; }
98 $this->checkedOK = $this->currentVersionChecked();
99 if ( $this->checkedOK ) { return $this->checkedOK; }
147 $this->database->setType($this->getConf('DBType'));
148 …if ( $this->database->connect($this->getConf('DBName'), $this->getConf('DBUserName'), $this->getCo…
201 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
380 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
768 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
1069 $data = array(); $this->database->bind_assoc($data); $this->database->fetch();
1137 $data=array(); $this->database->bind_assoc($data); $this->database->fetch();
[all …]
/plugin/combo/ComboStrap/Meta/Api/
H A DMetadata.php91 * The metadata is for this resource
127 $this->parent = $parent;
135 if ($this->parent === null) {
138 return $this->parent;
160 $value = $this->toStoreValue();
164 return $this->toStoreDefaultValue();
176 if (isset($this->childrenObject)) {
177 return $this->childrenObject;
181 $this->childrenObject[] = MetadataSystem::toMetadataObject($childrenClass)
182 ->setResource($this
[all...]
/plugin/findologicxmlexport/vendor/jms/metadata/tests/Driver/
H A DAbstractFileDriverTest.php25 $this->locator = $this->createMock('Metadata\Driver\FileLocator', [], [], '', false);
26 $this->driver = $this->getMockBuilder('Metadata\Driver\AbstractFileDriver')
30 …$this->driver->expects($this->any())->method('getExtension')->will($this->returnValue(self::$exten…
36 $this->locator
37 ->expects($this->once())
42 $this->driver
48 $this->assertSame($metadata, $this->driver->loadMetadataForClass($class));
54 $this->locator
60 $this->assertSame(null, $this->driver->loadMetadataForClass($class));
66 $this->locator
[all …]
/plugin/icalevents/vendor/sabre/xml/tests/Sabre/Xml/
H A DContextStackTest.php16 $this->stack = $this->getMockForTrait('Sabre\\Xml\\ContextStackTrait');
22 $this->stack->contextUri = '/foo/bar';
26 $this->stack->pushContext();
28 $this->assertEquals('/foo/bar', $this->stack->contextUri);
29 $this->assertEquals('Bar', $this->stack->elementMap['{DAV:}foo']);
30 $this->assertEquals('d', $this->stack->namespaceMap['DAV:']);
32 $this->stack->contextUri = '/gir/zim';
36 $this->stack->popContext();
38 $this->assertEquals('/foo/bar', $this->stack->contextUri);
39 $this->assertEquals('Bar', $this->stack->elementMap['{DAV:}foo']);
[all …]
/plugin/davcal/vendor/sabre/xml/tests/Sabre/Xml/
H A DContextStackTest.php16 $this->stack = $this->getMockForTrait('Sabre\\Xml\\ContextStackTrait');
22 $this->stack->contextUri = '/foo/bar';
26 $this->stack->pushContext();
28 $this->assertEquals('/foo/bar', $this->stack->contextUri);
29 $this->assertEquals('Bar', $this->stack->elementMap['{DAV:}foo']);
30 $this->assertEquals('d', $this->stack->namespaceMap['DAV:']);
32 $this->stack->contextUri = '/gir/zim';
36 $this->stack->popContext();
38 $this->assertEquals('/foo/bar', $this->stack->contextUri);
39 $this->assertEquals('Bar', $this->stack->elementMap['{DAV:}foo']);
[all …]
/plugin/refnotes/
H A Dinstructions.php19 $this->data = array($name, $data, $offset);
26 return $this->data;
126 $this->list = $list;
127 $this->data =& $data;
128 $this->index = $index;
129 $this->name = ($data[0] == 'plugin') ? 'plugin_' . $data[1][0] : $data[0];
136 return $this->index;
143 return $this->name;
150 return $this->data[1][$index];
157 return $this
[all...]
/plugin/autotweet/
H A Dtwitteroauth.php65 $this->token = NULL;
80 $request = $this->oAuthRequest($this->requestTokenURL(), 'GET', $parameters);
116 $request = $this->oAuthRequest($this->accessTokenURL(), 'GET', $parameters);
136 $request = $this->oAuthRequest($this->accessTokenURL(), 'POST', $parameters);
147 if ($this->format === 'json' && $this->decode_json) {
158 if ($this->format === 'json' && $this->decode_json) {
169 if ($this->format === 'json' && $this->decode_json) {
180 $url = "{$this->host}{$url}.{$this->format}";
183 $request->sign_request($this->sha1_method, $this->consumer, $this->token);
227 $this->http_info = array_merge($this->http_info, curl_getinfo($ci));
[all …]
/plugin/tocselect/
H A Daction.php47 $this->up = $this->get_up_dir($pathinf ); //inserted in get_dir_list()
58 $this->ul_count = $this->ul_open = $this->ul_closed = 0;
60 if($this->retv) {
79 $this->retv = "";
84 $this->ulcount('open');
98 $this->ulcount('closed');
99 if($this->ul_open > $this->ul_closed) {
130 if($this->ul_open> 0) $this->retv .="\n" .'<li class="ihidden">';
132 $this->ul_open++;
136 if($this->ul_closed> 0) $this->retv .="</li>\n";
[all …]
/plugin/findologicxmlexport/vendor/hoa/file/
H A DGeneric.php91 if (false === $this->getStatistic()) {
105 return fstat($this->getStream());
184 $p = $this->getPermissions();
311 $from = $this->getStreamName();
343 $from = $this->getStreamName();
376 $this->getStreamName(),
519 $old = $this->_mode;
520 $this->_mode = $mode;
532 return $this->_mode;
566 return $this->getStreamName();
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DResponse.php81 return $this->addBanding;
88 $this->addChart = $addChart;
95 return $this->addChart;
109 return $this->addDataSource;
137 return $this->addFilterView;
151 return $this->addNamedRange;
172 $this->addSheet = $addSheet;
179 return $this->addSheet;
193 return $this->addSlicer;
291 return $this->duplicateSheet;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessLodging/
H A DLodging.php112 return $this->allUnits;
126 return $this->business;
168 return $this->families;
238 return $this->metadata;
245 $this->name = $name;
252 return $this->name;
266 return $this->parking;
273 $this->pets = $pets;
280 return $this->pets;
301 $this->pools = $pools;
[all …]
/plugin/combo/ComboStrap/
H A DFetcherSvg.php24 * * the {@link FetcherSvg::setRequestedName() name} if this is an {@link FetcherSvg::setRequestedType() icon type}, the original path is then determined on {@link FetcherSvg::getSourcePath() get}
194 if ($this->requestedOptimization === null) {
197 return $this->requestedOptimization;
204 return $this->getRequestedOptimization();
217 if ($this->preserveStyle === null) {
220 return $this->preserveStyle;
231 $this->requestedOptimization = $boolean;
232 return $this;
247 if ($this->getRequestedOptimizeOrDefault()) {
255 foreach ($this
[all...]
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Sampler/
H A DSampler.php113 $this->_compiler = $compiler;
129 return $this->_compiler;
139 if (!isset($this->_skipTokenAST[$this->_currentNamespace])) {
148 $this->_tokens[$this->_currentNamespace]['skip']
151 $this->_skipTokenAST[$this->_currentNamespace] = $token->getAST();
154 return $this->_skipTokenAST[$this->_currentNamespace];
174 if (isset($this->_tokens[$this->_currentNamespace][$name])) {
176 $this->_tokens[$this->_currentNamespace][$name]
179 foreach ($this->_tokens[$this->_currentNamespace] as $_name => $regex) {
225 if (isset($this->_tokens[$this->_currentNamespace]['skip'])) {
[all …]
/plugin/zip/pear/File/Archive/Writer/
H A DAr.php129 if ($this->_atStart) {
134 $this->_currentStat[7] = strlen($this->_buffer);
137 … $this->arHeader($this->_currentFilename, $this->_currentStat)
139 $this->innerWriter->writeData($this->_buffer);
141 … $this->innerWriter->writeData($this->arFooter($this->_currentFilename, $this->_currentStat[7]));
143 $this->_buffer = "";
153 $this->flush();
167 if(!$this->_useBuffer) {
168 return $this->innerWriter->writeData($this->arHeader($filename, $stat));
177 $this->flush();
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowV2QueryResult.php85 $this->action = $action;
92 return $this->action;
134 return $this->diagnosticInfo;
162 return $this->fulfillmentText;
169 $this->intent = $intent;
176 return $this->intent;
204 return $this->languageCode;
218 return $this->outputContexts;
232 return $this->parameters;
246 return $this->queryText;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DNodeTemplate.php141 $this->disks = $disks;
148 return $this->disks;
155 $this->id = $id;
162 return $this->id;
169 $this->kind = $kind;
176 return $this->kind;
183 $this->name = $name;
190 return $this->name;
218 return $this->nodeType;
246 return $this->region;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ShoppingContent/
H A DAccount.php102 return $this->adsLinks;
165 $this->cssId = $cssId;
172 return $this->cssId;
193 $this->id = $id;
200 return $this->id;
207 $this->kind = $kind;
214 return $this->kind;
235 $this->name = $name;
242 return $this->name;
263 $this->users = $users;
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PaymentsResellerSubscription/
H A DGoogleCloudPaymentsResellerSubscriptionV1Subscription.php108 return $this->createTime;
122 return $this->cycleEndTime;
157 $this->name = $name;
164 return $this->name;
206 return $this->products;
220 return $this->promotions;
234 return $this->redirectUri;
248 return $this->renewalTime;
269 $this->state = $state;
276 return $this->state;
[all …]

1...<<41424344454647484950>>...1084