| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/ |
| D | defined.test | 4 {{ definedVar is defined ? 'ok' : 'ko' }} 5 {{ definedVar is not defined ? 'ko' : 'ok' }} 6 {{ undefinedVar is defined ? 'ko' : 'ok' }} 7 {{ undefinedVar is not defined ? 'ok' : 'ko' }} 8 {{ zeroVar is defined ? 'ok' : 'ko' }} 9 {{ nullVar is defined ? 'ok' : 'ko' }} 10 {{ nested.definedVar is defined ? 'ok' : 'ko' }} 11 {{ nested['definedVar'] is defined ? 'ok' : 'ko' }} 12 {{ nested.definedVar is not defined ? 'ko' : 'ok' }} 13 {{ nested.undefinedVar is defined ? 'ko' : 'ok' }} [all …]
|
| D | empty.test | 4 {{ string_empty is empty ? 'ok' : 'ko' }} 5 {{ string_zero is empty ? 'ko' : 'ok' }} 6 {{ value_null is empty ? 'ok' : 'ko' }} 7 {{ value_false is empty ? 'ok' : 'ko' }} 8 {{ value_int_zero is empty ? 'ko' : 'ok' }} 9 {{ array_empty is empty ? 'ok' : 'ko' }} 10 {{ array_not_empty is empty ? 'ko' : 'ok' }} 11 {{ magically_callable is empty ? 'ko' : 'ok' }} 12 {{ countable_empty is empty ? 'ok' : 'ko' }} 13 {{ countable_not_empty is empty ? 'ko' : 'ok' }} [all …]
|
| D | null_coalesce.test | 4 {{ 'OK' ?? 'KO' }} 5 {{ null ?? 'OK' }} 7 {{ baz ?? 'OK' }} 9 {{ foo.missing ?? 'OK' }} 10 {{ foo.bar.baz.missing ?? 'OK' }} 12 {{ foo['missing'] ?? 'OK' }} 13 {{ nope ?? nada ?? 'OK' }} 17 return ['bar' => 'OK', 'foo' => ['bar' => 'OK']] 19 OK 20 OK [all …]
|
| D | defined_for_attribute.test | 4 {{ attribute(nested, "definedVar") is defined ? 'ok' : 'ko' }} 5 {{ attribute(nested, "undefinedVar") is not defined ? 'ok' : 'ko' }} 6 {{ attribute(nested, definedVarName) is defined ? 'ok' : 'ko' }} 7 {{ attribute(nested, undefinedVarName) is not defined ? 'ok' : 'ko' }} 17 ok 18 ok 19 ok 20 ok 32 ok 33 ok [all …]
|
| D | defined_for_blocks.test | 8 {{ block('foo') is defined ? 'ok' : 'ko' }} 9 {{ block('footer') is defined ? 'ok' : 'ko' }} 10 {{ block('icon') is defined ? 'ok' : 'ko' }} 11 {{ block('block1') is defined ? 'ok' : 'ko' }} 19 {{ block('icon') is defined ? 'ok' : 'ko' -}} 23 {{ block('icon') is defined ? 'ok' : 'ko' }} 24 {{ block('content') is defined ? 'ok' : 'ko' }} 25 {{ block('block1') is defined ? 'ok' : 'ko' }} 31 ok 33 ok [all …]
|
| D | even.test | 4 {{ 1 is even ? 'ko' : 'ok' }} 5 {{ 2 is even ? 'ok' : 'ko' }} 6 {{ 1 is not even ? 'ok' : 'ko' }} 7 {{ 2 is not even ? 'ko' : 'ok' }} 11 ok 12 ok 13 ok 14 ok
|
| D | constant.test | 4 {{ 8 is constant('E_NOTICE') ? 'ok' : 'no' }} 5 {{ 'bar' is constant('TwigTestFoo::BAR_NAME') ? 'ok' : 'no' }} 6 {{ value is constant('TwigTestFoo::BAR_NAME') ? 'ok' : 'no' }} 7 {{ 2 is constant('ARRAY_AS_PROPS', object) ? 'ok' : 'no' }} 11 ok 12 ok 13 ok 14 ok
|
| D | defined_for_constants.test | 4 {{ constant('DATE_W3C') is defined ? 'ok' : 'ko' }} 5 {{ constant('ARRAY_AS_PROPS', object) is defined ? 'ok' : 'ko' }} 6 {{ constant('FOOBAR') is not defined ? 'ok' : 'ko' }} 7 {{ constant('FOOBAR', object) is not defined ? 'ok' : 'ko' }} 11 ok 12 ok 13 ok 14 ok
|
| D | iterable.test | 4 {{ foo is iterable ? 'ok' : 'ko' }} 5 {{ traversable is iterable ? 'ok' : 'ko' }} 6 {{ obj is iterable ? 'ok' : 'ko' }} 7 {{ val is iterable ? 'ok' : 'ko' }} 16 ok 17 ok
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/ |
| D | default.test | 5 {{ definedVar |default('default') is same as('default') ? 'ko' : 'ok' }} 6 {{ zeroVar |default('default') is same as('default') ? 'ko' : 'ok' }} 7 {{ emptyVar |default('default') is same as('default') ? 'ok' : 'ko' }} 8 {{ nullVar |default('default') is same as('default') ? 'ok' : 'ko' }} 9 {{ undefinedVar |default('default') is same as('default') ? 'ok' : 'ko' }} 11 {{ nested.definedVar |default('default') is same as('default') ? 'ko' : 'ok' }} 12 {{ nested['definedVar'] |default('default') is same as('default') ? 'ko' : 'ok' }} 13 {{ nested.zeroVar |default('default') is same as('default') ? 'ko' : 'ok' }} 14 {{ nested.emptyVar |default('default') is same as('default') ? 'ok' : 'ko' }} 15 {{ nested.nullVar |default('default') is same as('default') ? 'ok' : 'ko' }} [all …]
|
| /plugin/struct/action/ |
| H A D | migration.php | 93 $ok = true; 101 $ok = $ok && $sqlite->query("ALTER TABLE $name RENAME TO temp_$name"); 115 $ok = $ok && $sqlite->query($sql); 116 if (!$ok) return false; 127 $ok = $ok && $sqlite->query($s); 128 if (!$ok) return false; 131 $ok = $ok && $sqlite->query($s); 132 if (!$ok) return false; 136 $ok = $ok && $sqlite->query($s); 137 if (!$ok) return false; [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/ |
| D | starts_with.test | 4 {{ 'foo' starts with 'f' ? 'OK' : 'KO' }} 5 {{ not ('foo' starts with 'oo') ? 'OK' : 'KO' }} 6 {{ not ('foo' starts with 'foowaytoolong') ? 'OK' : 'KO' }} 7 {{ 'foo' starts with 'f' ? 'OK' : 'KO' }} 9 with 'f' ? 'OK' : 'KO' }} 10 {{ 'foo' starts with '' ? 'OK' : 'KO' }} 11 {{ '1' starts with true ? 'OK' : 'KO' }} 12 {{ '' starts with false ? 'OK' : 'KO' }} 13 {{ 'a' starts with false ? 'OK' : 'KO' }} 14 {{ false starts with '' ? 'OK' : 'KO' }} [all …]
|
| D | ends_with.test | 4 {{ 'foo' ends with 'o' ? 'OK' : 'KO' }} 5 {{ not ('foo' ends with 'f') ? 'OK' : 'KO' }} 6 {{ not ('foo' ends with 'foowaytoolong') ? 'OK' : 'KO' }} 7 {{ 'foo' ends with '' ? 'OK' : 'KO' }} 8 {{ '1' ends with true ? 'OK' : 'KO' }} 9 {{ 1 ends with true ? 'OK' : 'KO' }} 10 {{ 0 ends with false ? 'OK' : 'KO' }} 11 {{ '' ends with false ? 'OK' : 'KO' }} 12 {{ false ends with false ? 'OK' : 'KO' }} 13 {{ false ends with '' ? 'OK' : 'KO' }} [all …]
|
| D | sameas.test | 4 {{ 1 is same as(1) ? 'OK' }} 5 {{ 1 is not same as(true) ? 'OK' }} 6 {{ 1 is same as(1) ? 'OK' }} 7 {{ 1 is not same as(true) ? 'OK' }} 8 {{ 1 is same as (1) ? 'OK' }} 12 (true) ? 'OK' }} 16 OK 17 OK 18 OK 19 OK [all …]
|
| D | divisibleby.test | 4 {{ 8 is divisible by(2) ? 'OK' }} 5 {{ 8 is not divisible by(3) ? 'OK' }} 6 {{ 8 is divisible by (2) ? 'OK' }} 10 (3) ? 'OK' }} 14 OK 15 OK 16 OK 17 OK
|
| D | matches.test | 4 {{ 'foo' matches '/o/' ? 'OK' : 'KO' }} 5 {{ 'foo' matches '/^fo/' ? 'OK' : 'KO' }} 6 {{ 'foo' matches '/O/i' ? 'OK' : 'KO' }} 10 OK 11 OK 12 OK
|
| /plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/_files/ |
| D | MultipleDataProviderTest.php | 25 ['ok', null, null], 26 ['ok', null, null], 27 ['ok', null, null] 34 [null, 'ok', null], 35 [null, 'ok', null], 36 [null, 'ok', null] 43 [null, null, 'ok'], 44 [null, null, 'ok'], 45 [null, null, 'ok'] 51 yield ['ok', null, null]; [all …]
|
| /plugin/photogallery/ |
| D | admin.php | 49 $ok = version_compare(PHP_VERSION,'5.4.45',">="); 50 $this->_info_row('Current PHP version',phpversion(),$ok); 53 $ok = extension_loaded('exif'); 54 $this->_info_row('EXIF extension',($ok ? '' : 'not').' loaded',$ok); 55 $ok = extension_loaded('curl'); 56 $this->_info_row('CURL extension',($ok ? '' : 'not').' loaded',$ok); 57 $ok = extension_loaded('exif'); 58 $this->_info_row('IMAGICK extension',($ok ? '' : 'not').' loaded',$ok); 59 $ok = extension_loaded('zip'); 60 $this->_info_row('ZIP extension',($ok ? '' : 'not').' loaded',$ok); [all …]
|
| /plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/functions/ |
| D | date.test | 4 {{ date().format('r') == date('now').format('r') ? 'OK' : 'KO' }} 5 {{ date(date1) == date('2010-10-04 13:45') ? 'OK' : 'KO' }} 6 {{ date(date2) == date('2010-10-04 13:45') ? 'OK' : 'KO' }} 7 {{ date(date3) == date('2010-10-04 13:45') ? 'OK' : 'KO' }} 8 {{ date(date4) == date('2010-10-04 13:45') ? 'OK' : 'KO' }} 9 {{ date(date5) == date('1964-01-02 03:04') ? 'OK' : 'KO' }} 10 {{ date() > date('-1day') ? 'OK' : 'KO' }} 21 OK 22 OK 23 OK [all …]
|
| /plugin/strata/_test/ |
| D | storage.test.php | 14 $OK = $this->_triples->addTriple('Bob', 'knows', 'Alice', 'wiki'); 15 $this->assertTrue($OK); 24 …$OK = $this->_triples->addTriples(array(array('subject' => 'Bob', 'predicate' => 'knows', 'object'… 25 $this->assertTrue($OK); 34 $OK = $this->_triples->addTriple('Bob', 'knows', 'Alice', 'wiki'); 35 $this->assertTrue($OK); 36 $OK =$this->_triples->addTriple('Alice', 'knows', 'Carol', 'wiki'); 37 $this->assertTrue($OK); 47 $OK = $this->_triples->addTriple('*', 'select', '%', 'wiki'); 48 $this->assertTrue($OK); [all …]
|
| /plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/ |
| D | cross-document.js | 39 assert.ok(_.isEqual(iNumber, 100)); 42 …assert.ok(_.isEqual({}, iObject), 'Objects with equivalent members created in different documents … 45 …assert.ok(_.isEqual([1, 2, 3], iArray), 'Arrays with equivalent elements created in different docu… 51 assert.ok(_.isEmpty(iObject), '{} is empty'); 56 assert.ok(_.isElement(document.body), 'the body tag is a DOM element'); 57 assert.ok(_.isElement(iElement), 'even from another frame'); 61 assert.ok(_.isArguments(iArguments), 'even from another frame'); 65 assert.ok(_.isObject(iElement), 'even from another frame'); 66 assert.ok(_.isObject(iFunction), 'even from another frame'); 70 assert.ok(_.isArray(iArray), 'even from another frame'); [all …]
|
| /plugin/freechat/phpfreechat/ |
| D | checkmd5.php | 5 $files_ok[] = "<span style=\"color:#3A3\">ok - ./version.txt</span> 11 $files_ok[] = "<span style=\"color:#3A3\">ok - ./COPYING.txt</span> 17 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/doc-archi1.svg</span> 23 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/login.svg</span> 29 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/tabs.svg</span> 35 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/clock-off.png</span> 41 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/color-on.png</span> 47 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/clock-on.png</span> 53 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/png2gif.sh</span> 59 $files_ok[] = "<span style=\"color:#3A3\">ok - ./misc/logo_88x31.png</span> [all …]
|
| /plugin/ckgedit/ckeditor/plugins/a11yhelp/dialogs/lang/ |
| D | tr.js | 5 … ve SHIFT+TAB ile önceki ve sonraki araç çubuğu grubuna taşıyın. SAĞ OK veya SOL OK ile önceki ve … 6 …için ALT + F10 tuşlarına basın. Sonra TAB veya SAĞ OK sonraki sekmeye taşıyın. SHIFT + TAB veya SO… 7 …OK ile bir sonraki menü seçeneği taşıyın. SHIFT + TAB veya YUKARI OK ile önceki seçeneğe gider. Me… 8 …n ${ElementsPathFocus} basın. SEKME veya SAĞ OK ile sonraki element düğmesine taşıyın. SHIFT+TAB v… 10 …ukarı",pageDown:"Sayfa Aşağı",leftArrow:"Sol ok",upArrow:"Yukarı ok",rightArrow:"Sağ ok",downArrow…
|
| /plugin/ckgdoku/ckeditor/plugins/a11yhelp/dialogs/lang/ |
| D | tr.js | 5 … ve SHIFT+TAB ile önceki ve sonraki araç çubuğu grubuna taşıyın. SAĞ OK veya SOL OK ile önceki ve … 6 …için ALT + F10 tuşlarına basın. Sonra TAB veya SAĞ OK sonraki sekmeye taşıyın. SHIFT + TAB veya SO… 7 …OK ile bir sonraki menü seçeneği taşıyın. SHIFT + TAB veya YUKARI OK ile önceki seçeneğe gider. Me… 8 …n ${ElementsPathFocus} basın. SEKME veya SAĞ OK ile sonraki element düğmesine taşıyın. SHIFT+TAB v… 10 …ukarı",pageDown:"Sayfa Aşağı",leftArrow:"Sol ok",upArrow:"Yukarı ok",rightArrow:"Sağ ok",downArrow…
|
| /plugin/struct/meta/ |
| H A D | SchemaBuilder.php | 85 $ok = true; 88 $ok = $this->newDataTable(); 92 $ok = $ok && $this->newSchema(); 95 $ok = $ok && $this->updateColumns(); 96 $ok = $ok && $this->addColumns(); 98 if (!$ok) { 188 $ok = $this->sqlite->saveRecord('types', $newEntry); 189 if (!$ok) return false; 208 $ok = $this->sqlite->saveRecord('schema_cols', $schemaEntry); 209 if (!$ok) return false; [all …]
|