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

123456

/external/v8/test/webkit/
H A Dnamed-function-expression.js28 function Call(lambda) { return lambda(); } function
/external/ceres-solver/include/ceres/internal/
H A Dvariadic_evaluate.h52 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
70 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
87 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
103 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
118 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
131 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
143 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
154 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
164 static bool Call(const Functor& functor, T const *const *input, T* output) { function in struct:ceres::internal::VariadicEvaluate
173 static bool Call(cons function in struct:ceres::internal::VariadicEvaluate
[all...]
/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/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/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
/external/deqp/executor/
H A DxeCallQueue.cpp49 for (vector<Call*>::iterator i = m_calls.begin(); i != m_calls.end(); i++)
55 Call* call = DE_NULL;
95 Call* CallQueue::getEmptyCall (void)
98 Call* call = DE_NULL;
111 call = new Call();
118 void CallQueue::enqueue (Call* call)
124 // Call queue must be grown.
132 void CallQueue::freeCall (Call* call)
138 // Call
140 Call function in class:xe::Call
[all...]
H A DxeCallQueue.hpp36 class Call;
41 // \todo [2012-07-10 pyry] Optimize memory management in Call
45 class Call class in namespace:xe
50 Call (void);
51 ~Call (void);
72 CallReader (Call* call);
79 Call* m_call;
86 CallWriter (CallQueue* queue, Call::Function function);
97 Call* m_call;
109 Call* getEmptyCal
[all...]
/external/libunwind/doc/
H A Dunw_create_addr_space.tex31 \section{Call-back Routines}
52 \subsection{Call-back Routine Synopsis}
/external/clang/lib/StaticAnalyzer/Checkers/
H A DTraversalChecker.cpp67 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
68 void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
72 void CallDumper::checkPreCall(const CallEvent &Call, CheckerContext &C) const { argument
82 Call.dump(llvm::outs());
85 void CallDumper::checkPostCall(const CallEvent &Call, CheckerContext &C) const { argument
86 const Expr *CallE = Call.getOriginExpr();
99 if (Call.getResultType()->isVoidType())
H A DDynamicTypePropagation.cpp39 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
40 void checkPostCall(const CallEvent &Call, CheckerContext &C) const;
60 void DynamicTypePropagation::checkPreCall(const CallEvent &Call, argument
62 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) {
86 if (const CXXDestructorCall *Dtor = dyn_cast<CXXDestructorCall>(&Call)) {
104 void DynamicTypePropagation::checkPostCall(const CallEvent &Call, argument
107 if (const ObjCMethodCall *Msg = dyn_cast<ObjCMethodCall>(&Call)) {
110 const MemRegion *RetReg = Call.getReturnValue().getAsRegion();
152 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) {
H A DNonNullParamChecker.cpp37 void checkPreCall(const CallEvent &Call, CheckerContext &C) const;
46 void NonNullParamChecker::checkPreCall(const CallEvent &Call, argument
48 const Decl *FD = Call.getDecl();
53 unsigned NumArgs = Call.getNumArgs();
69 CallEvent::param_type_iterator TyI = Call.param_type_begin(),
70 TyE = Call.param_type_end();
85 ArrayRef<ParmVarDecl*> parms = Call.parameters();
94 const Expr *ArgE = Call.getArgExpr(idx);
95 SVal V = Call.getArgSVal(idx);
153 R->addRange(Call
[all...]
/external/v8/src/
H A Darguments.cc25 v8::Handle<v8::Value> FunctionCallbackArguments::Call(FunctionCallback f) { function in class:v8::internal::FunctionCallbackArguments
39 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f) { \
50 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f, \
62 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f, \
75 void PropertyCallbackArguments::Call(Function f, \
/external/llvm/lib/Target/PowerPC/
H A DPPCTLSDynamicCall.cpp1 //===---------- PPCTLSDynamicCall.cpp - TLS Dynamic Call Fixup ------------===//
67 DEBUG(dbgs() << "TLS Dynamic Call Fixup:\n " << *MI;);
110 MachineInstr *Call = (BuildMI(MBB, I, DL, TII->get(Opc2), GPR3) local
112 Call->addOperand(MI->getOperand(3));
160 "PowerPC TLS Dynamic Call Fixup", false, false)
164 "PowerPC TLS Dynamic Call Fixup", false, false)
/external/llvm/lib/Transforms/IPO/
H A DIPConstantPropagation.cpp226 Instruction* Call = CS.getInstruction(); local
230 if (!Call || !CS.isCallee(&U))
233 // Call result not used?
234 if (Call->use_empty())
245 Call->replaceAllUsesWith(New);
249 for (auto I = Call->user_begin(), E = Call->user_end(); I != E;) {
H A DPruneEH.cpp183 CallInst *Call = CallInst::Create(II->getCalledValue(), Args, "", II); local
184 Call->takeName(II);
185 Call->setCallingConv(II->getCallingConv());
186 Call->setAttributes(II->getAttributes());
187 Call->setDebugLoc(II->getDebugLoc());
193 II->replaceAllUsesWith(Call);
/external/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp44 bool optimizeSQRT(CallInst *Call, Function *CalledFunc,
72 CallInst *Call = dyn_cast<CallInst>(&*II); local
75 if (!Call || !(CalledFunc = Call->getCalledFunction()))
88 if (TTI->haveFastSqrt(Call->getType()) &&
89 optimizeSQRT(Call, CalledFunc, *CurrBB, BB))
104 bool PartiallyInlineLibCalls::optimizeSQRT(CallInst *Call, argument
110 if (Call->onlyReadsMemory())
114 if (!Call->getType()->isFloatingPointTy())
129 // Move all instructions following Call t
[all...]
/external/mesa3d/src/gallium/tools/trace/
H A Dmodel.py102 class Call: class in inherits:
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DCall.java36 public class Call { class
47 Call(OkHttpClient client, Request originalRequest) { method in class:Call
154 Call.this.cancel();
157 Call get() {
158 return Call.this;
225 // There's another interceptor in the chain. Call that.

Completed in 514 milliseconds

123456