Searched defs:caller (Results 1 - 25 of 79) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A Dempty-nontrivially-copyable.cpp4 // constructors passed by value should be passed indirectly, with the caller
20 void caller(Empty &e) { function
/external/chromium_org/v8/test/webkit/
H A Dapply-varargs.js61 function caller(testArgCount) function
87 shouldBe("caller(0)", 'undefined');
88 shouldBe("caller(1)", 'undefined');
89 shouldBe("caller(2)", 'undefined');
90 shouldBe("caller(3)", 'undefined');
91 shouldBe("caller(4)", 'undefined');
92 shouldBe("caller(5)", 'undefined');
93 shouldBe("caller(6)", 'undefined');
94 shouldBe("caller(7)", 'undefined');
95 shouldBe("caller(
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCustomElementCallbackQueue.cpp50 void CustomElementCallbackQueue::processInElementQueue(ElementQueue caller) argument
52 while (m_index < m_queue.size() && owner() == caller) {
54 // queue and reenters processInQueue. owner() == caller
59 if (owner() == caller && m_index == m_queue.size()) {
/external/clang/test/CXX/class/class.friend/
H A Dp1-ambiguous.cpp21 int caller();
34 int foo::caller() { function in class:foo
/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 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/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/chromium/chrome/browser/importer/
H A Dnss_decryptor_win.cc49 SetDllDirectoryCaller caller; local
54 caller.set_func(set_dll_directory);
/external/chromium_org/chrome/utility/importer/
H A Dnss_decryptor_win.cc50 SetDllDirectoryCaller caller; local
55 caller.set_func(set_dll_directory);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dintltest.h235 IntlTest* caller; member in class:IntlTest
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dshaderobj.c160 _mesa_lookup_shader_err(struct gl_context *ctx, GLuint name, const char *caller) argument
163 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
170 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
174 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", caller);
402 const char *caller)
405 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
412 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
416 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", caller);
401 _mesa_lookup_shader_program_err(struct gl_context *ctx, GLuint name, const char *caller) argument
/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
H A Dmemory_region_map.h139 int call_stack_depth; // number of caller stack frames that we saved
140 const void* call_stack[kMaxStackDepth]; // caller address stack array
146 // i.e. (the program counter of) the immediate caller
152 uintptr_t caller() const { function in struct:MemoryRegionMap::Region
235 // Get the bucket whose caller stack trace is "key". The stack trace is
293 // Maximal number of caller stack frames to save (>= 0).
379 // caller stack trace is "key". The stack trace is used to a depth of
/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
H A Dmemory_region_map.h127 int call_stack_depth; // number of caller stack frames that we saved
128 const void* call_stack[kMaxStackDepth]; // caller address stack array
134 // i.e. (the program counter of) the immediate caller
140 uintptr_t caller() const { function in struct:MemoryRegionMap::Region
269 // Maximal number of caller stack frames to save (>= 0).
/external/mesa3d/src/mesa/main/
H A Dshaderobj.c160 _mesa_lookup_shader_err(struct gl_context *ctx, GLuint name, const char *caller) argument
163 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
170 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
174 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", caller);
402 const char *caller)
405 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
412 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller);
416 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", caller);
401 _mesa_lookup_shader_program_err(struct gl_context *ctx, GLuint name, const char *caller) argument
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dscriptable_plugin.cc28 pp::Var Error(const nacl::string& call_name, const char* caller, argument
39 PLUGIN_PRINTF(("ScriptablePlugin::%s (%s)\n", caller, e));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DJavaScriptCallFrame.cpp50 JavaScriptCallFrame* JavaScriptCallFrame::caller() function in class:WebCore::JavaScriptCallFrame
56 v8::Handle<v8::Value> callerFrame = m_callFrame.newLocal(m_isolate)->Get(v8::String::NewSymbol("caller"));
/external/chromium_org/third_party/icu/source/tools/ctestfw/unicode/
H A Duperf.h168 UPerfTest* caller; member in class:UPerfTest
/external/icu4c/test/intltest/
H A Dintltest.h284 IntlTest* caller; member in class:IntlTest
/external/icu4c/tools/ctestfw/unicode/
H A Duperf.h168 UPerfTest* caller; member in class:UPerfTest
/external/kernel-headers/original/linux/lockd/
H A Dxdr.h27 char * caller; member in struct:nlm_lock
28 int len; /* length of "caller" */
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_harness.cc34 StateChangeTimeoutEvent(ProfileSyncServiceHarness* caller,
52 // Due to synchronization of the IO loop, the caller will always be alive
63 ProfileSyncServiceHarness* caller,
65 : aborted_(false), did_timeout_(false), caller_(caller), message_(message) {
62 StateChangeTimeoutEvent( ProfileSyncServiceHarness* caller, const std::string& message) argument
/external/chromium_org/ipc/
H A Dipc_fuzzing_tests.cc186 void UseData(int caller, int value, const std::wstring& text) { argument
188 wos << L"IPC fuzzer:" << caller << " [" << value << L" " << text << L"]\n";
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx_context.c527 apple_glx_context_surface_changed(unsigned int uid, pthread_t caller) argument
538 if (caller == ac->thread_id) {
539 apple_glx_diagnostic("caller is the same thread for uid %u\n",

Completed in 645 milliseconds

1234