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

12 3 4 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/
InvokeMethodTest.java 119 Value returnValue = reply.getNextValueAsValue();
120 assertNotNull("Returned value is null", returnValue);
122 assertEquals("Invalid returned value,", 0, returnValue.getIntValue());
123 logWriter.println(" InterfaceType.InvokeMethod: returnValue.getIntValue()="
124 + returnValue.getIntValue());
138 InvokeMethodTestInterface.RETURN_VALUE, returnValue.getIntValue());
139 logWriter.println(" InterfaceType.InvokeMethod: returnValue.getIntValue()="
140 + returnValue.getIntValue());
  /external/libxml2/result/
att8.sax 11 SAX.startElement(ino:message, ino:returnvalue='0')
23 SAX.startElement(ino:message, ino:returnvalue='0')
  /external/libxml2/test/
att8 1 <?xml version="1.0" encoding="ISO-8859-1"?><ino:response xmlns:ino="http://namespaces.softwareag.com/tamino/response2" xmlns:xql="http://metalab.unc.edu/xql/" ino:sessionid="556" ino:sessionkey="1590469677"><xql:query>/bsk:DocPart[@docId=&apos;20040308152601345236&apos; and @docPartNo=1]</xql:query><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processing</ino:messageline></ino:message><xql:result><bsk:DocPart docId="20040308152601345236" docPartNo="1" ino:id="15290" xmlns:bsk="http://www.heitec.net/sara4/tamino/basket"><bsk:File name="4898WPZEO2M65" size="75195"> </bsk:File></bsk:DocPart></xql:result><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processed</ino:messageline></ino:message></ino:response>
  /external/mockito/src/main/java/org/mockito/internal/handler/
InvocationNotifierHandler.java 45 private void notifyMethodCall(Invocation invocation, Object returnValue) {
48 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, returnValue));
  /external/swiftshader/src/OpenGL/libGLES_CM/
main.h 37 const T &error(GLenum errorCode, const T &returnValue)
41 return returnValue;
  /external/swiftshader/src/OpenGL/libGLESv2/
main.h 39 const T &error(GLenum errorCode, const T &returnValue)
43 return returnValue;
  /packages/apps/Contacts/src/com/android/contacts/widget/
TouchlessScrollView.java 35 final Parcelable returnValue = super.onSaveInstanceState();
37 return returnValue;
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
LayoutParserWrapper.java 135 int returnValue;
138 returnValue = mNext;
144 returnValue = mDelegate.next();
147 if (returnValue == END_TAG && depth <= mFinalDepth) {
150 return returnValue;
175 String returnValue = null;
188 returnValue = attribute.value;
194 returnValue = mDelegate.getAttributeValue(namespace, name);
197 if (returnValue != null && mFinalDepth >= 0 && returnValue.startsWith("@{"))
    [all...]
  /external/v8/src/inspector/
v8-regex.cc 63 v8::Local<v8::Value> returnValue;
66 .ToLocal(&returnValue))
76 DCHECK(!returnValue.IsEmpty());
77 if (!returnValue->IsArray()) return -1;
79 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
  /frameworks/base/core/java/com/android/internal/view/
OneShotPreDrawListener.java 39 private OneShotPreDrawListener(View view, boolean returnValue, Runnable runnable) {
43 mReturnValue = returnValue;
63 * @param returnValue The value to be returned from the OnPreDrawListener.
68 public static OneShotPreDrawListener add(View view, boolean returnValue, Runnable runnable) {
69 OneShotPreDrawListener listener = new OneShotPreDrawListener(view, returnValue, runnable);
  /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) {
259 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
260 if (returnValue) {
261 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
283 returnValue = eglMakeCurrent(dpy, surface, surface, context);
284 checkEglError("eglMakeCurrent", returnValue);
285 if (returnValue != EGL_TRUE)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenCRC32Section/
GenCRC32Section.c 231 INT32 ReturnValue;
257 ReturnValue = ReadFilesContentsIntoBuffer (
265 if (ReturnValue == -1) {
270 Index += ReturnValue;
305 ReturnValue = -1;
307 ReturnValue = 0;
312 return ReturnValue;
  /art/tools/dexfuzz/src/dexfuzz/
ExecutionResult.java 27 public int returnValue;
116 return (returnValue == TIMEOUT_RETURN_VALUE);
120 return (returnValue == SIGABORT_RETURN_VALUE);
  /external/skia/src/pdf/
SkDeflate.cpp 43 SkDEBUGCODE(int returnValue;)
47 SkDEBUGCODE(returnValue =) deflate(zStream, flush);
53 ? returnValue == Z_STREAM_END
54 : returnValue == Z_OK);
  /external/skqp/src/pdf/
SkDeflate.cpp 43 SkDEBUGCODE(int returnValue;)
47 SkDEBUGCODE(returnValue =) deflate(zStream, flush);
53 ? returnValue == Z_STREAM_END
54 : returnValue == Z_OK);
  /frameworks/rs/
rsClosure.cpp 12 RsAllocation returnValue,
24 context, (const ScriptKernelID*)kernelID, (Allocation*)returnValue,
60 Allocation* returnValue,
68 mIsKernel(true), mReturnValue(returnValue), mParams(nullptr),
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodDefault002Test.java 145 Value returnValue = reply.getNextValueAsValue();
146 assertNotNull("Returned value is null", returnValue);
148 assertEquals("Invalid returned value,", 0, returnValue.getIntValue());
149 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
150 + returnValue.getIntValue());
164 InvokeMethodDefault002Debuggee.TestClass.RETURN_VALUE, returnValue.getIntValue());
165 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
166 + returnValue.getIntValue());
InvokeMethodDefaultTest.java 145 Value returnValue = reply.getNextValueAsValue();
146 assertNotNull("Returned value is null", returnValue);
148 assertEquals("Invalid returned value,", 0, returnValue.getIntValue());
149 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
150 + returnValue.getIntValue());
164 InvokeMethodDefaultDebuggee.TestInterface.RETURN_VALUE, returnValue.getIntValue());
165 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
166 + returnValue.getIntValue());
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
DuckTypedPSKKeyManagerTest.java 106 mockInvocationHandler.returnValue = identityHint;
115 mockInvocationHandler.returnValue = identityHint;
124 mockInvocationHandler.returnValue = identity;
133 mockInvocationHandler.returnValue = identity;
143 mockInvocationHandler.returnValue = key;
153 mockInvocationHandler.returnValue = key;
306 Object returnValue;
314 return 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)
  /frameworks/native/opengl/tests/gl2_basic/
gl2_basic.cpp 304 EGLBoolean returnValue;
328 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
329 checkEglError("eglInitialize", returnValue);
331 if (returnValue != EGL_TRUE) {
345 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
346 if (returnValue) {
347 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
370 returnValue = eglMakeCurrent(dpy, surface, surface, context);
371 checkEglError("eglMakeCurrent", returnValue);
372 if (returnValue != EGL_TRUE)
    [all...]
  /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) {
369 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
370 if (returnValue) {
371 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
393 returnValue = eglMakeCurrent(dpy, surface, surface, context);
394 checkEglError("eglMakeCurrent", returnValue);
395 if (returnValue != EGL_TRUE)
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
ExecutionListBenchmark.java 196 int returnValue = 0;
202 returnValue += listenerLatch.getCount();
205 returnValue += listenerLatch.getCount();
207 return returnValue;
211 int returnValue = 0;
218 returnValue += listenerLatch.getCount();
220 returnValue += listenerLatch.getCount();
222 return returnValue;
239 int returnValue = 0;
247 returnValue = (int) listenerLatch.getCount()
    [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...]

Completed in 678 milliseconds

12 3 4 5 6 7 8 91011>>