Home
last modified time | relevance | path

Searched refs:oldInfo (Results 1 – 25 of 352) sorted by relevance

12345678910>>...15

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/watson/
H A DDefaultElementComparator.java38 public int compare(Object oldInfo, Object newInfo) { in compare() argument
39 if (oldInfo == null && newInfo == null) in compare()
41 if (oldInfo == null || newInfo == null) in compare()
43 return testEquality(oldInfo, newInfo) ? 0 : 1; in compare()
59 protected boolean testEquality(Object oldInfo, Object newInfo) { in testEquality() argument
60 if (oldInfo == null && newInfo == null) in testEquality()
62 if (oldInfo == null || newInfo == null) in testEquality()
65 return oldInfo.equals(newInfo); in testEquality()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/internal/watson/
H A DTestElementComparator.java38 public int compare(Object oldInfo, Object newInfo) { in compare() argument
39 if (oldInfo == null) { in compare()
48 return testEquality(oldInfo, newInfo) ? K_NO_CHANGE : CHANGED; in compare()
64 protected boolean testEquality(Object oldInfo, Object newInfo) { in testEquality() argument
65 if (oldInfo == null && newInfo == null) { in testEquality()
68 if (oldInfo == null || newInfo == null) { in testEquality()
72 return oldInfo.equals(newInfo); in testEquality()
/dports/graphics/digikam/digikam-7.4.0/core/utilities/geolocation/geomapwrapper/
H A Dgpsiteminfosorter.cpp84 bool GPSItemInfoSorter::fitsBetter(const GPSItemInfo& oldInfo, in fitsBetter() argument
129 const bool oldHasRating = (oldInfo.rating > 0); in fitsBetter()
139 (oldInfo.rating != newInfo.rating)) in fitsBetter()
141 return oldInfo.rating < newInfo.rating; in fitsBetter()
149 const bool oldHasDate = oldInfo.dateTime.isValid(); in fitsBetter()
159 if (oldInfo.dateTime != newInfo.dateTime) in fitsBetter()
163 return (oldInfo.dateTime > newInfo.dateTime); in fitsBetter()
167 return (oldInfo.dateTime < newInfo.dateTime); in fitsBetter()
174 if (oldInfo.url.isValid() && newInfo.url.isValid()) in fitsBetter()
176 return oldInfo.url.url() > newInfo.url.url(); in fitsBetter()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/javax/management/
H A DStandardMBean.java640 String desc = getDescription(oldInfo); in getMBeanInfo()
641 ainfo[a] = new MBeanAttributeInfo(oldInfo.getName(), in getMBeanInfo()
643 oldInfo.isReadable(), in getMBeanInfo()
644 oldInfo.isWritable(), in getMBeanInfo()
645 oldInfo.isIs()); in getMBeanInfo()
653 String desc = getDescription(oldInfo); in getMBeanInfo()
654 MBeanParameterInfo[] params = oldInfo.getSignature(); in getMBeanInfo()
658 String pdesc = getDescription(oldInfo, params[b], b); in getMBeanInfo()
671 String desc = getDescription(oldInfo); in getMBeanInfo()
672 int impact = getImpact(oldInfo); in getMBeanInfo()
[all …]
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/javax/management/
H A DStandardMBean.java640 String desc = getDescription(oldInfo); in getMBeanInfo()
641 ainfo[a] = new MBeanAttributeInfo(oldInfo.getName(), in getMBeanInfo()
643 oldInfo.isReadable(), in getMBeanInfo()
644 oldInfo.isWritable(), in getMBeanInfo()
645 oldInfo.isIs()); in getMBeanInfo()
653 String desc = getDescription(oldInfo); in getMBeanInfo()
654 MBeanParameterInfo[] params = oldInfo.getSignature(); in getMBeanInfo()
658 String pdesc = getDescription(oldInfo, params[b], b); in getMBeanInfo()
671 String desc = getDescription(oldInfo); in getMBeanInfo()
672 int impact = getImpact(oldInfo); in getMBeanInfo()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/javax/management/
H A DStandardMBean.java640 String desc = getDescription(oldInfo); in getMBeanInfo()
641 ainfo[a] = new MBeanAttributeInfo(oldInfo.getName(), in getMBeanInfo()
643 oldInfo.isReadable(), in getMBeanInfo()
644 oldInfo.isWritable(), in getMBeanInfo()
645 oldInfo.isIs()); in getMBeanInfo()
653 String desc = getDescription(oldInfo); in getMBeanInfo()
654 MBeanParameterInfo[] params = oldInfo.getSignature(); in getMBeanInfo()
658 String pdesc = getDescription(oldInfo, params[b], b); in getMBeanInfo()
671 String desc = getDescription(oldInfo); in getMBeanInfo()
672 int impact = getImpact(oldInfo); in getMBeanInfo()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/javax/management/
H A DStandardMBean.java640 String desc = getDescription(oldInfo); in getMBeanInfo()
641 ainfo[a] = new MBeanAttributeInfo(oldInfo.getName(), in getMBeanInfo()
643 oldInfo.isReadable(), in getMBeanInfo()
644 oldInfo.isWritable(), in getMBeanInfo()
645 oldInfo.isIs()); in getMBeanInfo()
653 String desc = getDescription(oldInfo); in getMBeanInfo()
654 MBeanParameterInfo[] params = oldInfo.getSignature(); in getMBeanInfo()
658 String pdesc = getDescription(oldInfo, params[b], b); in getMBeanInfo()
671 String desc = getDescription(oldInfo); in getMBeanInfo()
672 int impact = getImpact(oldInfo); in getMBeanInfo()
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/javax/management/
H A DStandardMBean.java640 String desc = getDescription(oldInfo); in getMBeanInfo()
641 ainfo[a] = new MBeanAttributeInfo(oldInfo.getName(), in getMBeanInfo()
643 oldInfo.isReadable(), in getMBeanInfo()
644 oldInfo.isWritable(), in getMBeanInfo()
645 oldInfo.isIs()); in getMBeanInfo()
653 String desc = getDescription(oldInfo); in getMBeanInfo()
654 MBeanParameterInfo[] params = oldInfo.getSignature(); in getMBeanInfo()
658 String pdesc = getDescription(oldInfo, params[b], b); in getMBeanInfo()
671 String desc = getDescription(oldInfo); in getMBeanInfo()
672 int impact = getImpact(oldInfo); in getMBeanInfo()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/model/org/eclipse/jdt/internal/core/
H A DJavaElementDeltaBuilder.java178 JavaElementInfo oldInfo = getElementInfo(newElement); in findAdditions() local
179 if (oldInfo == null && depth < this.maxDepth) { in findAdditions()
199 findContentChange(oldInfo, newInfo, newElement); in findAdditions()
201 if (oldInfo != null && newElement instanceof IParent) { in findAdditions()
244 Object oldInfo = this.annotationInfos.remove(newAnnotation); in findAnnotationChanges() local
245 if (oldInfo == null) { in findAnnotationChanges()
290 if (oldInfo instanceof AnnotatableInfo && newInfo instanceof AnnotatableInfo) { in findContentChange()
294 SourceMethodElementInfo oldSourceMethodInfo = (SourceMethodElementInfo)oldInfo; in findContentChange()
303 ((SourceFieldElementInfo)oldInfo).getTypeName(), in findContentChange()
308 SourceTypeElementInfo oldSourceTypeInfo = (SourceTypeElementInfo)oldInfo; in findContentChange()
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/contrib/capacity-scheduler/src/java/org/apache/hadoop/mapred/
H A DJobQueuesManager.java84 private void jobCompleted(JobInProgress job, JobSchedulingInfo oldInfo, in jobCompleted() argument
90 JobInProgress waitingJob = queue.removeWaitingJob(oldInfo, runState); in jobCompleted()
92 queue.removeInitializingJob(oldInfo, runState); in jobCompleted()
93 JobInProgress runningJob = queue.removeRunningJob(oldInfo, runState); in jobCompleted()
108 private void reorderJobs(JobInProgress job, JobSchedulingInfo oldInfo, in reorderJobs() argument
110 if(queue.removeWaitingJob(oldInfo, runState) != null) { in reorderJobs()
119 if (queue.removeInitializingJob(oldInfo, runState) != null) { in reorderJobs()
122 if(queue.removeRunningJob(oldInfo, runState) != null) { in reorderJobs()
128 private void makeJobRunning(JobInProgress job, JobSchedulingInfo oldInfo, in makeJobRunning() argument
/dports/devel/hadoop/hadoop-1.2.1/src/mapred/org/apache/hadoop/mapred/
H A DJobQueueJobInProgressListener.java131 private void jobCompleted(JobSchedulingInfo oldInfo) { in jobCompleted() argument
132 jobQueue.remove(oldInfo); in jobCompleted()
142 JobSchedulingInfo oldInfo = in jobUpdated() local
147 reorderJobs(job, oldInfo); in jobUpdated()
154 jobCompleted(oldInfo); in jobUpdated()
160 private void reorderJobs(JobInProgress job, JobSchedulingInfo oldInfo) { in reorderJobs() argument
162 jobQueue.remove(oldInfo); in reorderJobs()
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/
H A DJavaElementDeltaBuilder.java149 JavaElementInfo oldInfo = this.getElementInfo(newElement); in findAdditions() local
150 if (oldInfo == null && depth < this.maxDepth) { in findAdditions()
171 this.findContentChange(oldInfo, newInfo, newElement); in findAdditions()
173 if (oldInfo != null && newElement instanceof IParent) { in findAdditions()
219 private void findContentChange(JavaElementInfo oldInfo, in findContentChange() argument
221 if (oldInfo instanceof MemberElementInfo in findContentChange()
226 } else if (oldInfo instanceof SourceMethodElementInfo in findContentChange()
229 .equals(((SourceMethodElementInfo) oldInfo) in findContentChange()
235 } else if (oldInfo instanceof SourceFieldElementInfo in findContentChange()
237 if (!CharOperation.equals(((SourceFieldElementInfo) oldInfo) in findContentChange()
[all …]
/dports/graphics/p5-Image-ExifTool-devel/Image-ExifTool-12.14/lib/Image/ExifTool/
H A DWriteExif.pl759 if (ref $oldInfo ne 'HASH' or $$oldInfo{Condition}) {
767 if ($oldCount < 2 and $oldInfo and $$oldInfo{FixCount}) {
826 if ($oldInfo and $$oldInfo{ChangeBase}) {
852 (not defined $oldInfo or ($oldInfo and
853 (not $$oldInfo{SubDirectory} or $$oldInfo{ReadFromRAF}))))
918 if (defined $oldInfo and not $oldInfo) {
940 (not $oldInfo or not $$oldInfo{SubIFD}))
948 if (($$oldInfo{IsOffset} or $$oldInfo{SubIFD}) and
955 ($$oldInfo{Drop} == 1 or $$oldInfo{Drop} < $oldSize))
968 $oldSize = $$oldInfo{FixedSize} if $$oldInfo{FixedSize};
[all …]
/dports/graphics/p5-Image-ExifTool/Image-ExifTool-12.30/lib/Image/ExifTool/
H A DWriteExif.pl759 if (ref $oldInfo ne 'HASH' or $$oldInfo{Condition}) {
767 if ($oldCount < 2 and $oldInfo and $$oldInfo{FixCount}) {
826 if ($oldInfo and $$oldInfo{ChangeBase}) {
852 (not defined $oldInfo or ($oldInfo and
853 (not $$oldInfo{SubDirectory} or $$oldInfo{ReadFromRAF}))))
918 if (defined $oldInfo and not $oldInfo) {
940 (not $oldInfo or not $$oldInfo{SubIFD}))
948 if (($$oldInfo{IsOffset} or $$oldInfo{SubIFD}) and
955 ($$oldInfo{Drop} == 1 or $$oldInfo{Drop} < $oldSize))
968 $oldSize = $$oldInfo{FixedSize} if $$oldInfo{FixedSize};
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/webapps/
H A DWebApkUpdateManager.java347 if (isShellApkVersionOutOfDate(oldInfo)) return WebApkUpdateReason.OLD_SHELL_APK; in needsUpdate()
355 oldInfo.iconUrlToMurmur2HashMap(), primaryIconUrl); in needsUpdate()
359 oldInfo.iconUrlToMurmur2HashMap(), splashIconUrl); in needsUpdate()
366 oldInfo.scopeUrl(), fetchedInfo.scopeUrl())) { in needsUpdate()
371 } else if (!TextUtils.equals(oldInfo.shortName(), fetchedInfo.shortName())) { in needsUpdate()
373 } else if (!TextUtils.equals(oldInfo.name(), fetchedInfo.name())) { in needsUpdate()
375 } else if (oldInfo.backgroundColor() != fetchedInfo.backgroundColor()) { in needsUpdate()
377 } else if (oldInfo.toolbarColor() != fetchedInfo.toolbarColor()) { in needsUpdate()
379 } else if (oldInfo.orientation() != fetchedInfo.orientation()) { in needsUpdate()
381 } else if (oldInfo.displayMode() != fetchedInfo.displayMode()) { in needsUpdate()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/front_end/third_party/lit-html/package/src/directives/
H A Dclass-map.ts57 const oldInfo = classMapCache.get(part); constant
58 for (const name in oldInfo) {
67 if (!oldInfo || value !== oldInfo[name]) {
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.resources/bundles/org.eclipse.core.resources/src/org/eclipse/core/internal/events/
H A DResourceDelta.java34 protected ResourceInfo oldInfo; field in ResourceDelta
149 if (oldInfo != null && newInfo != null && oldInfo.getType() != newInfo.getType()) in fixMovesAndMarkers()
156 IPath newPath = nodeIDMap.getNewPath(oldInfo.getNodeId()); in fixMovesAndMarkers()
281 return deltaInfo.getNodeIDMap().getNewPath(oldInfo.getNodeId()); in getMovedToPath()
310 info = oldInfo; in getResource()
325 return ResourceInfo.isSet(oldInfo.getFlags(), ICoreConstants.M_PHANTOM); in isPhantom()
336 return ResourceInfo.isSet(oldInfo.getFlags(), ICoreConstants.M_TEAM_PRIVATE_MEMBER); in isTeamPrivate()
347 return ResourceInfo.isSet(oldInfo.getFlags(), ICoreConstants.M_HIDDEN); in isHidden()
359 protected void setOldInfo(ResourceInfo oldInfo) { in setOldInfo() argument
360 this.oldInfo = oldInfo; in setOldInfo()
/dports/net/storj/storj-1.45.3/satellite/overlay/
H A Dcheckin_test.go39 oldInfo, err := sat.Overlay.Service.Get(ctx, nodeID)
41 require.Nil(t, oldInfo)
66 oldInfo, err := sat.Overlay.Service.Get(ctx, nodeID)
70 oldInfo.Reputation.LastContactSuccess.Truncate(time.Second).UTC(), testName)
73 oldInfo.Reputation.LastContactFailure.Truncate(time.Second).UTC(), testName)
75 require.Equal(t, location.UnitedStates, oldInfo.CountryCode)
H A Dservice.go513 oldInfo, err := service.Get(ctx, node.NodeID)
518 if oldInfo == nil {
531 lastUp, lastDown := oldInfo.Reputation.LastContactSuccess, oldInfo.Reputation.LastContactFailure
540 addrChanged := ((node.Address == nil) != (oldInfo.Address == nil)) ||
541 (oldInfo.Address != nil && node.Address != nil && oldInfo.Address.Address != node.Address.Address)
546 verChanged := (node.Version == nil && oldInfo.Version.Version != "") ||
547 (node.Version != nil && oldInfo.Version.Version != node.Version.Version)
552 if oldInfo.CountryCode == location.CountryCode(0) || oldInfo.LastIPPort != node.LastIPPort {
562 node.CountryCode = oldInfo.CountryCode
566 oldInfo.LastNet != node.LastNet || oldInfo.LastIPPort != node.LastIPPort ||
[all …]
/dports/sysutils/kf5-baloo/baloo-5.89.0/autotests/unit/file/
H A Dmetadatamovertest.cpp144 DocumentInfo oldInfo = documentInfo(fid); in testRenameFile() local
145 QVERIFY(!oldInfo.url.isEmpty()); in testRenameFile()
146 QCOMPARE(oldInfo.url, url); in testRenameFile()
155 QCOMPARE(newInfo.docTerms, oldInfo.docTerms); in testRenameFile()
169 DocumentInfo oldInfo = documentInfo(fid); in testMoveFile() local
170 QVERIFY(!oldInfo.url.isEmpty()); in testMoveFile()
171 QCOMPARE(oldInfo.url, url); in testMoveFile()
180 QCOMPARE(newInfo.docTerms, oldInfo.docTerms); in testMoveFile()
193 DocumentInfo oldInfo = documentInfo(fid); in testMoveRenameFile() local
194 QVERIFY(!oldInfo.url.isEmpty()); in testMoveRenameFile()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.core/src/org/eclipse/team/internal/core/subscribers/
H A DSyncSetInput.java74 SyncInfo oldInfo = syncSet.getSyncInfo(info.getLocal()); in collect() local
75 boolean wasOutOfSync = oldInfo != null; in collect()
84 SyncInfo oldInfo = syncSet.getSyncInfo(resource); in remove() local
85 if (oldInfo != null) { in remove()
/dports/devel/hadoop/hadoop-1.2.1/src/core/org/apache/hadoop/util/
H A DProcfsBasedProcessTree.java189 ProcessInfo oldInfo = oldProcs.get(procs.getKey()); in getProcessTree() local
191 procs.getValue().updateJiffy(oldInfo); in getProcessTree()
192 if (oldInfo != null) { in getProcessTree()
193 procs.getValue().updateAge(oldInfo); in getProcessTree()
536 public void updateJiffy(ProcessInfo oldInfo) { in updateJiffy() argument
537 if (oldInfo == null) { in updateJiffy()
548 this.dtime = (this.utime - oldInfo.utime + in updateJiffy()
549 this.stime.subtract(oldInfo.stime).longValue()); in updateJiffy()
552 public void updateAge(ProcessInfo oldInfo) { in updateAge() argument
553 this.age = oldInfo.age + 1; in updateAge()
/dports/math/vtk8/VTK-8.2.0/Common/Core/
H A DvtkInformationVector.cxx116 vtkInformation* oldInfo = this->Internal->Vector[index]; in SetInformationObject() local
117 if(oldInfo != newInfo) in SetInformationObject()
121 oldInfo->UnRegister(this); in SetInformationObject()
142 vtkInformation* oldInfo = this->Internal->Vector[index]; in SetInformationObject() local
144 oldInfo->UnRegister(this); in SetInformationObject()
/dports/math/vtk9/VTK-9.1.0/Common/Core/
H A DvtkInformationVector.cxx115 vtkInformation* oldInfo = this->Internal->Vector[index]; in SetInformationObject() local
116 if (oldInfo != newInfo) in SetInformationObject()
120 oldInfo->UnRegister(this); in SetInformationObject()
140 vtkInformation* oldInfo = this->Internal->Vector[index]; in SetInformationObject() local
142 oldInfo->UnRegister(this); in SetInformationObject()
/dports/math/vtk6/VTK-6.2.0/Common/Core/
H A DvtkInformationVector.cxx116 vtkInformation* oldInfo = this->Internal->Vector[index]; in SetInformationObject() local
117 if(oldInfo != newInfo) in SetInformationObject()
121 oldInfo->UnRegister(this); in SetInformationObject()
142 vtkInformation* oldInfo = this->Internal->Vector[index]; in SetInformationObject() local
144 oldInfo->UnRegister(this); in SetInformationObject()

12345678910>>...15