HomeSort by relevance Sort by last modified time
    Searched refs:another (Results 1 - 25 of 391) 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;
serializable-candidates.properties 60 org.objenesis.tck.candidates.SerializableReplacer = Serializable replacing with another class
61 org.objenesis.tck.candidates.SerializableResolver = Serializable resolving to another class
  /art/test/069-field-type/src2/
Blah.java 6 public int compareTo(Object another) {
  /libcore/luni/src/main/java/java/lang/
Comparable.java 42 * @param another
44 * @return a negative integer if this instance is less than {@code another};
46 * {@code another}; 0 if this instance has the same order as
47 * {@code another}.
49 * if {@code another} cannot be converted into something
52 int compareTo(T another);
  /external/clang/test/Misc/
diag-presumed.c 26 another error;
30 // PRESUMED: systemheader.h:7:1: error: unknown type name 'another'
33 // SPELLING: diag-presumed.c:26:1: error: unknown type name 'another'
  /libcore/luni/src/main/java/java/security/acl/
Permission.java 24 boolean equals(Object another);
  /external/valgrind/main/gdbserver_tests/
mcmain_pic.stdout.exp 2 another func called msg called from gdb
4 another func called msg called from main
  /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());
  /external/chromium_org/chrome/common/extensions/docs/server2/
persistent_object_store_test.py 35 another_object_store = PersistentObjectStore('another')
  /frameworks/base/core/java/android/hardware/input/
KeyboardLayout.java 100 public int compareTo(KeyboardLayout another) {
103 int result = Integer.compare(another.mPriority, mPriority);
105 result = mLabel.compareToIgnoreCase(another.mLabel);
108 result = mCollection.compareToIgnoreCase(another.mCollection);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.h 45 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { }
62 inline FormControlState& FormControlState::operator=(const FormControlState& another)
64 m_type = another.m_type;
65 m_values = another.m_values;
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiConstructor.java 41 public int compareTo(ApiConstructor another) {
42 return mParameterTypes.size() - another.mParameterTypes.size();
ApiMethod.java 44 public int compareTo(ApiMethod another) {
45 return mName.compareTo(another.mName);
  /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;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
DateBucket.java 60 public int compareTo(DateBucket another) {
61 return this.date.compareTo(another.date);
  /libcore/luni/src/main/java/java/net/
Proxy.java 136 Proxy another = (Proxy) obj; local
138 return (type == another.type) && address.equals(another.address);
  /external/chromium_org/cloud_print/gcp20/prototype/
x_privet_token_unittest.cc 104 XPrivetToken another("6F02AC4E-6F37-4078-AF42-5EE5D8180284", gen_time);
106 token = another.GenerateXTokenWithTime(gen_time.ToTimeT() - 24*60*60 - 1);
109 token = another.GenerateXTokenWithTime(gen_time.ToTimeT() - 24*60*60 + 1);
112 token = another.GenerateXTokenWithTime(gen_time.ToTimeT());
115 token = another.GenerateXTokenWithTime(gen_time.ToTimeT() + 1);
118 token = another.GenerateXTokenWithTime(gen_time.ToTimeT() + 24*60*60 - 1);
121 token = another.GenerateXTokenWithTime(gen_time.ToTimeT() + 24*60*60 + 1);
  /frameworks/base/core/java/com/android/internal/util/
CharSequences.java 114 * @param another The other CharSequence.
117 public static int compareToIgnoreCase(CharSequence me, CharSequence another) {
119 int myLen = me.length(), anotherLen = another.length();
125 - Character.toLowerCase(another.charAt(anotherPos++))) != 0) {
  /external/chromium_org/chrome/browser/ui/panels/
native_panel_stack_window.h 62 // Merges those panels grouped and shown inside |another| stack window into
64 virtual void MergeWith(NativePanelStackWindow* another) = 0;
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java 141 public int compareTo(Preference another) {
142 if (!(another instanceof ShortcutPreference)) return super.compareTo(another);
145 char other = ((ShortcutPreference) another).mShortcut;

Completed in 754 milliseconds

1 2 3 4 5 6 7 8 91011>>