Home
last modified time | relevance | path

Searched refs:objA (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@blueprintjs/core/src/common/utils/
H A DcompareUtils.ts65 if (objA == null && objB == null) {
91 if (objA === objB) {
101 return objA === objB;
107 const keysA = Object.keys(objA);
124 objA: T = ({} as any) as T,
142 return objA.hasOwnProperty(key) === objB.hasOwnProperty(key) && objA[key] === objB[key];
151 …return objA.hasOwnProperty(key) === objB.hasOwnProperty(key) && deepCompareKeys(objA[key], objB[ke…
163 const keysA = Object.keys(objA);
195 objA: T,
203 valueA: objA[key],
[all …]
/dports/textproc/opensearch-dashboards/opensearch-dashboards-1.2.0-linux-x64/plugins/observabilityDashboards/node_modules/@reduxjs/toolkit/src/query/tests/
H A DcopyWithStructuralSharing.test.ts8 const objA = JSON.parse(json) constant
10 expect(objA).toStrictEqual(objB)
11 expect(objA).not.toBe(objB)
13 expect(newCopy).toBe(objA)
23 const objA = JSON.parse(json) constant
27 expect(objA).not.toBe(objB)
32 expect(newCopy).not.toBe(objA)
50 const objA = JSON.parse(json) constant
54 expect(objA).not.toBe(objB)
56 expect(newCopy).toBe(objA)
[all …]
/dports/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json/Linq/
H A DJValue.cs173 if (objA == null && objB == null) in Compare()
175 if (objA != null && objB == null) in Compare()
183 if (objA is ulong || objB is ulong || objA is decimal || objB is decimal) in Compare()
185 else if (objA is float || objB is float || objA is double || objB is double) in Compare()
205 if (objA is DateTime) in Compare()
241 Guid guid1 = (Guid) objA; in Compare()
249 Uri uri1 = (Uri)objA; in Compare()
285 … result = ((objA != null) ? objA.ToString() : null) + ((objB != null) ? objB.ToString() : null); in Operation()
290 if (objA is ulong || objB is ulong || objA is decimal || objB is decimal) in Operation()
321 else if (objA is float || objB is float || objA is double || objB is double) in Operation()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/Newtonsoft.Json/Src/Newtonsoft.Json/Linq/
H A DJValue.cs184 if (objA == null && objB == null) in Compare()
186 if (objA != null && objB == null) in Compare()
194 if (objA is ulong || objB is ulong || objA is decimal || objB is decimal) in Compare()
196 else if (objA is float || objB is float || objA is double || objB is double) in Compare()
216 if (objA is DateTime) in Compare()
252 Guid guid1 = (Guid) objA; in Compare()
260 Uri uri1 = (Uri)objA; in Compare()
296 … result = ((objA != null) ? objA.ToString() : null) + ((objB != null) ? objB.ToString() : null); in Operation()
301 if (objA is ulong || objB is ulong || objA is decimal || objB is decimal) in Operation()
332 else if (objA is float || objB is float || objA is double || objB is double) in Operation()
[all …]
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Linq/
H A DJValue.cs268 if (objA is BigInteger) in Compare()
277 if (objA is ulong || objB is ulong || objA is decimal || objB is decimal) in Compare()
281 else if (objA is float || objB is float || objA is double || objB is double) in Compare()
291 if (objA is BigInteger) in Compare()
315 if (objA is DateTime) in Compare()
376 Guid guid1 = (Guid)objA; in Compare()
386 Uri uri1 = (Uri)objA; in Compare()
426 … result = ((objA != null) ? objA.ToString() : null) + ((objB != null) ? objB.ToString() : null); in Operation()
467 if (objA is ulong || objB is ulong || objA is decimal || objB is decimal) in Operation()
498 else if (objA is float || objB is float || objA is double || objB is double) in Operation()
[all …]
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Utilities/
H A DMiscellaneousUtils.cs40 public static bool ValueEquals(object objA, object objB) in ValueEquals() argument
42 if (objA == null && objB == null) in ValueEquals()
46 if (objA != null && objB == null) in ValueEquals()
50 if (objA == null && objB != null) in ValueEquals()
57 if (objA.GetType() != objB.GetType()) in ValueEquals()
59 if (ConvertUtils.IsInteger(objA) && ConvertUtils.IsInteger(objB)) in ValueEquals()
61 …return Convert.ToDecimal(objA, CultureInfo.CurrentCulture).Equals(Convert.ToDecimal(objB, CultureI… in ValueEquals()
63 …else if ((objA is double || objA is float || objA is decimal) && (objB is double || objB is float … in ValueEquals()
65 …return MathUtils.ApproxEquals(Convert.ToDouble(objA, CultureInfo.CurrentCulture), Convert.ToDouble… in ValueEquals()
73 return objA.Equals(objB); in ValueEquals()
/dports/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json/Utilities/
H A DMiscellaneousUtils.cs15 public static bool ValueEquals(object objA, object objB) in ValueEquals() argument
17 if (objA == null && objB == null) in ValueEquals()
19 if (objA != null && objB == null) in ValueEquals()
21 if (objA == null && objB != null) in ValueEquals()
26 if (objA.GetType() != objB.GetType()) in ValueEquals()
28 if (ConvertUtils.IsInteger(objA) && ConvertUtils.IsInteger(objB)) in ValueEquals()
29 …return Convert.ToDecimal(objA, CultureInfo.CurrentCulture).Equals(Convert.ToDecimal(objB, CultureI… in ValueEquals()
30 …else if ((objA is double || objA is float || objA is decimal) && (objB is double || objB is float … in ValueEquals()
31 …return MathUtils.ApproxEquals(Convert.ToDouble(objA, CultureInfo.CurrentCulture), Convert.ToDouble… in ValueEquals()
36 return objA.Equals(objB); in ValueEquals()
/dports/irc/smuxi/smuxi-1.1/lib/Newtonsoft.Json/Src/Newtonsoft.Json/Utilities/
H A DMiscellaneousUtils.cs40 public static bool ValueEquals(object objA, object objB) in ValueEquals() argument
42 if (objA == null && objB == null) in ValueEquals()
44 if (objA != null && objB == null) in ValueEquals()
46 if (objA == null && objB != null) in ValueEquals()
51 if (objA.GetType() != objB.GetType()) in ValueEquals()
53 if (ConvertUtils.IsInteger(objA) && ConvertUtils.IsInteger(objB)) in ValueEquals()
54 …return Convert.ToDecimal(objA, CultureInfo.CurrentCulture).Equals(Convert.ToDecimal(objB, CultureI… in ValueEquals()
55 …else if ((objA is double || objA is float || objA is decimal) && (objB is double || objB is float … in ValueEquals()
56 …return MathUtils.ApproxEquals(Convert.ToDouble(objA, CultureInfo.CurrentCulture), Convert.ToDouble… in ValueEquals()
61 return objA.Equals(objB); in ValueEquals()
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/lang/gnat_util/gcc-6-20180516/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9013 type objA type
16 end type objA
27 public objA,new,print
33 type(objA) :: oa
38 type (objA) :: oa
51 type(objA), pointer :: oa
69 type(objA), target :: oa
84 type (objA), pointer :: oa
92 type (objA), pointer :: getOa2
102 type (objA),target :: oa

12345678910>>...12