Searched refs:otherSet (Results 1 – 12 of 12) sorted by relevance
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | BitSet.cs | 200 BitSet otherSet = (BitSet)other; in Equals() 202 int n = Math.Min(this._bits.Length, otherSet._bits.Length); in Equals() 206 if (this._bits[i] != otherSet._bits[i]) { in Equals() 219 } else if (otherSet._bits.Length > n) { in Equals() 220 for (int i = n + 1; i < otherSet._bits.Length; i++) { in Equals() 221 if (otherSet._bits[i] != 0) { in Equals()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | BitSet.cs | 231 BitSet otherSet = (BitSet)other; in Equals() 233 int n = Math.Min( this._bits.Length, otherSet._bits.Length ); in Equals() 238 if ( this._bits[i] != otherSet._bits[i] ) in Equals() 256 else if ( otherSet._bits.Length > n ) in Equals() 258 for ( int i = n + 1; i < otherSet._bits.Length; i++ ) in Equals() 260 if ( otherSet._bits[i] != 0 ) in Equals()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | BitSet.java | 201 BitSet otherSet = (BitSet)other; in equals() local 203 int n = Math.min(this.bits.length, otherSet.bits.length); in equals() 207 if (this.bits[i] != otherSet.bits[i]) { in equals() 221 else if (otherSet.bits.length > n) { in equals() 222 for (int i = n+1; i<otherSet.bits.length; i++) { in equals() 223 if (otherSet.bits[i] != 0) { in equals()
|
/external/auto/value/src/test/java/com/google/auto/value/processor/ |
D | TypeSimplifierTest.java | 123 Set<TypeMirror> otherSet = typeMirrorSet(otherObjectMirror); in testTypeMirrorSet() local 124 assertThat(otherSet).isEqualTo(set); in testTypeMirrorSet() 125 assertThat(set).isEqualTo(otherSet); in testTypeMirrorSet() 126 assertThat(otherSet.hashCode()).isEqualTo(set.hashCode()); in testTypeMirrorSet() 151 set.removeAll(otherSet); in testTypeMirrorSet()
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | BitSet.js | 315 var otherSet = other, 317 n = Math.min(this.bits.length, otherSet.bits.length); 321 if (this.bits[i] != otherSet.bits[i]) { 335 else if (otherSet.bits.length > n) { 336 for (i = n+1; i<otherSet.bits.length; i++) { 337 if (otherSet.bits[i] !== 0) {
|
/external/antlr/tool/src/main/java/org/antlr/misc/ |
D | BitSet.java | 219 BitSet otherSet = (BitSet)other; in equals() local 221 int n = Math.min(this.bits.length, otherSet.bits.length); in equals() 225 if (this.bits[i] != otherSet.bits[i]) { in equals() 239 else if (otherSet.bits.length > n) { in equals() 240 for (int i = n+1; i<otherSet.bits.length; i++) { in equals() 241 if (otherSet.bits[i] != 0) { in equals()
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | BitSet.as | 149 var otherSet:BitSet = BitSet(other); 151 var n:int = Math.min(this.bits.length, otherSet.bits.length); 155 if (this.bits[i] != otherSet.bits[i]) { 169 else if (otherSet.bits.length > n) { 170 for (i = n+1; i<otherSet.bits.length; i++) { 171 if (otherSet.bits[i] != 0) {
|
/external/protobuf/csharp/src/Google.Protobuf/ |
D | ExtensionSet.cs | 290 ExtensionSet<TTarget> otherSet = other as ExtensionSet<TTarget>; in Equals() 291 if (ValuesByNumber.Count != otherSet.ValuesByNumber.Count) in Equals() 298 if (!otherSet.ValuesByNumber.TryGetValue(pair.Key, out secondValue)) in Equals()
|
D | UnknownFieldSet.cs | 102 UnknownFieldSet otherSet = other as UnknownFieldSet; in Equals() 103 IDictionary<int, UnknownField> otherFields = otherSet.fields; in Equals()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | RBBIMonkeyTest.java | 445 UnicodeSet otherSet = new UnicodeSet(0, 0x10ffff); in compileRules() local 457 otherSet.removeAll(cclass.fSet); in compileRules() 465 if (!otherSet.isEmpty()) { in compileRules() 467 CharClass cclass = addCharClass("__Others", otherSet.toPattern(true)); in compileRules()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | RBBIMonkeyTest.java | 448 UnicodeSet otherSet = new UnicodeSet(0, 0x10ffff); in compileRules() local 460 otherSet.removeAll(cclass.fSet); in compileRules() 468 if (!otherSet.isEmpty()) { in compileRules() 470 CharClass cclass = addCharClass("__Others", otherSet.toPattern(true)); in compileRules()
|
/external/icu/icu4c/source/test/intltest/ |
D | rbbimonkeytest.cpp | 346 UnicodeSet otherSet((UChar32)0, 0x10ffff); in compileRules() local 358 otherSet.removeAll(*set); in compileRules() 366 if (!otherSet.isEmpty()) { in compileRules() 369 … CharClass *cclass = addCharClass(UnicodeString("__Others"), otherSet.toPattern(pattern), status); in compileRules()
|