Searched refs:ReturnValue (Results 1 - 25 of 37) sorted by relevance

12

/external/v8/src/
H A Darguments.cc17 // Check the ReturnValue.
38 #define WRITE_CALL_0(Function, ReturnValue) \
39 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f) { \
43 PropertyCallbackInfo<ReturnValue> info(begin()); \
45 return GetReturnValue<ReturnValue>(isolate); \
49 #define WRITE_CALL_1(Function, ReturnValue, Arg1) \
50 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(Function f, \
55 PropertyCallbackInfo<ReturnValue> info(begin()); \
57 return GetReturnValue<ReturnValue>(isolate); \
61 #define WRITE_CALL_2(Function, ReturnValue, Arg
[all...]
H A Darguments.h187 * For old callbacks which return an empty handle, the ReturnValue is checked
191 #define WRITE_CALL_0(Function, ReturnValue) \
192 v8::Handle<ReturnValue> Call(Function f); \
194 #define WRITE_CALL_1(Function, ReturnValue, Arg1) \
195 v8::Handle<ReturnValue> Call(Function f, Arg1 arg1); \
197 #define WRITE_CALL_2(Function, ReturnValue, Arg1, Arg2) \
198 v8::Handle<ReturnValue> Call(Function f, Arg1 arg1, Arg2 arg2); \
200 #define WRITE_CALL_2_VOID(Function, ReturnValue, Arg1, Arg2) \
260 * For old callbacks which return an empty handle, the ReturnValue is checked
H A Dhydrogen.cc4019 void EffectContext::ReturnValue(HValue* value) { function in class:v8::internal::EffectContext
4024 void ValueContext::ReturnValue(HValue* value) { function in class:v8::internal::ValueContext
4034 void TestContext::ReturnValue(HValue* value) { function in class:v8::internal::TestContext
4791 context->ReturnValue(rhs);
5294 return ast_context()->ReturnValue(Pop());
5410 return ast_context()->ReturnValue(value);
5655 return ast_context()->ReturnValue(result);
5657 return ast_context()->ReturnValue(Pop());
5793 return ast_context()->ReturnValue(Pop());
6381 if (!ast_context()->IsEffect()) ast_context()->ReturnValue(Po
[all...]
H A Dhydrogen.h771 virtual void ReturnValue(HValue* value) = 0;
823 virtual void ReturnValue(HValue* value) OVERRIDE;
840 virtual void ReturnValue(HValue* value) OVERRIDE;
867 virtual void ReturnValue(HValue* value) OVERRIDE;
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tools.Tests.pas155 ReturnValue: string;
157 ReturnValue := FIANTLRString.GetValue;
158 CheckEquals(ReturnValue,'foo');
183 ReturnValue: string;
185 ReturnValue := FANTLRString.ToString;
186 CheckEquals(ReturnValue,'foo');
205 ReturnValue: IANTLRInterface;
207 ReturnValue := FICloneable.Clone;
208 Check(Supports(ReturnValue, IFoo));
209 CheckEquals((ReturnValue a
[all...]
/external/clang/lib/CodeGen/
H A DCGCUDARuntime.h41 ReturnValueSlot ReturnValue);
H A DCGCUDARuntime.cpp29 ReturnValueSlot ReturnValue) {
48 CGF.EmitCall(E->getCallee()->getType(), Callee, E, ReturnValue, TargetDecl);
27 EmitCUDAKernelCallExpr(CodeGenFunction &CGF, const CUDAKernelCallExpr *E, ReturnValueSlot ReturnValue) argument
H A DCGExprCXX.cpp29 ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam,
73 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
79 *this, MD, Callee, ReturnValue, This, ImplicitParam, ImplicitParamTy, CE,
82 Callee, ReturnValue, Args, MD);
86 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
90 commonEmitCXXMemberOrOperatorCall(*this, MD, Callee, ReturnValue, This,
93 Callee, ReturnValue, Args, MD);
107 ReturnValueSlot ReturnValue) {
111 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
120 ReturnValue);
27 commonEmitCXXMemberOrOperatorCall( CodeGenFunction &CGF, const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE, CallArgList &Args) argument
72 EmitCXXMemberOrOperatorCall( const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE) argument
85 EmitCXXStructorCall( const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE, StructorType Type) argument
106 EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE, ReturnValueSlot ReturnValue) argument
132 EmitCXXMemberOrOperatorMemberCallExpr( const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue, bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow, const Expr *Base) argument
284 EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E, ReturnValueSlot ReturnValue) argument
334 EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue) argument
344 EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E, ReturnValueSlot ReturnValue) argument
[all...]
H A DCGVTables.cpp79 llvm::Value *ReturnValue = RV.getScalarVal(); local
86 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue);
91 ReturnValue = CGF.CGM.getCXXABI().performReturnAdjustment(CGF, ReturnValue,
100 llvm::PHINode *PHI = CGF.Builder.CreatePHI(ReturnValue->getType(), 2);
101 PHI->addIncoming(ReturnValue, AdjustNotNull);
102 PHI->addIncoming(llvm::Constant::getNullValue(ReturnValue->getType()),
104 ReturnValue = PHI;
107 return RValue::get(ReturnValue);
289 Slot = ReturnValueSlot(ReturnValue, ResultTyp
[all...]
H A DTargetInfo.h135 CodeGen::CodeGenFunction &CGF, CodeGen::LValue ReturnValue,
134 addReturnRegisterOutputs( CodeGen::CodeGenFunction &CGF, CodeGen::LValue ReturnValue, std::string &Constraints, std::vector<llvm::Type *> &ResultRegTypes, std::vector<llvm::Type *> &ResultTruncRegTypes, std::vector<CodeGen::LValue> &ResultRegDests, std::string &AsmString, unsigned NumOutputs) const argument
H A DCodeGenFunction.h162 /// ReturnValue - The temporary alloca to hold the return value. This is null
164 llvm::Value *ReturnValue; member in class:clang::CodeGen::CodeGenFunction
2411 ReturnValueSlot ReturnValue,
2417 ReturnValueSlot ReturnValue,
2421 ReturnValueSlot ReturnValue = ReturnValueSlot());
2457 ReturnValueSlot ReturnValue, llvm::Value *This,
2461 ReturnValueSlot ReturnValue, llvm::Value *This,
2466 ReturnValueSlot ReturnValue);
2469 ReturnValueSlot ReturnValue,
2475 ReturnValueSlot ReturnValue);
[all...]
H A DCGCall.cpp1715 Builder.CreateStore(Zero, ReturnValue);
2216 if (!CGF.ReturnValue->hasOneUse()) {
2221 if (store->getPointerOperand() != CGF.ReturnValue) return nullptr;
2227 dyn_cast<llvm::StoreInst>(CGF.ReturnValue->user_back());
2258 if (!ReturnValue) {
2290 EmitLoadOfComplex(MakeNaturalAlignAddrLValue(ReturnValue, RetTy),
2300 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue),
2315 // If there is a dominating store to ReturnValue, we can elide
2328 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
[all...]
H A DCGStmt.cpp1009 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
1011 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
1014 MakeNaturalAlignAddrLValue(ReturnValue, Ty),
1056 } else if (!ReturnValue || (RV && RV->getType()->isVoidType())) {
1067 Builder.CreateStore(Result.getScalarVal(), ReturnValue);
1071 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue); local
1075 MakeNaturalAlignAddrLValue(ReturnValue, RV->getType()),
1080 EmitAggExpr(RV, AggValueSlot::forAddr(ReturnValue, Alignment,
1944 LValue ReturnSlot = MakeAddrLValue(ReturnValue, FnRetTy);
H A DCodeGenFunction.cpp681 ReturnValue = nullptr;
693 ReturnValue = AI;
701 ReturnValue = Builder.CreateLoad(Addr, "agg.result");
703 ReturnValue = CreateIRTemp(RetTy, "retval");
H A DCGExpr.cpp3094 ReturnValueSlot ReturnValue) {
3097 return EmitBlockCallExpr(E, ReturnValue);
3100 return EmitCXXMemberCallExpr(CE, ReturnValue);
3103 return EmitCUDAKernelCallExpr(CE, ReturnValue);
3108 return EmitBuiltinExpr(FD, builtinID, E, ReturnValue);
3113 return EmitCXXOperatorMemberCallExpr(CE, MD, ReturnValue);
3170 return EmitCall(E->getCallee()->getType(), Callee, E, ReturnValue,
3342 const CallExpr *E, ReturnValueSlot ReturnValue,
3433 return EmitCall(FnInfo, Callee, ReturnValue, Args, TargetDecl);
3093 EmitCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue) argument
3341 EmitCall(QualType CalleeType, llvm::Value *Callee, const CallExpr *E, ReturnValueSlot ReturnValue, const Decl *TargetDecl, llvm::Value *Chain) argument
H A DCGObjC.cpp516 // objc_copyStruct (ReturnValue, &structIvar,
520 llvm::Value *dest = CGF.Builder.CreateBitCast(CGF.ReturnValue, CGF.VoidPtrTy);
819 emitCPPObjectAtomicGetterCall(*this, ReturnValue,
858 Builder.CreateStore(load, Builder.CreateBitCast(ReturnValue, bitcastType));
929 MakeNaturalAlignAddrLValue(ReturnValue, ivarType),
937 EmitAggregateCopy(ReturnValue, LV.getAddress(), ivarType);
/external/llvm/lib/Support/
H A DCompression.cpp37 static zlib::Status encodeZlibReturnValue(int ReturnValue) { argument
38 switch (ReturnValue) {
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp170 static int ReturnValue = EXIT_SUCCESS; variable
178 ReturnValue = EXIT_FAILURE;
186 if (error(a.getOffset(a_addr))) exit(ReturnValue);
187 if (error(b.getOffset(b_addr))) exit(ReturnValue);
199 ReturnValue = EXIT_FAILURE;
207 ReturnValue = EXIT_FAILURE;
385 return ReturnValue;
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c116 int ReturnValue; local
238 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
240 return ReturnValue;
/external/v8/src/third_party/vtune/
H A Djitprofiling.cc153 int ReturnValue; local
266 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
268 return ReturnValue;
/external/v8/include/
H A Dv8-util.h156 ReturnValue<Value> returnValue) {
229 bool SetReturnValue(ReturnValue<T> returnValue) {
312 ReturnValue<Value>* returnValue, PersistentContainerValue value) {
H A Dv8.h125 template<typename T> class ReturnValue;
566 template<class F> friend class ReturnValue;
708 template<class F> friend class ReturnValue;
2594 class ReturnValue { class in namespace:v8
2596 template <class S> V8_INLINE ReturnValue(const ReturnValue<S>& that) function in class:v8::ReturnValue
2620 template<class F> friend class ReturnValue;
2626 V8_INLINE explicit ReturnValue(internal::Object** slot);
2648 V8_INLINE ReturnValue<T> GetReturnValue() const;
2685 V8_INLINE ReturnValue<
6166 ReturnValue<T>::ReturnValue(internal::Object** slot) : value_(slot) {} function in class:v8::ReturnValue
[all...]
/external/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp42 static int ReturnValue = EXIT_SUCCESS; variable
50 ReturnValue = EXIT_FAILURE;
64 ReturnValue = EXIT_FAILURE;
568 return ReturnValue;
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp4 [repeatable][source_annotation_attribute( Parameter|ReturnValue )]
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp151 static int ReturnValue = EXIT_SUCCESS; variable
159 ReturnValue = EXIT_FAILURE;
908 return ReturnValue;

Completed in 854 milliseconds

12