HomeSort by relevance Sort by last modified time
    Searched refs:another (Results 1 - 25 of 426) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
warn-static-function-inheader.cpp 5 static void another(void) { // expected-warning {{function 'another' is not needed and will not be emitted}} function
11 another();
  /external/objenesis/tck/src/org/objenesis/tck/candidates/
ConstructorWithArguments.java 24 private final int another; field in class:ConstructorWithArguments
26 public ConstructorWithArguments(String something, int another) {
28 this.another = another;
32 return something + another;
SerializableConstructorWithArguments.java 28 private final int another; field in class:SerializableConstructorWithArguments
30 public SerializableConstructorWithArguments(String something, int another) {
32 this.another = another;
36 return something + another;
  /art/test/069-field-type/src2/
Blah.java 6 public int compareTo(Object another) {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
greg-2.s 1 # Have another GREG register allocation.
greg-3.s 1 # Have yet another GREG register allocation.
gregldo1.s 1 # Use a symbolic register areg, presumably allocated by greg in another file.
  /external/clang/test/Misc/
diag-presumed.c 24 another error;
28 // PRESUMED: systemheader.h:7:1: error: unknown type name 'another'
31 // SPELLING: diag-presumed.c:24:1: error: unknown type name 'another'
  /external/valgrind/gdbserver_tests/
mcmain_pic.stdout.exp 2 another func called msg called from gdb
4 another func called msg called from main
  /libcore/ojluni/src/main/java/java/security/
Principal.java 44 * @param another principal to compare with.
50 public boolean equals(Object another);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
parallel-bad-2.l 2 [^:]*:5: Error: parallel instruction not following another instruction
3 [^:]*:8: Error: parallel instruction not following another instruction
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mips16-pic-4a.s 4 # Define a stub for f1, which is defined in another file.
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
Test.java 37 public int compareTo(Test another) {
38 return getName().compareTo(another.getName());
TestCase.java 46 public int compareTo(TestCase another) {
47 return getName().compareTo(another.getName());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mri/
label.s 3 ! And another comment
5 LABEL DC.L SYMBOL ; And yet another comment
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
Chromosome.java 56 * @param another another chromosome to compare
59 * <li>-1 if <code>another</code> is better than <code>this</code></li>
60 * <li>1 if <code>another</code> is worse than <code>this</code></li>
64 public int compareTo(Chromosome another) {
65 return ((Double)this.getFitness()).compareTo(another.getFitness());
69 * Returns <code>true<code> iff <code>another</code> has the same
72 * @param another chromosome to compare
73 * @return true if <code>another</code> is equivalent to this chromosome
75 protected boolean isSame(Chromosome another) {
    [all...]
BinaryChromosome.java 76 protected boolean isSame(Chromosome another) {
78 if (! (another instanceof BinaryChromosome))
80 BinaryChromosome anotherBc = (BinaryChromosome) another;
  /packages/apps/Settings/src/com/android/settings/vpn2/
LegacyVpnPreference.java 57 LegacyVpnPreference another = (LegacyVpnPreference) preference; local
59 if ((result = another.mState - mState) == 0 &&
60 (result = mProfile.name.compareToIgnoreCase(another.mProfile.name)) == 0 &&
61 (result = mProfile.type - another.mProfile.type) == 0) {
62 result = mProfile.key.compareTo(another.mProfile.key);
67 AppPreference another = (AppPreference) preference; local
68 if (mState != STATE_CONNECTED && another.getState() == AppPreference.STATE_CONNECTED) {
AppPreference.java 101 AppPreference another = (AppPreference) preference; local
103 if ((result = another.mState - mState) == 0 &&
104 (result = mName.compareToIgnoreCase(another.mName)) == 0 &&
105 (result = mPackageName.compareTo(another.mPackageName)) == 0) {
106 result = mUserId - another.mUserId;
111 LegacyVpnPreference another = (LegacyVpnPreference) preference; local
112 return -another.compareTo(this);
  /packages/apps/Bluetooth/src/com/android/bluetooth/
SignedLongLong.java 68 public int compareTo(SignedLongLong another) {
69 if(mMostSigBits == another.mMostSigBits) {
70 if(mLeastSigBits == another.mLeastSigBits) {
73 if(mLeastSigBits < another.mLeastSigBits) {
78 if(mMostSigBits < another.mMostSigBits) {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
equiv1.s 1 ;# Re-definition of an already .equiv-ed symbol (to another symbol).
  /packages/apps/Launcher3/src/com/android/launcher3/model/
WidgetItem.java 56 public int compareTo(WidgetItem another) {
66 boolean otherWorkProfile = !sMyUserHandle.equals(another.user);
71 int labelCompare = sCollator.compare(label, another.label);
79 int otherArea = another.spanX * another.spanY;
81 ? Integer.compare(spanY, another.spanY)
  /frameworks/base/core/java/android/util/
Rational.java 210 * <p>Compare this Rational to another object and see if they are equal.</p>
212 * <p>A Rational object can only be equal to another Rational object (comparing against any
215 * <p>A Rational object is considered equal to another Rational object if and only if one of
234 * @param obj a reference to another object
458 * @param another the rational to be compared
463 * @throws NullPointerException if {@code another} was {@code null}
466 public int compareTo(Rational another) {
467 checkNotNull(another, "another must not be null");
469 if (equals(another)) {
    [all...]
  /ndk/tests/build/import-install/path1/
Android.mk 3 # another library
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ControlPoint.java 55 public int compareTo(Object another) {
56 ControlPoint p = (ControlPoint) another;

Completed in 688 milliseconds

1 2 3 4 5 6 7 8 91011>>