HomeSort by relevance Sort by last modified time
    Searched refs:returnValue (Results 26 - 50 of 566) sorted by null

12 3 4 5 6 7 8 91011>>

  /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>();
  /external/oj-libjdwp/src/share/back/
invoker.c 228 if (request->returnValue.l != NULL) {
229 tossGlobalRef(env, &(request->returnValue.l));
302 request->returnValue.j = 0;
384 request->returnValue.l = NULL;
386 saveGlobalRef(env, object, &(request->returnValue.l));
402 request->returnValue.l = NULL;
404 saveGlobalRef(env, object, &(request->returnValue.l));
411 request->returnValue.b = JNI_FUNC_PTR(env,CallStaticByteMethodA)(env,
418 request->returnValue.c = JNI_FUNC_PTR(env,CallStaticCharMethodA)(env,
425 request->returnValue.f = JNI_FUNC_PTR(env,CallStaticFloatMethodA)(env
    [all...]
standardHandlers.c 104 jvalue returnValue;
111 returnValue = evinfo->u.method_exit.return_value;
121 returnValue,
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
BoundLocationCriterion.java 65 boolean returnValue = false;
79 returnValue = parentCriterion.isSatisfiedBy(parentPath);
86 returnValue = parentCriterion.isSatisfiedBy(path);
90 returnValue = parentCriterion.isSatisfiedBy(parentPath);
108 returnValue = true;
114 if (!returnValue) {
  /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/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)
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 49 Value returnValue);
  /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);
  /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;
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
Data.java 388 Boolean[] returnValue = new Boolean[value.length];
390 returnValue[i] = value[i];
392 return returnValue;
396 Integer[] returnValue = new Integer[value.length];
398 returnValue[i] = value[i];
400 return returnValue;
404 Long[] returnValue = new Long[value.length];
406 returnValue[i] = value[i];
408 return returnValue;
412 Float[] returnValue = new Float[value.length]
    [all...]
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
ApplicationProtocolSelectorAdapterTest.java 79 private void mockSelection(String returnValue) {
81 .thenReturn(returnValue);
  /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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodTest.java 216 Value returnValue = reply.getNextValueAsValue();
217 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
218 + returnValue.getIntValue());
224 assertTrue("returnValue must be != null", returnValue != null);
225 assertEquals("Invalid returned value,", 345, returnValue.getIntValue());
250 returnValue = reply.getNextValueAsValue();
251 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
252 + returnValue.getIntValue());
332 Value returnValue = reply.getNextValueAsValue()
    [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) {
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...]
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 303 void* returnValue;
304 result = pthread_join( add1Thread, &returnValue );
309 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
311 result = pthread_join( fibThread1, &returnValue );
316 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
318 result = pthread_join( fibThread2, &returnValue );
323 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
  /external/swiftshader/third_party/LLVM/examples/ParallelJIT/
ParallelJIT.cpp 281 void* returnValue;
282 result = pthread_join( add1Thread, &returnValue );
287 std::cout << "Add1 returned " << intptr_t(returnValue) << std::endl;
289 result = pthread_join( fibThread1, &returnValue );
294 std::cout << "Fib1 returned " << intptr_t(returnValue) << std::endl;
296 result = pthread_join( fibThread2, &returnValue );
301 std::cout << "Fib2 returned " << intptr_t(returnValue) << std::endl;
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
ActivityLaunchUtils.java 89 AccessibilityWindowInfo returnValue = null;
93 returnValue = window;
98 return returnValue;
  /external/icu/icu4c/source/samples/ufortune/
ufortune.c 160 int returnValue=0;
168 if (optionError != NULL) {returnValue = -1;}
169 return returnValue;
  /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 ) {
  /external/icu/android_icu4j/src/main/tests/android/icu/impl/number/
DecimalQuantity_SimpleStorage.java 608 byte returnValue;
611 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
617 returnValue = 0;
623 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
631 returnValue = 0;
649 assert returnValue >= 0;
650 return returnValue;
739 byte returnValue;
741 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
747 returnValue = 0
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/impl/number/
DecimalQuantity_SimpleStorage.java 605 byte returnValue;
608 returnValue = temp.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
614 returnValue = 0;
620 returnValue = (byte) (temp1 % 10); // not necessarily nonzero
628 returnValue = 0;
646 assert returnValue >= 0;
647 return returnValue;
736 byte returnValue;
738 returnValue = fallback.setScale(0, RoundingMode.FLOOR).remainder(BigDecimal.TEN).byteValue();
744 returnValue = 0
    [all...]
  /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/icu/android_icu4j/src/main/tests/android/icu/dev/test/shaping/
ArabicShapingRegTest.java 210 Object returnValue = m.invoke(null, testValue);
212 if (Integer.class.isInstance(returnValue)) {
213 return (Integer)returnValue == 1;
215 return (Boolean)returnValue;
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/shaping/
ArabicShapingRegTest.java 207 Object returnValue = m.invoke(null, testValue);
209 if (Integer.class.isInstance(returnValue)) {
210 return (Integer)returnValue == 1;
212 return (Boolean)returnValue;

Completed in 1117 milliseconds

12 3 4 5 6 7 8 91011>>