Home
last modified time | relevance | path

Searched refs:oldTag (Results 1 – 25 of 133) sorted by relevance

123456

/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/kernel/modules/repository/
H A DLocalAudioObjectRefresher.java99 ITag oldTag = file.getTag(); in refreshFile() local
107 oldTag); in refreshFile()
112 compareTags(repository, oldTag, newTag); in refreshFile()
154 oldTag.getAlbum(), newTag.getAlbum()); in updateAlbumStatistics()
171 statisticsHandler.replaceArtist(oldTag.getArtist(), in updateArtistStatistics()
186 return albumAddedToTag(oldTag, newTag) in isAlbumChanged()
187 || albumRemovedFromTag(oldTag, newTag) in isAlbumChanged()
188 || albumChangedInTag(oldTag, newTag); in isAlbumChanged()
226 return artistAddedToTag(oldTag, newTag) in isArtistChanged()
227 || artistRemovedFromTag(oldTag, newTag) in isArtistChanged()
[all …]
H A DRepositoryFiller.java117 updateArtistStructure(oldTag, audioFile); in refreshAudioFile()
118 updateGenreStructure(oldTag, audioFile); in refreshAudioFile()
119 updateYearStructure(oldTag, audioFile); in refreshAudioFile()
249 String albumArtist = getAlbumArtist(oldTag); in updateArtistStructure()
250 String artist = getArtist(oldTag); in updateArtistStructure()
251 String album = getAlbum(oldTag); in updateArtistStructure()
338 if (oldTag != null) { in updateGenreStructure()
339 genre = oldTag.getGenre(); in updateGenreStructure()
361 private void updateYearStructure(final ITag oldTag, in updateYearStructure() argument
364 if (oldTag != null) { in updateYearStructure()
[all …]
/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/kernel/modules/tags/
H A DTagFactory.java118 newTag.setAlbumArtist(oldTag != null ? oldTag.getAlbumArtist() in setAlbumArtistFromProperties()
134 newTag.setStars(oldTag != null ? oldTag.getStars() : null); in setRatingFromProperties()
149 newTag.setComposer(oldTag != null ? oldTag.getComposer() : null); in setComposerFromProperties()
163 newTag.setLyrics(oldTag != null ? oldTag.getLyrics() : null); in setLyricsFromProperties()
182 newTag.setGenre(oldTag != null ? oldTag.getGenre() : null); in setGenreFromProperties()
202 newTag.setDiscNumber(oldTag != null ? oldTag.getDiscNumber() : 1); in setDiscNumberFromProperties()
237 newTag.setComment(oldTag != null ? oldTag.getComment() : null); in setCommentFromProperties()
255 newTag.setYear(oldTag != null ? oldTag.getYear() : 0); in setYearFromProperties()
269 newTag.setAlbum(oldTag != null ? oldTag.getAlbum() : null); in setAlbumFromProperties()
283 newTag.setArtist(oldTag != null ? oldTag.getArtist() : null); in setArtistFromProperties()
[all …]
/dports/audio/jid3lib/jid3lib-0.5.4/src/org/farng/mp3/id3/
H A DAbstractID3v1.java32 AbstractID3v1 oldTag; in append() local
34 oldTag = new ID3v1_1(file); in append()
35 oldTag.append(this); in append()
36 oldTag.write(file); in append()
40 oldTag.append(this); in append()
41 oldTag.write(file); in append()
49 AbstractID3v1 oldTag; in overwrite() local
51 oldTag = new ID3v1_1(file); in overwrite()
52 oldTag.overwrite(this); in overwrite()
53 oldTag.write(file); in overwrite()
[all …]
H A DID3v1.java190 final ID3v1 oldTag = this; in append() local
204 oldTag.title; in append()
213 oldTag.year; in append()
217oldTag.genre = (TagOptionSingleton.getInstance().isId3v1SaveGenre() && (oldTag.genre < 0)) ? in append()
263 final ID3v1 oldTag = this; in overwrite() local
275oldTag.title = TagOptionSingleton.getInstance().isId3v1SaveTitle() ? newTag.title : oldTag.artist; in overwrite()
277oldTag.album = TagOptionSingleton.getInstance().isId3v1SaveAlbum() ? newTag.album : oldTag.album; in overwrite()
278oldTag.year = TagOptionSingleton.getInstance().isId3v1SaveYear() ? newTag.year : oldTag.year; in overwrite()
280oldTag.genre = TagOptionSingleton.getInstance().isId3v1SaveGenre() ? newTag.genre : oldTag.genre; in overwrite()
330 final ID3v1 oldTag = this; in write() local
[all …]
H A DAbstractID3v2.java168 AbstractID3v2 oldTag; in append() local
170 oldTag = new ID3v2_4(file); in append()
171 oldTag.append(this); in append()
172 oldTag.write(file); in append()
176 oldTag.append(this); in append()
177 oldTag.write(file); in append()
230 AbstractID3v2 oldTag; in overwrite() local
233 oldTag.overwrite(this); in overwrite()
234 oldTag.write(file); in overwrite()
239 oldTag.write(file); in overwrite()
[all …]
H A DID3v1_1.java152 final ID3v1_1 oldTag = this; in append() local
163oldTag.track = (TagOptionSingleton.getInstance().isId3v1SaveTrack() && (oldTag.track <= 0)) ? in append()
165 oldTag.track; in append()
188 final ID3v1_1 oldTag = this; in overwrite() local
199oldTag.track = TagOptionSingleton.getInstance().isId3v1SaveTrack() ? newTag.track : oldTag.track; in overwrite()
270 final ID3v1_1 oldTag = this; in write() local
278 oldTag.track = newTag.track; in write()
/dports/audio/jid3lib/jid3lib-0.5.4/src/org/farng/mp3/lyrics3/
H A DAbstractLyrics3.java34 AbstractLyrics3 oldTag; in append() local
36 oldTag = new Lyrics3v2(file); in append()
37 oldTag.append(this); in append()
38 oldTag.write(file); in append()
42 oldTag.append(this); in append()
43 oldTag.write(file); in append()
69 AbstractLyrics3 oldTag; in overwrite() local
72 oldTag.overwrite(this); in overwrite()
73 oldTag.write(file); in overwrite()
77 oldTag.overwrite(this); in overwrite()
[all …]
H A DLyrics3v2.java183 final Lyrics3v2 oldTag = this; in append() local
196 if (oldTag.hasField(field.getIdentifier()) == false) { in append()
197 oldTag.setField(field); in append()
202 oldTag.setField(field); in append()
208 iterator = oldTag.fieldMap.keySet().iterator(); in append()
237 final Lyrics3v2 oldTag = this; in overwrite() local
250 oldTag.setField(field); in overwrite()
255 iterator = oldTag.fieldMap.keySet().iterator(); in overwrite()
360 final Lyrics3v2 oldTag = this; in write() local
370 oldTag.fieldMap.clear(); in write()
[all …]
H A DLyrics3v1.java106 final Lyrics3v1 oldTag = this; in append() local
114 this.lyric = oldTag.lyric + "\n" + newTag.lyric; in append()
135 final Lyrics3v1 oldTag = this; in overwrite() local
143 … this.lyric = TagOptionSingleton.getInstance().isLyrics3Save() ? newTag.lyric : oldTag.lyric; in overwrite()
/dports/audio/atunes/atunes-3.1.2/src/net/sourceforge/atunes/kernel/modules/process/
H A DEditTagsProcess.java46 ITag oldTag = audioFile.getTag(); in changeTag() local
56 setInternalImage(newTag, oldTag, shouldEditCover, cover); in changeTag()
67 private void setInternalImage(ITag newTag, ITag oldTag, in setInternalImage() argument
69 if (oldTag != null && oldTag.hasInternalImage() && !shouldEditCover) { in setInternalImage()
/dports/net-mgmt/libsmi/libsmi-0.4.8/tools/
H A Dsmidiff.c1683 smiInit(oldTag); in diffTypes()
1695 smiInit(oldTag); in diffTypes()
1993 smiInit(oldTag); in diffObjects()
2005 smiInit(oldTag); in diffObjects()
2047 smiInit(oldTag); in checkObjects()
2054 smiInit(oldTag); in checkObjects()
2143 smiInit(oldTag); in diffNotifications()
2155 smiInit(oldTag); in diffNotifications()
2300 smiInit(oldTag); in diffModules()
2310 smiInit(oldTag); in diffModules()
[all …]
/dports/net/tigervnc-server/tigervnc-1.12.0/unix/xserver/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xephyr/xorg-server-1.20.13/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xorg-vfbserver/xorg-server-1.20.13/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xwayland-devel/xorg-xserver-xorg-server-21.0.99.1-177-g9e5a37961/glx/
H A Dvndcmds.c212 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
224 if (oldTag == NULL) { in CommonMakeCurrent()
235 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
238 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
239 && oldTag->context == context in CommonMakeCurrent()
240 && oldTag->drawable == drawable in CommonMakeCurrent()
241 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
244 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
257 if (oldTag != NULL) { in CommonMakeCurrent()
258 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xwayland/xorg-server-1.20.13/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xorg-dmx/xorg-server-1.20.13/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xorg-server/xorg-server-1.20.13/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xarcan/xarcan-0.6.0/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/x11-servers/xorg-nestserver/xorg-server-1.20.13/glx/
H A Dvndcmds.c209 GlxContextTagInfo *oldTag = NULL; in CommonMakeCurrent() local
221 if (oldTag == NULL) { in CommonMakeCurrent()
232 if (oldTag == NULL && newVendor == NULL) { in CommonMakeCurrent()
235 } else if (oldTag != NULL && newVendor != NULL in CommonMakeCurrent()
236 && oldTag->context == context in CommonMakeCurrent()
237 && oldTag->drawable == drawable in CommonMakeCurrent()
238 && oldTag->readdrawable == readdrawable) in CommonMakeCurrent()
241 reply.contextTag = oldTag->tag; in CommonMakeCurrent()
254 if (oldTag != NULL) { in CommonMakeCurrent()
255 int ret = CommonLoseCurrent(client, oldTag); in CommonMakeCurrent()
[all …]
/dports/biology/bamutil/bamUtil-1.0.15/libStatGen/bam/
H A DSamHeaderTag.cpp27 SamHeaderTag::SamHeaderTag(const SamHeaderTag& oldTag) in SamHeaderTag() argument
29 setTag(oldTag.myTag.c_str(), oldTag.myValue.c_str()); in SamHeaderTag()
/dports/www/twiki-TagMePlugin/TagMePlugin-0.0.17472/lib/TWiki/Plugins/
H A DTagMePlugin.pm1366 my ( $oldTag, $newTag, $changeMessage, $note ) = @_;
1372 if ($oldTag) {
1373 if ( !grep( /^\Q$oldTag\E$/, @allTags ) ) {
1375 "Tag \"$oldTag\" does not exist", $note );
1385 my @newAllTags = grep( !/^\Q$oldTag\E$/, @allTags );
1408 if ( $tag eq $oldTag ) {
1417 if ( $tag eq $oldTag ) {
1479 unless ($oldTag);
1485 "Tag \"$oldTag\" is successfully renamed to \"$newTag\"";
1486 return _modifyTag( $oldTag, $newTag, $changeMessage, $note );
[all …]
/dports/databases/akonadi/akonadi-21.12.3/src/core/models/
H A Dtagmodel_p.cpp178 const Tag oldTag = mTags.value(tag.id()); in monitoredTagChanged() local
183 const qint64 oldParent = oldTag.parent().id(); in monitoredTagChanged()
187 const int sourcePos = mChildTags.value(oldParent).indexOf(oldTag); in monitoredTagChanged()
199 const int sourcePos = children.indexOf(oldTag); in monitoredTagChanged()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/android/java/src/org/chromium/net/
H A DAndroidNetworkLibrary.java551 int oldTag = TrafficStats.getThreadStatsTag(); in tagSocket() local
552 if (tag != oldTag) { in tagSocket()
588 if (tag != oldTag) { in tagSocket()
589 TrafficStats.setThreadStatsTag(oldTag); in tagSocket()

123456