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

1 2 3 4 5 6 7 8 91011>>

  /external/emma/core/java12/com/vladium/util/
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;
ResourceLoader.java 36 final Class caller = ClassLoaderResolver.getCallerClass (1); local
37 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
47 final Class caller = ClassLoaderResolver.getCallerClass (1); local
48 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
61 final Class caller = ClassLoaderResolver.getCallerClass (1); local
62 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
76 final Class caller = ClassLoaderResolver.getCallerClass (1); local
77 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
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...]
  /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...]
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);
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...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatLog.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 Rlog.d("CAT", caller + ": " + msg);
  /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
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 281 private static void assertEmailContentEqual(String caller, EmailContent expect,
287 assertEquals(caller + " mId", expect.mId, actual.mId);
288 assertEquals(caller + " mBaseUri", expect.mBaseUri, actual.mBaseUri);
296 public static void assertAccountEqual(String caller, Account expect, Account actual) {
301 assertEmailContentEqual(caller, expect, actual);
302 assertEquals(caller + " mDisplayName", expect.mDisplayName, actual.mDisplayName);
303 assertEquals(caller + " mEmailAddress", expect.mEmailAddress, actual.mEmailAddress);
304 assertEquals(caller + " mSyncKey", expect.mSyncKey, actual.mSyncKey);
306 assertEquals(caller + " mSyncLookback", expect.mSyncLookback, actual.mSyncLookback);
307 assertEquals(caller + " mSyncInterval", expect.mSyncInterval, actual.mSyncInterval)
    [all...]
  /external/clang/test/CXX/class/class.friend/
p1-ambiguous.cpp 21 int caller();
34 int foo::caller() { function in class:foo
  /libcore/luni/src/main/java/java/security/acl/
Owner.java 33 * @param caller
41 boolean addOwner(Principal caller, Principal owner)
47 * @param caller
58 boolean deleteOwner(Principal caller, Principal owner)
Acl.java 56 * @param caller
64 void setName(Principal caller, String name) throws NotOwnerException;
79 * @param caller
89 boolean addEntry(Principal caller, AclEntry entry) throws NotOwnerException;
94 * @param caller
104 boolean removeEntry(Principal caller, AclEntry entry)
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
ParameterIconStyle.java 30 public void getIcon(int index, BitmapCaller caller) {
31 caller.available(mBitmaps[index]);
FilterView.java 22 public void computeIcon(int index, BitmapCaller caller);
ParameterStyles.java 34 void getIcon(int index, BitmapCaller caller);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CustomElementCallbackQueue.cpp 50 void CustomElementCallbackQueue::processInElementQueue(ElementQueue caller)
52 while (m_index < m_queue.size() && owner() == caller) {
54 // queue and reenters processInQueue. owner() == caller
59 if (owner() == caller && m_index == m_queue.size()) {
  /external/clang/test/CodeGenCXX/
empty-nontrivially-copyable.cpp 4 // constructors passed by value should be passed indirectly, with the caller
20 void caller(Empty &e) { function
  /external/javassist/src/main/javassist/bytecode/analysis/
Subroutine.java 34 public Subroutine(int start, int caller) {
36 callers.add(new Integer(caller));
39 public void addCaller(int caller) {
40 callers.add(new Integer(caller));
  /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...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
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);
  /frameworks/webview/chromium/java/com/android/webview/chromium/
UnimplementedWebViewApi.java 47 StackTraceElement caller = trace[2]; local
49 " called from: " + caller.toString());
  /frameworks/wilhelm/src/desktop/
SLSndFile.h 19 extern void SndFile_Callback(SLBufferQueueItf caller, void *pContext);

Completed in 583 milliseconds

1 2 3 4 5 6 7 8 91011>>