/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/ |
H A D | AssetCollectionFilterIterator.php | 25 private $sources; variable in Assetic\\Asset\\Iterator\\AssetCollectionFilterIterator 32 * @param array $sources An array of visited source strings 34 … __construct(AssetCollectionIterator $iterator, array $visited = array(), array $sources = array()) argument 39 $this->sources = $sources; 67 if (in_array($source, $this->sources)) { 70 $this->sources[] = $source; 82 return new self($this->getInnerIterator()->getChildren(), $this->visited, $this->sources);
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PeopleService/ |
H A D | CopyOtherContactToMyContactsGroupRequest.php | 34 public $sources; variable in Google\\Service\\PeopleService\\CopyOtherContactToMyContactsGroupRequest 67 public function setSources($sources) argument 69 $this->sources = $sources; 76 return $this->sources;
|
H A D | UpdateContactPhotoRequest.php | 34 public $sources; variable in Google\\Service\\PeopleService\\UpdateContactPhotoRequest 67 public function setSources($sources) argument 69 $this->sources = $sources; 76 return $this->sources;
|
H A D | BatchCreateContactsRequest.php | 32 public $sources; variable in Google\\Service\\PeopleService\\BatchCreateContactsRequest 65 public function setSources($sources) argument 67 $this->sources = $sources; 74 return $this->sources;
|
H A D | BatchUpdateContactsRequest.php | 32 public $sources; variable in Google\\Service\\PeopleService\\BatchUpdateContactsRequest 69 public function setSources($sources) argument 71 $this->sources = $sources; 78 return $this->sources;
|
H A D | PersonMetadata.php | 101 public function setSources($sources) argument 103 $this->sources = $sources; 110 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/ |
H A D | ChartSourceRange.php | 29 public function setSources($sources) argument 31 $this->sources = $sources; 38 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SecurityCommandCenter/ |
H A D | ListSourcesResponse.php | 47 public function setSources($sources) argument 49 $this->sources = $sources; 56 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/ |
H A D | ListQuerySourcesResponse.php | 47 public function setSources($sources) argument 49 $this->sources = $sources; 56 return $this->sources;
|
H A D | ListDataSourceResponse.php | 47 public function setSources($sources) argument 49 $this->sources = $sources; 56 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/NetworkSecurity/ |
H A D | Rule.php | 45 public function setSources($sources) argument 47 $this->sources = $sources; 54 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/ |
H A D | SideInputInfo.php | 51 public function setSources($sources) argument 53 $this->sources = $sources; 60 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudAsset/ |
H A D | GoogleIdentityAccesscontextmanagerV1IngressFrom.php | 65 public function setSources($sources) argument 67 $this->sources = $sources; 74 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AccessContextManager/ |
H A D | IngressFrom.php | 65 public function setSources($sources) argument 67 $this->sources = $sources; 74 return $this->sources;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/VMMigrationService/ |
H A D | ListSourcesResponse.php | 51 public function setSources($sources) argument 53 $this->sources = $sources; 60 return $this->sources;
|
/plugin/zip/pear/File/Archive/Reader/ |
H A D | Multi.php | 43 var $sources = array(); variable in File_Archive_Reader_Multi 61 $this->sources[] =& $source; 69 while (array_key_exists($this->currentIndex, $this->sources)) { 70 $this->source =& $this->sources[$this->currentIndex];
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CivicInfo/ |
H A D | AdministrationRegion.php | 82 public function setSources($sources) argument 84 $this->sources = $sources; 91 return $this->sources;
|
H A D | Office.php | 119 public function setSources($sources) argument 121 $this->sources = $sources; 128 return $this->sources;
|
H A D | PollingLocation.php | 143 public function setSources($sources) argument 145 $this->sources = $sources; 152 return $this->sources;
|
H A D | Contest.php | 429 public function setSources($sources) argument 431 $this->sources = $sources; 438 return $this->sources;
|
/plugin/aichat/script/ |
H A D | AIChatChat.js | 228 this.#history.push([response.question, response.answer, response.sources]); 232 this.displayMessage(response.answer, response.sources); // display the answer 279 * @param {object|null} sources Dict of sources {url:title, ...} if given this is assumed to be an AI message 282 displayMessage(message, sources = null) { 284 if(sources !== null) { 292 if (sources !== null && sources.length > 0) { 294 sources.forEach((source) => { 249 displayMessage(message, sources = null) global() argument
|
/plugin/authgoogle/google/contrib/ |
H A D | Google_CivicInfoService.php | 111 public $sources; variable in Google_AdministrationRegion 137 $this->assertIsArray($sources, 'Google_Source', __METHOD__); 138 $this->sources = $sources; 141 return $this->sources; 346 public $sources; variable in Google_Contest 429 $this->assertIsArray($sources, 'Google_Source', __METHOD__); 430 $this->sources = $sources; 433 return $this->sources; 566 public $sources; variable in Google_PollingLocation 607 $this->sources = $sources; [all …]
|
/plugin/aichat/ |
H A D | action.php | 51 'sources' => [], 58 $sources = []; 59 foreach ($result['sources'] as $source) { 61 if (isset($sources[$source->getPage()])) continue; // only show the first occurrence per page 62 $sources[$source->getPage()] = [ 75 'sources' => array_values($sources), 84 'sources' => $sources, 96 'sources' [all...] |
H A D | cli.php | 328 $sources = $this->helper->getEmbeddings()->getSimilarChunks($query, $langlimit); 329 $this->printSources($sources); 402 $this->printSources($answer['sources']); 408 * Print the given sources 410 * @param Chunk[] $sources 413 protected function printSources($sources) 415 foreach ($sources as $source) { 199 printSources($sources) global() argument
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
H A D | PeopleService.php | 247 'sources' => [ 304 'sources' => [ 333 'sources' => [ 356 'sources' => [ 379 'sources' => [ 410 'sources' => [ 436 'sources' => [ 467 'sources' => [ 486 'sources' => [ 549 'sources' => [
|