HomeSort by relevance Sort by last modified time
    Searched defs:returnValue (Results 1 - 25 of 485) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] +
51 return returnValue / 255;
  /external/testng/src/test/java/test/privatemethod/
PrivateMethodTest.java 19 int returnValue = pmt.privateMethod();
21 Assert.assertEquals(returnValue, 1);
  /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/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;
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionValues.java 79 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
80 returnValue += " view = " + view + "\n";
81 returnValue += " values:";
83 returnValue += " " + s + ": " + values.get(s) + "\n";
85 return returnValue;
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
RunOnMainUtils.java 33 AtomicReference<T> returnValue = new AtomicReference<>(null);
37 returnValue.set(callable.call());
45 return returnValue.get();
ActivityLaunchUtils.java 89 AccessibilityWindowInfo returnValue = null;
93 returnValue = window;
98 return returnValue;
  /external/oj-libjdwp/src/share/back/
standardHandlers.c 104 jvalue returnValue;
111 returnValue = evinfo->u.method_exit.return_value;
121 returnValue,
invoker.h 51 jvalue returnValue; /* if no exception, for all but INVOKE_CONSTRUCTOR */
  /external/oj-libjdwp/src/solaris/npt/
utf_md.c 111 int returnValue;
121 returnValue = iconv(ic, (void*)&inbuf, &inLeft, &outbuf, &outLeft);
122 if ( returnValue >= 0 && inLeft==0 ) {
  /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...]
  /frameworks/native/opengl/tests/gl_perf/
gl2_perf.cpp 53 EGLBoolean returnValue;
75 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
76 checkEglError("eglInitialize", returnValue);
77 if (returnValue != EGL_TRUE) {
84 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
85 if (returnValue) {
86 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
105 returnValue = eglMakeCurrent(dpy, surface, surface, context);
106 checkEglError("eglMakeCurrent", returnValue);
107 if (returnValue != EGL_TRUE)
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
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,
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);
  /packages/apps/Contacts/src/com/android/contacts/widget/
TouchlessScrollView.java 35 final Parcelable returnValue = super.onSaveInstanceState();
37 return returnValue;
  /external/icu/icu4c/source/samples/ufortune/
ufortune.c 160 int returnValue=0;
168 if (optionError != NULL) {returnValue = -1;}
169 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);
  /cts/common/device-side/util/jni/
android_cts_FileUtils.cpp 107 jint returnValue = chmod(fileStr, mode) == 0 ? 0 : errno;
109 return returnValue;
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
JavassistHelper.java 52 public static String returnValue(CtBehavior method) throws NotFoundException {
54 String returnValue = "";
56 returnValue = " returns: \" + $_ + \".";
58 return returnValue;
  /external/webrtc/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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod003Test.java 125 Value returnValue = reply.getNextValueAsValue();
126 assertNotNull("Returned value is null", returnValue);
127 assertEquals("Invalid returned value,", 123, returnValue.getIntValue());
128 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
129 + returnValue.getIntValue());
  /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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethod002Test.java 153 Value returnValue = reply.getNextValueAsValue();
154 assertNotNull("Returned value is null", returnValue);
155 assertEquals("Invalid returned value,", 123, returnValue.getIntValue());
156 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
157 + returnValue.getIntValue());
InvokeMethod003Test.java 157 Value returnValue = reply.getNextValueAsValue();
158 assertNotNull("Returned value is null", returnValue);
159 assertEquals("Returned value tag is incorrect", JDWPConstants.Tag.STRING_TAG, returnValue.getTag());
160 long stringID = returnValue.getLongValue();
  /external/guava/guava/src/com/google/common/util/concurrent/
SmoothRateLimiter.java 359 long returnValue = nextFreeTicketMicros;
368 return returnValue;

Completed in 1288 milliseconds

1 2 3 4 5 6 7 8 91011>>