/external/llvm/unittests/ExecutionEngine/Orc/ |
H A D | IndirectionUtilsTest.cpp | 40 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 D | fix_repr.py | 8 from ..fixer_util import Call, Name, parenthesize namespace 23 return Call(Name(u"repr"), [expr], prefix=node.prefix)
|
H A D | fix_apply.py | 12 from ..fixer_util import Call, Comma, parenthesize namespace 70 return Call(func, l_newargs, prefix=prefix)
|
H A D | fix_exec.py | 15 from ..fixer_util import Comma, Name, Call namespace 40 return Call(Name(u"exec"), args, prefix=node.prefix)
|
H A D | fix_filter.py | 19 from ..fixer_util import Name, Call, ListComp, in_special_context namespace 74 new = Call(Name(u"list"), [new])
|
H A D | fix_input.py | 6 from ..fixer_util import Call, Name namespace 26 return Call(Name(u"eval"), [new], prefix=node.prefix)
|
H A D | fix_zip.py | 12 from ..fixer_util import Name, Call, in_special_context namespace 33 new = Call(Name(u"list"), [new])
|
H A D | fix_execfile.py | 11 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 D | fix_idioms.py | 32 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 D | loopback_test.js | 118 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 D | RecursiveASTVisitorTestCallVisitor.cpp | 20 bool VisitCXXMemberCallExpr(CXXMemberCallExpr *Call) { argument 21 Match(Call->getMethodDecl()->getQualifiedNameAsString(), 22 Call->getLocStart());
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
H A D | ast.ml | 17 | Call of string * expr array Constructor in type:expr
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
H A D | ast.ml | 17 | Call of string * expr array Constructor in type:expr
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
H A D | ast.ml | 17 | Call of string * expr array Constructor in type:expr
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/ |
H A D | ast.ml | 17 | Call of string * expr array Constructor in type:expr
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/ |
H A D | ast.ml | 17 | Call of string * expr array Constructor in type:expr
|
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/ |
H A D | ast.ml | 17 | Call of string * expr array Constructor in type:expr
|
/external/v8/src/ |
H A D | api-arguments.cc | 15 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 D | call-stack.rb | 3 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 D | p3-nodeduct.cpp | 4 template <class F> void Call(F f) { f(1); } function 6 void a() { Call(f<int>); }
|
/external/clang/test/CodeGenCXX/ |
H A D | copy-constructor-elim.cpp | 36 void Call(S) {}; function 44 Call(s);
|
/external/libchrome/sandbox/linux/seccomp-bpf/ |
H A D | syscall.h | 21 // 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 D | ast.ml | 17 | Call of string * expr array Constructor in type:expr
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
H A D | ast.ml | 20 | Call of string * expr array Constructor in type:expr
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
H A D | ast.ml | 20 | Call of string * expr array Constructor in type:expr
|