HomeSort by relevance Sort by last modified time
    Searched refs:another (Results 1 - 25 of 855) 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/main/java/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;
  /cts/tests/tests/location/src/android/location/cts/psedorange/
GpsMeasurement.java 62 protected GpsMeasurement(GpsMeasurement another) {
63 this(another.arrivalTimeSinceGpsWeekNs, another.accumulatedDeltaRangeMeters,
64 another.validAccumulatedDeltaRangeMeters, another.pseudorangeRateMps,
65 another.signalToNoiseRatioDb, another.accumulatedDeltaRangeUncertaintyMeters,
66 another.pseudorangeRateUncertaintyMps);
GpsMeasurementWithRangeAndUncertainty.java 33 public GpsMeasurementWithRangeAndUncertainty(GpsMeasurement another, double pseudorangeMeters,
35 super(another);
  /art/test/069-field-type/src2/
Blah.java 6 public int compareTo(Object another) {
  /toolchain/binutils/binutils-2.27/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
  /toolchain/binutils/binutils-2.27/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.27/ld/testsuite/ld-mips-elf/
mips16-pic-4a.s 4 # Define a stub for f1, which is defined in another file.
  /toolchain/binutils/binutils-2.27/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 59 LegacyVpnPreference another = (LegacyVpnPreference) preference; local
61 if ((result = another.mState - mState) == 0 &&
62 (result = mProfile.name.compareToIgnoreCase(another.mProfile.name)) == 0 &&
63 (result = mProfile.type - another.mProfile.type) == 0) {
64 result = mProfile.key.compareTo(another.mProfile.key);
69 AppPreference another = (AppPreference) preference; local
70 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 70 public int compareTo(SignedLongLong another) {
71 if (mMostSigBits == another.mMostSigBits) {
72 if (mLeastSigBits == another.mLeastSigBits) {
75 if (mLeastSigBits < another.mLeastSigBits) {
80 if (mMostSigBits < another.mMostSigBits) {
  /packages/apps/Launcher3/src/com/android/launcher3/model/
WidgetItem.java 53 public int compareTo(WidgetItem another) {
63 boolean otherWorkProfile = !sMyUserHandle.equals(another.user);
68 int labelCompare = sCollator.compare(label, another.label);
76 int otherArea = another.spanX * another.spanY;
78 ? Integer.compare(spanY, another.spanY)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/
equiv1.s 1 ;# Re-definition of an already .equiv-ed symbol (to another symbol).
  /libcore/ojluni/src/main/java/java/security/
Principal.java 46 * @param another principal to compare with.
51 public boolean equals(Object another);
  /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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ControlPoint.java 55 public int compareTo(Object another) {
56 ControlPoint p = (ControlPoint) another;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
DateBucket.java 60 public int compareTo(DateBucket another) {
61 return this.date.compareTo(another.date);

Completed in 1749 milliseconds

1 2 3 4 5 6 7 8 91011>>