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

1 2 3 4 5 6 7 8

  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
brightness.cpp 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] +
51 return returnValue / 255;
  /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;
  /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;
  /external/webrtc/src/system_wrappers/source/
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;
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;
cpu_win.cc 480 bool returnValue = true;
486 returnValue = false;
492 returnValue = false;
528 return returnValue;
  /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 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...]
  /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;
  /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);
  /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];
  /external/icu/icu4c/source/samples/ufortune/
ufortune.c 154 int returnValue=0;
162 if (optionError != NULL) {returnValue = -1;}
163 return returnValue;
  /cts/libs/deviceutil/jni/
android_cts_FileUtils.cpp 107 jint returnValue = chmod(fileStr, mode) == 0 ? 0 : errno;
109 return returnValue;
  /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/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/base/core/java/android/hardware/camera2/utils/
CameraBinderDecorator.java 72 int returnValue = (Integer) result;
73 throwOnError(returnValue);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod003Test.java 124 Value returnValue = reply.getNextValueAsValue();
125 assertNotNull("Returned value is null", returnValue);
126 assertEquals("Invalid returned value,", 123, returnValue.getIntValue());
127 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
128 + returnValue.getIntValue());
InvokeMethod002Test.java 256 Value returnValue = reply.getNextValueAsValue();
257 logWriter.println(" ClassType.InvokeMethod: returnValue=" + returnValue);
259 String returnedString = getStringValue(returnValue.getLongValue());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethod002Test.java 152 Value returnValue = reply.getNextValueAsValue();
153 assertNotNull("Returned value is null", returnValue);
154 assertEquals("Invalid returned value,", 123, returnValue.getIntValue());
155 logWriter.println(" ClassType.InvokeMethod: returnValue.getIntValue()="
156 + returnValue.getIntValue());
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();
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
SdkManagerAction.java 136 final AtomicBoolean returnValue = new AtomicBoolean(false);
180 returnValue.set(true);
212 returnValue.set(true);
220 returnValue.set(true);
242 return returnValue.get();

Completed in 1241 milliseconds

1 2 3 4 5 6 7 8