Home
last modified time | relevance | path

Searched refs:isDescending (Results 1 – 25 of 161) sorted by relevance

1234567

/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/
H A DExpressionOrderBy.java46 private boolean isDescending;
63 isDescending = true;
69 boolean isDescending() {
70 return isDescending;
124 if (isDescending) {
137 if (isDescending) {
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.DataSetExtensions/src/System/Data/
H A DEnumerableRowCollectionExtensions.cs35 edt.AddSortExpression(keySelector, isDescending: false, isOrderBy: true); in OrderBy()
46 edt.AddSortExpression(keySelector, comparer, isDescending: false, isOrderBy: true); in OrderBy()
58 edt.AddSortExpression(keySelector, isDescending: true, isOrderBy: true); in OrderByDescending()
70 edt.AddSortExpression(keySelector, comparer, isDescending: true, isOrderBy: true); in OrderByDescending()
82 edt.AddSortExpression(keySelector, isDescending: false, isOrderBy: false); in ThenBy()
94 edt.AddSortExpression(keySelector, comparer, isDescending: false, isOrderBy: false); in ThenBy()
106 edt.AddSortExpression(keySelector, isDescending: true, isOrderBy: false); in ThenByDescending()
118 edt.AddSortExpression(keySelector, comparer, isDescending: true, isOrderBy: false); in ThenByDescending()
H A DEnumerableRowCollection.cs153 …internal void AddSortExpression<TKey>(Func<TRow, TKey> keySelector, bool isDescending, bool isOrde… in AddSortExpression() argument
155 AddSortExpression<TKey>(keySelector, Comparer<TKey>.Default, isDescending, isOrderBy); in AddSortExpression()
161 …on<TKey>(Func<TRow, TKey> keySelector, IComparer<TKey> comparer, bool isDescending, bool isOrderBy) in AddSortExpression() argument
173 return (isDescending ? -1 : 1) * comparer.Compare((TKey)val1, (TKey)val2); in AddSortExpression()
/dports/audio/polyphone/polyphone-75a5e88/sources/core/types/
H A Dmodulatordata.h56 isDescending(descending),
64 isDescending(descending),
72 isDescending(false),
82 bool isDescending : 1;
H A Dmodulatordata.cpp37 this->isDescending == other.isDescending && in operator ==()
50 return ((Type << 10) + (isBipolar << 9) + (isDescending << 8) + (CC << 7) + Index) & 0xFFFF; in toWord()
/dports/science/jmol/jmol-14.32.7/src/org/jmol/util/
H A DMeshCapper.java456 boolean isDescending = (v.prev.region != null); in process()
461 + (isDescending ? v.prev.id : "") + "\n#" in process()
463 + (isDescending ? " /\n" : "\n") + "# " + v.id); in process()
465 if (!isDescending && !isAscending) { in process()
491 if (isDescending) { in process()
498 if (isDescending && isAscending) { in process()
529 CapVertex vEdge = (isDescending ? v.prev : v.next); in processMonotonic()
544 v2 = (isDescending ? v1.prev : v1.next); in processMonotonic()
546 && isDescending == (v.x > v.interpolateX(v2, v1))) { in processMonotonic()
547 if (isDescending) { in processMonotonic()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/WebControls/
H A DQueryExtensions.cs20 bool isDescending = false; field in System.Web.UI.WebControls.QueryExtensions.__anon1
25 isDescending = true;
48 string methodName = (isDescending) ? "OrderByDescending" : "OrderBy" ;
/dports/audio/polyphone/polyphone-75a5e88/sources/sound_engine/
H A Dparametermodulator.cpp176 if (sfMod.isDescending) in getValue()
185 if (sfMod.isDescending) in getValue()
205 if (sfMod.isDescending) in getValue()
229 if (sfMod.isDescending) in getValue()
/dports/audio/polyphone/polyphone-75a5e88/sources/editor/modulator/
H A Dmodulatorcombocurve.cpp115 _isDescending = mod.isDescending; in initialize()
128 _isDescending = mod.isDescending; in loadValue()
148 …if (val.sfModValue.isDescending != _isDescending || val.sfModValue.isBipolar != _isBipolar || val.… in valueSelected()
150 val.sfModValue.isDescending = _isDescending; in valueSelected()
/dports/games/openra/OpenRA-release-20200503/OpenRA.Mods.Common/Projectiles/
H A DNukeLaunch.cs109 var isDescending = ticks >= turn; in Tick()
110 if (!isDescending) in Tick()
117 …var trailPos = !isDescending ? WPos.LerpQuadratic(ascendSource, ascendTarget, WAngle.Zero, ticks -… in Tick()
127 if (ticks == impactDelay || (isDescending && dat <= detonationAltitude)) in Tick()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.DataSetExtensions/System/Data/
H A DEnumerableRowCollection.cs323 …internal void AddSortExpression<TKey>(Func<TRow, TKey> keySelector, bool isDescending, bool isOrde… in AddSortExpression() argument
325 AddSortExpression<TKey>(keySelector, Comparer<TKey>.Default, isDescending, isOrderBy); in AddSortExpression()
334 bool isDescending, in AddSortExpression() argument
347 return (isDescending ? -1 : 1) * comparer.Compare((TKey)val1, (TKey)val2); in AddSortExpression()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
H A DEmptyNavigableSet.java100 public static final boolean isDescending(SortedSet<?> set) { in isDescending() method in EmptyNavigableSet
269 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSet()
282 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSetRanges()
317 subSet.headSet(isDescending(subSet) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadSetRanges()
336 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
H A DEmptyNavigableSet.java101 public static final boolean isDescending(SortedSet<?> set) { in isDescending() method in EmptyNavigableSet
270 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSet()
283 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSetRanges()
318 subSet.headSet(isDescending(subSet) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadSetRanges()
337 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
H A DEmptyNavigableSet.java101 public static final boolean isDescending(SortedSet<?> set) { in isDescending() method in EmptyNavigableSet
270 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSet()
283 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSetRanges()
318 subSet.headSet(isDescending(subSet) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadSetRanges()
337 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
H A DEmptyNavigableSet.java100 public static final boolean isDescending(SortedSet<?> set) { in isDescending() method in EmptyNavigableSet
269 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSet()
282 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSetRanges()
317 subSet.headSet(isDescending(subSet) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadSetRanges()
336 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
H A DEmptyNavigableSet.java101 public static final boolean isDescending(SortedSet<?> set) { in isDescending() method in EmptyNavigableSet
270 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSet()
283 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSetRanges()
318 subSet.headSet(isDescending(subSet) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadSetRanges()
337 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
H A DEmptyNavigableSet.java101 public static final boolean isDescending(SortedSet<?> set) { in isDescending() method in EmptyNavigableSet
270 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSet()
283 Object first = isDescending(navigableSet) ? BigInteger.TEN : BigInteger.ZERO; in testSubSetRanges()
318 subSet.headSet(isDescending(subSet) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadSetRanges()
337 subSet.tailSet(isDescending(subSet) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailSetRanges()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/jdk/java/util/Collections/
H A DEmptyNavigableMap.java94 public static final boolean isDescending(SortedMap<?,?> set) { in isDescending() method in EmptyNavigableMap
251 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMap()
263 Object first = isDescending(navigableMap) ? BigInteger.TEN : BigInteger.ZERO; in testSubMapRanges()
298 subMap.headMap(isDescending(subMap) ? BigInteger.TEN : BigInteger.ZERO, true); in testheadMapRanges()
317 subMap.tailMap(isDescending(subMap) ? BigInteger.ZERO : BigInteger.TEN, false); in testTailMapRanges()

1234567