Home
last modified time | relevance | path

Searched refs:caller (Results 1 – 25 of 378) sorted by relevance

12345678910>>...16

/external/v8/test/webkit/fast/js/
Dcaller-property.js29 return (child.caller !== null);
37 var childHasCallerWhenExecutingGlobalCode = (child.caller !== null);
46 function nonStrictCallee() { return nonStrictCallee.caller; }
47 function strictCallee() { "use strict"; return strictCallee.caller; }
67 get foo() { return getFooGetter(nonStrictAccessor).caller; },
68 set foo(x) { if (getFooSetter(nonStrictAccessor).caller !==x) throw false; }
71 get foo() { "use strict"; return getFooGetter(strictAccessor).caller; },
72 set foo(x) { "use strict"; if (getFooSetter(strictAccessor).caller !==x) throw false; }
Dcaller-property-expected.txt24caller property in functions. Only functions that are called from inside of other functions and ha…
33 …tCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'a…
34 …tCaller(nonStrictCallee) should throw TypeError: Function.caller used to retrieve strict caller. W…
35 …tCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'a…
37 …tCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'a…
38 …er(boundNonStrictCallee) should throw TypeError: Function.caller used to retrieve strict caller. W…
39 …tCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'a…
42 …ccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'a…
43 …ccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'a…
44 …etter(nonStrictAccessor) should throw TypeError: Function.caller used to retrieve strict caller. W…
[all …]
DObject-getOwnPropertyNames-expected.txt37 PASS getSortedOwnPropertyNames(new Function()) is ['arguments', 'caller', 'length', 'name', 'protot…
38 …ar x=new Function();x.__proto__=[1,2,3];return x;})()) is ['arguments', 'caller', 'length', 'name'…
56 PASS getSortedOwnPropertyNames(parseInt) is ['arguments', 'caller', 'length', 'name']
57 PASS getSortedOwnPropertyNames(parseFloat) is ['arguments', 'caller', 'length', 'name']
58 PASS getSortedOwnPropertyNames(isNaN) is ['arguments', 'caller', 'length', 'name']
59 PASS getSortedOwnPropertyNames(isFinite) is ['arguments', 'caller', 'length', 'name']
60 PASS getSortedOwnPropertyNames(escape) is ['arguments', 'caller', 'length', 'name']
61 PASS getSortedOwnPropertyNames(unescape) is ['arguments', 'caller', 'length', 'name']
62 PASS getSortedOwnPropertyNames(decodeURI) is ['arguments', 'caller', 'length', 'name']
63 PASS getSortedOwnPropertyNames(decodeURIComponent) is ['arguments', 'caller', 'length', 'name']
[all …]
/external/emma/core/java12/com/vladium/util/
DResourceLoader.java36 final Class caller = ClassLoaderResolver.getCallerClass (1); in loadClass() local
37 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller); in loadClass()
47 final Class caller = ClassLoaderResolver.getCallerClass (1); in getResource() local
48 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller); in getResource()
61 final Class caller = ClassLoaderResolver.getCallerClass (1); in getResourceAsStream() local
62 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller); in getResourceAsStream()
76 final Class caller = ClassLoaderResolver.getCallerClass (1); in getResources() local
77 final ClassLoader loader = ClassLoaderResolver.getClassLoader (caller); in getResources()
DClassLoaderResolver.java45 public static synchronized ClassLoader getClassLoader (final Class caller) in getClassLoader() argument
47 final ClassLoadContext ctx = new ClassLoadContext (caller); in getClassLoader()
69 final Class caller = getCallerClass (1); // 'caller' can be set to null in getClassLoader() local
70 final ClassLoadContext ctx = new ClassLoadContext (caller); in getClassLoader()
148 final Class caller = ctx.getCallerClass (); in getClassLoader() local
153 if (caller == null) in getClassLoader()
157 final ClassLoader callerLoader = caller.getClassLoader (); in getClassLoader()
/external/v8/test/webkit/
Dapply-varargs-expected.txt29 PASS caller(0) is undefined
30 PASS caller(1) is undefined
31 PASS caller(2) is undefined
32 PASS caller(3) is undefined
33 PASS caller(4) is undefined
34 PASS caller(5) is undefined
35 PASS caller(6) is undefined
36 PASS caller(7) is undefined
37 PASS caller(8) is undefined
/external/llvm/test/CodeGen/Mips/
Dinternalfunc.ll3 @caller.sf1 = internal unnamed_addr global void (...)* null, align 4
15 define void @caller(i32 %a0, i32 %a1) nounwind {
17 ; CHECK: lw $[[R1:[0-9]+]], %got(caller.sf1)
18 ; CHECK: lw $25, %lo(caller.sf1)($[[R1]])
23 %tmp1 = load void (...)*, void (...)** @caller.sf1, align 4
30 ; CHECK: lw $[[R3:[0-9]+]], %got(caller.sf1)
31 ; CHECK: sw ${{[0-9]+}}, %lo(caller.sf1)($[[R3]])
35 store void (...)* %cond, void (...)** @caller.sf1, align 4
/external/fio/
Dgettime.c53 void *caller; member
57 static struct gtod_log *find_hash(void *caller) in find_hash() argument
59 unsigned long h = hash_ptr(caller, HASH_BITS); in find_hash()
66 if (log->caller == caller) in find_hash()
73 static void inc_caller(void *caller) in inc_caller() argument
75 struct gtod_log *log = find_hash(caller); in inc_caller()
82 log->caller = caller; in inc_caller()
85 h = hash_ptr(caller, HASH_BITS); in inc_caller()
92 static void gtod_log_caller(void *caller) in gtod_log_caller() argument
95 inc_caller(caller); in gtod_log_caller()
[all …]
/external/skia/src/codec/
DSkJpegDecoderMgr.cpp14 static void print_message(const j_common_ptr info, const char caller[]) { in print_message() argument
17 SkCodecPrintf("libjpeg error %d <%s> from %s\n", info->err->msg_code, buffer, caller); in print_message()
47 bool JpegDecoderMgr::returnFalse(const char caller[]) { in returnFalse() argument
48 print_message((j_common_ptr) &fDInfo, caller); in returnFalse()
52 SkCodec::Result JpegDecoderMgr::returnFailure(const char caller[], SkCodec::Result result) { in returnFailure() argument
53 print_message((j_common_ptr) &fDInfo, caller); in returnFailure()
/external/v8/test/mjsunit/regress/
Dregress-145201.js66 var caller = catcher.caller;
67 if (/native/i.test(caller) || /ADD/.test(caller)) {
68 net[caller] = 0;
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
DSubroutine.java57 final JumpInsnNode caller) in Subroutine() argument
62 callers.add(caller); in Subroutine()
84 Object caller = subroutine.callers.get(i); in merge() local
85 if (!callers.contains(caller)) { in merge()
86 callers.add(caller); in merge()
/external/javassist/src/main/javassist/bytecode/analysis/
DSubroutine.java34 public Subroutine(int start, int caller) { in Subroutine() argument
36 callers.add(new Integer(caller)); in Subroutine()
39 public void addCaller(int caller) { in addCaller() argument
40 callers.add(new Integer(caller)); in addCaller()
/external/lldb/examples/summaries/cocoa/
DLogger.py100 caller = inspect.stack()[2]
102 if caller != None and len(caller) > 3:
103 self.write('Logging from function ' + str(caller))
107 del caller # needed per Python docs to avoid keeping objects alive longer than we care
/external/llvm/test/DebugInfo/
Dinline-no-debug-info.ll7 ; void caller() { callee(); }
11 ; CHECK-LABEL: @caller(
19 ; The remaining instruction from the caller.
22 ; Debug location of the code in caller() and of the inlined code that did not
46 define void @caller() #0 {
62caller", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: true, scopeLin…
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dgenk-timing.py56 def updateFunctionCallMap(self, caller, callee): argument
58 if not caller in self.calledFunctionTable:
59 self.calledFunctionTable[caller] = []
60 if not callee in self.calledFunctionTable[caller]:
61 self.calledFunctionTable[caller].append(callee)
62 if not caller in self.comprehensiveCalledFunctionTable:
63 self.comprehensiveCalledFunctionTable[caller] = []
64 self.comprehensiveCalledFunctionTable[caller].append(callee)
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dgenk-timing.py56 def updateFunctionCallMap(self, caller, callee): argument
58 if not caller in self.calledFunctionTable:
59 self.calledFunctionTable[caller] = []
60 if not callee in self.calledFunctionTable[caller]:
61 self.calledFunctionTable[caller].append(callee)
62 if not caller in self.comprehensiveCalledFunctionTable:
63 self.comprehensiveCalledFunctionTable[caller] = []
64 self.comprehensiveCalledFunctionTable[caller].append(callee)
/external/v8/test/mjsunit/
Dfunction-caller.js33 assertEquals(f, g.caller);
34 assertEquals(match, f.caller);
54 assertEquals(String.prototype.replace, h.caller);
/external/llvm/test/Transforms/ArgumentPromotion/
Dbasictest.ll12 define internal i32 @caller(i32* %B) {
13 ; CHECK-LABEL: define internal i32 @caller(i32 %B.val1)
25 %X = call i32 @caller(i32* %B)
26 ; CHECK: call i32 @caller(i32 2)
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dgenk-timing.py61 def updateFunctionCallMap(self, caller, callee): argument
63 if not caller in self.calledFunctionTable:
64 self.calledFunctionTable[caller] = []
65 if not callee in self.calledFunctionTable[caller]:
66 self.calledFunctionTable[caller].append(callee)
67 if not caller in self.comprehensiveCalledFunctionTable:
68 self.comprehensiveCalledFunctionTable[caller] = []
69 self.comprehensiveCalledFunctionTable[caller].append(callee)
/external/mesa3d/src/mesa/main/
Dshaderobj.c160 _mesa_lookup_shader_err(struct gl_context *ctx, GLuint name, const char *caller) in _mesa_lookup_shader_err() argument
163 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller); in _mesa_lookup_shader_err()
170 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller); in _mesa_lookup_shader_err()
174 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", caller); in _mesa_lookup_shader_err()
402 const char *caller) in _mesa_lookup_shader_program_err() argument
405 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller); in _mesa_lookup_shader_program_err()
412 _mesa_error(ctx, GL_INVALID_VALUE, "%s", caller); in _mesa_lookup_shader_program_err()
416 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", caller); in _mesa_lookup_shader_program_err()
/external/libedit/examples/
Dfileman.c29 void too_dangerous (char *caller);
32 int valid_argument (char *caller, char *arg);
465 too_dangerous (char *caller) in too_dangerous() argument
469 caller); in too_dangerous()
476 valid_argument (char *caller, char *arg) in valid_argument() argument
480 fprintf (stderr, "%s: Argument required.\n", caller); in valid_argument()
/external/emma/core/java12/com/vladium/logging/
DLogger.java444 final Class caller = logCaller ? ClassLoaderResolver.getCallerClass (2) : null; in _log() local
447 if ((caller != null) || (method != null)) in _log()
451 if (caller != null) // if the caller could not be determined, s_classMask is ignored in _log()
453 String callerName = caller.getName (); in _log()
492 final Class caller = ClassLoaderResolver.getCallerClass (2); in _log() local
495 if ((caller != null) || (method != null)) in _log()
499 if (caller != null) // if the caller could not be determined, s_classMask is ignored in _log()
501 String callerName = caller.getName (); in _log()
/external/llvm/test/CodeGen/ARM/
Dtail-call.ll9 define i32 @caller(i32 %i) {
15 ; CHECK-TAIL-LABEL: caller
18 ; CHECK-NO-TAIL-LABEL: caller
/external/llvm/test/Transforms/Inline/
Drecursive.ll17 ; CHECK-LABEL: define i32 @caller(
21 define i32 @caller(i32 %param) {
28 %r = call i32 @caller(i32 %t)
/external/llvm/test/Analysis/TypeBasedAliasAnalysis/
Dargument-promotion.ll15 ; CHECK: caller
17 define internal i32 @caller(i32* %B, i32* %Q) {
31 %X = call i32 @caller(i32* %B, i32* %Q)

12345678910>>...16