/external/chromium_org/third_party/WebKit/Source/core/events/ |
BeforeUnloadEvent.idl | 32 attribute DOMString returnValue;
|
BeforeUnloadEvent.h | 44 void setReturnValue(const String& returnValue) { m_returnValue = returnValue; } 45 String returnValue() const { return m_returnValue; }
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLDialogElement.idl | 30 attribute DOMString returnValue; 31 [RaisesException] void close([Default=NullString] optional DOMString returnValue);
|
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/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/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...] |
/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;
|
/external/chromium_org/third_party/angle/src/libEGL/ |
main.h | 45 const T &error(EGLint errorCode, const T &returnValue) 49 return returnValue; 53 const T &success(const T &returnValue) 57 return returnValue;
|
/external/chromium_org/third_party/ocmock/OCMock/ |
OCMReturnValueProvider.h | 10 id returnValue;
|
/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/proguard/src/proguard/optimize/info/ |
MethodOptimizationInfo.java | 48 private Value returnValue; 245 public void generalizeReturnValue(Value returnValue) 247 this.returnValue = this.returnValue != null ? 248 this.returnValue.generalize(returnValue) : 249 returnValue; 255 return returnValue;
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
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...] |
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();
|
DOMDataStore.h | 55 static bool setReturnValueFromWrapperFast(v8::ReturnValue<v8::Value> returnValue, T* object, v8::Local<v8::Object> holder, Wrappable* wrappable) 65 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object); 66 return mainWorldStore().m_wrapperMap.setReturnValueFrom(returnValue, V8T::toInternalPointer(object)); 68 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object); 72 static bool setReturnValueFromWrapper(v8::ReturnValue<v8::Value> returnValue, T* object) 76 return ScriptWrappable::setReturnValueWithSecurityCheck<V8T>(returnValue, object); 78 return current(returnValue.GetIsolate()).template setReturnValueFrom<V8T>(returnValue, object) [all...] |
UnsafePersistent.h | 68 inline bool setReturnValueWithSecurityCheck(v8::ReturnValue<v8::Value> returnValue, U* object) 73 returnValue.Set(result); 77 inline bool setReturnValue(v8::ReturnValue<v8::Value> returnValue) 79 returnValue.Set(deprecatedHandle());
|
V8ValueCache.h | 50 void setReturnValueFromString(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) 54 returnValue.Set(*m_lastV8String.persistent()); 56 setReturnValueFromStringSlow(returnValue, stringImpl); 63 void setReturnValueFromStringSlow(v8::ReturnValue<v8::Value>, StringImpl*);
|
V8ValueCache.cpp | 67 void StringCache::setReturnValueFromStringSlow(v8::ReturnValue<v8::Value> returnValue, StringImpl* stringImpl) 70 returnValue.SetEmptyString(); 78 returnValue.Set(*cachedV8String.persistent()); 82 returnValue.Set(createStringAndInsertIntoCache(stringImpl, returnValue.GetIsolate()));
|
/external/chromium_org/chrome/installer/setup/eula/ |
oem.js | 10 window.returnValue = 6; 12 window.returnValue = 1;
|
/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;
|
/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/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)
|