/toolchain/binutils/binutils-2.25/gold/testsuite/ |
icf_string_merge_test.cc | 27 // folded. However, if the addend is not ignored then get2 and get3 will 38 const char* get2() function
|
/external/clang/test/CXX/basic/basic.link/ |
p6.cpp | 25 constexpr int *get2() { function 31 static_assert(get2() == same_entity_2, "failed to find previous decl");
|
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/ |
MainActivity.java | 37 public int get2(boolean condition) { method in class:MainActivity 38 return IntermediateClass.get2(condition);
|
IntermediateClass.java | 24 public static int get2(boolean condition) { method in class:IntermediateClass 25 return new ClassInSecondaryDex(condition).get2();
|
ClassInSecondaryDex.java | 64 public int get2() { method in class:ClassInSecondaryDex
|
Test.java | 35 assertEquals(11, getActivity().get2(true));
|
/external/clang/test/Analysis/ |
cxx-for-range.cpp | 68 MagicVector2 get2() { function 73 for (int y : get2()) { [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
Bastion.py | 105 # Note: we define *two* ad-hoc functions here, get1 and get2. 110 # would be able to override the filter argument! With get2, 125 def get2(name, get1=get1): function in function:Bastion 131 return bastionclass(get2, name)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
Bastion.py | 105 # Note: we define *two* ad-hoc functions here, get1 and get2. 110 # would be able to override the filter argument! With get2, 125 def get2(name, get1=get1): function in function:Bastion 131 return bastionclass(get2, name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
Bastion.py | 105 # Note: we define *two* ad-hoc functions here, get1 and get2. 110 # would be able to override the filter argument! With get2, 125 def get2(name, get1=get1): function in function:Bastion 131 return bastionclass(get2, name)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
Bastion.py | 105 # Note: we define *two* ad-hoc functions here, get1 and get2. 110 # would be able to override the filter argument! With get2, 125 def get2(name, get1=get1): function in function:Bastion 131 return bastionclass(get2, name)
|
/prebuilts/go/darwin-x86/src/time/ |
zoneinfo_read.go | 229 // get2 returns the little-endian 16-bit value in b. 230 func get2(b []byte) int { func 257 n := get2(buf[10:]) 293 meth := get2(buf[10:]) 295 namelen := get2(buf[28:]) 296 xlen := get2(buf[30:]) 297 fclen := get2(buf[32:]) 327 get2(buf[8:]) != meth || 328 get2(buf[26:]) != namelen || 332 xlen = get2(buf[28:] [all...] |
/prebuilts/go/linux-x86/src/time/ |
zoneinfo_read.go | 229 // get2 returns the little-endian 16-bit value in b. 230 func get2(b []byte) int { func 257 n := get2(buf[10:]) 293 meth := get2(buf[10:]) 295 namelen := get2(buf[28:]) 296 xlen := get2(buf[30:]) 297 fclen := get2(buf[32:]) 327 get2(buf[8:]) != meth || 328 get2(buf[26:]) != namelen || 332 xlen = get2(buf[28:] [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1387.js | 37 var get2 = Object.getOwnPropertyDescriptor(foo(), "callee").get; 38 assertEquals(get1, get2);
|
/external/v8/test/mjsunit/harmony/ |
proxies-with.js | 83 get: function(r, k) { return this.get2(r, k) }, 84 get2: function(r, k) { key = k; return k === "a" ? "onproxy" : undefined }, 134 get: function(r, k) { return this.get2(r, k) }, 135 get2: function(r, k) { key = k; return k === "a" ? onproxy : undefined }, 194 get: function(r, k) { return this.get2(r, k) }, 195 get2: function(r, k) { key = k; return k === "a" ? onproxythrow : undefined },
|
proxies.js | 178 get(t, k, r) { return this.get2(r, k) }, 179 get2(r, k) { key = k; return 42 } 238 get(t, k, r) { return this.get2(t, k, r) }, 239 get2(t, k, r) { return () => { return 55 } } 287 get(r, k) { return this.get2(r, k) }, 288 get2(r, k) { throw "myexn" } [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
Row.java | 76 public C2 get2() { method in class:Row
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Row.java | 72 public C2 get2() { method in class:Row
|
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/ |
MainActivity.java | 48 + new com.android.multidexlegacytestapp.manymethods.Big002().get2()
|
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/ |
AbstractService.java | 125 new com.android.framework.multidexlegacytestservices.manymethods.Big002().get2() +
|
/external/clang/test/SemaCXX/ |
uninitialized.cpp | 218 int get2() { return num; } function in class:A 261 A a17(a17.get2()); // expected-warning {{variable 'a17' is uninitialized when used within its own initialization}} 275 A *a27 = new A(a27->get2()); // expected-warning {{variable 'a27' is uninitialized when used within its own initialization}} 325 A a17(a17.get2()); // expected-warning {{variable 'a17' is uninitialized when used within its own initialization}} 337 A *a27 = new A(a27->get2()); // expected-warning {{variable 'a27' is uninitialized when used within its own initialization}} 391 T(bool (*)[17]) : a(a.get2()) {} // expected-warning {{field 'a' is uninitialized when used here}} 403 T(bool (*)[27]) : ptr_a(new A(ptr_a->get2())) {} // expected-warning {{field 'ptr_a' is uninitialized when used here}} [all...] |
/prebuilts/go/darwin-x86/test/chan/ |
powser1.go | 164 func get2(in0 *dch, in1 *dch) []rat { func 327 uv = get2(U,V) 446 uv := get2(U,V)
|
powser2.go | 174 func get2(in0 *dch, in1 *dch) []item { func 341 uv = get2(U,V) 460 uv := get2(U,V)
|
/prebuilts/go/linux-x86/test/chan/ |
powser1.go | 164 func get2(in0 *dch, in1 *dch) []rat { func 327 uv = get2(U,V) 446 uv := get2(U,V)
|
powser2.go | 174 func get2(in0 *dch, in1 *dch) []item { func 341 uv = get2(U,V) 460 uv := get2(U,V)
|