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

1 2

  /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/chromium_org/v8/src/
arguments.cc 83 // Check the ReturnValue.
116 #define WRITE_CALL_0(OldFunction, NewFunction, ReturnValue) \
117 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(OldFunction f) { \
125 PropertyCallbackInfo<ReturnValue> info(end()); \
129 v8::Handle<ReturnValue> return_value = f(info); \
132 return GetReturnValue<ReturnValue>(isolate); \
135 #define WRITE_CALL_1(OldFunction, NewFunction, ReturnValue, Arg1) \
136 v8::Handle<ReturnValue> PropertyCallbackArguments::Call(OldFunction f, \
145 PropertyCallbackInfo<ReturnValue> info(end()); \
149 v8::Handle<ReturnValue> return_value = f(arg1, info);
    [all...]
arguments.h 270 * For old callbacks which return an empty handle, the ReturnValue is checked
274 #define WRITE_CALL_0(OldFunction, NewFunction, ReturnValue) \
275 v8::Handle<ReturnValue> Call(OldFunction f); \
277 #define WRITE_CALL_1(OldFunction, NewFunction, ReturnValue, Arg1) \
278 v8::Handle<ReturnValue> Call(OldFunction f, Arg1 arg1); \
280 #define WRITE_CALL_2(OldFunction, NewFunction, ReturnValue, Arg1, Arg2) \
281 v8::Handle<ReturnValue> Call(OldFunction f, Arg1 arg1, Arg2 arg2); \
283 #define WRITE_CALL_2_VOID(OldFunction, NewFunction, ReturnValue, Arg1, Arg2) \
335 * For old callbacks which return an empty handle, the ReturnValue is checked
hydrogen.cc     [all...]
  /external/clang/lib/CodeGen/
CGCUDARuntime.h 41 ReturnValueSlot ReturnValue);
CGCUDARuntime.cpp 29 ReturnValueSlot ReturnValue) {
47 CGF.EmitCall(E->getCallee()->getType(), Callee, ReturnValue,
CGVTables.cpp 173 llvm::Value *ReturnValue = RV.getScalarVal();
180 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ReturnValue);
185 ReturnValue = PerformTypeAdjustment(CGF, ReturnValue,
196 llvm::PHINode *PHI = CGF.Builder.CreatePHI(ReturnValue->getType(), 2);
197 PHI->addIncoming(ReturnValue, AdjustNotNull);
198 PHI->addIncoming(llvm::Constant::getNullValue(ReturnValue->getType()),
200 ReturnValue = PHI;
203 return RValue::get(ReturnValue);
373 Slot = ReturnValueSlot(ReturnValue, ResultType.isVolatileQualified())
    [all...]
CGExprCXX.cpp 29 ReturnValueSlot ReturnValue,
62 Callee, ReturnValue, Args, MD);
169 ReturnValueSlot ReturnValue) {
173 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
182 ReturnValue, CE->arg_begin(), CE->arg_end());
277 assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
293 EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
315 return EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
322 ReturnValueSlot ReturnValue) {
367 ReturnValue, Args)
    [all...]
CGCall.cpp     [all...]
CGStmt.cpp 781 Builder.CreateStore(RV.getScalarVal(), ReturnValue);
783 EmitAggregateCopy(ReturnValue, RV.getAggregateAddr(), Ty);
786 MakeNaturalAlignAddrLValue(ReturnValue, Ty),
821 } else if (!ReturnValue) {
832 Builder.CreateStore(Result.getScalarVal(), ReturnValue);
836 Builder.CreateStore(EmitScalarExpr(RV), ReturnValue);
840 MakeNaturalAlignAddrLValue(ReturnValue, RV->getType()),
845 EmitAggExpr(RV, AggValueSlot::forAddr(ReturnValue, Alignment,
    [all...]
CodeGenFunction.h 152 /// ReturnValue - The temporary alloca to hold the return value. This is null
154 llvm::Value *ReturnValue;
    [all...]
CodeGenFunction.cpp 562 ReturnValue = 0;
567 ReturnValue = CurFn->arg_begin();
569 ReturnValue = CreateIRTemp(RetTy, "retval");
    [all...]
CGExpr.cpp     [all...]
  /external/chromium/base/
callback_old.h 222 template <typename ReturnValue>
227 virtual ReturnValue Run() = 0;
231 template <class T, typename Method, typename ReturnValue>
234 public CallbackWithReturnValue<ReturnValue>::Type {
239 virtual ReturnValue Run() {
247 template <class T, typename ReturnValue>
248 typename CallbackWithReturnValue<ReturnValue>::Type*
249 NewCallbackWithReturnValue(T* object, ReturnValue (T::*method)()) {
250 return new CallbackWithReturnValueImpl<T, ReturnValue (T::*)(), ReturnValue>(
    [all...]
callback_unittest.cc 51 TEST(CallbackOld, ReturnValue) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ValueCache.h 51 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
55 returnValue.Set(*m_lastV8String.persistent());
57 setReturnValueFromStringSlow(returnValue, stringImpl);
64 void setReturnValueFromStringSlow(v8::ReturnValue<v8::Value>, StringImpl*);
V8ValueCache.cpp 67 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
70 returnValue.SetEmptyString();
78 returnValue.Set(*cachedV8String.persistent());
82 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate()));
  /external/llvm/lib/Support/
Compression.cpp 38 static zlib::Status encodeZlibReturnValue(int ReturnValue) {
39 switch (ReturnValue) {
  /external/chromium_org/v8/src/third_party/vtune/
jitprofiling.cc 153 int ReturnValue;
266 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
268 return ReturnValue;
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.c 115 int ReturnValue;
237 ReturnValue = (int)FUNC_NotifyEvent(event_type, EventSpecificData);
239 return ReturnValue;
  /external/clang/test/Parser/
MicrosoftExtensions.c 72 [repeatable][source_annotation_attribute( Parameter|ReturnValue )]
75 [returnvalue:SA_Post( attr=1)]
MicrosoftExtensions.cpp 4 [repeatable][source_annotation_attribute( Parameter|ReturnValue )]
7 [returnvalue:SA_Post( attr=1)]
11 [returnvalue:SA_Post(attr=1)]
16 [returnvalue:SA_Post(attr=1)]
21 [returnvalue:SA_Post(attr=1)]
  /external/chromium_org/v8/include/
v8.h 793 template<class F> friend class ReturnValue;
    [all...]
  /external/v8/src/
hydrogen.cc     [all...]
hydrogen.h 584 virtual void ReturnValue(HValue* value) = 0;
629 virtual void ReturnValue(HValue* value);
642 virtual void ReturnValue(HValue* value);
665 virtual void ReturnValue(HValue* value);
    [all...]

Completed in 1186 milliseconds

1 2