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

1 2 3 4 5 6 7 8 91011

  /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) {
  /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/webrtc/src/system_wrappers/source/
atomic32_posix.cc 42 WebRtc_Word32 returnValue = __sync_fetch_and_add(&_value, value);
43 returnValue += value;
44 return returnValue;
49 WebRtc_Word32 returnValue = __sync_fetch_and_sub(&_value, value);
50 returnValue -= value;
51 return returnValue;
aligned_malloc.cc 61 AlignedMemory* returnValue = new AlignedMemory();
62 if(returnValue == NULL)
71 returnValue->memoryPointer = malloc(size + sizeof(uintptr_t) +
73 if(returnValue->memoryPointer == NULL)
75 delete returnValue;
81 uintptr_t alignStartPos = (uintptr_t)returnValue->memoryPointer;
89 returnValue->alignedBuffer = (void*)alignedPos;
96 uintptr_t headerValue = (uintptr_t)returnValue;
99 return returnValue->alignedBuffer;
  /external/deqp/framework/egl/
egluCallLogWrapper.inl 11 eglw::EGLBoolean returnValue = m_egl.bindAPI(api);
13 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
14 return returnValue;
21 eglw::EGLBoolean returnValue = m_egl.bindTexImage(dpy, surface, buffer);
23 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
24 return returnValue;
31 eglw::EGLBoolean returnValue = m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_config);
34 m_log << TestLog::Message << "// configs = " << getPointerStr(configs, (num_config && returnValue) ? deMin32(config_size, *num_config) : 0) << TestLog::EndMessage;
38 m_log << TestLog::Message << "// " << getBooleanStr(returnValue) << " returned" << TestLog::EndMessage;
39 return returnValue;
    [all...]
  /libcore/luni/src/test/java/libcore/java/math/
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);
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,
  /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;
  /external/proguard/src/proguard/optimize/info/
MethodOptimizationInfo.java 49 private Value returnValue;
258 public void generalizeReturnValue(Value returnValue)
260 this.returnValue = this.returnValue != null ?
261 this.returnValue.generalize(returnValue) :
262 returnValue;
268 return returnValue;
273 public void setReturnValue(Value returnValue)
275 this.returnValue = returnValue
    [all...]
  /frameworks/native/opengl/tests/gl_perf/
gl2_perf.cpp 60 EGLBoolean returnValue;
82 returnValue = eglInitialize(dpy, &majorVersion, &minorVersion);
83 checkEglError("eglInitialize", returnValue);
84 if (returnValue != EGL_TRUE) {
91 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
92 if (returnValue) {
93 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
112 returnValue = eglMakeCurrent(dpy, surface, surface, context);
113 checkEglError("eglMakeCurrent", returnValue);
114 if (returnValue != EGL_TRUE)
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
ExecutableMemberComparator.java 53 int returnValue = aMember.getName().compareTo(bMember.getName());
54 return returnValue != 0 ? returnValue : compareParameterLists(aMember
64 int returnValue = 0;
66 returnValue += getTypeName(aIt.next().getType()).compareTo(
69 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;
  /packages/apps/Contacts/src/com/android/contacts/widget/
TouchlessScrollView.java 35 final Parcelable returnValue = super.onSaveInstanceState();
37 return returnValue;
  /packages/apps/FMRadio/src/com/android/fmradio/views/
FmTouchlessScrollView.java 68 final Parcelable returnValue = super.onSaveInstanceState();
70 return returnValue;
  /art/tools/dexfuzz/src/dexfuzz/
ExecutionResult.java 27 public int returnValue;
105 return (returnValue == TIMEOUT_RETURN_VALUE);
109 return (returnValue == SIGABORT_RETURN_VALUE);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 125 String returnValue = "";
127 returnValue += "|VERIFIED";
129 returnValue += "|PREPARED";
131 returnValue += "|INITIALIZED";
133 returnValue += "|ERROR";
135 returnValue += "|ARRAY";
137 returnValue += "|PRIMITIVE";
139 if (returnValue.equals("")) {
140 returnValue = "NONE";
142 returnValue = returnValue.substring(1)
    [all...]
  /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)
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
BaseRenderScriptComparer.java 48 float[] returnValue = new float[mHeight];
49 rowOutputs.copyTo(returnValue);
53 sum += returnValue[i];
  /cts/tools/signature-tools/src/signature/model/impl/
SigParameterizedType.java 42 ITypeReference returnValue = ownerType;
43 if (returnValue == null) {
45 returnValue = new SigClassReference(rawType
49 return returnValue;
  /external/proguard/src/proguard/evaluation/
InvocationUnit.java 49 Value 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;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H264SwDecApi.c 347 H264SwDecRet returnValue = H264SWDEC_STRM_PROCESSED;
425 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
430 returnValue = H264SWDEC_HDRS_RDY_BUFF_NOT_EMPTY;
439 returnValue = H264SWDEC_PIC_RDY;
441 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY;
450 returnValue = H264SWDEC_STRM_ERR;
455 returnValue = H264SWDEC_MEMFAIL;
467 returnValue);
471 return(returnValue);
  /frameworks/native/opengl/libs/EGL/
egl_tls.h 58 int line, EGLint error, T returnValue, bool quiet = false) {
60 return returnValue;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodTest.java 215 Value returnValue = reply.getNextValueAsValue();
216 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
217 + returnValue.getIntValue());
223 assertTrue("returnValue must be != null", returnValue != null);
224 assertEquals("Invalid returned value,", 345, returnValue.getIntValue());
249 returnValue = reply.getNextValueAsValue();
250 logWriter.println(" ObjectReference.InvokeMethod: returnValue.getIntValue()="
251 + returnValue.getIntValue());
331 Value returnValue = reply.getNextValueAsValue()
    [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) {
303 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig);
304 if (returnValue) {
305 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue);
327 returnValue = eglMakeCurrent(dpy, surface, surface, context);
328 checkEglError("eglMakeCurrent", returnValue);
329 if (returnValue != EGL_TRUE)
    [all...]

Completed in 4263 milliseconds

1 2 3 4 5 6 7 8 91011