| /plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/ |
| H A D | RemoteMouse.php | 40 * @param null|WebDriverCoordinates $where 44 public function click(WebDriverCoordinates $where = null) argument 47 $moveAction = $where ? [$this->createMoveAction($where)] : []; 62 $this->moveIfNeeded($where); 71 * @param WebDriverCoordinates $where 75 public function contextClick(WebDriverCoordinates $where = null) argument 78 $moveAction = $where ? [$this->createMoveAction($where)] : []; 102 $this->moveIfNeeded($where); 111 * @param WebDriverCoordinates $where 115 public function doubleClick(WebDriverCoordinates $where = null) argument [all …]
|
| /plugin/tagging/helper/ |
| H A D | querybuilder.php | 196 $where = '1=1'; 199 $where .= ' AND pid'; 200 $where .= $this->useLike($this->pid) ? ' GLOB' : ' ='; 201 $where .= ' ?'; 206 $where .= ' AND pid'; 207 $where .= ' IN('; 209 $where .= ' ?,'; 212 $where = rtrim($where, ',') . ')'; 216 $where .= ' AND tagger = ?'; 221 $where .= ' AND '; [all …]
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/ |
| H A D | WebDriverMouse.php | 13 * @param WebDriverCoordinates $where 16 public function click(WebDriverCoordinates $where); argument 19 * @param WebDriverCoordinates $where 22 public function contextClick(WebDriverCoordinates $where); argument 25 * @param WebDriverCoordinates $where 28 public function doubleClick(WebDriverCoordinates $where); argument 31 * @param WebDriverCoordinates $where 34 public function mouseDown(WebDriverCoordinates $where); argument 37 * @param WebDriverCoordinates $where 43 WebDriverCoordinates $where, argument [all …]
|
| /plugin/struct/_test/ |
| H A D | QueryBuilderWhereTest.php | 18 $where = new QueryBuilderWhere($QB); 20 $where->whereAnd('foo = foo'); 23 $this->cleanWS($where->toSQL()) 26 $where->whereAnd('bar = bar'); 29 $this->cleanWS($where->toSQL()) 32 $sub = $where->whereSubAnd(); 35 $this->cleanWS($where->toSQL()) 41 $this->cleanWS($where->toSQL()) 47 $this->cleanWS($where->toSQL()) 54 $where = new QueryBuilderWhere($QB); [all …]
|
| H A D | AccessTableDataReplacementTest.php | 175 $where = array_filter(explode("\n", $sql), function ($elem) { 178 $where = trim(reset($where)); 197 $this->assertEquals($this->cleanWS($expected_where), $this->cleanWS($where), $msg);
|
| /plugin/swiftmail/Swift/ |
| D | RecipientList.php | 52 public function add($address, $name="", $where="to") argument 61 foreach ($address as $a) $this->add($a, $name, $where); 71 if (in_array($where, array("to", "cc", "bcc"))) 73 $container =& $this->$where; 82 public function remove($address, $where="to") argument 90 if (in_array($where, array("to", "cc", "bcc"))) 92 if (array_key_exists($key, $this->$where)) unset($this->{$where}[$key]); 100 public function getIterator($where) argument 102 if (!empty($this->iterators[$where])) 104 return $this->iterators[$where]; [all …]
|
| /plugin/struct/meta/ |
| H A D | QueryBuilderWhere.php | 44 return $this->where('AND', $statement); 55 return $this->where('OR', $statement); 65 return $this->where('AND', null); 75 return $this->where('OR', null); 86 public function where($op = 'AND', $statement = null) function in dokuwiki\\plugin\\struct\\meta\\QueryBuilderWhere 94 $where = new QueryBuilderWhere($this->QB, $op, $statement); 95 $this->statement[] = $where; 100 return $where; 126 foreach ($this->statement as $where) { 127 $sql .= $where->toSQL($first);
|
| /plugin/userhomepage/ |
| D | action.php | 245 $where = $this->private_ns.':*'; 249 $where = cleanID($this->getConf('users_namespace')).':%USER%:*'; 253 …if (!in_array("$where\t$who\t$perm\n", $existingLines)) { $newLines[] = array('where' => $where, '… 256 $where = cleanID($this->getConf('users_namespace')).':*'; 259 …if (!in_array("$where\t$who\t$perm\n", $existingLines)) { $newLines[] = array('where' => $where, '… 263 $where = cleanID($this->getConf('users_namespace')).':*'; 266 …if (!in_array("$where\t$who\t$perm\n", $existingLines)) { $newLines[] = array('where' => $where, '… 273 … $where = str_replace('%NAME%:%START%', '%USER%', $this->getConf('public_pages_ns')).':*'; 276 $where = cleanID($this->getConf('public_pages_ns')).':%USER%'; 280 …if (!in_array("$where\t$who\t$perm\n", $existingLines)) { $newLines[] = array('where' => $where, '… [all …]
|
| /plugin/data-au/syntax/ |
| D | related.php | 73 $where = ''; 98 $where .= ' AND (' . join(' OR ', $cond) . ') '; 127 $where .= ' AND ( 1=1 '; 134 …$where .= " " . $filter['logic'] . " pages.page " . $filter['compare'] . " '" . $filter['value'] .… 136 …$where .= " " . $filter['logic'] . " pages.title " . $filter['compare'] . " '" . $filter['value'] … 145 … $where .= ' ' . $filter['logic'] . ' ' . $tables[$col] . '.value ' . $filter['compare'] . 150 $where .= ' ) '; 158 $where
|
| /plugin/data/syntax/ |
| D | related.php | 78 $where = ''; 101 $where .= ' AND (' . implode(' OR ', $cond) . ') '; 130 $where .= ' AND ( 1=1 '; 138 $where .= " " . $filter['logic'] . " pages.page " 142 $where .= " " 154 … $where .= ' ' . $filter['logic'] . ' ' . $tables[$col] . '.value ' . $filter['compare'] . 159 $where .= ' ) '; 167 $where
|
| /plugin/watchcycle/helper/ |
| D | db.php | 57 $where = []; 60 $where[] = 'page LIKE ?'; 64 $where[] = 'uptodate=0'; 67 if ($where !== []) { 69 $q .= implode(' AND ', $where);
|
| /plugin/dataloop/syntax/ |
| D | roll.php | 273 $where = ''; 327 $where .= ' AND ( 1=1 '; 333 … $where .= " ".$filter['logic']." pages.page ".$filter['compare']." '".$filter['value']."'"; 335 … $where .= " ".$filter['logic']." pages.title ".$filter['compare']." '".$filter['value']."'"; 344 $where .= ' '.$filter['logic'].' '.$tables[$col].'.value '.$filter['compare']. 349 $where .= ' ) '; 361 $where .= ' AND '.$tables[$col].".value = '".sqlite_escape_string($val)."'"; 366 $where = 'pages.pid = T1.pid '.$where; 368 $where = '1 = 1 '.$where; 374 WHERE $where
|
| D | textloop.php | 313 $where = ''; 367 $where .= ' AND ( 1=1 '; 373 … $where .= " ".$filter['logic']." pages.page ".$filter['compare']." '".$filter['value']."'"; 375 … $where .= " ".$filter['logic']." pages.title ".$filter['compare']." '".$filter['value']."'"; 384 $where .= ' '.$filter['logic'].' '.$tables[$col].'.value '.$filter['compare']. 389 $where .= ' ) '; 401 $where .= ' AND '.$tables[$col].".value = '".sqlite_escape_string($val)."'"; 406 $where = 'pages.pid = T1.pid '.$where; 408 $where = '1 = 1 '.$where; 414 WHERE $where
|
| D | loop.php | 389 $where = ''; 443 $where .= ' AND ( 1=1 '; 449 … $where .= " ".$filter['logic']." pages.page ".$filter['compare']." '".$filter['value']."'"; 451 … $where .= " ".$filter['logic']." pages.title ".$filter['compare']." '".$filter['value']."'"; 460 $where .= ' '.$filter['logic'].' '.$tables[$col].'.value '.$filter['compare']. 465 $where .= ' ) '; 477 $where .= ' AND '.$tables[$col].".value = '".sqlite_escape_string($val)."'"; 482 $where = 'pages.pid = T1.pid '.$where; 484 $where = '1 = 1 '.$where; 490 WHERE $where
|
| /plugin/progrecss/ |
| D | syntax.php | 154 $where= $data['order']; 167 $renderer->doc .= $this->_place_percentage($percentage, $fmted_p, $where); 220 function _place_percentage ($pv, $p, $where) { argument 221 if ($where==='before') $wt.= $p; 222 $wt.= ' <span class="bar '. $where. '" style="width: '.$pv. '%;">'; 223 if ($where==='inside') $wt.= $p; 225 if ($where==='after') $wt.= $p;
|
| /plugin/authowncloud/ |
| D | auth.php | 184 $where = array(); 190 array_push($where, '*PREFIX*users.uid LIKE ?'); 193 array_push($where, '*PREFIX*users.displayname LIKE ?'); 196 array_push($where, '*PREFIX*preferences.configvalue LIKE ?'); 200 array_push($where, '*PREFIX*group_user.gid LIKE ?'); 206 array_push($where, '*PREFIX*preferences.configkey = ?'); 215 if(!empty($where)) $wheres = ' WHERE '.implode(' AND ', $where);
|
| /plugin/dokutranslate/ |
| D | admin.php | 84 foreach((array) $_REQUEST['del'] as $where){ 86 unset($_REQUEST['acl'][$where]); 101 foreach((array) $_REQUEST['acl'] as $where => $who){ 104 $lines[] = "$where\t$who\n"; 345 foreach($this->acl as $where => $who){ 348 echo '<span class="dokutranslatens">'.hsc($where).'</span>'; 356 echo '<input type="hidden" name="acl['.hsc($where).']" value="'.hsc($who).'" />'; 357 echo '<input type="checkbox" name="del[]" value="'.hsc($where).'" />';
|
| /plugin/do/ |
| D | helper.php | 107 $where = ' WHERE 1=1'; 126 $where .= sprintf(' AND A.page LIKE %s', $this->db->quote_string($ns . '%')); 136 $where .= sprintf(' AND A.page = %s', $this->db->quote_string($args['id'][0])); 142 $where .= ' AND B.status IS NOT null'; 144 $where .= ' AND B.status IS null'; 154 … $where .= sprintf(" AND A.date >= '%s' AND A.date <= '%s' ", $args['from'][0], $args['to'][0]); 165 $where .= ' AND A.md5 = ' . $this->db->quote_string($args['md5'][0]); 195 $where .= sprintf(' AND %s in (%s)', $search, $args[$n]); 201 $where .= ' AND GETACCESSLEVEL(A.page) >= ' . AUTH_READ; 218 ' . $where . '
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Firestore/ |
| D | StructuredQuery.php | 145 public function setWhere(Filter $where) argument 147 $this->where = $where; 154 return $this->where;
|
| /plugin/asciidocjs/node_modules/clean-css/lib/writer/ |
| D | helpers.js | 145 function allowsBreak(context, where) { argument 146 return context.format && context.format.breaks[where]; 149 function allowsSpace(context, where) { argument 150 return context.format && context.format.spaces[where]; 153 function openBrace(context, where, needsPrefixSpace) { argument 159 (allowsBreak(context, where) ? context.format.breakWith : emptyCharacter) + 166 function closeBrace(context, where, beforeBlockEnd, isLast) { argument 173 …(isLast ? emptyCharacter : (allowsBreak(context, where) ? context.format.breakWith : emptyCharacte… 185 function semicolon(context, where, isLast) { argument 187 …Marker.SEMICOLON + (isLast || !allowsBreak(context, where) ? emptyCharacter : context.format.break…
|
| /plugin/authucenter/lib/uc_client/model/ |
| D | app.php | 26 function get_apps($col = '*', $where = '') { argument 27 …b->fetch_all("SELECT $col FROM ".UC_DBTABLEPRE."applications".($where ? ' WHERE '.$where : ''), 'a…
|
| /plugin/blogtng/helper/ |
| D | tags.php | 203 $where = ''; 205 $where .= '('.join(' OR ', $tag_clauses['OR']).')'; 208 $where .= (!empty($where) ? ' AND ' : '').join(' AND ', $tag_clauses['AND']); 211 $where .= (!empty($where) ? ' AND ' : '').join(' AND ', $tag_clauses['NOT']); 213 return $where;
|
| /plugin/asciidocjs/node_modules/clean-css/lib/optimizer/level-2/ |
| D | reduce-non-adjacent.js | 46 where: i, property 96 return localContext.data[idx].where < localContext.intoPosition; 110 var intoPosition = into[into.length - 1].where; 152 var where = data[j].where; 153 var token = tokens[where]; 158 processedTokens.push(where);
|
| /plugin/aichat/Storage/ |
| D | SQLiteStorage.php | 254 $where = 'WHERE lang = ' . $this->db->getPdo()->quote($lang); 256 $where = ''; 263 $query = "DELETE FROM clusters $where"; 265 $query = "UPDATE embeddings SET cluster = NULL $where"; 269 $query = "SELECT id, embedding FROM embeddings $where ORDER BY RANDOM() LIMIT ?"; 280 $query = "SELECT COUNT(*) FROM embeddings $where"; 351 $where = 'WHERE lang = ' . $this->db->getPdo()->quote($lang); 353 $where = ''; 358 $where
|
| /plugin/structnumber/types/ |
| D | Number.php | 114 $add = $add->where($op); // open a subgroup 115 $add->where('AND', "$tablealias.$colname != ''"); // make sure the field isn't empty 120 $add = $add->where($op); // sub where group 126 $add->where($op, "CAST($tablealias.$colname AS DECIMAL) $comp CAST($pl AS DECIMAL)");
|