Searched defs:Call (Results 1 - 25 of 229) sorted by relevance

12345678910

/external/llvm/unittests/ExecutionEngine/Orc/
H A DIndirectionUtilsTest.cpp40 auto *Call = dyn_cast<CallInst>(std::next(II)); local
41 EXPECT_TRUE(Call != nullptr) << "Second instruction of stub should be a call.";
42 EXPECT_TRUE(Call->isTailCall()) << "Indirect call from stub should be tail call.";
43 EXPECT_TRUE(Call->hasStructRetAttr())
45 EXPECT_TRUE(Call->paramHasAttr(2U, Attribute::ByVal))
/external/python/cpython2/Lib/lib2to3/fixes/
H A Dfix_repr.py8 from ..fixer_util import Call, Name, parenthesize namespace
23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
H A Dfix_apply.py12 from ..fixer_util import Call, Comma, parenthesize namespace
70 return Call(func, l_newargs, prefix=prefix)
H A Dfix_exec.py15 from ..fixer_util import Comma, Name, Call namespace
40 return Call(Name(u"exec"), args, prefix=node.prefix)
H A Dfix_filter.py19 from ..fixer_util import Name, Call, ListComp, in_special_context namespace
74 new = Call(Name(u"list"), [new])
H A Dfix_input.py6 from ..fixer_util import Call, Name namespace
26 return Call(Name(u"eval"), [new], prefix=node.prefix)
H A Dfix_zip.py12 from ..fixer_util import Name, Call, in_special_context namespace
33 new = Call(Name(u"list"), [new])
H A Dfix_execfile.py11 from ..fixer_util import (Comma, Name, Call, LParen, RParen, Dot, Node, namespace
45 compile_call = Call(Name(u"compile"), compile_args, u"")
52 return Call(Name(u"exec"), args, prefix=node.prefix)
H A Dfix_idioms.py32 from ..fixer_util import Call, Comma, Name, Node, BlankLine, syms namespace
105 test = Call(Name(u"isinstance"), [x, Comma(), T])
127 simple_expr.replace(Call(Name(u"sorted"), [new],
/external/webrtc/webrtc/tools/loopback_test/
H A Dloopback_test.js118 var call = new Call(pc1, pc2);
149 // var c = new Call(pc1, pc2);
153 function Call(pc1, pc2) { class
/external/clang/unittests/Tooling/
H A DRecursiveASTVisitorTestCallVisitor.cpp20 bool VisitCXXMemberCallExpr(CXXMemberCallExpr *Call) { argument
21 Match(Call->getMethodDecl()->getQualifiedNameAsString(),
22 Call->getLocStart());
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/external/v8/src/
H A Dapi-arguments.cc15 Handle<Object> FunctionCallbackArguments::Call(FunctionCallback f) { function in class:v8::internal::FunctionCallbackArguments
29 Handle<JSObject> PropertyCallbackArguments::Call( function in class:v8::internal::PropertyCallbackArguments
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcall-stack.rb3 unless defined? Call
5 Call = Struct.new( :file, :line, :method )
6 class Call class
13 return Call.new( file, line )
18 return Call.new( file, line, method )
47 Call.convert_backtrace( caller( depth + 1 ) )
53 Call.convert_backtrace( backtrace )
57 end # unless defined? Call
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp3-nodeduct.cpp4 template <class F> void Call(F f) { f(1); } function
6 void a() { Call(f<int>); }
/external/clang/test/CodeGenCXX/
H A Dcopy-constructor-elim.cpp36 void Call(S) {}; function
44 Call(s);
/external/libchrome/sandbox/linux/seccomp-bpf/
H A Dsyscall.h21 // InvalidCall() invokes Call() with a platform-appropriate syscall
49 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { function in class:sandbox::Syscall
50 return Call(nr,
69 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { function in class:sandbox::Syscall
70 return Call(nr,
83 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { function in class:sandbox::Syscall
84 return Call(nr,
96 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4) { function in class:sandbox::Syscall
97 return Call(nr, p0, p1, p2, p3, p4, 0, 0, 0);
101 static inline intptr_t Call(in function in class:sandbox::Syscall
106 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2) { function in class:sandbox::Syscall
111 static inline intptr_t Call(int nr, T0 p0, T1 p1) { function in class:sandbox::Syscall
116 static inline intptr_t Call(int nr, T0 p0) { function in class:sandbox::Syscall
120 static inline intptr_t Call(int nr) { function in class:sandbox::Syscall
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml17 | Call of string * expr array Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml20 | Call of string * expr array Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml20 | Call of string * expr array Constructor in type:expr

Completed in 2913 milliseconds

12345678910