Home
last modified time | relevance | path

Searched refs:words (Results 276 – 300 of 319) sorted by path

1...<<111213

/plugin/pdfjs/pdfjs/web/locale/en-CA/
H A Dviewer.properties168 find_entire_word_label=Whole words
/plugin/pdfjs/pdfjs/web/locale/en-GB/
H A Dviewer.properties168 find_entire_word_label=Whole words
/plugin/pdfjs/pdfjs/web/locale/en-US/
H A Dviewer.properties168 find_entire_word_label=Whole words
/plugin/pdfjs/pdfjs/web/locale/tl/
H A Dviewer.properties168 find_entire_word_label=Whole words
/plugin/pgn4web/pgn4web/
H A Dpgn-standard.txt2728 20.1: Bytes, words, and doublewords
2730 At the lowest level, PGC binary data is organized as bytes, words (two
/plugin/plantuml/
H A DREADME.markdown62 Note: Multiple words need to be placed in double quotes.
/plugin/pubmed2020/classes/
H A Dpubmed2020.php716 $words = preg_split('/[\s\-\[\]\(\)\/\'\’\"\“\”\.]+/', $t);
717 foreach ($words as $word) {
/plugin/qrcode2/
H A Dphpqrcode.php430 if($words >= $size)
478 $words = (1 << $bits) - 1;
484 return $words;
1075 $words = (int)($this->size / 3);
1082 for($i=0; $i<$words; $i++) {
1110 $words = (int)($this->size / 2);
1116 for($i=0; $i<$words; $i++) {
1243 if($this->size > $words) {
1246 … $st2 = new QRinputItem($this->mode, $this->size - $words, array_slice($this->data, $words));
1663 $words = (int)(($bits + 7) / 8);
[all …]
/plugin/quickstats/
H A Daction.php216 $words = array();
232 $words = array_diff($ar['words'],$ar['not']);
235 $words = $ar['words'];
238 if(!empty($words)) {
239 foreach($words as $word) {
/plugin/quickstats/db/
H A DdataBaseStructure.txt27 [words] => Array
/plugin/readability/
H A Dcalc.php106 $words = explode(' ', $text);
107 for ($i = 0; $i < count($words); $i++) {
108 if (count_syllables($words[$i]) > 2) {
112 $score = number_format((($syllables / count($words)) * 100));
124 $words = strlen(preg_replace('/[^ ]/', '', $text));
126 return ($words/$sentences);
135 $words = explode(' ', $text);
137 for ($i = 0; $i < count($words); $i++) {
138 $syllables = $syllables + count_syllables($words[$i]);
140 return ($syllables/count($words));
/plugin/searchstats/
H A Daction.php54 foreach($q['words'] as $saveWord) {
H A Dhelper.php29 'number of words' => 'integer'),
30 'return' => array('words' => 'array'),
H A Dplugin.info.txt6 desc This plugin records the search words and displays stats in the admin section
/plugin/searchtablejs/
H A Dscript.js28 var words = phrase.value.toLowerCase().split(" ");
34 for (var i = 0; i < words.length; i++) {
35 if (ele.toLowerCase().indexOf(words[i])>=0)
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js4970 return arrayReduce(words(deburr(string).replace(reApos, '')), callback, '');
15218 function words(string, pattern, guard) {
16665 lodash.words = words;
H A Dlodash.min.js109 …Uu,An.valuesIn=function(n){return null==n?[]:S(n,Bu(n))},An.without=Bo,An.words=Mu,An.wrap=functio…
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md343 * <a href="#_wordsstring-pattern">`_.words`</a>
3037 `template`, `trim`, `trimEnd`, `trimStart`, and `words`
8637 `upperFirst`, `value`, and `words`
9254 Converts `string`, as space separated words, to lower case.
9985 Converts `string`, as space separated words, to upper case.
10041 <h3 id="_wordsstring-pattern"><code>_.words([string=''], [pattern])</code></h3>
10044 Splits `string` into an array of its words.
10051 2. `[pattern]` *(RegExp|string)*: The pattern to match words.
10054 *(Array)*: Returns the words of `string`.
10058 _.words('fred, barney, & pebbles');
[all …]
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js4970 return arrayReduce(words(deburr(string).replace(reApos, '')), callback, '');
15218 function words(string, pattern, guard) {
16665 lodash.words = words;
H A Dyarn.lock1892 reserved-words "^0.1.1"
2764 reserved-words@^0.1.1:
2766 …resolved "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.1.tgz#6f7c15e5e5614c50d…
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js24467 assert.deepEqual(_.words(flag), [flag]);
24476 assert.deepEqual(_.words(heart), [heart]);
24505 assert.deepEqual(_.words(surrogates), []);
25366 return _.words(letter);
25376 assert.deepEqual(_.words('abcd', 'ab|cd'), ['ab']);
25382 assert.deepEqual(_.words('12ft'), ['12', 'ft']);
25417 var words = ['a', 'b' + apos + postfix, 'c'];
25439 return _.words(words[0]);
25451 actual = lodashStable.map(operators, _.words);
25466 actual = lodashStable.map(marks, _.words);
[all …]
/plugin/solr/
H A DREADME.md17 …r starting point for creating a Solr search schema. Consider adding stop words to the stop word l…
35 …orm for advanced search where users can search for exact phrases, exclude words, search inside pag…
H A Daction.php206 $words = preg_split('/\s+/', $str);
208 foreach($words as $w) {
/plugin/sphinxsearch-was/
H A DSphinxSearch.php221 $words = explode(" ", $query);
222 foreach ($words as $id => $word) {
223 $words[$id] = "*" . $word . "*";
225 return implode(" ", $words);
230 $words = explode(" ", $query);
231 foreach ($words as $id => $word) {
232 $words[$id] = trim($word, "*");
234 return implode(" ", $words);
247 public function setArroundWordsCount($words = 5) argument
249 $this->_aroundKeyword = $words;
H A Dchangelog7 …* Bumped the text extracts to 500 words and 10 surrounding words and made these values configurabl…

1...<<111213