/external/clang/test/Analysis/ |
H A D | checker-plugins.c | 8 void caller() { function
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-5033.js | 15 function caller() { function 18 caller(); 19 caller(); 20 %OptimizeFunctionOnNextCall(caller); 21 caller();
|
/external/clang/test/CodeGenCXX/ |
H A D | empty-nontrivially-copyable.cpp | 5 // constructors passed by value should be passed indirectly, with the caller 21 void caller(Empty &e) { function
|
H A D | cfi-cross-dso.cpp | 12 void caller(A* a) { function
|
H A D | sparcv9-abi.cpp | 17 // CHECK-LABEL: caller 20 void caller() function
|
/external/v8/test/webkit/ |
H A D | apply-varargs.js | 61 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/v8/test/mjsunit/wasm/ |
H A D | asm-wasm.js | 10 func.toString(), ffi).caller()); 15 function caller() { 21 return {caller: caller}; 28 function caller() { 36 return {caller: caller}; 52 function caller() { 56 return {caller: caller}; 856 function caller() { function [all...] |
/external/clang/test/CXX/class/class.friend/ |
H A D | p1-ambiguous.cpp | 21 int caller(); 34 int foo::caller() { function in class:foo
|
/external/emma/core/java12/com/vladium/util/ |
H A D | ClassLoadContext.java | 24 * 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 D | ClassLoaderResolver.java | 33 * 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 D | ppc64-localentry.s | 22 .type caller, @function 23 caller: label 28 .size caller, .-caller
|
/external/clang/test/CodeGen/ |
H A D | cfi-icall-cross-dso.c | 4 void caller(void (*f)()) { function
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
H A D | Subroutine.java | 34 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 D | Subroutine.java | 57 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/opencv3/modules/flann/test/ |
H A D | test_lshtable_badarg.cpp | 69 Caller caller; local 71 caller.features = cvtest::randomMat(rng, featuresSize, CV_8UC1, 0, 255, false); 72 caller.table_number = 12; 73 caller.multi_probe_level = 2; 76 caller.key_size = 0; 77 errors += run_test_case(Error::StsBadArg, "key_size is zero", caller); 79 caller.key_size = static_cast<int>(sizeof(size_t) * CHAR_BIT); 80 errors += run_test_case(Error::StsBadArg, "key_size is too big", caller); 82 caller.key_size += cvtest::randInt(rng) % 100; 83 errors += run_test_case(Error::StsBadArg, "key_size is too big", caller); [all...] |
/external/skia/src/codec/ |
H A D | SkJpegDecoderMgr.cpp | 14 static void print_message(const j_common_ptr info, const char caller[]) { argument 17 SkCodecPrintf("libjpeg error %d <%s> from %s\n", info->err->msg_code, buffer, caller); 27 bool JpegDecoderMgr::returnFalse(const char caller[]) { argument 28 print_message((j_common_ptr) &fDInfo, caller); 32 SkCodec::Result JpegDecoderMgr::returnFailure(const char caller[], SkCodec::Result result) { argument 33 print_message((j_common_ptr) &fDInfo, caller);
|
/external/iproute2/tipc/ |
H A D | cmdl.c | 100 int run_cmd(struct nlmsghdr *nlh, const struct cmd *caller, argument 107 if (caller->help) 108 (caller->help)(cmdl); 117 if (help_flag && caller->help) { 118 (caller->help)(cmdl);
|
/external/mesa3d/src/mesa/main/ |
H A D | shaderobj.c | 160 _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/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/test/ |
H A D | LoggingUtil.java | 46 * Log the specified message from the caller object.
47 * @param caller the calling object
50 public static void log(Object caller, Object message) {
argument 52 String classNameNoPackage = getClassName(caller);
|
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/ |
H A D | LoggingUtil.java | 46 * Log the specified message from the caller object.
47 * @param caller the calling object
50 public static void log(Object caller, Object message) {
argument 52 String classNameNoPackage = getClassName(caller);
|
/external/mockftpserver/tags/1.0/src/test/java/org/mockftpserver/test/ |
H A D | LoggingUtil.java | 46 * Log the specified message from the caller object.
47 * @param caller the calling object
50 public static void log(Object caller, Object message) {
argument 52 String classNameNoPackage = getClassName(caller);
|
/external/mockftpserver/tags/1.1/src/test/java/org/mockftpserver/test/ |
H A D | LoggingUtil.java | 46 * Log the specified message from the caller object.
47 * @param caller the calling object
50 public static void log(Object caller, Object message) {
argument 52 String classNameNoPackage = getClassName(caller);
|
/external/mockftpserver/tags/1.2/src/test/java/org/mockftpserver/test/ |
H A D | LoggingUtil.java | 46 * Log the specified message from the caller object.
47 * @param caller the calling object
50 public static void log(Object caller, Object message) {
argument 52 String classNameNoPackage = getClassName(caller);
|
/external/mockftpserver/tags/1.2.1/src/test/java/org/mockftpserver/test/ |
H A D | LoggingUtil.java | 46 * Log the specified message from the caller object.
47 * @param caller the calling object
50 public static void log(Object caller, Object message) {
argument 52 String classNameNoPackage = getClassName(caller);
|
/external/mockftpserver/tags/1.2.2/src/test/java/org/mockftpserver/test/ |
H A D | LoggingUtil.java | 46 * Log the specified message from the caller object.
47 * @param caller the calling object
50 public static void log(Object caller, Object message) {
argument 52 String classNameNoPackage = getClassName(caller);
|