HomeSort by relevance Sort by last modified time
    Searched refs:another (Results 1 - 25 of 345) 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) {
  /dalvik/tests/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/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/jgss/kerberos/
KerberosNameTest.java 40 KerberosName another = new KerberosName("service@localhost", GSSName.NT_HOSTBASED_SERVICE); local
41 assertEquals(one, another);
44 another = new KerberosName("service/localhost", GSSName.NT_HOSTBASED_SERVICE);
45 assertEquals(one, another);
48 another = new KerberosName("service@localhost", GSSName.NT_USER_NAME);
49 assertEquals(one, another);
52 another = new KerberosName("service/localhost", GSSName.NT_USER_NAME);
53 assertFalse(one.equals(another));
57 another = new KerberosName("service@localhost", KRB5_PRINCIPAL_NAMETYPE);
58 assertEquals(one, another);
    [all...]
  /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/third_party/WebKit/Source/core/html/
FormController.h 44 FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { }
61 inline FormControlState& FormControlState::operator=(const FormControlState& another)
63 m_type = another.m_type;
64 m_values = another.m_values;
  /external/chromium_org/chrome/common/extensions/docs/server2/
persistent_object_store_test.py 35 another_object_store = PersistentObjectStore('another')
  /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);
  /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;
  /frameworks/base/core/java/android/hardware/input/
KeyboardLayout.java 96 public int compareTo(KeyboardLayout another) {
97 int result = mLabel.compareToIgnoreCase(another.mLabel);
99 result = mCollection.compareToIgnoreCase(another.mCollection);
  /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 58 // Merges those panels grouped and shown inside |another| stack window into
60 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 1871 milliseconds

1 2 3 4 5 6 7 8 91011>>