HomeSort by relevance Sort by last modified time
    Searched full:returnvalue (Results 1 - 25 of 448) 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/deqp/framework/egl/
egluCallLogWrapper.inl 9 EGLint returnValue = ::eglGetError();
11 m_log << TestLog::Message << "// " << getErrorStr(returnValue) << " returned" << TestLog::EndMessage;
12 return returnValue;
19 EGLDisplay returnValue = ::eglGetDisplay(param0);
21 m_log << TestLog::Message << "// " << getEGLDisplayStr(returnValue) << " returned" << TestLog::EndMessage;
22 return returnValue;
29 EGLBoolean returnValue = ::eglInitialize(param0, param1, param2);
31 m_log << TestLog::Message << "// " << (returnValue != EGL_FALSE ? "EGL_TRUE" : "EGL_FALSE") << " returned" << TestLog::EndMessage;
32 return returnValue;
39 EGLBoolean returnValue = ::eglTerminate(param0)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
ConstantUnion.h 188 ConstantUnion returnValue;
191 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break;
192 case EbtUInt: returnValue.setUConst(uConst + constant.uConst); break;
193 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break;
197 return returnValue;
202 ConstantUnion returnValue;
205 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break;
206 case EbtUInt: returnValue.setUConst(uConst - constant.uConst); break;
207 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break;
211 return returnValue;
    [all...]
  /external/chromium_org/v8/src/
arguments.cc 17 // 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, Arg1, Arg2)
    [all...]
  /external/chromium_org/third_party/angle/src/libEGL/
main.h 44 const T &error(EGLint errorCode, const T &returnValue)
48 return returnValue;
52 const T &success(const T &returnValue)
56 return returnValue;
  /external/chromium_org/chrome/installer/setup/eula/
oem.js 10 window.returnValue = 6;
12 window.returnValue = 1;
  /libcore/luni/src/test/java/libcore/java/math/
RunCSVTestsStrict.java 28 Object returnValue = m.invoke(null, input);
32 (double) returnValue, 0D);
35 (int) returnValue, 0D);
47 Object returnValue;
50 returnValue = m.invoke(null, input1, (int) input2);
53 returnValue = m.invoke(null, input1, input2);
57 assertEquals(extra + ": " + m + ": " , expectedOutput, (double) returnValue, 0D);
59 assertEquals(extra + ": " + m + ": ", (int) expectedOutput, (int) returnValue, 0D);
RunCSVTests.java 58 Object returnValue = m.invoke(null, input);
69 (double) returnValue, allowedError);
72 (int) returnValue, allowedError);
85 Object returnValue;
88 returnValue = m.invoke(null, input1, (int) input2);
91 returnValue = m.invoke(null, input1, input2);
102 assertEquals(extra + ": " + m + ": ", expectedOutput, (double) returnValue,
105 assertEquals(extra + ": " + m + ": ", (int) expectedOutput, (int) returnValue,
  /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...]
  /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) {
91 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
92 if (returnValue) {
93 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
112 returnValue = eglMakeCurrent(dpy, surface, surface, context);
113 checkEglError("eglMakeCurrent", returnValue);
114 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/webrtc/modules/audio_conference_mixer/source/
memory_pool_win.h 179 MemoryPoolItem<MemoryType>* returnValue = (MemoryPoolItem<MemoryType>*)
182 if(returnValue == NULL)
187 returnValue->payload = new MemoryPoolItemPayload<MemoryType>();
188 if(returnValue->payload == NULL)
190 delete returnValue;
193 returnValue->payload->base = returnValue;
195 return returnValue;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DOMDataStore.h 74 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable)
78 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue);
86 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue);
88 return DOMWrapperWorld::mainWorld().domDataStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toScriptWrappableBase(object));
90 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object);
94 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object)
98 return ScriptWrappable::fromObject(object)->setReturnValue(returnValue);
    [all...]
V8ValueCache.cpp 89 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl)
92 returnValue.SetEmptyString();
100 m_lastV8String.SetReturnValue(returnValue);
104 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate()));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.h 42 void close(const String& returnValue, ExceptionState&);
43 void closeDialog(const String& returnValue = String());
61 String returnValue() const { return m_returnValue; }
62 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
  /frameworks/base/core/java/android/transition/
TransitionValues.java 80 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
81 returnValue += " view = " + view + "\n";
82 returnValue += " values:";
84 returnValue += " " + s + ": " + values.get(s) + "\n";
86 return returnValue;
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
BaseRenderScriptComparer.java 48 float[] returnValue = new float[mHeight];
49 rowOutputs.copyTo(returnValue);
53 sum += returnValue[i];
  /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/WebKit/Source/core/events/
BeforeUnloadEvent.h 44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; }
45 String returnValue() const { return m_returnValue; }
  /external/chromium_org/third_party/ocmock/OCMock/
OCMReturnValueProvider.m 15 returnValue = [aValue retain];
21 [returnValue release];
30 [anInvocation setReturnValue:&returnValue];
  /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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodTest.java 215 Value returnValue = reply.getNextValueAsValue();
216 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
217 + returnValue.getIntValue());
223 assertTrue("returnValue must be != null", returnValue != null);
224 assertEquals("Invalid returned value,", 345, returnValue.getIntValue());
249 returnValue = reply.getNextValueAsValue();
250 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
251 + returnValue.getIntValue());
331 Value returnValue = reply.getNextValueAsValue()
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
DOMContextMenuEvent.html 33 if ((typeof event.returnValue) != "undefined")
34 event.returnValue = false;

Completed in 1902 milliseconds

1 2 3 4 5 6 7 8 91011>>