Home
last modified time | relevance | path

Searched refs:objB (Results 1 – 25 of 340) sorted by relevance

12345678910>>...14

/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;
108 const keysB = Object.keys(objB);
125 objB: 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…
164 const keysB = Object.keys(objB);
196 objB: T,
204 valueB: objB[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.ts9 const objB = JSON.parse(json) constant
10 expect(objA).toStrictEqual(objB)
11 expect(objA).not.toBe(objB)
14 expect(newCopy).not.toBe(objB)
24 const objB = JSON.parse(json) constant
25 objB.a.h = 4
27 expect(objA).not.toBe(objB)
51 const objB = JSON.parse(json) constant
54 expect(objA).not.toBe(objB)
72 objB[2][2] = 'x'
[all …]
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json/Linq/
H A DJValue.cs272 if (objB 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()
295 if (objB is BigInteger) in Compare()
353 if (!(objB is byte[])) in Compare()
371 if (!(objB is Guid)) in Compare()
381 if (!(objB is Uri)) in Compare()
387 Uri uri2 = (Uri)objB; in Compare()
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/lang/mono/mono-5.10.1.57/external/Newtonsoft.Json/Src/Newtonsoft.Json/Linq/
H A DJValue.cs183 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()
226 if (!(objB is byte[])) in Compare()
238 if (!(objB is Guid)) in Compare()
242 Guid guid2 = (Guid) objB; in Compare()
246 if (!(objB is Uri)) in Compare()
250 Uri uri2 = (Uri)objB; in Compare()
254 if (!(objB is TimeSpan)) in Compare()
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.cs194 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()
237 if (!(objB is byte[])) in Compare()
249 if (!(objB is Guid)) in Compare()
253 Guid guid2 = (Guid) objB; in Compare()
257 if (!(objB is Uri)) in Compare()
261 Uri uri2 = (Uri)objB; in Compare()
265 if (!(objB is TimeSpan)) in Compare()
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/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 …vert.ToDecimal(objA, CultureInfo.CurrentCulture).Equals(Convert.ToDecimal(objB, CultureInfo.Curren… in ValueEquals()
63 …(objA is double || objA is float || objA is decimal) && (objB is double || objB is float || objB i… in ValueEquals()
65 …uals(Convert.ToDouble(objA, CultureInfo.CurrentCulture), Convert.ToDouble(objB, CultureInfo.Curren… in ValueEquals()
73 return objA.Equals(objB); in ValueEquals()
/dports/science/chrono/chrono-7.0.1/src/chrono/physics/
H A DChContactContainerSMC.cpp183 (*lastcontact)->Reset(objA, objB, cinfo, cmat); in _OptimalContactInsert()
187 Tcont* mc = new Tcont(container, objA, objB, cinfo, cmat); in _OptimalContactInsert()
277 auto objB = static_cast<ChContactable_1vars<3>*>(contactableB); in InsertContact() local
281 auto objB = static_cast<ChContactable_1vars<6>*>(contactableB); in InsertContact() local
286 auto objB = static_cast<ChContactable_3vars<3, 3, 3>*>(contactableB); in InsertContact() local
301 auto objB = static_cast<ChContactable_1vars<3>*>(contactableB); in InsertContact() local
305 auto objB = static_cast<ChContactable_1vars<6>*>(contactableB); in InsertContact() local
324 auto objB = static_cast<ChContactable_1vars<3>*>(contactableB); in InsertContact() local
328 auto objB = static_cast<ChContactable_1vars<6>*>(contactableB); in InsertContact() local
346 auto objB = static_cast<ChContactable_1vars<3>*>(contactableB); in InsertContact() local
[all …]
/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 …(objA is double || objA is float || objA is decimal) && (objB is double || objB is float || objB i… in ValueEquals()
31 …uals(Convert.ToDouble(objA, CultureInfo.CurrentCulture), Convert.ToDouble(objB, CultureInfo.Curren… 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 …(objA is double || objA is float || objA is decimal) && (objB is double || objB is float || objB i… in ValueEquals()
56 …uals(Convert.ToDouble(objA, CultureInfo.CurrentCulture), Convert.ToDouble(objB, CultureInfo.Curren… in ValueEquals()
61 return objA.Equals(objB); in ValueEquals()
/dports/graphics/poppler/poppler-21.12.0/test/
H A Dpdf-fullrewrite.cc130 if (objB->getType() != objBool) { in compareObjects()
139 if (!objB->isNum()) { in compareObjects()
148 if (objB->getType() != objString) { in compareObjects()
157 if (objB->getType() != objName) { in compareObjects()
166 if (objB->getType() != objNull) { in compareObjects()
173 if (objB->getType() != objArray) { in compareObjects()
194 if (objB->getType() != objDict) { in compareObjects()
198 Dict *dictB = objB->getDict(); in compareObjects()
203 if (objB->getType() != objStream) { in compareObjects()
226 if (objB->getType() != objRef) { in compareObjects()
[all …]
/dports/graphics/poppler-qt5/poppler-21.12.0/test/
H A Dpdf-fullrewrite.cc130 if (objB->getType() != objBool) { in compareObjects()
139 if (!objB->isNum()) { in compareObjects()
148 if (objB->getType() != objString) { in compareObjects()
157 if (objB->getType() != objName) { in compareObjects()
166 if (objB->getType() != objNull) { in compareObjects()
173 if (objB->getType() != objArray) { in compareObjects()
194 if (objB->getType() != objDict) { in compareObjects()
198 Dict *dictB = objB->getDict(); in compareObjects()
203 if (objB->getType() != objStream) { in compareObjects()
226 if (objB->getType() != objRef) { in compareObjects()
[all …]
/dports/graphics/poppler-glib/poppler-21.12.0/test/
H A Dpdf-fullrewrite.cc130 if (objB->getType() != objBool) { in compareObjects()
139 if (!objB->isNum()) { in compareObjects()
148 if (objB->getType() != objString) { in compareObjects()
157 if (objB->getType() != objName) { in compareObjects()
166 if (objB->getType() != objNull) { in compareObjects()
173 if (objB->getType() != objArray) { in compareObjects()
194 if (objB->getType() != objDict) { in compareObjects()
198 Dict *dictB = objB->getDict(); in compareObjects()
203 if (objB->getType() != objStream) { in compareObjects()
226 if (objB->getType() != objRef) { in compareObjects()
[all …]
/dports/graphics/poppler-utils/poppler-21.12.0/test/
H A Dpdf-fullrewrite.cc130 if (objB->getType() != objBool) { in compareObjects()
139 if (!objB->isNum()) { in compareObjects()
148 if (objB->getType() != objString) { in compareObjects()
157 if (objB->getType() != objName) { in compareObjects()
166 if (objB->getType() != objNull) { in compareObjects()
173 if (objB->getType() != objArray) { in compareObjects()
194 if (objB->getType() != objDict) { in compareObjects()
198 Dict *dictB = objB->getDict(); in compareObjects()
203 if (objB->getType() != objStream) { in compareObjects()
226 if (objB->getType() != objRef) { in compareObjects()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Json.Test.Integration/
H A DJsonValueTestHelper.cs10 public static bool Compare(JsonValue objA, JsonValue objB) in Compare() argument
12 if (objA == null && objB == null) in Compare()
17 if ((objA == null && objB != null) || (objA != null && objB == null)) in Compare()
23 if (objA.JsonType != objB.JsonType) in Compare()
30 return CompareJsonValues(objA, objB); in Compare()
85 …if (objA == null || objB == null || objA.Count != objB.Count || objA.IsReadOnly != objB.IsReadOnly) in CompareJsonArrayTypes()
94 if (!Compare(objA[i], objB[i])) in CompareJsonArrayTypes()
117 if (objA.Keys.Count != objB.Keys.Count) in CompareJsonObjectTypes()
134 if (!objB.ContainsKey(keyA)) in CompareJsonObjectTypes()
140 if (!Compare(objA[keyA], objB[keyA])) in CompareJsonObjectTypes()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/gfortran.dg/
H A Dfunc_derived_3.f9048 type objB type
52 end type objB
63 public objB, new, print, getOa, getOa2
70 type(objB) :: ob
77 type (objB) :: ob
83 type (objB),target :: ob
91 type (objB),target :: ob
103 type (objB),target :: ob

12345678910>>...14