Home
last modified time | relevance | path

Searched refs:comment (Results 26 – 50 of 708) sorted by path

12345678910>>...29

/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DExternalRef.php23 public $comment; variable in Google\\Service\\ContainerAnalysis\\ExternalRef
35 public function setComment($comment) argument
37 $this->comment = $comment;
41 return $this->comment;
H A DFileOccurrence.php24 public $comment; variable in Google\\Service\\ContainerAnalysis\\FileOccurrence
41 public function setComment($comment) argument
43 $this->comment = $comment;
47 return $this->comment;
H A DRelationshipOccurrence.php22 public $comment; variable in Google\\Service\\ContainerAnalysis\\RelationshipOccurrence
27 public function setComment($comment) argument
29 $this->comment = $comment;
33 return $this->comment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/
H A DAdSlot.php25 public $comment; variable in Google\\Service\\Dfareporting\\AdSlot
58 public function setComment($comment) argument
60 $this->comment = $comment;
67 return $this->comment;
H A DCampaign.php56 public $comment; variable in Google\\Service\\Dfareporting\\Campaign
259 public function setComment($comment) argument
261 $this->comment = $comment;
268 return $this->comment;
H A DPlacement.php52 public $comment; variable in Google\\Service\\Dfareporting\\Placement
279 public function setComment($comment) argument
281 $this->comment = $comment;
288 return $this->comment;
H A DPlacementGroup.php50 public $comment; variable in Google\\Service\\Dfareporting\\PlacementGroup
211 public function setComment($comment) argument
213 $this->comment = $comment;
220 return $this->comment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DriveActivity/
H A DActionDetail.php48 public function setComment(Comment $comment) argument
50 $this->comment = $comment;
57 return $this->comment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/YouTube/
H A DActivityContentDetails.php76 public function setComment(ActivityContentDetailsComment $comment) argument
78 $this->comment = $comment;
85 return $this->comment;
/plugin/authgooglesheets/vendor/google/apiclient/
H A DLICENSE184 comment syntax for the file format. We also recommend that a
/plugin/authgooglesheets/vendor/google/auth/
H A DCOPYING185 comment syntax for the file format. We also recommend that a
H A DLICENSE184 comment syntax for the file format. We also recommend that a
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DAsymmetricKey.php123 private $comment; variable in phpseclib3\\Crypt\\Common\\AsymmetricKey
189 $comment = isset($components['comment']) ? $components['comment'] : null;
192 $new->comment = $comment;
453 return $this->comment;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DOpenSSH.php40 protected static $comment = 'phpseclib-generated-key'; variable in phpseclib3\\Crypt\\Common\\Formats\\Keys\\OpenSSH
54 * @param string $comment
56 public static function setComment($comment) argument
58 self::$comment = str_replace(["\r", "\n"], '', $comment);
141 $comment = isset($parts[1]) ? $parts[1] : false;
146 $comment = isset($parts[2]) ? $parts[2] : false;
211 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
214 Strings::packSSH2('s', $comment);
H A DPuTTY.php43 private static $comment = 'phpseclib-generated-key'; variable in phpseclib3\\Crypt\\Common\\Formats\\Keys\\PuTTY
57 * @param string $comment
59 public static function setComment($comment) argument
61 self::$comment = str_replace(["\r", "\n"], '', $comment);
301 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
306 $key .= "Comment: $comment\r\n";
310 $source = Strings::packSSH2('ssss', $type, $encryption, $comment, $public);
384 'Comment: "' . str_replace(['\\', '"'], ['\\\\', '\"'], self::$comment) . "\"\r\n" .
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/
H A DOpenSSH.php58 list($p, $q, $g, $y, $x, $comment) = Strings::unpackSSH2('i5s', $parsed['paddedKey']);
65 $comment = $parsed['comment'];
99 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
100 $DSAPublicKey = 'ssh-dss ' . base64_encode($DSAPublicKey) . ' ' . $comment;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DOpenSSH.php69 list(, $key, $comment) = Strings::unpackSSH2('sss', $paddedKey);
71 $key['comment'] = $comment;
74 … list($curveName, $publicKey, $privateKey, $comment) = Strings::unpackSSH2('ssis', $paddedKey);
81 'comment' => $comment
150 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
159 $key = 'ssh-ed25519 ' . base64_encode($key) . ' ' . $comment;
172 $key = 'ecdsa-sha2-' . $alias . ' ' . base64_encode($key) . ' ' . $comment;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DOpenSSH.php72 $comment,
112 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
113 $RSAPublicKey = 'ssh-rsa ' . base64_encode($RSAPublicKey) . ' ' . $comment;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/System/SSH/
H A DAgent.php185 list($key_blob, $comment) = Strings::unpackSSH2('ss', $packet);
/plugin/authucenter/lib/uc_client/
H A Dclient.php338 function uc_friend_add($uid, $friendid, $comment='') { argument
339 …func(UC_API_FUNC, 'friend', 'add', array('uid'=>$uid, 'friendid'=>$friendid, 'comment'=>$comment));
/plugin/authucenter/lib/uc_client/control/
H A Dfriend.php34 $comment = $this->input('comment');
35 $id = $_ENV['friend']->add($uid, $friendid, $comment);
/plugin/authucenter/lib/uc_client/model/
H A Dfriend.php26 function add($uid, $friendid, $comment='') { argument
29 …".UC_DBTABLEPRE."friends SET uid='$uid', friendid='$friendid', comment='$comment', direction='3'",…
37 …".UC_DBTABLEPRE."friends SET uid='$uid', friendid='$friendid', comment='$comment', direction='1'",…
/plugin/autotabber/
H A DLICENSE184 comment syntax for the file format. We also recommend that a
/plugin/avatar/parts/
H A Dmonsterparts.xcf3 gimp xcf filexxB�B� S gimp-commentCreated with The GIMPgimp-image-grid(style intersections)
/plugin/badbehaviour/
H A Dbadbehavior.readme2 Tags: comment,trackback,referrer,spam,robot,antispam

12345678910>>...29