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

1 2 3 4 5 6 7 8 91011>>

  /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/llvm/test/Transforms/PruneEH/
simplenoreturntest.ll 5 define i32 @caller() {
11 %T = call i32 @caller( ) ; <i32> [#uses=1]
simpletest.ll 10 define i32 @caller() {
  /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() {
  /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/clang/test/CXX/class/class.friend/
p1-ambiguous.cpp 20 int caller();
33 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)($gp)
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)($gp)
31 ; CHECK: sw ${{[0-9]+}}, %lo(caller.sf1)($[[R3]])
35 store void (...)* %cond, void (...)** @caller.sf1, align 4
  /external/clang/test/Analysis/
PR7218.c 5 return buf[1]; // expected-warning {{Undefined or garbage value returned to caller}}
  /external/icu4c/extra/uconv/
resfiles.mk 5 # The variable FILESEPCHAR is defined by the caller to be
  /external/llvm/test/Analysis/CallGraph/
2008-09-09-DirectCall.ll 9 define void @caller() {
  /external/llvm/test/Transforms/DeadArgElim/
2007-02-07-FuncRename.ll 8 define i32 @caller() {
  /frameworks/base/telephony/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 Log.d("CAT", caller + ": " + msg);
  /external/v8/test/mjsunit/regress/
regress-1548.js 28 // Test that the caller and arguments objects are not available on native
32 function foo() { return [].map.caller; }
35 // Try to delete the caller property (to make sure that we can't get to the
36 // caller accessor on the prototype.
37 delete Array.prototype.map.caller;
46 // caller accessor on the prototype.
  /libcore/dalvik/src/main/java/dalvik/system/
VMStack.java 27 * Returns the defining class loader of the caller's caller.
35 * Returns the class of the caller's caller's caller.
47 * caller) are excluded from the array. Frames with java.lang.reflect
  /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...]
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetTest.java 144 * Mock decoder. Only one caller is permitted.
147 static MockCachedDecoder caller = null; field in class:CharsetTest.MockCachedDecoder
154 * Only one caller is permitted.
155 * If there's another caller, throw RuntimeException.
158 if(null == caller){
159 caller = this;
161 if(caller != this){
205 * Mock encoder. Only one caller is permitted.
208 static MockCachedEncoder caller = null; field in class:CharsetTest.MockCachedEncoder
215 * Only one caller is permitted
    [all...]
  /external/chromium/chrome/browser/automation/
ui_controls_internal.h 17 // A |followup| Task can be specified to notify the caller when the mouse
18 // click event is sent. If can be NULL if the caller does not care about it.
  /external/chromium/chrome/browser/extensions/
convert_user_script.h 18 // unpacked in the system temp dir. Returns a valid extension that the caller
22 // NOTE: The caller takes ownership of the directory at extension->path() on the
  /external/chromium/crypto/
nss_util_internal.h 17 // public-key data only (e.g. server certs). Caller must release
24 // successfully. Caller must release returned reference with
  /external/oprofile/libpp/
callgraph_container.h 3 * Container associating symbols and caller/caller symbols
32 * During building a callgraph_container we store all caller/callee
44 * @param caller The calling symbol
48 * If the callee is NULL, only the caller is added to the main
52 void add(symbol_entry const & caller, symbol_entry const * callee,
134 * Record caller/callee for one cg file
136 * @param caller_bfd the caller bfd

Completed in 3413 milliseconds

1 2 3 4 5 6 7 8 91011>>