HomeSort by relevance Sort by last modified time
    Searched refs:ReturnValue (Results 1 - 25 of 46) sorted by null

1 2

  /external/v8/src/
arguments.cc 17 // Check the ReturnValue.
38 #define WRITE_CALL_0(Function, ReturnValue) \
39 v8::Local<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::Local<ReturnValue> PropertyCallbackArguments::Call(Function f, \
55 PropertyCallbackInfo<ReturnValue> info(begin()); \
57 return GetReturnValue<ReturnValue>(isolate); \
61 #define WRITE_CALL_2(Function, ReturnValue, Arg1, Arg2)
    [all...]
arguments.h 179 * For old callbacks which return an empty handle, the ReturnValue is checked
183 #define WRITE_CALL_0(Function, ReturnValue) \
184 v8::Local<ReturnValue> Call(Function f);
186 #define WRITE_CALL_1(Function, ReturnValue, Arg1) \
187 v8::Local<ReturnValue> Call(Function f, Arg1 arg1);
189 #define WRITE_CALL_2(Function, ReturnValue, Arg1, Arg2) \
190 v8::Local<ReturnValue> Call(Function f, Arg1 arg1, Arg2 arg2);
192 #define WRITE_CALL_2_VOID(Function, ReturnValue, Arg1, Arg2) \
252 * For old callbacks which return an empty handle, the ReturnValue is checked
api-experimental.cc 95 void FastAccessorBuilder::ReturnValue(ValueId value) {
96 FromApi(this)->ReturnValue(value);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 155 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 as IFoo).Value,(FICloneable as IFoo).Value)
    [all...]
  /external/clang/lib/CodeGen/
CGCUDARuntime.h 45 ReturnValueSlot ReturnValue);
CGCUDARuntime.cpp 29 ReturnValueSlot ReturnValue) {
48 CGF.EmitCall(E->getCallee()->getType(), Callee, E, ReturnValue, TargetDecl);
TargetInfo.h 135 CodeGen::CodeGenFunction &CGF, CodeGen::LValue ReturnValue,
CGVTables.cpp 93 llvm::Value *ReturnValue = RV.getScalarVal();
100 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue);
107 ReturnValue = CGF.CGM.getCXXABI().performReturnAdjustment(CGF,
108 Address(ReturnValue, ClassAlign),
117 llvm::PHINode *PHI = CGF.Builder.CreatePHI(ReturnValue->getType(), 2);
118 PHI->addIncoming(ReturnValue, AdjustNotNull);
119 PHI->addIncoming(llvm::Constant::getNullValue(ReturnValue->getType()),
121 ReturnValue = PHI;
124 return RValue::get(ReturnValue);
322 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified())
    [all...]
CGExprCXX.cpp 29 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);
    [all...]
CGCall.cpp     [all...]
  /external/v8/test/cctest/
test-api-fast-accessor-builder.cc 81 fab->ReturnValue(fab->IntegerConstant(124));
105 builder->ReturnValue(
156 builder->ReturnValue(builder->IntegerConstant(5));
166 builder->ReturnValue(builder->IntegerConstant(42));
206 builder->ReturnValue(builder->IntegerConstant(0));
208 builder->ReturnValue(builder->IntegerConstant(1));
253 builder->ReturnValue(builder->IntegerConstant(0));
255 builder->ReturnValue(builder->IntegerConstant(1));
265 builder->ReturnValue(builder->LoadObject(
test-api-accessors.cc 25 builder->ReturnValue(builder->IntegerConstant(41));
test-api.h 14 v8::ReturnValue<v8::Value> rv = t.GetReturnValue();
test-receiver-check-hidden-prototype.cc 38 fast_accessor_builder->ReturnValue(
  /external/v8/include/
v8-experimental.h 36 void ReturnValue(ValueId value_id);
v8.h 138 template<typename T> class ReturnValue;
648 template<class F> friend class ReturnValue;
788 template<class F> friend class ReturnValue;
861 friend class ReturnValue;
    [all...]
v8-util.h 190 * Get value stored in map and set it in returnValue.
194 ReturnValue<Value> returnValue) {
195 return SetReturnValueFromVal(&returnValue, Traits::Get(&impl_, key));
250 bool SetReturnValue(ReturnValue<T> returnValue) {
251 return SetReturnValueFromVal(&returnValue, value_);
336 static bool SetReturnValueFromVal(ReturnValue<Value>* returnValue,
340 returnValue->SetInternal
    [all...]
  /external/llvm/lib/Support/
Compression.cpp 37 static zlib::Status encodeZlibReturnValue(int ReturnValue) {
38 switch (ReturnValue) {
  /external/v8/src/compiler/
fast-accessor-assembler.h 63 void ReturnValue(ValueId value_id);
fast-accessor-assembler.cc 113 void FastAccessorAssembler::ReturnValue(ValueId value) {
  /external/clang/include/clang/AST/
StmtCXX.h 302 ReturnValue, ///< Return value for thunk function.
311 Expr *ReturnValue, ArrayRef<Expr *> ParamMoves)
319 SubStmts[CoroutineBodyStmt::ReturnValue] = ReturnValue;
344 return cast<Expr>(SubStmts[SubStmt::ReturnValue]);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.c 116 int ReturnValue;
238 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
240 return ReturnValue;
  /external/v8/src/third_party/vtune/
jitprofiling.cc 153 int ReturnValue;
266 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
268 return ReturnValue;
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 316 SDValue ReturnValue, CallEndVal;
317 std::tie(ReturnValue, CallEndVal) = Builder.lowerCallOperands(
369 RFV.getCopyToRegs(ReturnValue, Builder.DAG, Builder.getCurSDLoc(), Chain,
378 Builder.setValue(CS.getInstruction(), ReturnValue);
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc     [all...]

Completed in 928 milliseconds

1 2