/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();
|
constexpr-printing.cpp | 27 constexpr U(const int *p) : T(), another(), p(p) {} 28 constexpr U(const U &u) : T(), another(), p(u.p) {} 29 T another; member in struct:U 39 static_assert(test_printing(12, 39.762, 3 + 4i, 12.9 + 3.6i, &u2.arr[4], u2.another.arr[2], (vector_int){5, 1, 2, 3}, u1) == 0, ""); // \ 41 expected-note {{in call to 'test_printing(12, 3.976200e+01, 3+4i, 1.290000e+01+3.600000e+00i, &u2.T::arr[4], u2.another.arr[2], {5, 1, 2, 3}, {{{}}, {{}}, &u1.T::arr[2]})'}}
|
member-init.cpp | 85 struct another { struct in namespace:PR14838 86 another() : r(thing()) {} function in struct:PR14838::another
|
/external/chromium_org/webkit/common/database/ |
database_connections_unittest.cc | 73 DatabaseConnections another; local 74 another.AddConnection(kOriginId, kName); 75 another.AddConnection(kOriginId, kName2); 78 connections.RemoveConnections(another, &closed_dbs); 85 another.RemoveAllConnections(); 129 // being removed on another thread.
|
/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;
|
/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...] |
/libcore/luni/src/main/java/java/net/ |
Proxy.java | 136 Proxy another = (Proxy) obj; local 138 return (type == another.type) && address.equals(another.address);
|
/art/test/071-dexfile/src/ |
Main.java | 80 anotherClass = dexClassLoader.loadClass("Another"); 82 throw new RuntimeException("Another?", cnfe); 85 Object another; local 87 another = anotherClass.newInstance(); 89 throw new RuntimeException("new another", ie); 91 throw new RuntimeException("new another", ie);
|
/dalvik/tests/071-dexfile/src/ |
Main.java | 79 anotherClass = dexClassLoader.loadClass("Another"); 81 throw new RuntimeException("Another?"); 84 Object another; local 86 another = anotherClass.newInstance(); 88 throw new RuntimeException("new another", ie); 90 throw new RuntimeException("new another", ie);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
dtifmtts.cpp | 123 DateIntervalFormat* another = (DateIntervalFormat*)dtitvfmt->clone(); local 124 if ( (*another) != (*dtitvfmt) ) { 132 const DateIntervalInfo* inf = another->getDateIntervalInfo(); 154 const DateFormat* fmt = another->getDateFormat(); 181 delete another; [all...] |
/external/clang/test/FixIt/ |
typo.cpp | 86 namespace another { namespace 87 template<typename T> class wide_string {}; // expected-note {{'another::wide_string' declared here}} 91 nonstd::wide_string<char> str2; // expected-error{{no template named 'wide_string' in namespace 'nonstd'; did you mean 'another::wide_string'?}}
|
/external/icu4c/test/intltest/ |
dtifmtts.cpp | 126 DateIntervalFormat* another = (DateIntervalFormat*)dtitvfmt->clone(); local 127 if ( (*another) != (*dtitvfmt) ) { 135 const DateIntervalInfo* inf = another->getDateIntervalInfo(); 210 const DateFormat* fmt = another->getDateFormat(); 237 delete another; [all...] |
/frameworks/base/core/tests/coretests/src/android/net/http/ |
HttpResponseCacheTest.java | 58 HttpResponseCache another = HttpResponseCache.install(cacheDir, 10 * 1024 * 1024); local 59 assertSame(first, another); 64 HttpResponseCache another = HttpResponseCache.install(cacheDir, 8 * 1024 * 1024); local 65 assertNotSame(first, another);
|
/external/chromium_org/v8/test/mjsunit/ |
strict-mode.js | 83 "another directive";\ 1057 var another = new Function("'use strict'"); function [all...] |
/external/v8/test/mjsunit/ |
strict-mode.js | 83 "another directive";\ 1057 var another = new Function("'use strict'"); function [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
NanoTest.java | 2364 AnotherMessage another = new AnotherMessage(); local [all...] |
/packages/apps/Settings/src/com/android/settings/vpn2/ |
VpnSettings.java | 445 VpnPreference another = (VpnPreference) preference; local 446 if ((result = another.mState - mState) == 0 && 447 (result = mProfile.name.compareTo(another.mProfile.name)) == 0 && 448 (result = mProfile.type - another.mProfile.type) == 0) { 449 result = mProfile.key.compareTo(another.mProfile.key);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
ObjectInputStreamTest.java | 637 Test another = (Test) in.readObject(); local 639 assertEquals(test, another); [all...] |
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/ |
ObjectInputStreamTest.java | 636 Test another = (Test) in.readObject(); local 638 assertEquals(test, another); [all...] |
/external/opencv/cxcore/src/ |
cxpersistence.cpp | 507 CvFileMapNode* another; local 529 for( another = (CvFileMapNode*)(map->table[i]); another != 0; another = another->next ) 530 if( another->key == key ) 534 value = &another->value; 593 CvFileMapNode* another; local 614 for( another = (CvFileMapNode*)(map->table[i]); another != 0; another = another->next [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DataUsageSummary.java | 1342 final CycleItem another = (CycleItem) o; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar | |
org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jar | |
/external/v8/test/cctest/ |
test-api.cc | 10132 Local<Object> another = Object::New(); local [all...] |