HomeSort by relevance Sort by last modified time
    Searched refs:callee (Results 1 - 25 of 352) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/diagnostics/
undef-value-callee.h 2 void callee() { function
undef-value-caller.c 4 #include "undef-value-callee.h"
10 callee();
  /external/mesa3d/src/glsl/
ir_function_can_inline.cpp 62 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();
link_functions.cpp 66 * 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 will b
    [all...]
  /art/test/642-fp-callees/src/
Main.java 25 $noinline$callee(a, b, c);
30 public static void $noinline$callee(int a, int b, long c) {
  /external/clang/test/CodeGenCXX/
pr20719.cpp 15 H<Fx> callee; local
20 H<Fx> callee; local
  /external/clang/test/CodeGen/
arm64-be-hfa-vararg.c 6 double callee(int a, ...) { function
  /external/compiler-rt/test/asan/TestCases/
coverage-trace-pc.cc 11 extern "C" void __sanitizer_cov_trace_pc_indir(void *callee) {
12 last_callee = callee;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug286.go 15 var callee string var
20 func (t *T) f() { callee = "f" }
21 func (i *T) g() { callee = "g" }
35 if callee != "f" {
36 println("test1 called", callee)
47 if callee != "f" {
48 println("test2 called", callee)
60 if callee != "f" {
61 println("test3 called", callee)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug286.go 15 var callee string var
20 func (t *T) f() { callee = "f" }
21 func (i *T) g() { callee = "g" }
35 if callee != "f" {
36 println("test1 called", callee)
47 if callee != "f" {
48 println("test2 called", callee)
60 if callee != "f" {
61 println("test3 called", callee)
  /art/compiler/optimizing/
optimizing_compiler.h 38 bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee)
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
attr-gnu-4-44.d 8 Tag_GNU_MIPS_ABI_FP: Hard float \(MIPS32r2 64-bit FPU 12 callee-saved\)
16 FP ABI: Hard float \(MIPS32r2 64-bit FPU 12 callee-saved\)
attr-gnu-4-14.d 4 #error: \A[^\n]*: Warning: .* uses -mdouble-float \(set by .*\), .* uses -mips32r2 -mfp64 \(12 callee-saved\)\n
attr-gnu-4-24.d 4 #error: \A[^\n]*: Warning: .* uses -msingle-float \(set by .*\), .* uses -mips32r2 -mfp64 \(12 callee-saved\)\n
attr-gnu-4-4-ph.d 19 FP ABI: Hard float \(MIPS32r2 64-bit FPU 12 callee-saved\)
attr-gnu-4-41.d 4 #error: \A[^\n]*: Warning: .* uses -mips32r2 -mfp64 \(12 callee-saved\) \(set by .*\), .* uses -mdouble-float\n
attr-gnu-4-42.d 4 #error: \A[^\n]*: Warning: .* uses -mips32r2 -mfp64 \(12 callee-saved\) \(set by .*\), .* uses -msingle-float\n
  /external/clang/test/Parser/
expressions.c 71 void callee(double, double);
73 callee(foobar, // expected-error {{use of undeclared identifier 'foobar'}}
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
genk-timing.py 48 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 in self.calledFunctions
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
genk-timing.py 53 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 in self.calledFunctions
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
genk-timing.py 48 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 in self.calledFunctions
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/
CheckTraceVisitor.cpp 42 Expr* callee = call->getCallee();
49 dyn_cast<CXXDependentScopeMemberExpr>(callee)) {
60 if (UnresolvedMemberExpr* expr = dyn_cast<UnresolvedMemberExpr>(callee)) {
216 if (MemberExpr* callee = dyn_cast<MemberExpr>(call->getCallee())) {
217 if (!callee->hasQualifier())
221 dyn_cast<FunctionDecl>(callee->getMemberDecl());
225 const Type* type = callee->getQualifier()->getAsType();
231 } else if (UnresolvedMemberExpr* callee =
233 // Callee part may become unresolved if the type of the argument
243 for (NamedDecl* named_decl : callee->decls())
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
AnalyzeCallDepth.h 41 void addCallee(FunctionNode *callee);
  /external/v8/tools/clang/pass_to_move/
PassToMove.cpp 44 const clang::MemberExpr* callee = local
46 const bool is_arrow = callee->isArrow();
64 callee->getOperatorLoc()),
92 callee(functionDecl(hasName("Pass"), returns(rValueReferenceType()))),
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipSession.aidl 110 * @param callee the SIP profile to make the call to
116 void makeCall(in SipProfile callee, String sessionDescription, int timeout);

Completed in 1748 milliseconds

1 2 3 4 5 6 7 8 91011>>