Searched refs:callee (Results 1 - 25 of 180) sorted by relevance

12345678

/external/clang/test/Analysis/diagnostics/
H A Dundef-value-callee.h2 void callee() { function
H A Dundef-value-caller.c4 #include "undef-value-callee.h"
10 callee();
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_function_can_inline.cpp62 const ir_function_signature *callee = call->callee; local
63 if (!callee->is_defined)
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
H A Dlink_functions.cpp66 * shader callee will point to an ir_function_signature in the original
71 const ir_function_signature *const callee = ir->callee; local
72 assert(callee != NULL);
73 const char *const name = callee->function_name();
79 find_matching_signature(name, &callee->parameters, &linked, 1,
82 ir->callee = sig;
116 f->exact_matching_signature(&callee->parameters);
120 linked_sig = new(linked) ir_function_signature(callee->return_type);
125 * ir_call from linked then linked_sig and callee wil
[all...]
H A Dopt_function_inlining.cpp110 foreach_iter(exec_list_iterator, iter_sig, this->callee->parameters)
119 exec_list_iterator sig_param_iter = this->callee->parameters.iterator();
164 foreach_iter(exec_list_iterator, iter, callee->body) {
176 sig_param_iter = this->callee->parameters.iterator();
199 sig_param_iter = this->callee->parameters.iterator();
/external/mesa3d/src/glsl/
H A Dir_function_can_inline.cpp62 const ir_function_signature *callee = call->callee; local
63 if (!callee->is_defined)
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
H A Dlink_functions.cpp66 * shader callee will point to an ir_function_signature in the original
71 const ir_function_signature *const callee = ir->callee; local
72 assert(callee != NULL);
73 const char *const name = callee->function_name();
79 find_matching_signature(name, &callee->parameters, &linked, 1,
82 ir->callee = sig;
116 f->exact_matching_signature(&callee->parameters);
120 linked_sig = new(linked) ir_function_signature(callee->return_type);
125 * ir_call from linked then linked_sig and callee wil
[all...]
H A Dopt_function_inlining.cpp110 foreach_iter(exec_list_iterator, iter_sig, this->callee->parameters)
119 exec_list_iterator sig_param_iter = this->callee->parameters.iterator();
164 foreach_iter(exec_list_iterator, iter, callee->body) {
176 sig_param_iter = this->callee->parameters.iterator();
199 sig_param_iter = this->callee->parameters.iterator();
/external/chromium_org/v8/test/webkit/
H A Dnamed-function-expression.js65 (function closure() { return closure == arguments.callee && !this.closure; })(),
66 "(function closure() { return closure == arguments.callee && !this.closure; })()"
71 (function closure() { closure = 1; return closure == arguments.callee && !this.closure; })(),
72 "(function closure() { closure = 1; return closure == arguments.callee && !this.closure; })()"
89 (function closure() { function closure() { }; return closure != arguments.callee && !this.closure; })(),
90 "(function closure() { function closure() { }; return closure != arguments.callee && !this.closure; })()"
125 (function closure() { eval("function closure() { }"); return closure != arguments.callee && !this.closure; })(),
126 "(function closure() { eval(\"function closure() { }\"); return closure != arguments.callee && !this.closure; })()"
137 (function closure() { eval("var closure"); delete closure; return closure == arguments.callee && !this.closure; })(),
138 "(function closure() { eval(\"var closure\"); delete closure; return closure == arguments.callee
[all...]
H A Dapply-varargs.js29 function callee(a1, a2, a3, a4, a5, a6, a7, a8) function
65 var allArgs = [0, "String", callee, true, null, 2.5, [1, 2, 3], {'a': 1, 'b' : 2}];
78 var result = callee.apply(baseObj, varArgs);
H A Ddfg-inline-function-dot-caller.js42 f=f.arguments.callee.caller;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-3185905.js29 var a = arguments.callee;
37 var a = arguments.callee;
45 var a = arguments.callee;
/external/clang/test/CodeGen/
H A Darm64-be-hfa-vararg.c6 double callee(int a, ...) { function
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dgenk-timing.py48 def updateTotalCallCount(self, callee):
52 if callee in self.comprehensiveCalledFunctionTable:
53 for child in self.comprehensiveCalledFunctionTable[callee]:
56 def updateFunctionCallMap(self, caller, callee):
60 if not callee in self.calledFunctionTable[caller]:
61 self.calledFunctionTable[caller].append(callee)
64 self.comprehensiveCalledFunctionTable[caller].append(callee)
66 def updateCalledFunctionList(self, callee):
69 self.updateTotalCallCount(callee)
71 if callee i
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dgenk-timing.py53 def updateTotalCallCount(self, callee):
57 if callee in self.comprehensiveCalledFunctionTable:
58 for child in self.comprehensiveCalledFunctionTable[callee]:
61 def updateFunctionCallMap(self, caller, callee):
65 if not callee in self.calledFunctionTable[caller]:
66 self.calledFunctionTable[caller].append(callee)
69 self.comprehensiveCalledFunctionTable[caller].append(callee)
71 def updateCalledFunctionList(self, callee):
74 self.updateTotalCallCount(callee)
76 if callee i
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dgenk-timing.py48 def updateTotalCallCount(self, callee):
52 if callee in self.comprehensiveCalledFunctionTable:
53 for child in self.comprehensiveCalledFunctionTable[callee]:
56 def updateFunctionCallMap(self, caller, callee):
60 if not callee in self.calledFunctionTable[caller]:
61 self.calledFunctionTable[caller].append(callee)
64 self.comprehensiveCalledFunctionTable[caller].append(callee)
66 def updateCalledFunctionList(self, callee):
69 self.updateTotalCallCount(callee)
71 if callee i
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dcodegen.ml34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dcodegen.ml34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml22 let callee = "unary" ^ (String.make 1 op) in
23 let callee =
24 match lookup_function callee the_module with
25 | Some callee -> callee
28 build_call callee [|operand|] "unop" builder
44 let callee = "binary" ^ (String.make 1 op) in
45 let callee =
46 match lookup_function callee the_module with
47 | Some callee
[all...]
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DDetectCallDepth.h44 // If a function is already in the callee list, this becomes a no-op.
45 void addCallee(FunctionNode* callee);
H A DDetectCallDepth.cpp22 DetectCallDepth::FunctionNode* callee)
25 if (callees[i] == callee)
28 callees.push_back(callee);
21 addCallee( DetectCallDepth::FunctionNode* callee) argument
/external/llvm/tools/llvm-c-test/
H A Dmodule.c78 LLVMValueRef callee = local
80 printf(" calls: %s\n", LLVMGetValueName(callee));
/external/chromium_org/tools/cygprofile/
H A Dmergetraces.py101 list of calls as tuples (sec, usec, pid:tid, callee)
108 callee = int (fields[3], 16)
109 # print ("callee: " + hex (callee) + " start: " + hex (startAddr) + " end: "
111 if (callee >= startAddr and callee < endAddr
112 and (not callee in call_addresses)):
113 converted_calls.append((secs, usecs, fields[2], (callee - startAddr)))
114 call_addresses.append(callee)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml31 let callee = "unary" ^ (String.make 1 op) in
32 let callee =
33 match lookup_function callee the_module with
34 | Some callee -> callee
37 build_call callee [|operand|] "unop" builder
73 let callee = "binary" ^ (String.make 1 op) in
74 let callee =
75 match lookup_function callee the_module with
76 | Some callee
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dpeerconnectiontestwrapper.cc54 PeerConnectionTestWrapper* callee) {
56 callee, &PeerConnectionTestWrapper::AddIceCandidate);
57 callee->SignalOnIceCandidateReady.connect(
61 callee, &PeerConnectionTestWrapper::ReceiveOfferSdp);
62 callee->SignalOnSdpReady.connect(
53 Connect(PeerConnectionTestWrapper* caller, PeerConnectionTestWrapper* callee) argument

Completed in 2419 milliseconds

12345678