HomeSort by relevance Sort by last modified time
    Searched full:caller (Results 1 - 25 of 2709) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 212 private static void assertEmailContentEqual(String caller, EmailContent expect,
218 assertEquals(caller + " mId", expect.mId, actual.mId);
219 assertEquals(caller + " mBaseUri", expect.mBaseUri, actual.mBaseUri);
227 public static void assertAccountEqual(String caller, Account expect, Account actual) {
232 assertEmailContentEqual(caller, expect, actual);
233 assertEquals(caller + " mDisplayName", expect.mDisplayName, actual.mDisplayName);
234 assertEquals(caller + " mEmailAddress", expect.mEmailAddress, actual.mEmailAddress);
235 assertEquals(caller + " mSyncKey", expect.mSyncKey, actual.mSyncKey);
237 assertEquals(caller + " mSyncLookback", expect.mSyncLookback, actual.mSyncLookback);
238 assertEquals(caller + " mSyncInterval", expect.mSyncInterval, actual.mSyncInterval)
    [all...]
  /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.
38 public void onInvokeV(String signature, boolean isNative, Object caller) {
46 public int onInvokeI(String signature, boolean isNative, Object caller) {
47 onInvokeV(signature, isNative, caller);
56 public long onInvokeL(String signature, boolean isNative, Object caller) {
57 onInvokeV(signature, isNative, caller);
66 public float onInvokeF(String signature, boolean isNative, Object caller) {
67 onInvokeV(signature, isNative, caller);
76 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);
  /libcore/dalvik/src/main/java/dalvik/system/
VMStack.java 27 * Returns the defining class loader of the caller's caller.
35 * Returns the defining class loader of the caller's caller's caller.
43 * Returns the class of the caller's caller's caller.
54 * element of the array will be the caller of the most-recent privileged
58 * caller) are excluded from the array. Frames with java.lang.reflec
    [all...]
  /external/icu4c/extra/uconv/
resfiles.mk 5 # The variable FILESEPCHAR is defined by the caller to be
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
StkLog.java 24 public static void d(Object caller, String msg) {
29 String className = caller.getClass().getName();
34 public static void d(String caller, String msg) {
39 Log.d("STK", caller + ": " + msg);
RilMessageDecoder.java 50 * @param caller
54 public static synchronized RilMessageDecoder getInstance(Handler caller, SIMFileHandler fh) {
56 sInstance = new RilMessageDecoder(caller, fh);
64 * when complete MSG_ID_RIL_MSG_DECODED will be returned to caller.
93 private RilMessageDecoder(Handler caller, SIMFileHandler fh) {
100 mCaller = caller;
  /external/emma/core/java12/com/vladium/util/
ClassLoaderResolver.java 33 * typically involves choosing between the caller's current, thread context,
39 * @param caller [null input eliminates the caller's current classloader
42 * @return classloader to be used by the caller ['null' indicates the
45 public static synchronized ClassLoader getClassLoader (final Class caller)
47 final ClassLoadContext ctx = new ClassLoadContext (caller);
55 * typically involves choosing between the caller's current, thread context,
59 * This method uses its own caller to set the call context. To be able to
64 * @return classloader to be used by the caller ['null' indicates the
69 final Class caller = getCallerClass (1); // 'caller' can be set to nul local
148 final Class caller = ctx.getCallerClass (); local
    [all...]
ClassLoadContext.java 24 * Returns the class representing the caller of {@link ClassLoaderResolver}
25 * API. Can be used to retrieve the caller's classloader etc (which may be
26 * different from the ClassLoaderResolver's own classloader) ['null' if caller
43 * @param caller [can be null]
45 ClassLoadContext (final Class caller)
47 m_caller = caller;
  /sdk/traceview/src/com/android/traceview/
ThreadData.java 85 Call caller = mCurrent; local
101 // Add the elapsed time to the caller's exclusive time
102 caller.addExclusiveTime(elapsed);
119 Call caller = top(); local
121 mCurrent.addInclusiveTime(duration, caller);
122 if (caller == null) {
123 caller = mRoot;
125 mCurrent = caller;
169 Call caller = top(); local
170 mCurrent.addInclusiveTime(duration, caller);
    [all...]
  /external/v8/test/mjsunit/tools/
tickprocessor-test.gc-state 17 Note: percentage shows a share of a particular caller in the total
  /frameworks/base/core/tests/coretests/src/android/app/activity/
AbortReceiver.java 37 IBinder caller = intent.getIBinderExtra("caller"); local
41 caller.transact(LaunchpadActivity.GOT_RECEIVE_TRANSACTION, data, null, 0);
LocalDeniedReceiver.java 32 IBinder caller = intent.getIBinderExtra("caller"); local
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
LocalGrantedReceiver.java 32 IBinder caller = intent.getIBinderExtra("caller"); local
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
RemoteDeniedReceiver.java 32 IBinder caller = intent.getIBinderExtra("caller"); local
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
RemoteGrantedReceiver.java 32 IBinder caller = intent.getIBinderExtra("caller"); local
36 caller.transact(BroadcastTest.GOT_RECEIVE_TRANSACTION, data, null, 0);
RemoteReceiver.java 40 IBinder caller = intent.getIBinderExtra("caller"); local
44 caller.transact(LaunchpadActivity.GOT_RECEIVE_TRANSACTION, data, null, 0);
  /packages/apps/Phone/res/layout/
caller_in_conference.xml 30 <!-- "End" button for this caller -->
42 <!-- Caller information -->
51 <!-- Name or number of this caller -->
62 <!-- Number of this caller if name is supplied above -->
88 </LinearLayout> <!-- End of caller number -->
90 </LinearLayout> <!-- End of caller information -->
92 <!-- "Separate" (i.e. "go private") button for this caller -->
  /external/bison/tests/
headers.at 117 AT_DATA([caller.c],
132 AT_COMPILE([caller.o], [-c caller.c])
134 AT_COMPILE([caller], [caller.o input.o])
135 AT_PARSER_CHECK([./caller])
  /libcore/luni/src/main/java/java/security/
AuthProvider.java 52 * CallbackHandler} is used to obtain information from the caller.
63 * caller.
67 * if a {@code SecurityManager} is installed and the caller does
83 * if a {@code SecurityManager} is installed and the caller does
104 * caller.
106 * if a {@code SecurityManager} is installed and the caller does
  /external/webkit/WebCore/manual-tests/inspector-wrappers/
inspector-wrappers-test-utils.js 3 // Walk up the caller chain and try to find a reference to the Inspector's window
5 var obj = doAttack.caller;
9 obj = obj.caller;
  /dalvik/vm/native/
dalvik_system_VMStack.c 27 * Return the defining class loader of the caller's caller.
44 * Return the defining class loader of the caller's caller's caller.
61 * Returns the class of the caller's caller's caller.
121 * We want the last element of the array to be the caller of
  /external/chromium/third_party/icu/source/common/
ulocimp.h 18 * @return enumeration (owned by caller) of the keyword list.
  /external/icu4c/extra/uconv/unicode/
uwmsg.h 19 Caller owns storage.

Completed in 635 milliseconds

1 2 3 4 5 6 7 8 91011>>