/packages/apps/Email/tests/src/com/android/email/provider/ |
ProviderTestUtils.java | 275 private static void assertEmailContentEqual(String caller, EmailContent expect, 281 assertEquals(caller + " mId", expect.mId, actual.mId); 282 assertEquals(caller + " mBaseUri", expect.mBaseUri, actual.mBaseUri); 290 public static void assertAccountEqual(String caller, Account expect, Account actual) { 295 assertEmailContentEqual(caller, expect, actual); 296 assertEquals(caller + " mDisplayName", expect.mDisplayName, actual.mDisplayName); 297 assertEquals(caller + " mEmailAddress", expect.mEmailAddress, actual.mEmailAddress); 298 assertEquals(caller + " mSyncKey", expect.mSyncKey, actual.mSyncKey); 300 assertEquals(caller + " mSyncLookback", expect.mSyncLookback, actual.mSyncLookback); 301 assertEquals(caller + " mSyncInterval", expect.mSyncInterval, actual.mSyncInterval) [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
caller-property.js | 25 'This tests for caller property in functions. Only functions that are called from inside of other functions and have a parent should have this property set. Tests return true when caller is found and false when the caller is null.' 29 return (child.caller !== null); 37 var childHasCallerWhenExecutingGlobalCode = (child.caller !== null); 45 // The caller property should throw in strict mode, and a non-strict function cannot use caller to reach a strict caller (see ES5.1 15.3.5.4). 46 function nonStrictCallee() { return nonStrictCallee.caller; } 47 function strictCallee() { "use strict"; return strictCallee.caller; } [all...] |
caller-property-expected.txt | 24 This tests for caller property in functions. Only functions that are called from inside of other functions and have a parent should have this property set. Tests return true when caller is found and false when the caller is null. 33 FAIL nonStrictCaller(strictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 34 FAIL strictCaller(nonStrictCallee) should throw TypeError: Function.caller used to retrieve strict caller. Was null. 35 FAIL strictCaller(strictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 37 FAIL nonStrictCaller(boundStrictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 38 FAIL strictCaller(boundNonStrictCallee) should throw TypeError: Function.caller used to retrieve strict caller. Was null [all...] |
/external/llvm/test/Transforms/PruneEH/ |
simplenoreturntest.ll | 5 define i32 @caller() { 11 %T = call i32 @caller( ) ; <i32> [#uses=1]
|
/external/chromium_org/v8/test/webkit/ |
apply-varargs-expected.txt | 29 PASS caller(0) is undefined 30 PASS caller(1) is undefined 31 PASS caller(2) is undefined 32 PASS caller(3) is undefined 33 PASS caller(4) is undefined 34 PASS caller(5) is undefined 35 PASS caller(6) is undefined 36 PASS caller(7) is undefined 37 PASS caller(8) is undefined
|
/external/llvm/test/Transforms/Inline/ |
2004-04-20-InlineLinkOnce.ll | 3 define linkonce void @caller() {
|
2004-10-17-InlineFunctionWithoutReturn.ll | 7 define i32 @caller() {
|
invoke_test-1.ll | 14 ; caller returns true if might_throw throws an exception... 15 define i32 @caller() {
|
inline-tail.ll | 10 define void @caller() {
|
/external/chromium_org/components/dom_distiller/core/ |
dom_distiller_database_unittest.cc | 105 // the caller's InitCallback is called with the correct value. 112 MockDatabaseCaller caller; local 113 EXPECT_CALL(caller, InitCallback(true)); 118 base::Bind(&MockDatabaseCaller::InitCallback, base::Unretained(&caller))); 129 MockDatabaseCaller caller; local 130 EXPECT_CALL(caller, InitCallback(false)); 135 base::Bind(&MockDatabaseCaller::InitCallback, base::Unretained(&caller))); 154 // the caller's LoadCallback is called with the correct success value. Also 155 // confirms that on success, the expected entries are passed to the caller's 161 MockDatabaseCaller caller; local 184 MockDatabaseCaller caller; local 214 MockDatabaseCaller caller; local 244 MockDatabaseCaller caller; local 278 MockDatabaseCaller caller; local 308 MockDatabaseCaller caller; local 344 MockDatabaseCaller caller; local [all...] |
/external/llvm/test/Analysis/CallGraph/ |
2008-09-09-DirectCall.ll | 5 ; CHECK: Call graph node for function: 'caller' 13 define void @caller() {
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
MethodAdapter.java | 30 * Known limitation: caller arguments are not available. 36 * @param caller The calling object. Null for static methods, "this" for instance methods. 39 public void onInvokeV(String signature, boolean isNative, Object caller) { 48 public int onInvokeI(String signature, boolean isNative, Object caller) { 49 onInvokeV(signature, isNative, caller); 59 public long onInvokeL(String signature, boolean isNative, Object caller) { 60 onInvokeV(signature, isNative, caller); 70 public float onInvokeF(String signature, boolean isNative, Object caller) { 71 onInvokeV(signature, isNative, caller); 81 public double onInvokeD(String signature, boolean isNative, Object caller) { [all...] |
OverrideMethod.java | 71 * @param caller The calling object. Null for static methods, "this" for instance methods. 73 public static void invokeV(String signature, boolean isNative, Object caller) { 76 i.onInvokeV(signature, isNative, caller); 78 sDefaultListener.onInvokeV(signature, isNative, caller); 86 public static int invokeI(String signature, boolean isNative, Object caller) { 89 return i.onInvokeI(signature, isNative, caller); 91 return sDefaultListener.onInvokeI(signature, isNative, caller); 100 public static long invokeL(String signature, boolean isNative, Object caller) { 103 return i.onInvokeL(signature, isNative, caller); 105 return sDefaultListener.onInvokeL(signature, isNative, caller); [all...] |
MethodListener.java | 31 * Known limitation: caller arguments are not available. 37 * @param caller The calling object. Null for static methods, "this" for instance methods. 39 public void onInvokeV(String signature, boolean isNative, Object caller); 46 public int onInvokeI(String signature, boolean isNative, Object caller); 53 public long onInvokeL(String signature, boolean isNative, Object caller); 60 public float onInvokeF(String signature, boolean isNative, Object caller); 67 public double onInvokeD(String signature, boolean isNative, Object caller); 74 public Object onInvokeA(String signature, boolean isNative, Object caller);
|
/external/chromium_org/ui/gfx/ |
path_win.h | 17 // Creates a new HRGN given |region|. The caller is responsible for destroying 21 // Creates a new HRGN given |path|. The caller is responsible for destroying
|
path_x11.h | 18 // Creates a new REGION given |region|. The caller is responsible for destroying 22 // Creates a new REGION given |path|. The caller is responsible for destroying
|
path.h | 36 // Creates a NativeRegion from the path. The caller is responsible for freeing 40 // Returns the intersection of the two regions. The caller owns the returned 45 // Returns the union of the two regions. The caller owns the returned object. 49 // Returns the difference of the two regions. The caller owns the returned
|
/external/clang/test/Analysis/ |
shallow-mode.m | 19 + (void)caller; 23 + (void)caller {
|
PR7218.c | 5 return buf[1]; // expected-warning {{Undefined or garbage value returned to caller}}
|
/external/clang/test/CXX/class/class.friend/ |
p1-ambiguous.cpp | 21 int caller(); 34 int foo::caller() { function in class:foo
|
/external/llvm/test/CodeGen/Mips/ |
internalfunc.ll | 3 @caller.sf1 = internal unnamed_addr global void (...)* null, align 4 15 define void @caller(i32 %a0, i32 %a1) nounwind { 17 ; CHECK: lw $[[R1:[0-9]+]], %got(caller.sf1) 18 ; CHECK: lw $25, %lo(caller.sf1)($[[R1]]) 23 %tmp1 = load void (...)** @caller.sf1, align 4 30 ; CHECK: lw $[[R3:[0-9]+]], %got(caller.sf1) 31 ; CHECK: sw ${{[0-9]+}}, %lo(caller.sf1)($[[R3]]) 35 store void (...)* %cond, void (...)** @caller.sf1, align 4
|
/art/runtime/ |
nth_caller_visitor.h | 31 count(0), caller(NULL) {} 43 DCHECK(caller == NULL); 45 caller = m; 56 mirror::ArtMethod* caller; member in struct:art::NthCallerVisitor
|
/external/chromium_org/content/renderer/media/ |
video_frame_provider.h | 27 // Start to provide video frames to the caller. 30 // Stop to provide video frames to the caller. 33 // Resume to provide video frames to the caller after being paused. 36 // Put the provider in pause state and the caller will not receive video
|
/external/icu4c/extra/uconv/ |
resfiles.mk | 5 # The variable FILESEPCHAR is defined by the caller to be
|
/external/llvm/test/Transforms/DeadArgElim/ |
2007-02-07-FuncRename.ll | 8 define i32 @caller() {
|