Home
last modified time | relevance | path

Searched refs:body (Results 151 – 175 of 1852) sorted by relevance

12345678910>>...75

/plugin/html2pdf/html2pdf/html2ps/unittest/
H A Dtest.float.php20 $body = $tree;
22 $this->assertEqual($body->get_left(),
42 $body = $tree;
44 $this->assertEqual($body->get_right(),
/plugin/authfacebook/lib/
H A DFacebookResponse.php50 protected $body; variable in Facebook\\FacebookResponse
71 * @param string|null $body
75 …public function __construct(FacebookRequest $request, $body = null, $httpStatusCode = null, array … argument
78 $this->body = $body;
142 return $this->body;
236 $this->decodedBody = json_decode($this->body, true);
240 parse_str($this->body, $this->decodedBody);
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DDeprecated.php57 …public static function create($body, DescriptionFactory $descriptionFactory = null, TypeContext $c… argument
59 Assert::nullOrString($body);
60 if (empty($body)) {
65 if (!preg_match('/^(' . self::REGEX_VECTOR . ')\s*(.+)?$/sux', $body, $matches)) {
68 null !== $descriptionFactory ? $descriptionFactory->create($body, $context) : null
H A DGeneric.php43 * @param string $body
51 $body, argument
56 Assert::string($body);
60 … $description = $descriptionFactory && $body ? $descriptionFactory->create($body, $context) : null;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Watcher/
H A DPutWatch.php57 public function setBody($body): PutWatch argument
59 if (isset($body) !== true) {
62 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ccr/
H A DFollow.php54 public function setBody($body): Follow argument
56 if (isset($body) !== true) {
59 $this->body = $body;
H A DForgetFollower.php52 public function setBody($body): ForgetFollower argument
54 if (isset($body) !== true) {
57 $this->body = $body;
H A DResumeFollow.php52 public function setBody($body): ResumeFollow argument
54 if (isset($body) !== true) {
57 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ilm/
H A DMoveToStep.php54 public function setBody($body): MoveToStep argument
56 if (isset($body) !== true) {
59 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Indices/
H A DCreate.php57 public function setBody($body): Create argument
59 if (isset($body) !== true) {
62 $this->body = $body;
H A DSimulateTemplate.php56 public function setBody($body): SimulateTemplate argument
58 if (isset($body) !== true) {
61 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ml/
H A DStartDataFrameAnalytics.php54 public function setBody($body): StartDataFrameAnalytics argument
56 if (isset($body) !== true) {
59 $this->body = $body;
H A DStopDataFrameAnalytics.php56 public function setBody($body): StopDataFrameAnalytics argument
58 if (isset($body) !== true) {
61 $this->body = $body;
H A DUpdateDataFrameAnalytics.php52 public function setBody($body): UpdateDataFrameAnalytics argument
54 if (isset($body) !== true) {
57 $this->body = $body;
H A DPutDataFrameAnalytics.php52 public function setBody($body): PutDataFrameAnalytics argument
54 if (isset($body) !== true) {
57 $this->body = $body;
H A DDeleteExpiredData.php55 public function setBody($body): DeleteExpiredData argument
57 if (isset($body) !== true) {
60 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Rollup/
H A DPutJob.php52 public function setBody($body): PutJob argument
54 if (isset($body) !== true) {
57 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Logstash/
H A DPutPipeline.php54 public function setBody($body): PutPipeline argument
56 if (isset($body) !== true) {
59 $this->body = $body;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ingest/
H A DPutPipeline.php55 public function setBody($body): PutPipeline argument
57 if (isset($body) !== true) {
60 $this->body = $body;
/plugin/dokumicrobugtracker/
H A Dedit.php30 $body = $conf['plugin']['dokumicrobugtracker']['email_body_template'];
32 $body = str_replace('\n', "\n", $body);
38 $body = str_replace('@' . $var . '@', $val, $body);
46 mail_send($to, $subject, $body, $from, $cc='', $bcc='', $headers=null, $params=null);
/plugin/database2/
H A Dprint.css49 body.print table
56 body.print table thead th
64 body.print table tbody td
71 body.print table tbody td.counter
77 body.print table tbody td.integer
82 body.print table tbody a
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DSqlNamespace.php33 * $params['body'] = (array) Specify the cursor value in the `cursor` element to clean the cursor. (Required)
41 $body = $this->extractArgument($params, 'body');
46 $endpoint->setBody($body);
118 * $params['body'] = (array) Use the `query` element to start a query. Use the `cursor` element to continue a query. (Required)
126 $body = $this->extractArgument($params, 'body');
131 $endpoint->setBody($body);
138 * $params['body'] = (array) Specify the query in the `query` element. (Required)
146 $body
[all...]
/plugin/wysiwyg/fckeditor/editor/_source/internals/
H A Dfck_ie.js76 var body = FCK.EditorDocument.body ;
78 body.detachEvent( 'onpaste', Doc_OnPaste ) ;
82 body.attachEvent( 'onpaste', Doc_OnPaste ) ;
128 this.EditorDocument.body.attachEvent( 'onpaste', Doc_OnPaste ) ;
131 this.EditorDocument.body.attachEvent( 'ondrop', Doc_OnDrop ) ;
134 FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument.body ) ;
184 oDoc.body.innerHTML = '<div id="__fakeFCKRemove__">&nbsp;</div>' + html ;
300 document.body.attachEvent( 'onpaste', FCK_CheckPasting_Listener ) ;
306 document.body.detachEvent( 'onpaste', FCK_CheckPasting_Listener ) ;
340 document.body.appendChild( oDiv ) ;
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DIssue220Test.php94 …e(strpos($response->body, '<s:exception>PHPUnit_Framework_Error_Warning</s:exception>'), 'Error Wa…
95 …se(strpos($response->body, 'Invalid argument supplied for foreach()'), 'Invalid argument supplied …
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Security/
H A DChangePassword.php54 public function setBody($body): ChangePassword argument
56 if (isset($body) !== true) {
59 $this->body = $body;

12345678910>>...75