Home
last modified time | relevance | path

Searched full:empty (Results 1 – 25 of 3835) sorted by relevance

12345678910>>...154

/plugin/indexmenu2/cms/extensions/tests/
DHelpersTestsIsAFunctions.html20 assertFalse("Check for undefined vs an empty array", isUndefined([]));
21 assertFalse("Check for undefined vs an empty object", isUndefined({}));
22 assertFalse("Check for undefined vs an empty string", isUndefined(""));
30 assertFalse("Check for Function vs an empty array", isFunction([]));
31 assertFalse("Check for Function vs an empty object", isFunction({}));
32 assertFalse("Check for Function vs an empty string", isFunction(""));
40 assertFalse("Check for String vs an empty array", isString([]));
41 assertFalse("Check for String vs an empty object", isString({}));
42 assertTrue("Check for String vs an empty string", isString(""));
50 assertFalse("Check for Number vs an empty array", isNumber([]));
[all …]
/plugin/virtualkeyboard/vk/extensions/tests/
DHelpersTestsIsAFunctions.html20 assertFalse("Check for undefined vs an empty array", isUndefined([]));
21 assertFalse("Check for undefined vs an empty object", isUndefined({}));
22 assertFalse("Check for undefined vs an empty string", isUndefined(""));
30 assertFalse("Check for Function vs an empty array", isFunction([]));
31 assertFalse("Check for Function vs an empty object", isFunction({}));
32 assertFalse("Check for Function vs an empty string", isFunction(""));
40 assertFalse("Check for String vs an empty array", isString([]));
41 assertFalse("Check for String vs an empty object", isString({}));
42 assertTrue("Check for String vs an empty string", isString(""));
50 assertFalse("Check for Number vs an empty array", isNumber([]));
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
DYtsNullsAndEmpties.yml2 test: Empty Sequence
4 You can represent the empty sequence
5 with an empty inline sequence.
7 empty: []
9 ['empty' => []]
11 test: Empty Mapping
13 You can represent the empty mapping
14 with an empty inline mapping.
16 empty: {}
18 ['empty' => []]
[all …]
/plugin/odt/ODT/css/
Dcssborder.php57 if (empty($value)) {
118 if (!empty($values [$index])) {
151 if (!empty($properties ['border'])) {
156 if (!empty($width)) {
162 if (!empty($style)) {
168 if (!empty($color)) {
177 if (!empty($properties ['border-left'])) {
182 if (!empty($width)) {
185 if (!empty($style)) {
188 if (!empty($color)) {
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/tests/
Dempty.test2 "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' }}
[all …]
/plugin/svgimg2/
Dhelper.php37 if ( empty($progType) ) $progType = $this->getConf('use_programm');
42 $width = empty( $width ) ? '' : ' -w' . intval($width);
43 $height = empty( $height ) ? '' : ' -h' . intval($height);
57 if ( !empty($width) ) $param .= intval($width);
58 if ( !empty($width) && !empty($data['height']) ) $param .= 'x';
59 if ( !empty($height) ) $param .= intval($height);
60 if ( !empty($param) ) $cmd = " -resize " . $param;
62 if ( !empty( $data['border'] )) { $cmd .= ' -border ' . intval($data['border']); }
63 …if ( !empty( $data['bordercolor'] )) { $cmd .= ' -bordercolor "' . escapeshellarg($data['bordercol…
72 $width = empty( $width ) ? '' : ' -w ' . intval($width);
[all …]
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
DWKT.php73 // if ($e->getMessage() !== 'IllegalArgumentException: Empty Points cannot be repres…
97 …h('/^(?<type>[A-Z]+)\s*(?<z>Z*)(?<m>M*)\s*(?:\((?<data>.+)\)|(?<data_empty>EMPTY))$/', $wkt, $m)) {
116 // If it's marked as empty, then return an empty point
117 if ($dataString == 'EMPTY') {
137 // If it's marked as empty, then return an empty line
138 if ($dataString == 'EMPTY') {
151 // If it's marked as empty, then return an empty polygon
152 if ($dataString == 'EMPTY') {
172 // If it's marked as empty, then return an empty MultiPoint
173 if ($dataString == 'EMPTY') {
[all …]
/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/
DDataElementsTest.php26 * with an empty value fails.
33 'Keyword with empty value' => ['', Keyword::class, true],
35 'Ordernumber with empty value' => ['', Ordernumber::class, true],
54 $this->fail('Adding empty values should cause exception!');
66 …* Provides a data set for testing if adding empty values to elements of type UsergroupAwareSimpleV…
74 'Bonus with empty value' => ['', Bonus::class, EmptyValueNotAllowedException::class],
77 … 'Description with empty value' => ['', Description::class, EmptyValueNotAllowedException::class],
79 'Name with empty value' => ['', Name::class, EmptyValueNotAllowedException::class],
81 'Price with empty value' => ['', Price::class, EmptyValueNotAllowedException::class],
85 'SalesFrequency with empty value' => ['', SalesFrequency::class,
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/tests/
Dempty.rst1 ``empty``
8 ``empty`` checks if a variable is an empty string, an empty array, an empty
11 For objects that implement the ``Countable`` interface, ``empty`` will check the
15 it will check if an empty string is returned.
19 {% if foo is empty %}
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Dphp_json_objects.asciidoc6 empty objects and arrays of objects. This page shows you some common patterns
10 ==== Empty Objects
12 The {es} API uses empty JSON objects in several locations which can cause
14 for empty objects and many developers are unaware how to specify an empty
34 <1> This empty JSON object is what causes problems.
38 the empty object is explicitly an object, not an array. To define this query in
57 <1> We use the generic PHP stdClass object to represent an empty object. The
61 correctly output an empty object, instead of an empty array. This verbose
63 version of an empty object.
129 ==== Arrays of empty objects
[all …]
/plugin/datatables/assets/datatables.net-i18n/
Den-GB.json69 "empty": "Empty", string
73 "notEmpty": "Not Empty"
77 "empty": "Empty", string
85 "notEmpty": "Not Empty"
89 "empty": "Empty", string
93 "notEmpty": "Not Empty",
101 "notEmpty": "Not Empty",
104 "empty": "Empty", string
224 "emptyError": "Name cannot be empty.",
/plugin/fontface/
Daction.php47 $elements = !empty($headings) ? $headings : $this->getConf('elements');
54 if (empty($technique)) {
59 … if (empty($fontName) && empty($fontFileName) && empty($fontName2) && empty($fontFileName2)) {
78 if ( !empty($elements) && !empty($fontName) ) {
81 if ( !empty($elements2) && !empty($fontName2) ) {
86 if (!empty($CSSfiles)){
97 if (!empty($CSSembed)){
116 if (empty($file)) {
134 if (empty($fontName) || empty($fontFileName)) {
185 if (empty($fontFileName)) {
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DAutoFormat.RemoveEmpty.txt7 When enabled, HTML Purifier will attempt to remove empty elements that
12 Tags with no attributes and no content, and that are not empty
27 seem that empty elements contain useful information, they can alter the
33 Elements that contain only whitespace will be treated as empty. Non-breaking
38 This algorithm is not perfect; you may still notice some empty tags,
41 being auto-closed by another tag, where empty. This is for safety reasons
43 if a tag looked empty on the way in, it will get removed; if HTML Purifier
44 made it empty, it will stay.
/plugin/siteexport/inc/
H A Dtoc.php16 $this->doDebug = !empty($_REQUEST['tocDebug']);
17 $this->emptyNSToc = !empty($_REQUEST['emptyTocElem']);
23 return !empty($val);
88 $anchor = ( !empty($elem['anchor']) ? '#' . $elem['anchor'] : '' );
107 if ( empty($elem['depth']) ) {
117 … // Use page title when no explicit link title was provided (empty name or no explicitTitle flag).
120 if ( empty( $elem['name'] ) || empty( $elem['explicitTitle'] ) ) {
123 if ( is_array($elem['mapID']) && empty( $elem['mapID'] ) ) {
165 if (empty($currentNSArray)) {
167 … // $key = empty($elemToAdd['name']) || 1==1 ? noNS($elemToAdd['id']) : $elemToAdd['name'];
[all …]
/plugin/odt/
Dsyntax.php162 if ( empty($params [$index]) ) {
272 if (empty($pagename)) {
315 if (empty($properties ['page'])) {
318 if (empty($properties ['wrap'])) {
321 if (empty($properties ['number-wrapped-paragraphs'])) {
324 if (empty($properties ['vertical-pos'])) {
327 if (empty($properties ['vertical-rel'])) {
330 if (empty($properties ['horizontal-pos'])) {
333 if (empty($properties ['horizontal-rel'])) {
336 if (empty($properties ['wrap-influence-on-position'])) {
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DPredictionContext.php58 public static function empty() : EmptyPredictionContext function in Antlr\\Antlr4\\Runtime\\PredictionContexts\\PredictionContext
60 static $empty;
62 if ($empty === null) {
64 $empty = new EmptyPredictionContext();
65 $empty->id = 0;
68 return $empty;
73 * Return {@see PredictionContext::empty()} if `outerContext` is empty or null.
82 // is EMPTY. Nobody called us. (if we are empty, return empty)
84 return self::empty();
100 * This means only the {@see PredictionContext::empty()} (wildcard? not sure)
[all …]
/plugin/davcal/vendor/sabre/uri/lib/
H A Dfunctions.php83 } elseif (!empty($base['query']) && empty($delta['host']) && empty($delta['path'])) {
110 if (!empty($parts['path'])) {
138 …if (!empty($parts['port']) && isset($defaultPorts[$parts['scheme']]) && $defaultPorts[$parts['sche…
146 if (empty($parts['path'])) {
147 // An empty path is equivalent to / in http.
197 if (!empty($parts['host'])) {
199 if (!empty($parts['user'])) {
202 if (!empty($parts['port'])) {
207 if (!empty($parts['scheme'])) {
218 if (!empty($parts['path'])) {
[all …]
/plugin/webdav/vendor/sabre/vobject/resources/schema/
Dxcal.rng646 element parameters { empty }?,
655 element parameters { empty }?,
664 element parameters { empty }?,
673 element parameters { empty }?,
709 element parameters { empty }?,
746 element parameters { empty }?,
769 element parameters { empty }?,
778 element parameters { empty }?,
799 element parameters { empty }?,
810 element parameters { empty }?,
[all …]
/plugin/icalevents/vendor/sabre/vobject/resources/schema/
Dxcal.rng646 element parameters { empty }?,
655 element parameters { empty }?,
664 element parameters { empty }?,
673 element parameters { empty }?,
709 element parameters { empty }?,
746 element parameters { empty }?,
769 element parameters { empty }?,
778 element parameters { empty }?,
799 element parameters { empty }?,
810 element parameters { empty }?,
[all …]
/plugin/tablelayout/
Dhelper.php23 if (!empty($layout->rowsHeaderSource)) {
26 if (!empty($layout->rowsVisible)) {
29 if (!empty($layout->colwidth)) {
32 if (!empty($layout->float)) {
35 if (!empty($layout->tableSort)) {
38 if (!empty($layout->tableSearch)) {
41 if (!empty($layout->tablePrint)) {
/plugin/prosemirror/parser/
DRSSNode.php26 if (!empty($attrs['url'])) {
31 if (!empty($attrs['max']) && $attrs['max'] !== 8) {
35 if (!empty($attrs['reverse'])) {
39 if (!empty($attrs['author'])) {
43 if (!empty($attrs['date'])) {
47 if (!empty($attrs['details'])) {
51 if (!empty($attrs['refresh']) && $attrs['refresh'] !== '4h') {
/plugin/mediatooltip/
Daction.php17 … if(!empty($this->toolTipOptions)) $this->toolTipOptions = explode(',',$this->toolTipOptions);
61 if(!empty($camera) && file_exists($path) && $ow == 'false') {
80 if(!empty($photogroups) ) {
88 if(!empty($user_grps)) {
105 if($use_real && empty($user) && isset($USERINFO)) {
107 if(!empty($client_name))
109 if(empty($user)) {
114 if(!empty($user)) {
143 if(empty($this->toolTipOptions)) {
179 if(!empty($w) && !empty($h)) {
[all …]
/plugin/displayorphans/lang/en/
Dsettings.php13 …"Space-separated list of pages to ignore when generating tables of orphaned pages. Default: empty";
14 …e-separated list of namespaces to ignore when generating tables of orphaned pages. Default: empty";
15 …= "Space-separated list of pages to ignore when generating tables of wanted pages. Default: empty";
16 …ace-separated list of namespaces to ignore when generating tables of wanted pages. Default: empty";
17 …= "Space-separated list of pages to ignore when generating tables of linked pages. Default: empty";
18 …ace-separated list of namespaces to ignore when generating tables of linked pages. Default: empty";
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
DObjectWithTypedArraySetter.php15 private $empty = []; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithTypedArraySetter
17 public function setEmpty(array $empty): void argument
19 $this->empty = $empty;
24 return $this->empty;
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DURIParser.php47 $scheme = !empty($matches[1]) ? $matches[2] : null;
48 $authority = !empty($matches[3]) ? $matches[4] : null;
49 $path = $matches[5]; // always present, can be empty
50 $query = !empty($matches[6]) ? $matches[7] : null;
51 $fragment = !empty($matches[8]) ? $matches[9] : null;
58 $userinfo = !empty($matches[1]) ? $matches[2] : null;
59 $host = !empty($matches[3]) ? $matches[3] : '';
60 $port = !empty($matches[4]) ? (int) $matches[5] : null;

12345678910>>...154