Home
last modified time | relevance | path

Searched refs:nested (Results 76 – 100 of 142) sorted by path

123456

/plugin/fckg/fckeditor/editor/css/
H A Dfck_editorarea_RTL.css184 /* no gap in between nested lists */
/plugin/findologicxmlexport/vendor/hoa/exception/
H A DREADME.md143 exceptions can be thrown instead of one exception. Group can be nested too,
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md592 - OneToOne entities are not deserialized if passing a nested one-to-one property [\#652](https://gi…
880 - Serialization of nested polymorphic objects [\#238](https://github.com/schmittjoh/serializer/pull…
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsBasicTests.yml68 Sequences can be nested even deeper, with each
H A DsfMergeKey.yml39 nested:
58 'nested' => ['a' => 'Steve', 'w' => ['p' => 12345], 'd' => 'Doug', 'z' => ['p' => 12345]],
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG337 * fixed template/line guessing in exceptions for nested templates
548 * fixed nested embed tag calls
744 …* added a performance optimization in the Optimizer (also helps to lower the number of nested leve…
952 * fixed nested block definitions with a parent call (rarely useful but nonetheless supported now)
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Drecipes.rst232 Sometimes, when using nested loops, you need to access the parent context. The
H A Dtemplates.rst626 Arrays and hashes can be nested:
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dextends.rst122 Blocks can be nested for more complex layouts. Per default, blocks have access
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/expressions/
H A Darray.test15 {# nested arrays #}
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Ddefault.test11 {{ 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' }}
26 {{ 'o' ~ nested.nullVar |default('k') }}
34 Deep nested:
47 'nested' => [
89 Deep nested:
102 'nested' => [
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/autoescape/
H A Dnested.test2 "autoescape" tags can be nested at will
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/filter/
H A Dnested.test2 "filter" tags can be nested at will
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/for/
H A Drecursive.test2 "for" tags can be nested
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tags/with/
H A Dnested.test2 nested "with" tags
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
H A Ddefined.test10 {{ 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' }}
14 {{ nested['undefinedVar'] is defined ? 'ko' : 'ok' }}
15 {{ nested.undefinedVar is not defined ? 'ok' : 'ko' }}
16 {{ nested.zeroVar is defined ? 'ok' : 'ko' }}
17 {{ nested.nullVar is defined ? 'ok' : 'ko' }}
18 {{ nested.definedArray.0 is defined ? 'ok' : 'ko' }}
41 'nested' => [
[all …]
H A Ddefined_for_attribute.test4 {{ 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' }}
10 'nested' => [
23 'nested' => [
/plugin/gcalendar/inc/
H A Dgcal_read.php277 function expand_ns($page_list,$nested=false) { argument
295 }elseif($nested && is_dir($dir.$file)){
309 $subNS = expand_ns($subNS,$nested,false);
/plugin/groupmanager/
H A Dstyle.css22 #nested {
26 #nested td {
/plugin/hide/
H A Dstyle.css23 * This rule will try to hide the effects of nested syntax modes
/plugin/html2pdf/html2pdf/html2ps/
H A DChangeLog147 * Fixed: nested inline elements inside pre caused extra line
299 * Fixed: nested ordered lists were numbered incorrectly
383 * Fixed: tables nested in other tables could overflow containing
671 * Fixed: fixed-positioned blocks nested in other fixed-positioned
947 * Fixed: TABLE tag without nested TD tags caused an PHP error
991 * Fixed: nested mixed percentage-width and constant-width
1109 * Fixed: nested elements having font-size measured in em/ex units
1310 * Fixed borders of nested inline element could be duplicated
1312 * Fixed no background was rendered in nested inline elements
1510 incorrect content alignment in nested tables
H A Ddefault.css476 /* nested lists have no top/bottom margins */
H A Dxhtml.autoclose.inc.php4 function autoclose_tag(&$sample_html, $offset, $tags, $nested, $close) { argument
17 if (isset($nested[$tag])) {
18 $offset = $nested[$tag]($sample_html, $tag_end);
45 function autoclose_tag_cleanup(&$sample_html, $offset, $tags_raw, $nested, $close) { argument
59 if (isset($nested[$tag])) {
60 $offset = $nested[$tag]($sample_html, $tag_end);
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
H A DClassDefinitionNameSpacingSniff.php65 …$nested = $phpcsFile->findNext(T_OPEN_CURLY_BRACKET, ($stackPtr + 1), $tokens[$stackPtr]['bracket_…
66 if ($nested !== false) {
H A DClassDefinitionOpeningBraceSpaceSniff.php98 $nested = false;
106 $nested = true;
117 if ($nested === true) {

123456