HomeSort by relevance Sort by last modified time
    Searched full:returnvalue (Results 26 - 50 of 397) sorted by null

12 3 4 5 6 7 8 91011>>

  /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...]
  /frameworks/native/opengl/tests/gl2_basic/
gl2_basic.cpp 262 EGLBoolean returnValue;
286 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
287 checkEglError("eglInitialize", returnValue);
289 if (returnValue != EGL_TRUE) {
302 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
303 if (returnValue) {
304 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
326 returnValue = eglMakeCurrent(dpy, surface, surface, context);
327 checkEglError("eglMakeCurrent", returnValue);
328 if (returnValue != EGL_TRUE)
    [all...]
  /frameworks/native/opengl/tests/gl_yuvtex/
gl_yuvtex.cpp 225 EGLBoolean returnValue;
249 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
250 checkEglError("eglInitialize", returnValue);
252 if (returnValue != EGL_TRUE) {
258 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
259 if (returnValue) {
260 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
282 returnValue = eglMakeCurrent(dpy, surface, surface, context);
283 checkEglError("eglMakeCurrent", returnValue);
284 if (returnValue != EGL_TRUE)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ErrorHandler.cpp 64 v8::Local<v8::Value> returnValue;
77 returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate);
79 returnValue = ScriptController::callFunction(context, callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate);
81 return returnValue;
94 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue)
96 return returnValue->IsBoolean() && returnValue->BooleanValue();
ScriptWrappable.h 135 static bool setReturnValueWithSecurityCheck(v8::ReturnValue<v8::Value> returnValue, T* object)
137 return ScriptWrappable::getUnsafeWrapperFromObject(object).template setReturnValueWithSecurityCheck<V8T>(returnValue, object);
141 static bool setReturnValue(v8::ReturnValue<v8::Value> returnValue, T* object)
143 return ScriptWrappable::getUnsafeWrapperFromObject(object).setReturnValue(returnValue);
  /external/chromium_org/third_party/WebKit/ManualTests/
modal-dialog.html 9 window.returnValue = document.form.toWindow.value;
showModalDialog-returnValue.html 3 if (showModalDialog("data:text/html,<script>returnValue={value:'PASS'}; close()</"+"script>").value == "PASS")
  /external/mockito/src/org/mockito/internal/handler/
InvocationNotifierHandler.java 48 private void notifyMethodCall(Invocation invocation, Object returnValue) {
51 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, returnValue));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] +
51 return returnValue / 255;
  /external/proguard/src/proguard/gui/
MemberSpecificationsPanel.java 79 int returnValue = fieldSpecificationDialog.showDialog();
80 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
101 int returnValue = methodSpecificationDialog.showDialog();
102 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
131 int returnValue = memberSpecificationDialog.showDialog();
132 if (returnValue == MemberSpecificationDialog.APPROVE_OPTION)
ClassSpecificationsPanel.java 70 int returnValue = classSpecificationDialog.showDialog();
71 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION)
94 int returnValue = classSpecificationDialog.showDialog();
95 if (returnValue == ClassSpecificationDialog.APPROVE_OPTION)
OptimizationsDialog.java 52 private int returnValue;
161 returnValue = APPROVE_OPTION;
219 returnValue = CANCEL_OPTION;
227 return returnValue;
  /frameworks/native/opengl/tests/gl2_yuvtex/
gl2_yuvtex.cpp 335 EGLBoolean returnValue;
359 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
360 checkEglError("eglInitialize", returnValue);
362 if (returnValue != EGL_TRUE) {
368 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
369 if (returnValue) {
370 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
392 returnValue = eglMakeCurrent(dpy, surface, surface, context);
393 checkEglError("eglMakeCurrent", returnValue);
394 if (returnValue != EGL_TRUE)
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_getbits.cpp 120 uint32 returnValue = 0;
124 return (returnValue);
135 returnValue = (((uint32)(Elem)) << 24) |
144 returnValue <<= bitIndex;
147 returnValue >>= (32 - neededBits);
151 return (returnValue);
166 uint16 returnValue;
174 returnValue = (((uint16)(Elem)) << 8) |
182 returnValue = (returnValue << (bitIndex))
    [all...]
  /external/chromium_org/v8/src/
arguments.h 206 * For old callbacks which return an empty handle, the ReturnValue is checked
210 #define WRITE_CALL_0(Function, ReturnValue) \
211 v8::Handle<ReturnValue> Call(Function f); \
213 #define WRITE_CALL_1(Function, ReturnValue, Arg1) \
214 v8::Handle<ReturnValue> Call(Function f, Arg1 arg1); \
216 #define WRITE_CALL_2(Function, ReturnValue, Arg1, Arg2) \
217 v8::Handle<ReturnValue> Call(Function f, Arg1 arg1, Arg2 arg2); \
219 #define WRITE_CALL_2_VOID(Function, ReturnValue, Arg1, Arg2) \
279 * For old callbacks which return an empty handle, the ReturnValue is checked
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDialogElement.cpp 107 void HTMLDialogElement::close(const String& returnValue, ExceptionState& exceptionState)
113 closeDialog(returnValue);
116 void HTMLDialogElement::closeDialog(const String& returnValue)
127 if (!returnValue.isNull())
128 m_returnValue = returnValue;
  /external/chromium_org/third_party/ocmock/OCMock/
OCMConstraint.m 109 BOOL returnValue;
110 [invocation getReturnValue:&returnValue];
111 return returnValue;
OCMExceptionReturnValueProvider.m 13 @throw returnValue;
OCMReturnValueProvider.h 10 id returnValue;
  /external/clang/lib/CodeGen/
CGCUDARuntime.cpp 29 ReturnValueSlot ReturnValue) {
47 CGF.EmitCall(E->getCallee()->getType(), Callee, ReturnValue,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
antRun.pl 58 my $returnValue = system $ANT_RUN_CMD, @ARGV;
59 if ($returnValue eq 0) {
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 88 code.returnValue(localResult);
135 code.returnValue(localResult);
181 code.returnValue(localResult);
209 directCode.returnValue(localA);
216 code.returnValue(localB);
243 superHashCode.returnValue(localResult);
249 generatedHashCode.returnValue(localZero);
271 code.returnValue(localResult);
295 code.returnValue(result);
341 code.returnValue(localResult)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
BeforeUnloadEvent.idl 32 attribute DOMString returnValue;
  /external/qemu/distrib/sdl-1.2.15/docs/html/
sdlsemtrywait.html 143 CLASS="RETURNVALUE"
166 CLASS="RETURNVALUE"
170 CLASS="RETURNVALUE"
173 CLASS="RETURNVALUE"

Completed in 3266 milliseconds

12 3 4 5 6 7 8 91011>>