Searched refs:caller (Results 1 - 25 of 783) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Dchecker-plugins.c8 void caller() { function
/external/emma/core/java12/com/vladium/util/
H A DClassLoadContext.java24 * 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) argument
47 m_caller = caller;
H A DResourceLoader.java36 final Class caller = ClassLoaderResolver.getCallerClass (1);
37 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
47 final Class caller = ClassLoaderResolver.getCallerClass (1);
48 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
61 final Class caller = ClassLoaderResolver.getCallerClass (1);
62 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
76 final Class caller = ClassLoaderResolver.getCallerClass (1);
77 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller);
H A DClassLoaderResolver.java33 * 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) argument
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
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-105.js29 assertEquals(Number, custom_valueOf.caller);
34 assertEquals(String, custom_toString.caller);
H A Dregress-1548.js28 // 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.
H A Dregress-145201.js28 // Fix some corner cases in skipping native methods using caller.
66 var caller = catcher.caller;
67 if (/native/i.test(caller) || /ADD/.test(caller)) {
68 net[caller] = 0;
/external/chromium_org/v8/test/mjsunit/
H A Dfunction-caller.js33 assertEquals(f, g.caller);
34 assertEquals(match, f.caller);
54 assertEquals(String.prototype.replace, h.caller);
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-key.js80 * @param {string} caller The id of the function that called
84 populateDetails: function(caller) {
85 var details = this.super([caller]);
96 populateDetails: function(caller) {
97 var detail = this.super([caller]);
98 switch (caller) {
/external/chromium_org/v8/test/webkit/fast/js/
H A Dcaller-property.js25 '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...]
/external/clang/test/CXX/class/class.friend/
H A Dp1-ambiguous.cpp21 int caller();
34 int foo::caller() { function in class:foo
/external/clang/test/CodeGenCXX/
H A Dempty-nontrivially-copyable.cpp5 // constructors passed by value should be passed indirectly, with the caller
21 void caller(Empty &e) { function
H A Dsparcv9-abi.cpp17 // CHECK-LABEL: caller
20 void caller() function
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutine.java34 public Subroutine(int start, int caller) { argument
36 callers.add(new Integer(caller));
39 public void addCaller(int caller) { argument
40 callers.add(new Integer(caller));
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSubroutine.java57 final JumpInsnNode caller)
62 callers.add(caller);
84 Object caller = subroutine.callers.get(i);
85 if (!callers.contains(caller)) {
86 callers.add(caller);
54 Subroutine( final LabelNode start, final int maxLocals, final JumpInsnNode caller) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
H A DCustomElementCallbackQueue.cpp49 bool CustomElementCallbackQueue::processInElementQueue(ElementQueueId caller) argument
54 while (m_index < m_queue.size() && owner() == caller) {
58 // queue and reenters processInQueue. owner() == caller
65 if (owner() == caller && m_index == m_queue.size()) {
/external/chromium_org/content/browser/
H A Dtime_zone_monitor_android.h26 void TimeZoneChangedFromJava(JNIEnv* env, jobject caller);
/external/linux-tools-perf/perf-3.12.0/arch/frv/lib/
H A Dmemcpy.S21 # to caller's fixup routine, aborting the remainder of the copy
H A Dmemset.S21 # to caller's fixup routine, aborting the remainder of the set
/external/lldb/examples/summaries/cocoa/
H A DLogger.py100 caller = inspect.stack()[2]
102 if caller != None and len(caller) > 3:
103 self.write('Logging from function ' + str(caller))
105 self.write('Caller info not available - Required caller logging not possible')
107 del caller # needed per Python docs to avoid keeping objects alive longer than we care
/external/chromium_org/components/leveldb_proto/
H A Dproto_database_impl_unittest.cc103 // the caller's InitCallback is called with the correct value.
110 MockDatabaseCaller caller; local
111 EXPECT_CALL(caller, InitCallback(true));
115 base::Bind(&MockDatabaseCaller::InitCallback, base::Unretained(&caller)));
126 MockDatabaseCaller caller; local
127 EXPECT_CALL(caller, InitCallback(false));
131 base::Bind(&MockDatabaseCaller::InitCallback, base::Unretained(&caller)));
150 // the caller's LoadCallback is called with the correct success value. Also
151 // confirms that on success, the expected entries are passed to the caller's
157 MockDatabaseCaller caller; local
179 MockDatabaseCaller caller; local
217 MockDatabaseCaller caller; local
246 MockDatabaseCaller caller; local
273 MockDatabaseCaller caller; local
303 MockDatabaseCaller caller; local
337 MockDatabaseCaller caller; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DTimer.h48 void startRepeating(double repeatInterval, const TraceLocation& caller) argument
50 start(repeatInterval, repeatInterval, caller);
52 void startOneShot(double interval, const TraceLocation& caller) argument
54 start(interval, 0, caller);
154 void restart(const TraceLocation& caller) argument
164 startOneShot(m_delay, caller);
/external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
H A Dinspector-wrappers-test-utils.js3 // 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;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dlibc_override_glibc.h110 static void* glibc_override_malloc(size_t size, const void *caller) { argument
114 const void *caller) {
117 static void glibc_override_free(void *ptr, const void *caller) { argument
121 const void *caller) {
113 glibc_override_realloc(void *ptr, size_t size, const void *caller) argument
120 glibc_override_memalign(size_t align, size_t size, const void *caller) argument
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dlibc_override_glibc.h99 static void* glibc_override_malloc(size_t size, const void *caller) { argument
103 const void *caller) {
106 static void glibc_override_free(void *ptr, const void *caller) { argument
110 const void *caller) {
102 glibc_override_realloc(void *ptr, size_t size, const void *caller) argument
109 glibc_override_memalign(size_t align, size_t size, const void *caller) argument

Completed in 4127 milliseconds

1234567891011>>