HomeSort by relevance Sort by last modified time
    Searched defs:other (Results 1 - 25 of 1289) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/075-verification-error/src/other/
InaccessibleClass.java 17 package other; package
InaccessibleMethod.java 17 package other; package
Mutant.java 17 package other; package
  /art/test/075-verification-error/src2/other/
InaccessibleClass.java 17 package other; package
InaccessibleMethod.java 17 package other; package
Mutant.java 17 package other; package
  /external/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
const_data_members.pass.cpp 68 struct other {}; struct
194 // other
195 TEST_NUMERIC_LIMITS(other)
196 TEST_NUMERIC_LIMITS(const other)
197 TEST_NUMERIC_LIMITS(volatile other)
198 TEST_NUMERIC_LIMITS(const volatile other)
  /external/llvm/test/CodeGen/SystemZ/Large/
branch-range-02.py 39 # ...lots of other blocks...
71 other = 'end' if 2 * i < blocks else 'b0' variable
77 print ' br i1 %%atest%d, label %%%s, label %%%s' % (i, other, next)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
const_data_members.pass.cpp 68 struct other {}; struct
194 // other
195 TEST_NUMERIC_LIMITS(other)
196 TEST_NUMERIC_LIMITS(const other)
197 TEST_NUMERIC_LIMITS(volatile other)
198 TEST_NUMERIC_LIMITS(const volatile other)
  /external/clang/test/SemaCXX/
cxx11-unused.cpp 13 A(const A &other) = delete; member in class:A
30 B(const B &other);
33 B::B(const B &other) = default; member in class:B
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableDouble.cpp 12 * in the documentation and/or other materials provided with the
41 const AnimatableDouble* other = toAnimatableDouble(value); local
42 return (m_constraint == InterpolationIsNonContinuousWithZero) && (!m_number || !other->m_number);
47 const AnimatableDouble* other = toAnimatableDouble(value); local
48 ASSERT(m_constraint == other->m_constraint);
49 if ((m_constraint == InterpolationIsNonContinuousWithZero) && (!m_number || !other->m_number))
51 return AnimatableDouble::create(blend(m_number, other->m_number, fraction));
61 const AnimatableDouble* other = toAnimatableDouble(value); local
62 return fabs(m_number - other->m_number);
  /external/eigen/doc/
tutorial.cpp 50 Eigen::Matrix4f other = (m4 * m4).lazy(); // forces lazy evaluation local
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
BaseTryBlock.java 13 * in the documentation and/or other materials provided with the
40 TryBlock other = (TryBlock)o; local
41 return getStartCodeAddress() == other.getStartCodeAddress() &&
42 getCodeUnitCount() == other.getCodeUnitCount() &&
43 getExceptionHandlers().equals(other.getExceptionHandlers());
  /external/chromium_org/base/win/
iunknown_impl_unittest.cc 38 IUnknown* other = NULL; local
40 IID_IDispatch, reinterpret_cast<void**>(&other)));
42 IID_IUnknown, reinterpret_cast<void**>(&other)));
43 other->Release();
  /external/guava/guava/src/com/google/common/collect/
BstSide.java 28 public BstSide other() { method
34 public BstSide other() { method
39 abstract BstSide other(); method in class:BstSide
  /external/icu/icu4c/source/samples/case/
case.cpp 18 UnicodeString other = s; local
19 u_fprintf(out, "\"%S\"", other.getTerminatedBuffer());
  /external/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/
discard.pass.cpp 42 other() function
70 other<unsigned int>();
71 other<unsigned long>();
72 other<unsigned long long>();
  /external/proguard/src/proguard/
MemberSpecification.java 96 MemberSpecification other = (MemberSpecification)object; local
98 (this.requiredSetAccessFlags == other.requiredSetAccessFlags ) &&
99 (this.requiredUnsetAccessFlags == other.requiredUnsetAccessFlags ) &&
100 (this.annotationType == null ? other.annotationType == null : this.annotationType.equals(other.annotationType)) &&
101 (this.name == null ? other.name == null : this.name.equals(other.name) ) &&
102 (this.descriptor == null ? other.descriptor == null : this.descriptor.equals(other.descriptor) );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/
discard.pass.cpp 42 other() function
70 other<unsigned int>();
71 other<unsigned long>();
72 other<unsigned long long>();
  /system/core/libutils/tests/
Vector_test.cpp 41 Vector<int> other; local
51 other = vector;
53 EXPECT_EQ(other.size(), 3);
60 EXPECT_EQ(other.size(), 3);
63 other.add(5);
67 EXPECT_EQ(other.size(), 4);
71 EXPECT_EQ(other[3], 5);
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
Phonenumber.java 194 public PhoneNumber mergeFrom(PhoneNumber other) {
195 if (other.hasCountryCode()) {
196 setCountryCode(other.getCountryCode());
198 if (other.hasNationalNumber()) {
199 setNationalNumber(other.getNationalNumber());
201 if (other.hasExtension()) {
202 setExtension(other.getExtension());
204 if (other.hasItalianLeadingZero()) {
205 setItalianLeadingZero(other.isItalianLeadingZero());
207 if (other.hasNumberOfLeadingZeros())
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
InputXY.java 89 public void clone(InputXY other) {
90 if (other.getPressed()) {
91 press(other.getLastPressedTime(), other.getX(), other.getY());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListEqualsTester.java 39 "A List should equal any other List containing the same elements.",
45 ArrayList<E> other = new ArrayList<E>(getSampleElements()); local
46 other.set(other.size() / 2, getSubjectGenerator().samples().e3);
49 getList().equals(other));
54 List<E> other = new ArrayList<E>(getSampleElements()); local
55 other.set(other.size() / 2, null);
58 getList().equals(other));
67 List<E> other = new ArrayList<E>(getSampleElements()) local
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigArrayType.java 54 IArrayType other = (IArrayType) that; local
55 return thiz.getComponentType().equals(other.getComponentType());
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Transition.java 13 * documentation and/or other materials provided with the distribution.
71 Transition other = (Transition)o; local
72 return this.label.equals(other.label) &&
73 this.target.equals(other.target);
77 Transition other = (Transition)o; local
78 return this.label.compareTo(other.label);

Completed in 1188 milliseconds

1 2 3 4 5 6 7 8 91011>>