HomeSort by relevance Sort by last modified time
    Searched full:returnvalue (Results 1 - 25 of 387) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
glGetString.java-impl 10 String returnValue;
11 returnValue = _glGetString(
14 return returnValue;
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ConstantUnion.h 112 ConstantUnion returnValue;
115 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
116 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
120 return returnValue;
125 ConstantUnion returnValue;
128 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
129 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
133 return returnValue;
138 ConstantUnion returnValue;
141 case EbtInt: returnValue.setIConst(iConst * constant.iConst); break
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
main.h 45 const T &error(EGLint errorCode, const T &returnValue)
49 return returnValue;
53 const T &success(const T &returnValue)
57 return returnValue;
  /external/chromium_org/chrome/installer/setup/eula/
oem.js 10 window.returnValue = 6;
12 window.returnValue = 1;
  /external/webrtc/src/system_wrappers/source/
atomic32_posix.cc 42 WebRtc_Word32 returnValue = __sync_fetch_and_add(&_value, value);
43 returnValue += value;
44 return returnValue;
49 WebRtc_Word32 returnValue = __sync_fetch_and_sub(&_value, value);
50 returnValue -= value;
51 return returnValue;
aligned_malloc.cc 61 AlignedMemory* returnValue = new AlignedMemory();
62 if(returnValue == NULL)
71 returnValue->memoryPointer = malloc(size + sizeof(uintptr_t) +
73 if(returnValue->memoryPointer == NULL)
75 delete returnValue;
81 uintptr_t alignStartPos = (uintptr_t)returnValue->memoryPointer;
89 returnValue->alignedBuffer = (void*)alignedPos;
96 uintptr_t headerValue = (uintptr_t)returnValue;
99 return returnValue->alignedBuffer;
  /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...]
  /frameworks/native/opengl/tests/gl_perf/
gl2_perf.cpp 60 EGLBoolean returnValue;
82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
83 checkEglError("eglInitialize", returnValue);
84 if (returnValue != EGL_TRUE) {
90 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
91 if (returnValue) {
92 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
111 returnValue = eglMakeCurrent(dpy, surface, surface, context);
112 checkEglError("eglMakeCurrent", returnValue);
113 if (returnValue != EGL_TRUE)
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
ExecutableMemberComparator.java 53 int returnValue = aMember.getName().compareTo(bMember.getName());
54 return returnValue != 0 ? returnValue : compareParameterLists(aMember
64 int returnValue = 0;
66 returnValue += getTypeName(aIt.next().getType()).compareTo(
69 return returnValue;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.h 41 void close(const String& returnValue, ExceptionState&);
45 String returnValue() const { return m_returnValue; }
46 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
HTMLDialogElement.idl 30 attribute DOMString returnValue;
31 [RaisesException] void close([Default=NullString] optional DOMString 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*);
V8ErrorHandler.cpp 56 v8::Local<v8::Value> returnValue;
69 returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(parameters), parameters);
71 returnValue = ScriptController::callFunctionWithInstrumentation(0, callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters);
73 return returnValue;
76 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue)
78 return returnValue->IsBoolean() && returnValue->BooleanValue();
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()));
V8AbstractEventListener.cpp 114 v8::Local<v8::Value> returnValue;
133 returnValue = callListenerFunction(context, jsEvent, event);
155 ASSERT(!handleOutOfMemory() || returnValue.IsEmpty());
157 if (returnValue.IsEmpty())
160 if (!returnValue->IsNull() && !returnValue->IsUndefined() && event->storesResultAsString())
161 event->storeResult(toWebCoreString(returnValue));
163 if (m_isAttribute && shouldPreventDefault(returnValue))
167 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue)
171 return returnValue->IsBoolean() && !returnValue->BooleanValue()
    [all...]
  /frameworks/base/core/java/android/transition/
TransitionValues.java 74 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
75 returnValue += " view = " + view + "\n";
76 returnValue += " values:";
78 returnValue += " " + s + ": " + values.get(s) + "\n";
80 return returnValue;
  /external/chromium_org/chrome/third_party/mock4js/examples/
PriceServiceTest.html 32 mockPriceCache.expects(once()).getCachedPrice("USDGBP").will(returnValue(null));
33 mockPriceFetcher.expects(once()).getPriceFromServer("USDGBP").will(returnValue(123.4));
42 mockPriceCache.expects(once()).getCachedPrice("USDGBP").will(returnValue(123.4));
  /external/chromium_org/third_party/ocmock/OCMock/
OCMReturnValueProvider.m 15 returnValue = [aValue retain];
21 [returnValue release];
30 [anInvocation setReturnValue:&returnValue];
OCMBoxedReturnValueProvider.m 13 if(strcmp([[anInvocation methodSignature] methodReturnType], [(NSValue *)returnValue objCType]) != 0)
16 [returnValue getValue:buffer];
  /cts/tools/signature-tools/src/signature/model/impl/
SigParameterizedType.java 42 ITypeReference returnValue = ownerType;
43 if (returnValue == null) {
45 returnValue = new SigClassReference(rawType
49 return returnValue;
  /external/chromium_org/third_party/WebKit/ManualTests/
DOMContextMenuEvent.html 33 if ((typeof event.returnValue) != "undefined")
34 event.returnValue = false;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
main.h 40 const T &error(GLenum errorCode, const T &returnValue)
44 return returnValue;
  /external/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 48 private Value returnValue;
245 public void generalizeReturnValue(Value returnValue)
247 this.returnValue = this.returnValue != null ?
248 this.returnValue.generalize(returnValue) :
249 returnValue;
255 return returnValue;
  /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...]

Completed in 2202 milliseconds

1 2 3 4 5 6 7 8 91011>>