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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/
checker-plugins.c 8 void caller() { function
  /external/clang/test/CodeGen/
cfi-check-fail.c 6 void caller(void (*f)()) { function
cfi-check-fail2.c 6 void caller(void (*f)()) { function
cfi-icall-cross-dso.c 42 void caller(void (*f)()) { function
  /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;
  /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 void onInvokeV(String signature, boolean isNative, Object caller);
46 int onInvokeI(String signature, boolean isNative, Object caller);
53 long onInvokeL(String signature, boolean isNative, Object caller);
60 float onInvokeF(String signature, boolean isNative, Object caller);
67 double onInvokeD(String signature, boolean isNative, Object caller);
74 Object onInvokeA(String signature, boolean isNative, Object caller);
OverrideMethod.java 72 * @param caller The calling object. Null for static methods, "this" for instance methods.
74 public static void invokeV(String signature, boolean isNative, Object caller) {
77 i.onInvokeV(signature, isNative, caller);
79 sDefaultListener.onInvokeV(signature, isNative, caller);
87 public static int invokeI(String signature, boolean isNative, Object caller) {
90 return i.onInvokeI(signature, isNative, caller);
92 return sDefaultListener.onInvokeI(signature, isNative, caller);
101 public static long invokeL(String signature, boolean isNative, Object caller) {
104 return i.onInvokeL(signature, isNative, caller);
106 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);
41 public static void e(Object caller, String msg) {
42 String className = caller.getClass().getName();
47 public static void e(String caller, String msg) {
48 Rlog.e("CAT", caller + ": " + msg);
  /libcore/ojluni/src/main/java/javax/sql/
RowSetReader.java 52 * <P>The <code>readData</code> method adds rows to the caller.
54 * populate the caller with rows from a nonrelational data source.
65 * @param caller the <code>RowSet</code> object (1) that has implemented the
71 void readData(RowSetInternal caller) throws SQLException;
RowSetWriter.java 55 * @param caller the <code>RowSet</code> object (1) that has implemented the
62 boolean writeData(RowSetInternal caller) throws SQLException;
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTestUtils.java 270 private static void assertEmailContentEqual(String caller, EmailContent expect,
276 assertEquals(caller + " mId", expect.mId, actual.mId);
277 assertEquals(caller + " mBaseUri", expect.mBaseUri, actual.mBaseUri);
285 public static void assertAccountEqual(String caller, Account expect, Account actual) {
290 assertEmailContentEqual(caller, expect, actual);
291 assertEquals(caller + " mDisplayName", expect.mDisplayName, actual.mDisplayName);
292 assertEquals(caller + " mEmailAddress", expect.mEmailAddress, actual.mEmailAddress);
293 assertEquals(caller + " mSyncKey", expect.mSyncKey, actual.mSyncKey);
295 assertEquals(caller + " mSyncLookback", expect.mSyncLookback, actual.mSyncLookback);
296 assertEquals(caller + " mSyncInterval", expect.mSyncInterval, actual.mSyncInterval)
    [all...]
  /external/libmojo/base/android/jni_generator/
sample_for_tests.h 98 const base::android::JavaParamRef<jobject>& caller);
101 void Destroy(JNIEnv* env, const base::android::JavaParamRef<jobject>& caller);
103 jint Method(JNIEnv* env, const base::android::JavaParamRef<jobject>& caller);
106 const base::android::JavaParamRef<jobject>& caller,
111 const base::android::JavaParamRef<jobject>& caller);
115 const base::android::JavaParamRef<jobject>& caller);
  /external/clang/test/CXX/class/class.friend/
p1-ambiguous.cpp 21 int caller();
34 int foo::caller() { function in class:foo
  /external/clang/test/CodeGenCXX/
exceptions-cxx-ehsc.cpp 8 void caller() { function in namespace:test1
14 // CHECK-LABEL: define void @"\01?caller@test1@@YAXXZ"(
23 void caller() { function in namespace:test2
29 // CHECK-LABEL: define void @"\01?caller@test2@@YAXXZ"(
empty-nontrivially-copyable.cpp 5 // constructors passed by value should be passed indirectly, with the caller
21 void caller(Empty &e) { function
  /libcore/ojluni/src/main/java/java/security/acl/
Owner.java 43 * Adds an owner. Only owners can modify ACL contents. The caller
48 * @param caller the principal invoking this method. It must be an owner
54 * @exception NotOwnerException if the caller principal is not an owner
57 public boolean addOwner(Principal caller, Principal owner)
64 * The caller principal must be an owner of the ACL in order to invoke
67 * @param caller the principal invoking this method. It must be an owner
75 * @exception NotOwnerException if the caller principal is not an owner
81 public boolean deleteOwner(Principal caller, Principal owner)
Acl.java 96 * @param caller the principal invoking this method. It must be an
101 * @exception NotOwnerException if the caller principal
106 public void setName(Principal caller, String name)
127 * @param caller the principal invoking this method. It must be an
136 * @exception NotOwnerException if the caller principal
139 public boolean addEntry(Principal caller, AclEntry entry)
145 * @param caller the principal invoking this method. It must be an
152 * @exception NotOwnerException if the caller principal is not
155 public 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]);
  /art/runtime/entrypoints/quick/
quick_dexcache_entrypoints.cc 73 ArtMethod* caller = caller_and_outer.caller; local
75 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, true, false);
87 ArtMethod* caller = caller_and_outer.caller; local
89 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, false, false);
98 // Called when caller isn't guaranteed to have access to a type and the dex cache may be
102 ArtMethod* caller = caller_and_outer.caller; local
104 ResolveVerifyAndClinit(dex::TypeIndex(type_idx), caller, self, false, true)
115 ArtMethod* caller = caller_and_outer.caller; local
    [all...]
  /cts/hostsidetests/services/activityandwindowmanager/activitymanager/app/src/android/server/cts/
AlwaysFocusablePipActivity.java 29 static void launchAlwaysFocusablePipActivity(Activity caller) {
30 final Intent intent = new Intent(caller, AlwaysFocusablePipActivity.class);
36 caller.startActivity(intent, options.toBundle());
TranslucentAssistantActivity.java 33 static void launchActivityIntoAssistantStack(Activity caller, Bundle extras) {
34 final Intent intent = new Intent(caller, TranslucentAssistantActivity.class);
42 caller.startActivity(intent, options.toBundle());
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
bl-local-2.s 14 .global caller
15 .type caller, %function
16 caller: label
  /art/runtime/
nth_caller_visitor.h 34 caller(nullptr),
47 DCHECK(caller == nullptr);
49 caller = m;
61 ArtMethod* caller; member in struct:art::NthCallerVisitor
  /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));

Completed in 1261 milliseconds

1 2 3 4 5 6 7 8 91011>>