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

123

/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/v8/test/mjsunit/
H A Dfunction-caller.js33 assertEquals(f, g.caller);
34 assertEquals(match, f.caller);
/external/clang/test/CXX/class/class.friend/
H A Dp1-ambiguous.cpp20 int caller();
33 int foo::caller() { function in class:foo
/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/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
H A DCharsetTest.java144 * 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 i
[all...]
/external/embunit/inc/
H A DHelperMacro.h50 #define EMB_UNIT_TESTCALLER(caller,name,sup,tdw,fixtures) \
51 static const TestCaller caller = new_TestCaller(name,sup,tdw,sizeof(fixtures)/sizeof(fixtures[0]),(TestFixture*)fixtures)
/external/v8/test/mjsunit/compiler/
H A Dregress-funcaller.js28 // Test function.caller.
32 if (x == 0) return fun.caller;
33 if (x == 1) return gee.caller;
/external/webkit/Source/WebCore/manual-tests/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/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.h42 static PassRefPtr<JavaScriptCallFrame> create(const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition) argument
44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, textPosition));
55 JavaScriptCallFrame* caller();
79 JavaScriptCallFrame(const JSC::DebuggerCallFrame&, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0&);
H A DJavaScriptCallFrame.cpp45 JavaScriptCallFrame::JavaScriptCallFrame(const DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition) argument
47 , m_caller(caller)
54 JavaScriptCallFrame* JavaScriptCallFrame::caller() function in class:WebCore::JavaScriptCallFrame
/external/webkit/Source/WebKit/mac/WebView/
H A DWebScriptDebugDelegate.mm65 WebScriptCallFrame *caller; // previous stack frame
74 [caller release];
91 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj debugger:(WebScriptDebugger *)debugger caller:(WebScriptCallFrame *)caller debuggerCallFrame:(const DebuggerCallFrame&)debuggerCallFrame
96 _private->caller = [caller retain];
162 - (WebScriptCallFrame *)caller
164 return _private->caller;
H A DWebScriptDebugger.mm48 - (WebScriptCallFrame *)_initWithGlobalObject:(WebScriptObject *)globalObj debugger:(WebScriptDebugger *)debugger caller:(WebScriptCallFrame *)caller debuggerCallFrame:(const DebuggerCallFrame&)debuggerCallFrame;
95 m_topCallFrame.adoptNS([[WebScriptCallFrame alloc] _initWithGlobalObject:core(webFrame)->script()->windowScriptObject() debugger:this caller:m_topCallFrame.get() debuggerCallFrame:debuggerCallFrame]);
153 m_topCallFrame.adoptNS([[WebScriptCallFrame alloc] _initWithGlobalObject:core(webFrame)->script()->windowScriptObject() debugger:this caller:m_topCallFrame.get() debuggerCallFrame:debuggerCallFrame]);
199 m_topCallFrame = [m_topCallFrame.get() caller];
/external/icu4c/extra/uconv/
H A Dresfiles.mk5 # The variable FILESEPCHAR is defined by the caller to be
/external/webkit/Source/WebCore/inspector/
H A DJavaScriptCallFrame.idl43 readonly attribute JavaScriptCallFrame caller;
/external/emma/core/java12/com/vladium/logging/
H A DLogger.java48 * <LI> caller-supplied message is logged, if not null;
49 * <LI> caller-supplied Throwable is dumped starting with a new line, if not null.
346 * nesting in the caller code.
444 final Class caller = logCaller ? ClassLoaderResolver.getCallerClass (2) : null;
447 if ((caller != null) || (method != null))
451 if (caller != null) // if the caller could not be determined, s_classMask is ignored
453 String callerName = caller.getName ();
492 final Class caller = ClassLoaderResolver.getCallerClass (2);
495 if ((caller !
[all...]
/external/apache-http/src/org/apache/commons/logging/impl/
H A DJdk14Logger.java93 StackTraceElement caller=locations[2];
94 cname=caller.getClassName();
95 method=caller.getMethodName();
/external/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp57 << " returned to caller";
106 os << " returned to caller";
211 << "' upon returning to the caller. This will be a dangling reference";
/external/webkit/Source/WebCore/bindings/v8/
H A DJavaScriptCallFrame.h50 JavaScriptCallFrame* caller();
/external/oprofile/libpp/
H A Dcallgraph_container.cpp3 * Container associating symbols and caller/caller symbols
44 // we store {caller,callee} inside a single u64
125 /// temporary caller and callee data held during processing
134 /// point to a caller symbol
152 // caller but different callees, and due to the
248 /// accumulate all samples for a given caller/callee pair
287 add(symbol_entry const & caller, symbol_entry const * callee, argument
290 cg_data & data = sym_map[caller];
292 // If we have a callee, add it to the caller'
[all...]
H A Dcallgraph_container.h3 * 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
/external/chromium/chrome/browser/importer/
H A Dnss_decryptor_win.cc49 SetDllDirectoryCaller caller; local
54 caller.set_func(set_dll_directory);
/external/kernel-headers/original/linux/lockd/
H A Dxdr.h27 char * caller; member in struct:nlm_lock
28 int len; /* length of "caller" */
/external/webkit/Source/JavaScriptCore/runtime/
H A DCommonIdentifiers.h38 macro(caller) \

Completed in 1950 milliseconds

123