Home
last modified time | relevance | path

Searched refs:charLists (Results 1 – 8 of 8) sorted by relevance

/dports/databases/phpmyadmin/phpMyAdmin-4.9.7-all-languages/libraries/classes/
H A DFont.php26 $charLists = array();
39 $charLists[] = array(
44 $charLists[] = array(
54 $charLists[] = array(
59 $charLists[] = array(
72 return $charLists;
91 if (empty($charLists) || !is_array($charLists)
92 || !isset($charLists[0]["chars"]) || !is_array($charLists[0]["chars"])
93 || !isset($charLists[0]["modifier"])
95 $charLists = self::getCharLists();
[all …]
/dports/databases/phpmyadmin5/phpMyAdmin-5.1.2-all-languages/libraries/classes/
H A DFont.php32 $charLists = [];
35 $charLists[] = [
44 $charLists[] = [
49 $charLists[] = [
57 $charLists[] = [
62 $charLists[] = [
67 $charLists[] = [
81 $charLists[] = [
108 $charLists[] = [
117 $charLists[] = [
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/tools/gnu/classpath/tools/rmic/
H A DHashFinder.java72 HashSet[] charLists = new HashSet[l]; in findHashCharPosition() local
74 for (int i = 0; i < charLists.length; i++) in findHashCharPosition()
76 charLists[i] = new HashSet(strings.length); in findHashCharPosition()
82 charLists[p].add(new Integer(strings[i].charAt(p))); in findHashCharPosition()
86 int v = charLists[0].size(); in findHashCharPosition()
88 for (int i = 1; i < charLists.length; i++) in findHashCharPosition()
92 if (charLists[i].size()>=v) in findHashCharPosition()
95 v = charLists[i].size(); in findHashCharPosition()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/tools/gnu/classpath/tools/rmic/
H A DHashFinder.java72 HashSet[] charLists = new HashSet[l]; in findHashCharPosition() local
74 for (int i = 0; i < charLists.length; i++) in findHashCharPosition()
76 charLists[i] = new HashSet(strings.length); in findHashCharPosition()
82 charLists[p].add(new Integer(strings[i].charAt(p))); in findHashCharPosition()
86 int v = charLists[0].size(); in findHashCharPosition()
88 for (int i = 1; i < charLists.length; i++) in findHashCharPosition()
92 if (charLists[i].size()>=v) in findHashCharPosition()
95 v = charLists[i].size(); in findHashCharPosition()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/tools/gnu/classpath/tools/rmic/
H A DHashFinder.java72 HashSet[] charLists = new HashSet[l]; in findHashCharPosition() local
74 for (int i = 0; i < charLists.length; i++) in findHashCharPosition()
76 charLists[i] = new HashSet(strings.length); in findHashCharPosition()
82 charLists[p].add(new Integer(strings[i].charAt(p))); in findHashCharPosition()
86 int v = charLists[0].size(); in findHashCharPosition()
88 for (int i = 1; i < charLists.length; i++) in findHashCharPosition()
92 if (charLists[i].size()>=v) in findHashCharPosition()
95 v = charLists[i].size(); in findHashCharPosition()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/tools/gnu/classpath/tools/rmic/
H A DHashFinder.java72 HashSet[] charLists = new HashSet[l]; in findHashCharPosition() local
74 for (int i = 0; i < charLists.length; i++) in findHashCharPosition()
76 charLists[i] = new HashSet(strings.length); in findHashCharPosition()
82 charLists[p].add(new Integer(strings[i].charAt(p))); in findHashCharPosition()
86 int v = charLists[0].size(); in findHashCharPosition()
88 for (int i = 1; i < charLists.length; i++) in findHashCharPosition()
92 if (charLists[i].size()>=v) in findHashCharPosition()
95 v = charLists[i].size(); in findHashCharPosition()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/tools/gnu/classpath/tools/rmic/
H A DHashFinder.java72 HashSet[] charLists = new HashSet[l]; in findHashCharPosition() local
74 for (int i = 0; i < charLists.length; i++) in findHashCharPosition()
76 charLists[i] = new HashSet(strings.length); in findHashCharPosition()
82 charLists[p].add(new Integer(strings[i].charAt(p))); in findHashCharPosition()
86 int v = charLists[0].size(); in findHashCharPosition()
88 for (int i = 1; i < charLists.length; i++) in findHashCharPosition()
92 if (charLists[i].size()>=v) in findHashCharPosition()
95 v = charLists[i].size(); in findHashCharPosition()
/dports/games/chessx/chessx-1.5.6/src/database/
H A Dbitboard.cpp3140 QMap<Piece, QStringList> charLists; in toHumanFen() local
3150 charLists[piece].append(QString("%1%2").arg(QChar('a' + col)).arg(row + 1)); in toHumanFen()
3161 if(charLists.contains(p)) in toHumanFen()
3168 w.append(charLists[p].join(",")); in toHumanFen()
3173 if(charLists.contains(p)) in toHumanFen()
3180 b.append(charLists[p].join(",")); in toHumanFen()