HomeSort by relevance Sort by last modified time
    Searched refs:returnValue (Results 51 - 75 of 394) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethod003Test.java 156 Value returnValue = reply.getNextValueAsValue();
157 assertNotNull("Returned value is null", returnValue);
158 assertEquals("Returned value tag is incorrect", JDWPConstants.Tag.STRING_TAG, returnValue.getTag());
159 long stringID = returnValue.getLongValue();
  /external/guava/guava-testlib/src/com/google/common/testing/
ForwardingWrapperTester.java 181 private final Object returnValue;
188 this.returnValue = new FreshValueGenerator().generate(method.getReturnType());
200 return returnValue;
210 // be the wrapper or the returnValue.
212 assertEquals("Return value of " + method + " not forwarded", returnValue,
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
RuntimeTestBase.java 134 gen.returnValue();
145 gen.returnValue();
158 gen.returnValue();
171 gen.returnValue();
OfflineInstrumentationAccessGeneratorTest.java 114 gen.returnValue();
125 gen.returnValue();
  /external/proguard/src/proguard/gui/
OptimizationsDialog.java 52 private int returnValue;
161 returnValue = APPROVE_OPTION;
219 returnValue = CANCEL_OPTION;
227 return returnValue;
FilterDialog.java 66 private int returnValue;
169 returnValue = APPROVE_OPTION;
341 returnValue = CANCEL_OPTION;
349 return returnValue;
  /frameworks/rs/
rsClosure.cpp 12 RsAllocation returnValue,
24 context, (const ScriptKernelID*)kernelID, (Allocation*)returnValue,
60 Allocation* returnValue,
68 mIsKernel(true), mReturnValue(returnValue), mParams(nullptr),
rsClosure.h 24 Allocation* returnValue,
  /frameworks/native/opengl/tests/gl2_copyTexImage/
gl2_copyTexImage.cpp 366 EGLBoolean returnValue;
394 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
395 checkEglError("eglInitialize", returnValue);
397 if (returnValue != EGL_TRUE) {
438 returnValue = eglMakeCurrent(dpy, surface, surface, context);
439 checkEglError("eglMakeCurrent", returnValue);
440 if (returnValue != EGL_TRUE) {
  /external/icu/icu4c/source/i18n/
dtfmtsym.cpp 637 UnicodeString *returnValue = NULL;
644 returnValue = fMonths;
649 returnValue = fShortMonths;
653 returnValue = fNarrowMonths;
663 returnValue = fStandaloneMonths;
668 returnValue = fStandaloneShortMonths;
672 returnValue = fStandaloneNarrowMonths;
681 return returnValue;
701 UnicodeString *returnValue = NULL;
707 returnValue = fWeekdays
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Trie2.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Trie2.java     [all...]
  /external/webrtc/webrtc/modules/video_coding/
video_receiver.cc 66 int32_t returnValue = VCM_OK;
112 if (ret != VCM_OK && returnValue == VCM_OK) {
113 returnValue = ret;
137 if (ret != VCM_OK && returnValue == VCM_OK) {
138 returnValue = ret;
150 return returnValue;
  /frameworks/base/obex/javax/obex/
ClientOperation.java 442 boolean returnValue = false;
524 returnValue = true;
536 if ((mPrivateOutput.isClosed()) && (!returnValue) && (!mEndOfBodySent)
573 return returnValue;
586 returnValue = true;
588 return returnValue;
  /cts/libs/deviceutil/jni/
android_cts_FileUtils.cpp 107 jint returnValue = chmod(fileStr, mode) == 0 ? 0 : errno;
109 return returnValue;
  /external/dexmaker/src/test/java/com/google/dexmaker/examples/
FibonacciMaker.java 60 code.returnValue(result);
62 code.returnValue(i);
  /frameworks/base/core/java/android/preference/
PreferenceGroup.java 181 final boolean returnValue = removePreferenceInt(preference);
183 return returnValue;
  /external/deqp/framework/opengl/
gluCallLogWrapper.inl 319 glw::GLenum returnValue = m_gl.checkFramebufferStatus(target);
321 m_log << TestLog::Message << "// " << getFramebufferStatusStr(returnValue) << " returned" << TestLog::EndMessage;
322 return returnValue;
329 glw::GLenum returnValue = m_gl.checkNamedFramebufferStatus(framebuffer, target);
331 m_log << TestLog::Message << "// " << toHex(returnValue) << " returned" << TestLog::EndMessage;
332 return returnValue;
479 glw::GLenum returnValue = m_gl.clientWaitSync(sync, flags, timeout);
481 m_log << TestLog::Message << "// " << toHex(returnValue) << " returned" << TestLog::EndMessage;
482 return returnValue;
    [all...]
  /external/parameter-framework/upstream/test/test-fixed-point-parameter/
Main.py 159 returnValue = Decimal(firstGet)
167 if not (lowerAllowedValue <= returnValue <= upperAllowedValue):
169 (lowerAllowedValue, returnValue, upperAllowedValue))
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/instrumentation/
LogTransformer.java 84 * and returnvalue)?
297 String returnValue = JavassistHelper.returnValue(method);
307 Object[] arg2 = new Object[] { loggerName, levelEnabled, loggerName, level, signature, returnValue };
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java 98 code.returnValue(localResult);
145 code.returnValue(localResult);
191 code.returnValue(localResult);
219 directCode.returnValue(localA);
226 code.returnValue(localB);
253 superHashCode.returnValue(localResult);
259 generatedHashCode.returnValue(localZero);
281 code.returnValue(localResult);
305 code.returnValue(result);
351 code.returnValue(localResult)
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java     [all...]
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.cpp 54 EGLBoolean returnValue;
71 returnValue = eglInitialize(*dpy, &majorVersion, &minorVersion);
72 checkEglError("eglInitialize", returnValue);
76 if (returnValue != EGL_TRUE) {
90 returnValue = EGLUtils::selectConfigForNativeWindow(*dpy,
92 if (returnValue) {
94 returnValue);
117 returnValue = eglMakeCurrent(*dpy, *surface, *surface, context);
118 checkEglError("eglMakeCurrent", returnValue);
119 if (returnValue != EGL_TRUE)
    [all...]
  /frameworks/base/core/java/android/animation/
AnimatorInflater.java 293 PropertyValuesHolder returnValue = null;
311 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
314 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
319 returnValue = PropertyValuesHolder.ofObject(propertyName, evaluator,
345 returnValue = PropertyValuesHolder.ofFloat(propertyName,
348 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueFrom);
356 returnValue = PropertyValuesHolder.ofFloat(propertyName, valueTo);
377 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom, valueTo);
379 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom);
390 returnValue = PropertyValuesHolder.ofInt(propertyName, valueTo)
    [all...]
  /external/deqp/modules/egl/
teglImageTests.cpp 94 RetVal checkCallError (EglTestContext& eglTestCtx, const char* call, RetVal returnValue, EGLint expectError)
107 log << TestLog::Message << " " << returnValue << " was returned" << TestLog::EndMessage;
113 return returnValue;
117 void checkCallReturn (EglTestContext& eglTestCtx, const char* call, RetVal returnValue, RetVal expectReturnValue, EGLint expectError)
127 if (returnValue != expectReturnValue)
129 log << TestLog::Message << " Fail: Return value mismatch! Expected " << expectReturnValue << ", got " << returnValue << TestLog::EndMessage;

Completed in 1025 milliseconds

1 23 4 5 6 7 8 91011>>