Home
last modified time | relevance | path

Searched full:zero (Results 1 – 25 of 1152) sorted by relevance

12345678910>>...47

/plugin/findologicxmlexport/vendor/findologic/libflexport/tests/FINDOLOGIC/Export/Tests/
DDataHelperTest.php49 'non-zero integer' => [123, false],
50 'zero as integer' => [0, false],
51 'non-zero float' => [12.3, false],
52 'zero as float' => [0.0, false],
53 'zero as string' => ['0', false],
96 'non-zero integer' => [123, false],
97 'zero as integer' => [0, false],
98 'non-zero float' => [12.3, false],
99 'zero as float' => [0.0, false],
100 'zero as string' => ['0', false]
/plugin/html2pdf/html2pdf/html2ps/unittest/
Dtest.table.border.php40 'Expected non-zero left border width');
42 'Expected non-zero right border width');
44 'Expected non-zero top border width');
46 'Expected non-zero bottom border width');
56 'Expected non-zero left border width');
58 'Expected non-zero right border width');
60 'Expected non-zero top border width');
62 'Expected non-zero bottom border width');
103 'Expected non-zero left border width');
105 'Expected non-zero right border width');
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/
DInteger.php20 * Whether or not zero is allowed.
23 protected $zero = true; variable in HTMLPurifier_AttrDef_Integer
33 * @param $zero Bool indicating whether or not zero is allowed
36 public function __construct($negative = true, $zero = true, $positive = true) argument
39 $this->zero = $zero;
64 } // rm minus sign for zero
77 if (!$this->zero && $integer == 0) {
/plugin/asciidocjs/node_modules/clean-css/lib/options/
Doptimization-level.js6 Zero: '0', property
13 DEFAULTS[OptimizationLevel.Zero] = {};
69 var Zero = OptimizationLevel.Zero;
92 if (typeof source == 'number' && source === parseInt(Zero)) {
110 if (Zero in source || One in source || Two in source) {
111 level[Zero] = override(level[Zero], source[Zero]);
/plugin/rdplink/RdpEncrypt/
DRdpEncrypt.vb57 ps.hwndApp = IntPtr.Zero
75 If blob.pbData.Equals(IntPtr.Zero) Then
169 IntPtr.Zero, _
190 If Not (plainTextBlob.pbData.Equals(IntPtr.Zero)) Then
194 If Not (cipherTextBlob.pbData.Equals(IntPtr.Zero)) Then
198 If Not (entropyBlob.pbData.Equals(IntPtr.Zero)) Then
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
DEd25519.php63 $zero = new BigInteger();
71 $qi = $zero;
75 return $zero;
79 while ($qi->compare($zero) > 0) {
84 $qi = $zero;
117 if ($x2->equals($this->zero)) {
121 return clone $this->zero;
137 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
142 if (!$x->multiply($x)->subtract($x2)->equals($this->zero)) {
230 return [clone $this->zero, clone $this->one, clone $this->one, clone $this->zero];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GamesConfiguration/
DGamesNumberAffixConfiguration.php108 public function setZero(LocalizedStringBundle $zero) argument
110 $this->zero = $zero;
117 return $this->zero;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AndroidProvisioningPartner/Resource/
DPartnersDevices.php47 * Claims a device for a customer and adds it to zero-touch enrollment. If the
64 * zero-touch enrollment. To learn more, read [Long‑running batch operations
65 * ](/zero-touch/guides/how-it-works#operations). (devices.claimAsync)
141 * Unclaims a device from a customer and removes it from zero-touch enrollment.
157 * devices from zero-touch enrollment. To learn more, read [Long‑running batch
158 * operations](/zero-touch/guides/how-it-works#operations).
175 * track progress. Read [Long‑running batch operations](/zero-touch/guides/how-
DPartnersCustomers.php35 * Creates a customer for zero-touch enrollment. After the method returns
37 * calling API methods or using their zero-touch enrollment portal. The customer
38 * receives an email that welcomes them to zero-touch enrollment and explains
/plugin/asciidocjs/node_modules/core-js/modules/
Des6.number.to-fixed.js10 var ZERO = '0'; variable
36 s = s === '' ? t : s + repeat.call(ZERO, 7 - t.length) + t;
69 var m = ZERO;
104 m = numToString() + repeat.call(ZERO, f);
109 … m = s + (k <= f ? '0.' + repeat.call(ZERO, f - k) + m : m.slice(0, k - f) + '.' + m.slice(k - f));
/plugin/asciidocjs/node_modules/core-js/library/modules/
Des6.number.to-fixed.js10 var ZERO = '0'; variable
36 s = s === '' ? t : s + repeat.call(ZERO, 7 - t.length) + t;
69 var m = ZERO;
104 m = numToString() + repeat.call(ZERO, f);
109 … m = s + (k <= f ? '0.' + repeat.call(ZERO, f - k) + m : m.slice(0, k - f) + '.' + m.slice(k - f));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
DKoblitzPrime.php18 * If a later version of SEC2 comes out wherein some $a$ values are non-zero we can create a
60 static $zero, $one, $two;
261 $zero = new BigInteger();
264 $b = clone $zero;
265 $c = clone $zero;
270 $a1 = clone $zero;
271 $b1 = clone $zero;
272 $a2 = clone $zero;
273 $b2 = clone $zero;
277 while (!$v->equals($zero)) {
DBase.php144 static $zero;
145 if (!isset($zero)) {
146 $zero = new BigInteger();
152 if ($x->compare($this->order) > 0 || $x->compare($zero) <= 0) {
DMontgomery.php65 * The Number Zero
69 protected $zero; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Montgomery
106 $this->zero = $this->factory->newInteger(new BigInteger());
225 $p1 = [$this->one, $this->zero];
258 return [clone $this->zero, clone $this->one];
/plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/lib/
Dbase64.js31 var zero = 48; // '0'
51 if (zero <= charCode && charCode <= nine) {
52 return (charCode - zero + numberOffset);
/plugin/asciidocjs/node_modules/source-map/lib/
Dbase64.js31 var zero = 48; // '0'
51 if (zero <= charCode && charCode <= nine) {
52 return (charCode - zero + numberOffset);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
DInteger.php59 * Zero
63 protected static $zero; variable in phpseclib3\\Math\\PrimeField\\Integer
74 $this->value = clone static::$zero[static::class];
101 if (!isset(static::$zero[static::class])) {
102 static::$zero[static::class] = new BigInteger();
366 while ($d->compare(static::$zero[static::class]) > 0) {
380 …$shift = !$d->equals(static::$zero[static::class]) && $d->bitwise_and($mask)->equals(static::$zero
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/
DAnyInvokedCount.php12 * Invocation matcher which checks if a method has been invoked zero or more
24 return 'invoked zero or more times';
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
DTemplateTest.php142 $this->assertInstanceOf('\Twig\Markup', $template->getAttribute($template1, 'zero'));
143 $this->assertEquals('0', $template->getAttribute($template1, 'zero'));
160 …* @expectedDeprecation Calling "zero" on template "index1.twig" from template "index.twig" is depr…
161 …* @expectedDeprecation Calling "zero" on template "index1.twig" from template "index.twig" is depr…
190 $this->assertInstanceOf('\Twig\Markup', $template->getAttribute($template1, 'zero'));
191 $this->assertEquals('0', $template->getAttribute($template1, 'zero'));
235 …$array = ['Zero', 'One', -1 => 'MinusOne', '' => 'EmptyString', '1.5' => 'FloatButString', '01' =>…
237 $this->assertSame('Zero', $array[false]);
246 …$this->assertSame('Zero', $template->getAttribute($array, false), 'false is treated as 0 when acce…
321 'zero' => 0,
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/Resource/
DInstances.php83 * valid UUID with the exception that zero UUID is not supported (
112 * valid UUID with the exception that zero UUID is not supported (
208 * valid UUID with the exception that zero UUID is not supported (
235 * valid UUID with the exception that zero UUID is not supported (
262 * valid UUID with the exception that zero UUID is not supported (
291 * valid UUID with the exception that zero UUID is not supported (
319 * valid UUID with the exception that zero UUID is not supported (
479 * valid UUID with the exception that zero UUID is not supported (
636 * valid UUID with the exception that zero UUID is not supported (
664 * valid UUID with the exception that zero UUID is not supported (
[all …]
DFirewallPolicies.php61 * valid UUID with the exception that zero UUID is not supported (
86 * valid UUID with the exception that zero UUID is not supported (
110 * valid UUID with the exception that zero UUID is not supported (
136 * valid UUID with the exception that zero UUID is not supported (
228 * valid UUID with the exception that zero UUID is not supported (
323 * valid UUID with the exception that zero UUID is not supported (
349 * valid UUID with the exception that zero UUID is not supported (
375 * valid UUID with the exception that zero UUID is not supported (
401 * valid UUID with the exception that zero UUID is not supported (
427 * valid UUID with the exception that zero UUID is not supported (
DProjects.php57 * valid UUID with the exception that zero UUID is not supported (
83 * valid UUID with the exception that zero UUID is not supported (
107 * valid UUID with the exception that zero UUID is not supported (
134 * valid UUID with the exception that zero UUID is not supported (
301 * valid UUID with the exception that zero UUID is not supported (
331 * valid UUID with the exception that zero UUID is not supported (
357 * valid UUID with the exception that zero UUID is not supported (
384 * valid UUID with the exception that zero UUID is not supported (
411 * valid UUID with the exception that zero UUID is not supported (
DNetworkFirewallPolicies.php61 * valid UUID with the exception that zero UUID is not supported (
93 * valid UUID with the exception that zero UUID is not supported (
119 * valid UUID with the exception that zero UUID is not supported (
146 * valid UUID with the exception that zero UUID is not supported (
240 * valid UUID with the exception that zero UUID is not supported (
321 * valid UUID with the exception that zero UUID is not supported (
348 * valid UUID with the exception that zero UUID is not supported (
375 * valid UUID with the exception that zero UUID is not supported (
403 * valid UUID with the exception that zero UUID is not supported (
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
DYamlTest.php29 * @expectedExceptionMessage The indentation must be greater than zero
38 * @expectedExceptionMessage The indentation must be greater than zero
/plugin/html2pdf/html2pdf/html2ps/
Dbox.br.php66 * BR tags do not take any horizontal space, so if minimal width is zero.
70 * @return int should always return constant zero.
77 * BR tags do not take any horizontal space, so if maximal width is zero.
81 * @return int should always return constant zero.

12345678910>>...47