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

12

/external/chromium_org/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...]
/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) {
49 ReturnValue, E->arg_begin(), E->arg_end(), TargetDecl);
27 EmitCUDAKernelCallExpr(CodeGenFunction &CGF, const CUDAKernelCallExpr *E, ReturnValueSlot ReturnValue) argument
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);
279 Slot = ReturnValueSlot(ReturnValue, ResultTyp
[all...]
H A DCGExprCXX.cpp30 ReturnValueSlot ReturnValue,
63 Callee, ReturnValue, Args, MD);
77 ReturnValueSlot ReturnValue) {
81 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
90 CE->getLocStart(), ReturnValue, CE->arg_begin(),
185 assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
201 EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
228 return EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
235 ReturnValueSlot ReturnValue) {
280 Callee, ReturnValue, Arg
27 EmitCXXMemberCall(const CXXMethodDecl *MD, SourceLocation CallLoc, llvm::Value *Callee, ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, CallExpr::const_arg_iterator ArgBeg, CallExpr::const_arg_iterator ArgEnd) argument
76 EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE, ReturnValueSlot ReturnValue) argument
234 EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E, ReturnValueSlot ReturnValue) argument
284 EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue) argument
306 EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E, ReturnValueSlot ReturnValue) argument
[all...]
H A DCGCall.cpp1348 Builder.CreateStore(Zero, ReturnValue);
1794 if (!CGF.ReturnValue->hasOneUse()) {
1799 if (store->getPointerOperand() != CGF.ReturnValue) return nullptr;
1805 dyn_cast<llvm::StoreInst>(CGF.ReturnValue->user_back());
1830 if (!ReturnValue) {
1862 EmitLoadOfComplex(MakeNaturalAlignAddrLValue(ReturnValue, RetTy),
1872 EmitStoreOfScalar(Builder.CreateLoad(ReturnValue),
1887 // If there is a dominating store to ReturnValue, we can elide
1900 if (ReturnValue->use_empty() && isa<llvm::AllocaInst>(ReturnValue)) {
2596 EmitCall(const CGFunctionInfo &CallInfo, llvm::Value *Callee, ReturnValueSlot ReturnValue, const CallArgList &CallArgs, const Decl *TargetDecl, llvm::Instruction **callOrInvoke) argument
[all...]
H A DCodeGenFunction.h161 /// ReturnValue - The temporary alloca to hold the return value. This is null
163 llvm::Value *ReturnValue; member in class:clang::CodeGen::CodeGenFunction
2133 ReturnValueSlot ReturnValue,
2140 ReturnValueSlot ReturnValue,
2145 ReturnValueSlot ReturnValue = ReturnValueSlot());
2182 ReturnValueSlot ReturnValue,
2189 ReturnValueSlot ReturnValue);
2191 ReturnValueSlot ReturnValue);
2198 ReturnValueSlot ReturnValue);
2201 ReturnValueSlot ReturnValue);
[all...]
H A DCGStmt.cpp969 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
971 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
974 MakeNaturalAlignAddrLValue(ReturnValue, Ty),
1010 } else if (!ReturnValue || (RV && RV->getType()->isVoidType())) {
1021 Builder.CreateStore(Result.getScalarVal(), ReturnValue);
1025 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue); local
1029 MakeNaturalAlignAddrLValue(ReturnValue, RV->getType()),
1034 EmitAggExpr(RV, AggValueSlot::forAddr(ReturnValue, Alignment,
H A DCodeGenFunction.cpp613 ReturnValue = nullptr;
625 ReturnValue = AI;
633 ReturnValue = Builder.CreateLoad(Addr, "agg.result");
635 ReturnValue = CreateIRTemp(RetTy, "retval");
H A DCGExpr.cpp2940 ReturnValueSlot ReturnValue) {
2956 return EmitBlockCallExpr(E, ReturnValue);
2959 return EmitCXXMemberCallExpr(CE, ReturnValue);
2962 return EmitCUDAKernelCallExpr(CE, ReturnValue);
2972 return EmitCXXOperatorMemberCallExpr(CE, MD, ReturnValue);
3030 ReturnValue, E->arg_begin(), E->arg_end(), TargetDecl);
3202 ReturnValueSlot ReturnValue,
3301 return EmitCall(FnInfo, Callee, ReturnValue, Args, TargetDecl);
2939 EmitCallExpr(const CallExpr *E, ReturnValueSlot ReturnValue) argument
3200 EmitCall(QualType CalleeType, llvm::Value *Callee, SourceLocation CallLoc, ReturnValueSlot ReturnValue, CallExpr::const_arg_iterator ArgBeg, CallExpr::const_arg_iterator ArgEnd, const Decl *TargetDecl) argument
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8ValueCache.h74 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
87 void setReturnValueFromStringSlow(v8::ReturnValue<v8::Value>, StringImpl*);
H A DDOMDataStore.h74 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable)
94 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object)
104 static bool setReturnValueFromWrapperForMainWorld(v8::ReturnValue<v8::Value> returnValue, T* object)
231 bool setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, T* object)
H A DV8ValueCache.cpp89 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
H A DDOMWrapperMap.h56 bool setReturnValueFrom(v8::ReturnValue<v8::Value> returnValue, KeyType* key)
H A DScriptWrappable.h168 bool setReturnValue(v8::ReturnValue<v8::Value> returnValue)
/external/llvm/lib/Support/
H A DCompression.cpp36 static zlib::Status encodeZlibReturnValue(int ReturnValue) { argument
37 switch (ReturnValue) {
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp145 static int ReturnValue = EXIT_SUCCESS; variable
153 ReturnValue = EXIT_FAILURE;
174 ReturnValue = EXIT_FAILURE;
182 ReturnValue = EXIT_FAILURE;
326 return ReturnValue;
/external/chromium_org/v8/src/third_party/vtune/
H A Djitprofiling.cc153 int ReturnValue; local
266 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
268 return ReturnValue;
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c115 int ReturnValue; local
237 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
239 return ReturnValue;
/external/chromium_org/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/clang/test/Parser/
H A DMicrosoftExtensions.cpp4 [repeatable][source_annotation_attribute( Parameter|ReturnValue )]

Completed in 1595 milliseconds

12