/external/chromium_org/third_party/ocmock/OCMock/ |
OCMReturnValueProvider.h | 10 id returnValue;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
brightness.cpp | 47 float returnValue = sqrt(0.241f * avgPixels[0] * avgPixels[0] + 51 return returnValue / 255;
|
/external/chromium_org/third_party/WebKit/Source/core/events/ |
BeforeUnloadEvent.h | 44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } 45 String returnValue() const { return m_returnValue; }
|
/frameworks/base/core/java/android/transition/ |
TransitionValues.java | 74 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n"; 75 returnValue += " view = " + view + "\n"; 76 returnValue += " values:"; 78 returnValue += " " + s + ": " + values.get(s) + "\n"; 80 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/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScriptRegexp.cpp | 83 v8::Local<v8::Value> returnValue = exec->Call(regex, 1, argv); 92 if (!returnValue->IsArray()) 95 v8::Local<v8::Array> result = returnValue.As<v8::Array>();
|
V8ErrorHandler.cpp | 64 v8::Local<v8::Value> returnValue; 77 returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate); 79 returnValue = ScriptController::callFunction(context, callFunction, thisValue, WTF_ARRAY_LENGTH(parameters), parameters, isolate); 81 return returnValue; 94 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue) 96 return returnValue->IsBoolean() && returnValue->BooleanValue();
|
V8AbstractEventListener.cpp | 114 v8::Local<v8::Value> returnValue; 129 returnValue = callListenerFunction(context, jsEvent, event); 148 ASSERT(!handleOutOfMemory() || returnValue.IsEmpty()); 150 if (returnValue.IsEmpty()) 153 if (!returnValue->IsNull() && !returnValue->IsUndefined() && event->isBeforeUnloadEvent()) { 154 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, stringReturnValue, returnValue); 158 if (m_isAttribute && shouldPreventDefault(returnValue)) 162 bool V8AbstractEventListener::shouldPreventDefault(v8::Local<v8::Value> returnValue) 166 return returnValue->IsBoolean() && !returnValue->BooleanValue() [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLDialogElement.h | 42 void close(const String& returnValue, ExceptionState&); 43 void closeDialog(const String& returnValue = String()); 57 String returnValue() const { return m_returnValue; } 58 void setReturnValue(const String& returnValue) { m_returnValue = 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) { 90 returnValue = EGLUtils::selectConfigForNativeWindow(dpy, s_configAttribs, window, &myConfig); 91 if (returnValue) { 92 printf("EGLUtils::selectConfigForNativeWindow() returned %d", returnValue); 111 returnValue = eglMakeCurrent(dpy, surface, surface, context); 112 checkEglError("eglMakeCurrent", returnValue); 113 if (returnValue != EGL_TRUE) [all...] |
/external/icu4c/samples/ufortune/ |
ufortune.c | 154 int returnValue=0; 162 if (optionError != NULL) {returnValue = -1;} 163 return returnValue;
|
/cts/tests/jni/ |
android_os_cts_FileUtils.cpp | 106 jint returnValue = chmod(fileStr, mode) == 0 ? 0 : errno; 108 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/chromium_org/third_party/WebKit/Source/core/inspector/ |
JavaScriptCallFrame.cpp | 141 v8::Handle<v8::Value> JavaScriptCallFrame::returnValue() const 143 return m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "returnValue"));
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
H264SwDecApi.c | 343 H264SwDecRet returnValue = H264SWDEC_STRM_PROCESSED; 421 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY; 426 returnValue = H264SWDEC_HDRS_RDY_BUFF_NOT_EMPTY; 435 returnValue = H264SWDEC_PIC_RDY; 437 returnValue = H264SWDEC_PIC_RDY_BUFF_NOT_EMPTY; 446 returnValue = H264SWDEC_STRM_ERR; 451 returnValue = H264SWDEC_MEMFAIL; 463 returnValue); 467 return(returnValue);
|
/frameworks/base/core/java/android/hardware/camera2/utils/ |
CameraBinderDecorator.java | 66 int returnValue = (Integer) result; 68 switch (returnValue) { 104 if (returnValue < 0) { 106 returnValue));
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
DownloadInfoTest.java | 194 Object returnValue = invokeMethod(getter, downloadInfo); 196 valuesForBuilder.get(signature).toString(), returnValue.toString());
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
IDBTransaction.cpp | 349 bool returnValue = IDBEventDispatcher::dispatch(event.get(), targets); 357 return returnValue;
|
/external/chromium_org/third_party/angle/src/compiler/ |
ConstantUnion.h | 112 ConstantUnion returnValue; 115 case EbtInt: returnValue.setIConst(iConst + constant.iConst); break; 116 case EbtFloat: returnValue.setFConst(fConst + constant.fConst); break; 120 return returnValue; 125 ConstantUnion returnValue; 128 case EbtInt: returnValue.setIConst(iConst - constant.iConst); break; 129 case EbtFloat: returnValue.setFConst(fConst - constant.fConst); break; 133 return returnValue; 138 ConstantUnion returnValue; 141 case EbtInt: returnValue.setIConst(iConst * constant.iConst); break [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
inttree.c | 665 void *returnValue = z->data; 724 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();
|