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

1234567

/external/clang/test/Analysis/
H A Dchecker-plugins.c8 void caller() { function
/external/clang/test/CodeGen/
H A Dcfi-check-fail.c6 void caller(void (*f)()) { function
H A Dcfi-check-fail2.c6 void caller(void (*f)()) { function
H A Dcfi-icall-cross-dso.c42 void caller(void (*f)()) { function
/external/mesa3d/src/mesa/program/
H A Ddummy_errors.c27 _mesa_error_no_memory(const char *caller) argument
29 fprintf(stderr, "Mesa error: out of memory in %s", caller);
/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 Dexceptions-cxx-ehsc.cpp8 void caller() { function in namespace:test1
14 // CHECK-LABEL: define void @"\01?caller@test1@@YAXXZ"(
23 void caller() { function in namespace:test2
29 // CHECK-LABEL: define void @"\01?caller@test2@@YAXXZ"(
H A Dcfi-cross-dso.cpp12 void caller(A* a) { function
H A Dsparcv9-abi.cpp17 // CHECK-LABEL: caller
20 void caller() function
/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/llvm/test/MC/PowerPC/
H A Dppc64-localentry.s22 .type caller, @function
23 caller: label
28 .size caller, .-caller
/external/mesa3d/src/mesa/main/
H A Dpixelstore.c299 const char *caller)
307 "%s(skip-pixels %% block-width)", caller);
315 "%s(skip-rows %% block-height)", caller);
323 "%s(skip-images %% block-depth)", caller);
295 _mesa_compressed_pixel_storage_error_check( struct gl_context *ctx, GLint dimensions, const struct gl_pixelstore_attrib *packing, const char *caller) argument
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
H A DRoboCallSite.java7 private final Class<?> caller; field in class:RoboCallSite
9 public RoboCallSite(MethodType type, Class<?> caller) { argument
11 this.caller = caller;
15 return caller;
H A DShadowInvalidator.java21 public SwitchPoint getSwitchPoint(Class<?> caller) { argument
22 return getSwitchPoint(caller.getName());
H A DMethodCallSite.java13 public MethodCallSite(MethodType type, Class<?> caller, String name, MethodHandle original, argument
15 super(type, caller);
39 "caller=" + getCaller() +
/external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
H A DSubroutine.java57 final JumpInsnNode caller)
62 callers.add(caller);
88 Object caller = subroutine.callers.get(i);
89 if (!callers.contains(caller)) {
90 callers.add(caller);
54 Subroutine( final Label start, final int maxLocals, final JumpInsnNode caller) argument
/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/swiftshader/third_party/subzero/src/
H A DLinuxMallocProfiling.cpp11 /// \brief malloc/new/...caller tracing.
36 void *internalAllocator(size_t size, void *caller) { argument
39 ++(*Callers)[caller];
48 // tracking, to record the IP of the caller, which we get from the call to
51 void *caller = __builtin_return_address(0); local
52 return internalAllocator(size, caller);
56 void *caller = __builtin_return_address(0); local
57 return internalAllocator(size, caller);
61 void *caller = __builtin_return_address(0); local
62 return internalAllocator(size, caller);
[all...]
/external/skia/src/codec/
H A DSkJpegDecoderMgr.cpp15 static void print_message(const j_common_ptr info, const char caller[]) { argument
18 SkCodecPrintf("libjpeg error %d <%s> from %s\n", info->err->msg_code, buffer, caller);
39 bool JpegDecoderMgr::returnFalse(const char caller[]) { argument
40 print_message((j_common_ptr) &fDInfo, caller);
44 SkCodec::Result JpegDecoderMgr::returnFailure(const char caller[], SkCodec::Result result) { argument
45 print_message((j_common_ptr) &fDInfo, caller);
/external/skqp/src/codec/
H A DSkJpegDecoderMgr.cpp15 static void print_message(const j_common_ptr info, const char caller[]) { argument
18 SkCodecPrintf("libjpeg error %d <%s> from %s\n", info->err->msg_code, buffer, caller);
39 bool JpegDecoderMgr::returnFalse(const char caller[]) { argument
40 print_message((j_common_ptr) &fDInfo, caller);
44 SkCodec::Result JpegDecoderMgr::returnFailure(const char caller[], SkCodec::Result result) { argument
45 print_message((j_common_ptr) &fDInfo, caller);
/external/v8/src/builtins/
H A Dbuiltins-error.cc22 Handle<Object> caller; local
29 caller = args.new_target();
36 caller, false));
48 Handle<Object> caller = args.atOrUndefined(isolate, 2); local
49 FrameSkipMode mode = caller->IsJSFunction() ? SKIP_UNTIL_SEEN : SKIP_FIRST;
59 isolate->CaptureSimpleStackTrace(object, mode, caller);
/external/iproute2/tipc/
H A Dcmdl.c109 int run_cmd(struct nlmsghdr *nlh, const struct cmd *caller, argument
116 if (caller->help)
117 (caller->help)(cmdl);
126 if (help_flag && caller->help) {
127 (caller->help)(cmdl);
/external/jacoco/org.jacoco.core.test/src-java8/org/jacoco/core/test/validation/
H A DBootstrapMethodReferenceTest.java115 public static CallSite bootstrap(final MethodHandles.Lookup caller, argument
117 return new ConstantCallSite(caller.findStatic(BootstrapMethodReferenceTest.class,

Completed in 1792 milliseconds

1234567