Home
last modified time | relevance | path

Searched refs:piece (Results 1 – 25 of 77) sorted by relevance

1234

/plugin/chessdiagram/
Dsyntax.php197 . chessboard_piece_filename(strtoupper($piece), 0)
198 . '" alt="' . strtoupper($piece) . '" />',
200 . chessboard_piece_filename(strtoupper($piece), 1)
201 . '" alt="' . strtoupper($piece) . '" />',
203 . chessboard_piece_filename($piece, 0)
204 . '" alt="' . $piece . '" />',
206 . chessboard_piece_filename($piece, 1)
207 . '" alt="' . $piece . '" />',
/plugin/findologicxmlexport/vendor/twig/extensions/lib/Twig/Extensions/Extension/
DText.php66 foreach ($pieces as $piece) {
67 while (!$preserve && mb_strlen($piece, $env->getCharset()) > $length) {
68 $sentences[] = mb_substr($piece, 0, $length, $env->getCharset());
69 $piece = mb_substr($piece, $length, 2048, $env->getCharset());
72 $sentences[] = $piece;
/plugin/pgn4web/pgn4web/libs/garbochess/
Dgarbochess.js30 var piece = g_board[((row + 2) << 4) + col + 4];
31 if (piece == 0) {
39 var pieceChar = [" ", "p", "n", "b", "r", "q", "k", " "][(piece & 0x7)];
40 result += ((piece & colorWhite) != 0) ? pieceChar.toUpperCase() : pieceChar;
472 var piece = g_board[move & 0xFF];
475 var pieceType = piece & 0x7;
478 score = historyTable[piece & 0xF][moveTo];
1484 var piece = g_board[i];
1485 if (piece & 0x18) {
1486 result.hashKeyLow ^= g_zobristLow[i][piece & 0xF]
[all …]
/plugin/xtern/
Daction.php141 foreach ($test as $piece)
143 if (strpos($piece, 'http') !== false)
145 … if (strpos($piece, $this->current) !== false && strpos($matches[0], '-LINK:' . $piece) === false)
154 … $matches[0] = str_replace($piece, "__ BROKEN-LINK:" . $piece . " LINK-BROKEN __", $matches[0]);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Entry/
H A DRdn.php128 foreach ($pieces as $piece) {
129 $parts = explode('=', $piece, 2);
131 throw new InvalidArgumentException(sprintf('The RDN "%s" is invalid.', $piece));
H A DDn.php175 foreach ($pieces as $i => $piece) {
176 $rdns[$i] = Rdn::create(ltrim($piece));
/plugin/authremoteuser/
Dauth.php382 $piece = '';
386 $piece .= $line[$i];
390 $row[] = $piece;
391 $piece = '';
394 $piece .= $line[$i];
396 $row[] = $piece;
/plugin/dil/
Dsyntax.php39 $piece = $ch->get($url);
41 $xml = simplexml_load_string($piece);
/plugin/authvk/
Dauth.php385 $piece = '';
389 $piece .= $line[$i];
393 $row[] = $piece;
394 $piece = '';
397 $piece .= $line[$i];
399 $row[] = $piece;
/plugin/dx/build/
DpluginInfoVersionUpdater.js9 .map( piece => piece.trim()) })
/plugin/yearbox/build/
DpluginInfoVersionUpdater.js13 .map( piece => piece.trim()) })
/plugin/authimap2/
Dauth.php447 $piece = '';
451 $piece .= $line[$i];
455 $row[] = $piece;
456 $piece = '';
459 $piece .= $line[$i];
461 $row[] = $piece;
/plugin/xkcd/
Dsyntax.php37 $piece = $ch->get($url);
38 $xml = simplexml_load_string($piece);
/plugin/dx/skel/build/
DpluginInfoVersionUpdater.js.skel9 .map( piece => piece.trim()) })
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/
DIPv6.php80 foreach ($aIP as $piece) {
81 if (!preg_match('#^[0-9a-fA-F]{4}$#s', sprintf('%04s', $piece))) {
/plugin/webcomics/
Dsyntax.php62 $piece = $ch->get($url);
63 $xml = simplexml_load_string($piece);
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DBitStringType.php68 foreach (str_split($this->value, 8) as $piece) {
69 $bytes .= chr(bindec($piece));
/plugin/findologicxmlexport/vendor/hoa/ustring/
DUstring.php263 * @param string $piece Piece.
268 public function pad($length, $piece, $side = self::END) argument
278 for ($i = $difference / mb_strlen($piece) - 1; $i >= 0; --$i) {
279 $handle .= $piece;
282 $handle .= mb_substr($piece, 0, $difference - mb_strlen($handle));
/plugin/authshibboleth/plugin/authshibboleth/
Dauth.php146 $piece = '';
150 $piece .= $line[$i];
154 $row[] = $piece;
155 $piece = '';
158 $piece .= $line[$i];
160 $row[] = $piece;
/plugin/authldaplocal/
Dauth.php638 $piece = '';
642 $piece .= $line[$i];
646 $row[] = $piece;
647 $piece = '';
650 $piece .= $line[$i];
652 $row[] = $piece;
/plugin/pgn4web/pgn4web/images/alpha/
DREADME.txt1 Chess images from http://ixian.com/chess/jin-piece-sets/ by Eric De Mund.
/plugin/pgn4web/pgn4web/images/uscf/
DREADME.txt1 Chess images from http://ixian.com/chess/jin-piece-sets/ by Eric De Mund.
/plugin/pgn4web/pgn4web/images/merida/
DREADME.txt1 Chess images from http://ixian.com/chess/jin-piece-sets/ by Eric De Mund.
/plugin/authyubikey/
Dauth.php.org359 $piece = '';
363 $piece .= $line[$i];
367 $row[] = $piece;
368 $piece = '';
371 $piece .= $line[$i];
373 $row[] = $piece;
/plugin/chessdiagram/toolbar/
Denglish.diff6 …>\n# Creates a chessboard from FEN and alternative one character for each piece 8x8\n7k/6p1/3r1pPp…

1234