Searched defs:other (Results 51 - 75 of 929) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/
H A Drbt_data.cpp36 TransliterationRuleData::TransliterationRuleData(const TransliterationRuleData& other) : argument
37 UMemory(other), ruleSet(other.ruleSet),
39 variablesBase(other.variablesBase),
40 variablesLength(other.variablesLength)
47 while ((e = other.variableNames.nextElement(pos)) != 0) {
58 if (other.variables != 0) {
66 variables[i] = other.variables[i]->clone();
H A Dtmunit.cpp100 TimeUnit::TimeUnit(const TimeUnit& other) argument
101 : MeasureUnit(other), fTimeUnitField(other.fTimeUnitField) {
110 TimeUnit::operator=(const TimeUnit& other) { argument
111 if (this == &other) {
114 MeasureUnit::operator=(other);
115 fTimeUnitField = other.fTimeUnitField;
H A Dtmutamt.cpp33 TimeUnitAmount::TimeUnitAmount(const TimeUnitAmount& other) argument
34 : Measure(other)
40 TimeUnitAmount::operator=(const TimeUnitAmount& other) { argument
41 Measure::operator=(other);
47 TimeUnitAmount::operator==(const UObject& other) const {
48 return Measure::operator==(other);
/external/icu/icu4c/source/samples/case/
H A Dcase.cpp18 UnicodeString other = s; local
19 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
/external/icu/icu4c/source/test/intltest/
H A Dsfwdchit.h64 SimpleFwdCharIterator(const SimpleFwdCharIterator &other) argument
65 : ForwardCharacterIterator(other) {}
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DPair.java38 public boolean equals(Object other) { argument
39 if (other == this) {
42 if (!(other instanceof Pair)) {
45 Pair<?, ?> rhs = (Pair<?, ?>) other;
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DArrayComparator.java59 private Comparator other; field in class:ArrayComparator.CatchExceptionComparator
61 public CatchExceptionComparator(Comparator other) { argument
62 this.other = other;
67 return other.compare(arg0, arg1);
/external/jetty/src/java/org/eclipse/jetty/security/
H A DUserDataConstraint.java35 public UserDataConstraint combine(UserDataConstraint other) argument
37 if (this.compareTo(other) < 0) return this;
38 return other;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DAbstractTriangle.java14 * documentation and/or other materials provided with the distribution.
45 public int collideWith(Collidable other, CollisionResults results){ argument
46 return other.collideWith(this, results);
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
H A Drebind_alloc.pass.cpp15 // template <class T> using rebind_alloc = Alloc::rebind<U>::other | Alloc<T, Args...>;
30 template <class U> struct rebind {typedef ReboundA<U> other;}; typedef in struct:A::rebind
41 template <class V> struct rebind {typedef ReboundB<V, U> other;}; typedef in struct:B::rebind
73 static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_alloc<double>::other, ReboundA<double> >::value), "");
74 static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_alloc<double>::other, ReboundB<double, char> >::value), "");
75 static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_alloc<double>::other, C<double> >::value), "");
76 static_assert((std::is_same<std::allocator_traits<D<int, char> >::rebind_alloc<double>::other, D<double, char> >::value), "");
77 static_assert((std::is_same<std::allocator_traits<E<char> >::rebind_alloc<double>::other, E<double> >::value), "");
/external/libcxx/test/std/utilities/memory/allocator.traits/
H A Drebind_traits.pass.cpp30 template <class U> struct rebind {typedef ReboundA<U> other;}; typedef in struct:A::rebind
41 template <class V> struct rebind {typedef ReboundB<V, U> other;}; typedef in struct:B::rebind
73 static_assert((std::is_same<std::allocator_traits<A<char> >::rebind_traits<double>::other, std::allocator_traits<ReboundA<double> > >::value), "");
74 static_assert((std::is_same<std::allocator_traits<B<int, char> >::rebind_traits<double>::other, std::allocator_traits<ReboundB<double, char> > >::value), "");
75 static_assert((std::is_same<std::allocator_traits<C<char> >::rebind_traits<double>::other, std::allocator_traits<C<double> > >::value), "");
76 static_assert((std::is_same<std::allocator_traits<D<int, char> >::rebind_traits<double>::other, std::allocator_traits<D<double, char> > >::value), "");
77 static_assert((std::is_same<std::allocator_traits<E<char> >::rebind_traits<double>::other, std::allocator_traits<E<double> > >::value), "");
/external/lldb/test/functionalities/data-formatter/data-formatter-smart-array/
H A Dmain.cpp58 SomeOtherData other; local
/external/llvm/tools/llvm-pdbdump/
H A DClassDefinitionDumper.h53 SymbolGroup(const SymbolGroup &other) = delete; member in struct:llvm::ClassDefinitionDumper::SymbolGroup
54 SymbolGroup &operator=(const SymbolGroup &other) = delete; member in struct:llvm::ClassDefinitionDumper::SymbolGroup
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAddressParametersHeader.java94 public boolean equals(Object other) { argument
95 if (this==other) return true;
99 if (other instanceof HeaderAddress && other instanceof Parameters) {
100 final HeaderAddress o = (HeaderAddress) other;
H A DContentLength.java144 public boolean match(Object other) {
145 if (other instanceof ContentLength)
151 public boolean equals(Object other) {
152 if (other instanceof ContentLengthHeader) {
153 final ContentLengthHeader o = (ContentLengthHeader) other;
143 match(Object other) argument
150 equals(Object other) argument
H A DMaxForwards.java110 public boolean equals(Object other) { argument
111 if (this==other) return true;
112 if (other instanceof MaxForwardsHeader) {
113 final MaxForwardsHeader o = (MaxForwardsHeader) other;
H A DRoute.java106 public boolean equals(Object other) { argument
107 return (other instanceof RouteHeader) && super.equals(other);
H A DRouteList.java71 public boolean equals(Object other) { argument
72 if (!(other instanceof RouteList))
74 RouteList that = (RouteList) other;
H A DSIPObject.java80 *@param other the other object to test against.
82 public boolean equals(Object other) { argument
83 if (!this.getClass().equals(other.getClass()))
85 SIPObject that = (SIPObject) other;
87 Class hisclass = other.getClass();
164 *@param other the match pattern to test against. The match object
171 public boolean match(Object other) { argument
172 if (other == null) {
176 if (!this.getClass().equals(other
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPProfileKey.java75 public boolean equals(Object other) argument
77 return (other instanceof PProfileKey) && super.equals(other);
H A DPUserDatabase.java88 public boolean equals(Object other) argument
90 return (other instanceof PUserDatabaseHeader) && super.equals(other);
H A DPrivacy.java128 public boolean equals(Object other) argument
130 if (other instanceof PrivacyHeader)
132 PrivacyHeader o = (PrivacyHeader) other;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHandshake.java105 @Override public boolean equals(Object other) { argument
106 if (!(other instanceof Handshake)) return false;
107 Handshake that = (Handshake) other;
/external/proguard/src/proguard/evaluation/value/
H A DArrayReferenceValue.java60 public ReferenceValue generalize(ReferenceValue other) argument
62 return other.generalize(this);
66 public int equal(ReferenceValue other) argument
68 return other.equal(this);
75 // public ReferenceValue generalize(IdentifiedReferenceValue other)
77 // return generalize((TypedReferenceValue)other);
81 // public int equal(IdentifiedReferenceValue other)
83 // return equal((TypedReferenceValue)other);
90 public ReferenceValue generalize(ArrayReferenceValue other) argument
93 this.equals(other)
103 equal(ArrayReferenceValue other) argument
[all...]
H A DTopValue.java44 public final Value generalize(Value other) argument
46 return this.getClass() == other.getClass() ? this : null;

Completed in 1003 milliseconds

1234567891011>>