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

1 2 3 4 5 6 7 8 91011>>

  /art/test/475-regression-inliner-ids/
info.txt 2 instruction IDs in the caller graph
  /external/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...]
  /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/llvm/test/Transforms/PruneEH/
simplenoreturntest.ll 5 define i32 @caller() {
11 %T = call i32 @caller( ) ; <i32> [#uses=1]
  /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);
  /external/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() {
  /external/clang/test/CodeGenCXX/
sparcv9-abi.cpp 17 // CHECK-LABEL: caller
20 void caller() function
  /external/llvm/test/Analysis/CallGraph/
2008-09-09-DirectCall.ll 5 ; CHECK: Call graph node for function: 'caller'
13 define void @caller() {
  /external/icu/icu4c/source/i18n/unicode/
measunit.h 135 * getAvailableTypes gets all of the available types. Caller owns the
204 * Caller owns returned value and must free it.
213 * Caller owns returned value and must free it.
222 * Caller owns returned value and must free it.
230 * Caller owns returned value and must free it.
238 * Caller owns returned value and must free it.
247 * Caller owns returned value and must free it.
256 * Caller owns returned value and must free it.
264 * Caller owns returned value and must free it.
273 * Caller owns returned value and must free it
    [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...]
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...]
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);
  /art/runtime/entrypoints/quick/
quick_dexcache_entrypoints.cc 35 auto* caller = GetCalleeSaveMethodCaller(self, Runtime::kRefsOnly); local
36 return ResolveVerifyAndClinit(type_idx, caller, self, true, false);
44 auto* caller = GetCalleeSaveMethodCaller(self, Runtime::kRefsOnly); local
45 return ResolveVerifyAndClinit(type_idx, caller, self, false, false);
51 // Called when caller isn't guaranteed to have access to a type and the dex cache may be
54 auto* caller = GetCalleeSaveMethodCaller(self, Runtime::kRefsOnly); local
55 return ResolveVerifyAndClinit(type_idx, caller, self, false, true);
62 auto* caller = GetCalleeSaveMethodCaller(self, Runtime::kRefsOnly); local
63 return ResolveStringFromCode(caller, string_idx);
  /external/vboot_reference/host/lib/include/
file_keys.h 16 * Returns a pointer to the buffer. Caller owns the returned pointer and
23 * Returns a pointer to the read key. Caller owns the returned pointer and
30 * Caller owns the returned digest and must free it.
  /external/clang/test/Analysis/
shallow-mode.m 19 + (void)caller;
23 + (void)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/ARM/Windows/
long-calls.ll 6 define arm_aapcs_vfpcc void @caller() nounwind {
12 ; CHECK-LABEL: caller
  /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 (...)*, 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
  /external/vboot_reference/firmware/lib/include/
vboot_audio.h 21 * Caller should loop without extra delay until this returns false.
26 * Caller should call this prior to booting.
  /external/vboot_reference/utility/include/
verify_data.h 11 * Caller owns the returned key and must free it.
16 * Caller owns the returned signature and must free it.
  /art/runtime/native/
dalvik_system_VMStack.cc 72 // Returns the defining class loader of the caller's caller.
77 if (UNLIKELY(visitor.caller == nullptr)) {
78 // The caller is an attached native thread.
81 return soa.AddLocalReference<jobject>(visitor.caller->GetDeclaringClass()->GetClassLoader());
112 // Returns the class of the caller's caller's caller.
117 if (UNLIKELY(visitor.caller == nullptr)) {
118 // The caller is an attached native thread
    [all...]

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>