/plugin/findologicxmlexport/vendor/hoa/ustring/ |
H A D | Search.php | 67 for ($q = 0, $max = $k - 1; $q <= $max; ++$q) { 68 $L[$q][-$q - 1] = $L[$q][-$q - 2] = $q - 1; 71 for ($q = 0; $q <= $k; ++$q) { 72 for ($d = -$q, $max = $n - $m + $k - $q; $d <= $max; ++$d) { 75 $L[$q - 1][$d - 1], 76 $L[$q - 1][$d ] + 1, 77 $L[$q - 1][$d + 1] + 1 83 $L[$q][$d] = $l + static::lcp($a, $b); 85 if ($L[$q][$d] == $m - 1 || 86 $d + $L[$q][$d] == $n - 1) { [all …]
|
/plugin/multipoll/ |
H A D | syntax.php | 66 $q['a'][] = $m[2]; 71 $q['a'][] = $m[2]; 75 $q['q'] = implode(' ', array_map('trim', $q['q'])); 79 $q['q'][] = $l; 136 if(!isset($poll['results'][$q])) $poll['results'][$q] = array(); 145 if(!isset($poll['results'][$q][$v])) $poll['results'][$q][$v] = 0; 187 $q = 0; 194 …$s = isset($poll['results'][$q]) ? (isset($poll['results'][$q][$a]) ? $poll['results'][$q][$a] : 0… 203 $q++; 219 $q = 0; [all …]
|
/plugin/indexmenu2/cms/ |
H A D | cms.js | 15 …q){try{for(var E=K.length;E>=0;E--){if(_.stripCssClasses[q].indexOf(K[E])<0)continue;K.splice(E,1)… argument
|
/plugin/formatplus/ |
H A D | script.js | 25 var q = quotes[j]; 26 if(q.length < 3) continue; 27 var q1 = q.substring(1,q.length-1); 30 q = quotes[j+1]; 31 if(q.length >= 3){ 32 q2 = q.substring(1,q.length-1); 46 var q = qelems[i]; 47 if(isParentNode(qprev, q)){ 61 q.insertBefore(mark_before, q.firstChild); 62 q.insertBefore(mark_after); [all …]
|
/plugin/bez/mdl/ |
H A D | SubscriptionFactory.php | 11 $q = "SELECT user_id FROM {$this->get_table_name()} WHERE token=?"; 12 $r = $this->model->sqlite->query($q, $token); 24 $this->model->sqlite->query($q, $user_id); 31 $this->model->sqlite->query($q, $this->model->user_nick); 40 $q = "UPDATE {$this->get_table_name()} SET mute=0 WHERE user_id=?"; 41 $this->model->sqlite->query($q, $this->model->user_nick); 49 $q = "SELECT mute FROM {$this->get_table_name()} WHERE user_id=?"; 50 $r = $this->model->sqlite->query($q, $this->model->user_nick); 66 $r = $this->model->sqlite->query($q, $user); 79 $q = "SELECT user_id FROM {$this->get_table_name()} WHERE mute=1"; [all …]
|
/plugin/formatplus2/ |
H A D | script.js | 53 var q = quotes[j]; 54 if(q.length < 3) continue; 55 var q1 = q.substring(1,q.length-1); 58 q = quotes[j+1]; 59 if(q.length >= 3){ 60 q2 = q.substring(1,q.length-1); 74 var q = qelems[i]; 75 if(isParentNode(qprev, q)){ 89 q.insertBefore(mark_before, q.firstChild); 90 q.insertBefore(mark_after); [all …]
|
/plugin/codemirror/dist/modes/ |
H A D | cobol.min.js | 1 …q=null;switch(p.mode){case"string":var r=false;while((r=j.next())!=null){if(r=='"'||r=="'"){p.mode…
|
H A D | elm.min.js | 1 …q=j.next();if(h.test(q)){return q==="{"&&j.eat("-")?a(j,p,k(1)):q==="["&&j.match("glsl|")?a(j,p,o)…
|
H A D | crystal.min.js | 1 …q=b(p);var r=["\\)","\\}","\\]"];var s=new RegExp("^(?:"+r.join("|")+")$");var t={def:z,fun:z,macr…
|
/plugin/linksuggest/ |
H A D | action.php | 42 $q = trim($INPUT->post->str('q')); //entered string 46 if (strpos($q, '#') !== false) { 47 list($q, $hash) = explode('#', $q, 2); 50 $ns_user = $ns = getNS($q); //namespace of entered string 51 $id = cleanID(noNS($q)); //page of entered string 53 if ($q && trim($q, '.') === '') { //only "." return 87 $link = $q; 127 $q = trim($INPUT->post->str('q')); //entered string 129 $ns_user = $ns = getNS($q); //namespace of entered string 130 $id = cleanID(noNS($q)); //media of entered string [all …]
|
/plugin/md5gen/ |
H A D | syntax.php | 57 …$buffer.="String to Encode: <input type='password' name='q'> <input type='submit' value='Get … 60 if($_POST['q']!=""){ 63 $_POST['q']=strip_tags($_POST['q']); 65 $result=md5(trim($_POST['q']));
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/ |
H A D | OpenSSH.php | 58 list($p, $q, $g, $y, $x, $comment) = Strings::unpackSSH2('i5s', $parsed['paddedKey']); 63 list($p, $q, $g, $y) = Strings::unpackSSH2('iiii', $parsed['publicKey']); 81 …public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, a… argument 83 if ($q->getLength() != 160) { 93 $DSAPublicKey = Strings::packSSH2('siiii', 'ssh-dss', $p, $q, $g, $y); 118 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument 120 $publicKey = self::savePublicKey($p, $q, $g, $y, ['binary' => true]); 121 $privateKey = Strings::packSSH2('si5', 'ssh-dss', $p, $q, $g, $y, $x);
|
H A D | PuTTY.php | 69 list($p, $q, $g, $y) = Strings::unpackSSH2('iiii', $public); 88 …public static function savePrivateKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y, … argument 90 if ($q->getLength() != 160) { 94 $public = Strings::packSSH2('iiii', $p, $q, $g, $y); 110 public static function savePublicKey(BigInteger $p, BigInteger $q, BigInteger $g, BigInteger $y) argument 112 if ($q->getLength() != 160) { 116 return self::wrapPublicKey(Strings::packSSH2('iiii', $p, $q, $g, $y), 'ssh-dsa');
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Bigquery/ |
H A D | ArimaOrder.php | 33 public $q; variable in Google\\Service\\Bigquery\\ArimaOrder 66 public function setQ($q) argument 68 $this->q = $q; 75 return $this->q;
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
H A D | DSA.php | 74 protected $q; variable in phpseclib3\\Crypt\\DSA 147 $q = BigInteger::randomPrime($N); 148 $divisor = $q->multiply($two); 157 list($e) = $p_1->divide($q); 174 $dsa->q = $q; 212 $private->q = $params->q; 215 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one)); 249 $new->q = $components['q']; 282 return ['L' => $this->p->getLength(), 'N' => $this->q->getLength()]; 316 $key = $type::saveParameters($this->p, $this->q, $this->g);
|
/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/ |
H A D | geshi.js | 1 …q="start";var o=r?r:"temp."+p;var i=a();return'<dl class="file"><dt><a href="'+i.href+"?do=export_…
|
/plugin/watchcycle/ |
H A D | admin.php | 96 …$q = 'SELECT page, maintainer, cycle, DAYS_AGO(last_maintainer_rev) AS current, uptodate FROM watc… 108 $q .= ' WHERE '; 109 $q .= implode(' AND ', $where); 113 $q .= ' ORDER BY ' . $INPUT->str('sortby'); 115 $q .= ' DESC'; 119 $res = $sqlite->query($q, $q_args);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/DSA/ |
H A D | PublicKey.php | 60 $q_1 = $this->q->subtract(self::$one); 65 $w = $s->modInverse($this->q); 68 list(, $u1) = $h->multiply($w)->divide($this->q); 69 list(, $u2) = $r->multiply($w)->divide($this->q); 73 list(, $v) = $v->divide($this->q); 89 return $type::savePublicKey($this->p, $this->q, $this->g, $this->y, $options);
|
H A D | PrivateKey.php | 70 $key = $type::savePublicKey($this->p, $this->q, $this->g, $this->y); 108 $k = BigInteger::randomRange(self::$one, $this->q->subtract(self::$one)); 110 list(, $r) = $r->divide($this->q); 114 $kinv = $k->modInverse($this->q); 117 list(, $s) = $temp->divide($this->q); 157 …return $type::savePrivateKey($this->p, $this->q, $this->g, $this->y, $this->x, $this->password, $o…
|
/plugin/googlesearch/ |
H A D | action.php | 96 urlencode("site:$url $q"),'Search for '.hsc($q), 119 $info = str_replace('%q',hsc($q),$info); 143 … echo $this->external_link(wl('',array('do'=>'googlesearch','id'=>$q,'start'=>$prev),'false','&'), 151 … echo $this->external_link(wl('',array('do'=>'googlesearch','id'=>$q,'start'=>$next),'false','&'),
|
H A D | GoogleAPI.php | 37 function do_search( $q, $start, $num=10 ){ argument 41 'q' => $this->restrict.' '.$q, 75 function do_spell( $q, &$spell ){ argument 79 'phrase' => $q,
|
/plugin/ckgedit/ckeditor/plugins/tags/dialogs/ |
H A D | tags.js | 1 …q){if(n!=null){var s=new RegExp("( |>)"+q.toUpperCase()+"( |})","g");for(var r=0;r<n.length;r++){i… argument
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/ |
H A D | Prime.php | 195 list($u2, $s2) = $q; 227 list($x2, $y2) = $q; 263 list($x2, $y2, $z2) = $q; 305 if (!count($p) || !count($q)) { 306 if (count($q)) { 307 return $q; 316 if (isset($p[2]) && isset($q[2])) { 323 if (isset($q['fresh'])) { 329 if (isset($p[2]) || isset($q[2])) { 333 if ($p[0]->equals($q[0])) { [all …]
|
/plugin/geonav/server/ |
H A D | get_state.php | 8 $q=$_GET["q"]; variable 15 $html .= '<h2 class="indent">' . $q . "</h2>"; 17 $region = convToFile($q); 28 $query = "SELECT * FROM states WHERE state_abbr = '".$q."'";
|
/plugin/dwcommits/ |
H A D | helper.php | 460 $query = count($q) ? $q: $_REQUEST['dwc_query']; 500 if(!$q) { 512 return array($arr, $q); 519 $query = $q ? $q: $_REQUEST['dwc_query']; 595 $query = $q ? $q: $_REQUEST['dwc_query']; 660 $q = ""; 671 return $q; 676 $q = ""; 682 else $q = " $author "; 689 $q = " $branch "; [all …]
|