Home
last modified time | relevance | path

Searched refs:otherEntry (Results 1 – 25 of 115) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Diagnostics/
H A DEventLogEntry.cs162 public bool Equals (EventLogEntry otherEntry) in Equals() argument
164 if (otherEntry == this) in Equals()
168 (otherEntry.Category == category) && in Equals()
170 (otherEntry.Data.Equals (data)) && in Equals()
171 (otherEntry.EntryType == entryType) && in Equals()
172 (otherEntry.InstanceId == instanceId) && in Equals()
173 (otherEntry.Index == index) && in Equals()
174 (otherEntry.MachineName == machineName) && in Equals()
175 (otherEntry.Message == message) && in Equals()
177 (otherEntry.Source == source) && in Equals()
[all …]
/dports/devel/msbuild/msbuild-0.06/src/Deprecated/Engine/Caching/
H A DBuildItemCacheEntry.cs71 BuildItemCacheEntry otherEntry = (BuildItemCacheEntry)other; in IsEquivalent()
73 if (this.Name != otherEntry.Name) in IsEquivalent()
78 if ((this.BuildItems == null && otherEntry.BuildItems != null) || in IsEquivalent()
79 (this.BuildItems != null && otherEntry.BuildItems == null)) in IsEquivalent()
84 if ((this.BuildItems == null) && (otherEntry.BuildItems == null)) in IsEquivalent()
89 if (this.BuildItems.Length != otherEntry.BuildItems.Length) in IsEquivalent()
96 if ((this.BuildItems[i] == null && otherEntry.BuildItems[i] != null) || in IsEquivalent()
97 (this.BuildItems[i] != null && otherEntry.BuildItems[i] == null)) in IsEquivalent()
102 … if ((this.BuildItems[i].FinalItemSpecEscaped != otherEntry.BuildItems[i].FinalItemSpecEscaped) || in IsEquivalent()
103 …(this.BuildItems[i].GetCustomMetadataCount() != otherEntry.BuildItems[i].GetCustomMetadataCount())) in IsEquivalent()
[all …]
H A DPropertyCacheEntry.cs67 PropertyCacheEntry otherEntry = (PropertyCacheEntry)other; in IsEquivalent()
69 if (this.Name != otherEntry.Name) in IsEquivalent()
74 return (this.Value == otherEntry.Value); in IsEquivalent()
/dports/devel/mutagen/mutagen-0.11.8/pkg/synchronization/core/
H A Dcache.go57 otherEntry, ok := other.Entries[path]
63 if entry == nil || otherEntry == nil {
65 } else if entry.ModificationTime == nil || otherEntry.ModificationTime == nil {
70 equivalent := otherEntry.Mode == entry.Mode &&
71 otherEntry.ModificationTime.Seconds == entry.ModificationTime.Seconds &&
72 otherEntry.ModificationTime.Nanos == entry.ModificationTime.Nanos &&
73 otherEntry.Size == entry.Size &&
74 otherEntry.FileID == entry.FileID &&
75 bytes.Equal(otherEntry.Digest, entry.Digest)
/dports/cad/magic/magic-8.3.245/netmenu/
H A DNMnetlist.c145 NetEntry *newEntry, *otherEntry; local
179 if (otherEntry == 0)
183 otherEntry->ne_flags = 0;
184 otherEntry->ne_prev = otherEntry;
185 otherEntry->ne_next = otherEntry;
186 HashSetValue(hOther, otherEntry);
191 if (otherEntry != newEntry)
193 newEntry->ne_prev = otherEntry->ne_prev;
194 newEntry->ne_next = otherEntry;
196 otherEntry->ne_prev = newEntry;
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/
H A DClasspathEntry.java381 if (!this.path.equals(otherEntry.getPath())) in equals()
435 otherPath = otherEntry.getOutputLocation(); in equals()
1014 IClasspathEntry otherEntry = classpath[j]; in validateClasspath() local
1015 if (otherEntry == null) in validateClasspath()
1017 int otherKind = otherEntry.getEntryKind(); in validateClasspath()
1018 IPath otherPath = otherEntry.getPath(); in validateClasspath()
1019 if (entry != otherEntry in validateClasspath()
1133 IClasspathEntry otherEntry = classpath[j]; in validateClasspath() local
1134 if (otherEntry == entry) in validateClasspath()
1144 switch (otherEntry.getEntryKind()) { in validateClasspath()
[all …]
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/custom-definesandincludes/compilerprovider/tests/
H A Dtest_compilerprovider.cpp47 ConfigEntry otherEntry; in testAddingEntry() local
48 otherEntry.defines[QStringLiteral("TEST")] = QStringLiteral("lalal"); in testAddingEntry()
49 otherEntry.includes = QStringList() << QStringLiteral("/foo"); in testAddingEntry()
50 otherEntry.path = QStringLiteral("test"); in testAddingEntry()
51 otherEntry.compiler = compilers.first(); in testAddingEntry()
52 entries << otherEntry; in testAddingEntry()
62 QCOMPARE(readWriteEntries.at(1).path, otherEntry.path); in testAddingEntry()
63 QCOMPARE(readWriteEntries.at(1).defines, otherEntry.defines); in testAddingEntry()
64 QCOMPARE(readWriteEntries.at(1).includes, otherEntry.includes); in testAddingEntry()
65 QCOMPARE(readWriteEntries.at(1).compiler->name(), otherEntry.compiler->name()); in testAddingEntry()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.text/org.eclipse.ui.genericeditor/src/org/eclipse/ui/internal/genericeditor/hover/
H A DCompositeInformationControlCreator.java76 Entry<ITextHover, IInformationControl> otherEntry = otherIterator.next(); in canReuse() local
77 if (!thisEntry.getKey().equals(otherEntry.getKey())) { in canReuse()
83 …if (!((IInformationControlCreatorExtension)thisEntry.getValue()).canReuse(otherEntry.getValue())) { in canReuse()
103 Entry<ITextHover, IInformationControlCreator> otherEntry = otherIterator.next(); in canReplace() local
104 if (!thisEntry.getKey().equals(otherEntry.getKey())) { in canReplace()
110 …if (!((IInformationControlCreatorExtension)thisEntry.getValue()).canReplace(otherEntry.getValue())… in canReplace()
/dports/net/google-cloud-sdk-app-engine-go/platform/google_appengine/goroot-1.9/src/cmd/compile/internal/ssa/
H A Dsparsetreemap.go164 otherEntry := v.(*sparseTreeMapEntry)
165 …if otherEntry.index.exit >= blockIndex.exit { // otherEntry exit after blockIndex exit; therefore,…
166 return otherEntry
169 sp := otherEntry.sparseParent
/dports/lang/go-devel/go-dragonfly-amd64-bootstrap/src/cmd/compile/internal/ssa/
H A Dsparsetreemap.go164 otherEntry := v.(*sparseTreeMapEntry)
165 …if otherEntry.index.exit >= blockIndex.exit { // otherEntry exit after blockIndex exit; therefore,…
166 return otherEntry
169 sp := otherEntry.sparseParent
/dports/www/firefox/firefox-99.0/accessible/base/
H A DAccAttributes.cpp91 const auto otherEntry = aOther->mData.Lookup(iter.Key()); in Equal() local
92 if (!otherEntry) { in Equal()
98 if (!otherEntry->is<UniquePtr<nsString>>()) { in Equal()
102 const auto& otherStr = otherEntry->as<UniquePtr<nsString>>(); in Equal()
106 } else if (iter.Data() != otherEntry.Data()) { in Equal()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.EventLog/src/System/Diagnostics/
H A DEventLogEntry.cs305 public bool Equals(EventLogEntry otherEntry) in Equals() argument
307 if (otherEntry == null) in Equals()
310 int theirLen = IntFrom(otherEntry.dataBuf, otherEntry.bufOffset + FieldOffsets.LENGTH); in Equals()
317 int j = otherEntry.bufOffset; in Equals()
319 if (dataBuf[i] != otherEntry.dataBuf[j]) in Equals()
/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/log/entry/
H A DNameLNLogEntry.java241 NameLNLogEntry otherEntry = (NameLNLogEntry) other; in logicalEquals()
242 if (!operationType.logicalEquals(otherEntry.operationType)) { in logicalEquals()
247 (!truncateOldDbId.logicalEquals(otherEntry.truncateOldDbId))) { in logicalEquals()
253 (otherEntry.replicatedCreateConfig)) in logicalEquals()
H A DLNLogEntry.java544 LNLogEntry<?> otherEntry = (LNLogEntry<?>) other; in logicalEquals() local
546 if (!dbId.logicalEquals(otherEntry.dbId)) { in logicalEquals()
551 if (!txn.logicalEquals(otherEntry.txn)) { in logicalEquals()
555 if (otherEntry.txn != null) { in logicalEquals()
560 if (!Arrays.equals(key, otherEntry.key)) { in logicalEquals()
564 if (!ln.logicalEquals(otherEntry.ln)) { in logicalEquals()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DClasspathEntry.java1173 if (this.isExported != otherEntry.isExported()) in equals()
1176 if (!this.path.equals(otherEntry.getPath())) in equals()
1209 otherPath = otherEntry.getOutputLocation(); in equals()
2021 for (IClasspathEntry otherEntry : classpath) { in validateClasspath()
2022 if (otherEntry == null) continue; in validateClasspath()
2023 int otherKind = otherEntry.getEntryKind(); in validateClasspath()
2024 IPath otherPath = otherEntry.getPath(); in validateClasspath()
2025 if (entry != otherEntry in validateClasspath()
2094 if (otherEntry == entry) continue; in validateClasspath()
2096 switch (otherEntry.getEntryKind()) { in validateClasspath()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/services/monitoring/system/diagnosticts/
H A DEventLogEntry.cs398 public bool Equals(EventLogEntry otherEntry) { in Equals() argument
399 if (otherEntry == null) in Equals()
402 int theirLen = IntFrom(otherEntry.dataBuf, otherEntry.bufOffset + FieldOffsets.LENGTH); in Equals()
408 int j = otherEntry.bufOffset; in Equals()
410 if (dataBuf[i] != otherEntry.dataBuf[j]) { in Equals()
/dports/editors/calligra/calligra-3.2.1/gemini/
H A DTemplatesModel.cpp74 Q_FOREACH(TemplateEntry* otherEntry, entries) { in refresh()
75 if(otherEntry->title == title) { in refresh()
76 found = otherEntry; in refresh()
/dports/multimedia/kaffeine/kaffeine-2.0.18/src/dvb/
H A Ddvbepg.h224 DvbEpgLangEntry otherEntry = other.langEntry[code]; variable
226 if (thisEntry.title != otherEntry.title)
228 if (thisEntry.subheading != otherEntry.subheading)
230 if (thisEntry.details != otherEntry.details)
/dports/www/firefox-esr/firefox-91.8.0/parser/html/
H A DnsHtml5HtmlAttributes.cpp182 for (nsHtml5AttributeEntry& otherEntry : aOther->mStorage) { in equalsAnother()
183 if (ownLocal == otherEntry.GetLocal(nsHtml5AttributeName::HTML)) { in equalsAnother()
185 if (!entry.GetValue().Equals(otherEntry.GetValue())) { in equalsAnother()
/dports/www/firefox/firefox-99.0/parser/html/
H A DnsHtml5HtmlAttributes.cpp181 for (nsHtml5AttributeEntry& otherEntry : aOther->mStorage) { in equalsAnother()
182 if (ownLocal == otherEntry.GetLocal(nsHtml5AttributeName::HTML)) { in equalsAnother()
184 if (!entry.GetValue().Equals(otherEntry.GetValue())) { in equalsAnother()
/dports/mail/thunderbird/thunderbird-91.8.0/parser/html/
H A DnsHtml5HtmlAttributes.cpp182 for (nsHtml5AttributeEntry& otherEntry : aOther->mStorage) { in equalsAnother()
183 if (ownLocal == otherEntry.GetLocal(nsHtml5AttributeName::HTML)) { in equalsAnother()
185 if (!entry.GetValue().Equals(otherEntry.GetValue())) { in equalsAnother()
/dports/lang/spidermonkey60/firefox-60.9.0/parser/html/
H A DnsHtml5HtmlAttributes.cpp183 for (nsHtml5AttributeEntry& otherEntry : aOther->mStorage) { in equalsAnother()
184 if (ownLocal == otherEntry.GetLocal(nsHtml5AttributeName::HTML)) { in equalsAnother()
186 if (!entry.GetValue().Equals(otherEntry.GetValue())) { in equalsAnother()
/dports/lang/spidermonkey78/firefox-78.9.0/parser/html/
H A DnsHtml5HtmlAttributes.cpp182 for (nsHtml5AttributeEntry& otherEntry : aOther->mStorage) { in equalsAnother()
183 if (ownLocal == otherEntry.GetLocal(nsHtml5AttributeName::HTML)) { in equalsAnother()
185 if (!entry.GetValue().Equals(otherEntry.GetValue())) { in equalsAnother()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/sun/security/x509/
H A DGeneralSubtrees.java360 GeneralNameInterface otherEntry = in intersect() local
362 switch (thisEntry.constrains(otherEntry)) { in intersect()
439 GeneralNameInterface otherEntry = getGeneralNameInterface(otherEntryGS); in intersect() local
443 switch (thisEntry.constrains(otherEntry)) { in intersect()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/sun/security/x509/
H A DGeneralSubtrees.java360 GeneralNameInterface otherEntry = in intersect() local
362 switch (thisEntry.constrains(otherEntry)) { in intersect()
439 GeneralNameInterface otherEntry = getGeneralNameInterface(otherEntryGS); in intersect() local
443 switch (thisEntry.constrains(otherEntry)) { in intersect()

12345